Unleashed v1.4
[unleashed.git] / usr / src / lib / libresolv2 / common / irs / getprotoent_r.c
blob2d090569a7e94748caa563a8ba79a037ebf37e05
1 /*
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1998-1999 by Internet Software Consortium.
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #include <port_before.h>
19 #if !defined(DO_PTHREADS)
20 static int getprotoent_r_not_required = 0;
21 #else
22 #include <errno.h>
23 #include <string.h>
24 #include <stdio.h>
25 #include <sys/types.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28 #include <port_after.h>
30 #ifdef PROTO_R_RETURN
32 static PROTO_R_RETURN
33 copy_protoent(struct protoent *, struct protoent *, PROTO_R_COPY_ARGS);
35 PROTO_R_RETURN
36 getprotobyname_r(const char *name, struct protoent *pptr, PROTO_R_ARGS) {
37 struct protoent *pe = getprotobyname(name);
38 #ifdef PROTO_R_SETANSWER
39 int n = 0;
41 if (pe == NULL || (n = copy_protoent(pe, pptr, PROTO_R_COPY)) != 0)
42 *answerp = NULL;
43 else
44 *answerp = pptr;
46 return (n);
47 #else
48 if (pe == NULL)
49 return (PROTO_R_BAD);
51 return (copy_protoent(pe, pptr, PROTO_R_COPY));
52 #endif
55 PROTO_R_RETURN
56 getprotobynumber_r(int proto, struct protoent *pptr, PROTO_R_ARGS) {
57 struct protoent *pe = getprotobynumber(proto);
58 #ifdef PROTO_R_SETANSWER
59 int n = 0;
61 if (pe == NULL || (n = copy_protoent(pe, pptr, PROTO_R_COPY)) != 0)
62 *answerp = NULL;
63 else
64 *answerp = pptr;
66 return (n);
67 #else
68 if (pe == NULL)
69 return (PROTO_R_BAD);
71 return (copy_protoent(pe, pptr, PROTO_R_COPY));
72 #endif
75 /*%
76 * These assume a single context is in operation per thread.
77 * If this is not the case we will need to call irs directly
78 * rather than through the base functions.
81 PROTO_R_RETURN
82 getprotoent_r(struct protoent *pptr, PROTO_R_ARGS) {
83 struct protoent *pe = getprotoent();
84 #ifdef PROTO_R_SETANSWER
85 int n = 0;
87 if (pe == NULL || (n = copy_protoent(pe, pptr, PROTO_R_COPY)) != 0)
88 *answerp = NULL;
89 else
90 *answerp = pptr;
92 return (n);
93 #else
94 if (pe == NULL)
95 return (PROTO_R_BAD);
97 return (copy_protoent(pe, pptr, PROTO_R_COPY));
98 #endif
101 PROTO_R_SET_RETURN
102 #ifdef PROTO_R_ENT_ARGS
103 setprotoent_r(int stay_open, PROTO_R_ENT_ARGS)
104 #else
105 setprotoent_r(int stay_open)
106 #endif
108 #ifdef PROTO_R_ENT_UNUSED
109 PROTO_R_ENT_UNUSED;
110 #endif
111 setprotoent(stay_open);
112 #ifdef PROTO_R_SET_RESULT
113 return (PROTO_R_SET_RESULT);
114 #endif
117 PROTO_R_END_RETURN
118 #ifdef PROTO_R_ENT_ARGS
119 endprotoent_r(PROTO_R_ENT_ARGS)
120 #else
121 endprotoent_r()
122 #endif
124 #ifdef PROTO_R_ENT_UNUSED
125 PROTO_R_ENT_UNUSED;
126 #endif
127 endprotoent();
128 PROTO_R_END_RESULT(PROTO_R_OK);
131 /* Private */
133 #ifndef PROTOENT_DATA
134 static PROTO_R_RETURN
135 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) {
136 char *cp;
137 int i, n;
138 int numptr, len;
140 /* Find out the amount of space required to store the answer. */
141 numptr = 1; /*%< NULL ptr */
142 len = (char *)ALIGN(buf) - buf;
143 for (i = 0; pe->p_aliases[i]; i++, numptr++) {
144 len += strlen(pe->p_aliases[i]) + 1;
146 len += strlen(pe->p_name) + 1;
147 len += numptr * sizeof(char*);
149 if (len > (int)buflen) {
150 errno = ERANGE;
151 return (PROTO_R_BAD);
154 /* copy protocol value*/
155 pptr->p_proto = pe->p_proto;
157 cp = (char *)ALIGN(buf) + numptr * sizeof(char *);
159 /* copy official name */
160 n = strlen(pe->p_name) + 1;
161 strcpy(cp, pe->p_name);
162 pptr->p_name = cp;
163 cp += n;
165 /* copy aliases */
166 pptr->p_aliases = (char **)ALIGN(buf);
167 for (i = 0 ; pe->p_aliases[i]; i++) {
168 n = strlen(pe->p_aliases[i]) + 1;
169 strcpy(cp, pe->p_aliases[i]);
170 pptr->p_aliases[i] = cp;
171 cp += n;
173 pptr->p_aliases[i] = NULL;
175 return (PROTO_R_OK);
177 #else /* !PROTOENT_DATA */
178 static int
179 copy_protoent(struct protoent *pe, struct protoent *pptr, PROTO_R_COPY_ARGS) {
180 char *cp, *eob;
181 int i, n;
183 /* copy protocol value */
184 pptr->p_proto = pe->p_proto;
186 /* copy official name */
187 cp = pdptr->line;
188 eob = pdptr->line + sizeof(pdptr->line);
189 if ((n = strlen(pe->p_name) + 1) < (eob - cp)) {
190 strcpy(cp, pe->p_name);
191 pptr->p_name = cp;
192 cp += n;
193 } else {
194 return (-1);
197 /* copy aliases */
198 i = 0;
199 pptr->p_aliases = pdptr->proto_aliases;
200 while (pe->p_aliases[i] && i < (_MAXALIASES-1)) {
201 if ((n = strlen(pe->p_aliases[i]) + 1) < (eob - cp)) {
202 strcpy(cp, pe->p_aliases[i]);
203 pptr->p_aliases[i] = cp;
204 cp += n;
205 } else {
206 break;
208 i++;
210 pptr->p_aliases[i] = NULL;
212 return (PROTO_R_OK);
214 #endif /* PROTOENT_DATA */
215 #else /* PROTO_R_RETURN */
216 static int getprotoent_r_unknown_system = 0;
217 #endif /* PROTO_R_RETURN */
218 #endif /* !defined(DO_PTHREADS) */
219 /*! \file */