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