Imported Upstream version 2.5.1
[debian/amanda] / common-src / packet.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: packet.c,v 1.8 2006/05/25 01:47:12 johnfranks Exp $
28  *
29  * Routines for modifying the amanda protocol packet type
30  */
31 #include "amanda.h"
32 #include "arglist.h"
33 #include "packet.h"
34
35 /*
36  * Table of packet types and their printable forms
37  */
38 static const struct {
39     const char name[5];
40     pktype_t type;
41 } pktypes[] = {
42     { "REQ", P_REQ },
43     { "REP", P_REP },
44     { "PREP", P_PREP },
45     { "ACK", P_ACK },
46     { "NAK", P_NAK }
47 };
48 #define NPKTYPES        (int)(SIZEOF(pktypes) / SIZEOF(pktypes[0]))
49
50 /*
51  * Initialize a packet
52  */
53 printf_arglist_function2(void pkt_init, pkt_t *, pkt, pktype_t, type,
54     const char *, fmt)
55 {
56     va_list     argp;
57
58     assert(pkt != NULL);
59     assert(strcmp(pkt_type2str(type), "BOGUS") != 0);
60     assert(fmt != NULL);
61
62     pkt->type = type;
63     pkt->packet_size = 1000;
64     pkt->body = alloc(pkt->packet_size);
65     arglist_start(argp, fmt);
66     while (vsnprintf(pkt->body, pkt->packet_size, fmt, argp) >=
67                 (int)(pkt->packet_size - 1)) {
68         pkt->packet_size *= 2;
69         amfree(pkt->body);
70         pkt->body = alloc(pkt->packet_size);
71     }
72     arglist_end(argp);
73     pkt->size = strlen(pkt->body);
74 }
75
76 /*
77  * Append data to a packet
78  */
79 printf_arglist_function1(void pkt_cat, pkt_t *, pkt, const char *, fmt)
80 {
81     size_t      len;
82     va_list     argp;
83     char *      pktbody;
84
85     assert(pkt != NULL);
86     assert(fmt != NULL);
87
88     len = strlen(pkt->body);
89
90     arglist_start(argp, fmt);
91     while (vsnprintf(pkt->body + len, pkt->packet_size - len, fmt,argp) >=
92                 (int)(pkt->packet_size - len - 1)) {
93         pkt->packet_size *= 2;
94         pktbody = alloc(pkt->packet_size);
95         strncpy(pktbody, pkt->body, len);
96         pktbody[len] = '\0';
97         amfree(pkt->body);
98         pkt->body = pktbody;
99         arglist_end(argp);
100         arglist_start(argp, fmt);
101     }
102     arglist_end(argp);
103     pkt->size = strlen(pkt->body);
104 }
105
106 /*
107  * Converts a string into a packet type
108  */
109 pktype_t
110 pkt_str2type(
111     const char *typestr)
112 {
113     int i;
114
115     assert(typestr != NULL);
116
117     for (i = 0; i < (int)NPKTYPES; i++)
118         if (strcmp(typestr, pktypes[i].name) == 0)
119             return (pktypes[i].type);
120     return ((pktype_t)-1);
121 }
122
123 /*
124  * Converts a packet type into a string
125  */
126 const char *
127 pkt_type2str(
128     pktype_t    type)
129 {
130     int i;
131
132     for (i = 0; i < (int)NPKTYPES; i++)
133         if (pktypes[i].type == type)
134             return (pktypes[i].name);
135     return ("BOGUS");
136 }