2b2fdf98534ca5f7da7c7c1394211b06b56d1069
[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.2.4 2006/12/18 20:43:50 martinea 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 void pkt_init_empty(
54     pkt_t *pkt,
55     pktype_t type)
56 {
57     assert(pkt != NULL);
58     assert(strcmp(pkt_type2str(type), "BOGUS") != 0);
59
60     pkt->type = type;
61     pkt->packet_size = 1000;
62     pkt->body = alloc(pkt->packet_size);
63     pkt->body[0] = '\0';
64     pkt->size = strlen(pkt->body);
65 }
66
67 printf_arglist_function2(void pkt_init, pkt_t *, pkt, pktype_t, type,
68     const char *, fmt)
69 {
70     va_list     argp;
71     int         len;
72
73     assert(pkt != NULL);
74     assert(strcmp(pkt_type2str(type), "BOGUS") != 0);
75     assert(fmt != NULL);
76
77     pkt->type = type;
78     pkt->packet_size = 1000;
79     pkt->body = alloc(pkt->packet_size);
80     while(1) {
81         arglist_start(argp, fmt);
82         len = vsnprintf(pkt->body, pkt->packet_size, fmt, argp);
83         arglist_end(argp);
84         if (len > -1 && len < (int)(pkt->packet_size - 1))
85             break;
86         pkt->packet_size *= 2;
87         amfree(pkt->body);
88         pkt->body = alloc(pkt->packet_size);
89     }
90     pkt->size = strlen(pkt->body);
91 }
92
93 /*
94  * Append data to a packet
95  */
96 printf_arglist_function1(void pkt_cat, pkt_t *, pkt, const char *, fmt)
97 {
98     size_t      len;
99     int         lenX;
100     va_list     argp;
101     char *      pktbody;
102
103     assert(pkt != NULL);
104     assert(fmt != NULL);
105
106     len = strlen(pkt->body);
107
108     while(1) {
109         arglist_start(argp, fmt);
110         lenX = vsnprintf(pkt->body + len, pkt->packet_size - len, fmt,argp);
111         arglist_end(argp);
112         if (lenX > -1 && lenX < (int)(pkt->packet_size - len - 1))
113             break;
114         pkt->packet_size *= 2;
115         pktbody = alloc(pkt->packet_size);
116         strncpy(pktbody, pkt->body, len);
117         pktbody[len] = '\0';
118         amfree(pkt->body);
119         pkt->body = pktbody;
120     }
121     pkt->size = strlen(pkt->body);
122 }
123
124 /*
125  * Converts a string into a packet type
126  */
127 pktype_t
128 pkt_str2type(
129     const char *typestr)
130 {
131     int i;
132
133     assert(typestr != NULL);
134
135     for (i = 0; i < (int)NPKTYPES; i++)
136         if (strcmp(typestr, pktypes[i].name) == 0)
137             return (pktypes[i].type);
138     return ((pktype_t)-1);
139 }
140
141 /*
142  * Converts a packet type into a string
143  */
144 const char *
145 pkt_type2str(
146     pktype_t    type)
147 {
148     int i;
149
150     for (i = 0; i < (int)NPKTYPES; i++)
151         if (pktypes[i].type == type)
152             return (pktypes[i].name);
153     return ("BOGUS");
154 }