Imported Upstream version 2.6.0
[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 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     if(fmt == NULL)
76         fmt = "";
77
78     pkt->type = type;
79     pkt->packet_size = 1000;
80     pkt->body = alloc(pkt->packet_size);
81     while(1) {
82         arglist_start(argp, fmt);
83         len = g_vsnprintf(pkt->body, pkt->packet_size, fmt, argp);
84         arglist_end(argp);
85         if (len > -1 && len < (int)(pkt->packet_size - 1))
86             break;
87         pkt->packet_size *= 2;
88         amfree(pkt->body);
89         pkt->body = alloc(pkt->packet_size);
90     }
91     pkt->size = strlen(pkt->body);
92 }
93
94 /*
95  * Append data to a packet
96  */
97 printf_arglist_function1(void pkt_cat, pkt_t *, pkt, const char *, fmt)
98 {
99     size_t      len;
100     int         lenX;
101     va_list     argp;
102     char *      pktbody;
103
104     assert(pkt != NULL);
105     assert(fmt != NULL);
106
107     len = strlen(pkt->body);
108
109     while(1) {
110         arglist_start(argp, fmt);
111         lenX = g_vsnprintf(pkt->body + len, pkt->packet_size - len, fmt,argp);
112         arglist_end(argp);
113         if (lenX > -1 && lenX < (int)(pkt->packet_size - len - 1))
114             break;
115         pkt->packet_size *= 2;
116         pktbody = alloc(pkt->packet_size);
117         strncpy(pktbody, pkt->body, len);
118         pktbody[len] = '\0';
119         amfree(pkt->body);
120         pkt->body = pktbody;
121     }
122     pkt->size = strlen(pkt->body);
123 }
124
125 /*
126  * Converts a string into a packet type
127  */
128 pktype_t
129 pkt_str2type(
130     const char *typestr)
131 {
132     int i;
133
134     assert(typestr != NULL);
135
136     for (i = 0; i < (int)NPKTYPES; i++)
137         if (strcmp(typestr, pktypes[i].name) == 0)
138             return (pktypes[i].type);
139     return ((pktype_t)-1);
140 }
141
142 /*
143  * Converts a packet type into a string
144  */
145 const char *
146 pkt_type2str(
147     pktype_t    type)
148 {
149     int i;
150
151     for (i = 0; i < (int)NPKTYPES; i++)
152         if (pktypes[i].type == type)
153             return (pktypes[i].name);
154     return ("BOGUS");
155 }