OSDN Git Service

2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
[pf3gnuchains/pf3gnuchains4x.git] / newlib / libc / sys / linux / net / getservent.c
1 /*
2  * Copyright (c) 1983, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid[] = "@(#)getservent.c        8.1 (Berkeley) 6/4/93";
36 #endif /* LIBC_SCCS and not lint */
37 #include <sys/cdefs.h>
38 #include <sys/types.h>
39 #include <machine/endian.h>
40
41 #include <sys/types.h>
42 #include <sys/socket.h>
43 #include <arpa/inet.h>
44 #include <netdb.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <stdlib.h>
48 #ifdef YP
49 #include <rpc/rpc.h>
50 #include <rpcsvc/yp_prot.h>
51 #include <rpcsvc/ypclnt.h>
52 static int serv_stepping_yp = 0;
53 extern int _yp_check( char ** );
54 #endif
55
56
57 #define MAXALIASES      35
58
59 static FILE *servf = NULL;
60 static char line[BUFSIZ+1];
61 static struct servent serv;
62 static char *serv_aliases[MAXALIASES];
63 int _serv_stayopen;
64
65 #ifdef YP
66 char *___getservbyname_yp = NULL;
67 char *___getservbyproto_yp = NULL;
68 int ___getservbyport_yp = 0;
69 static char *yp_domain = NULL;
70
71 static int
72 _getservbyport_yp(line)
73         char *line;
74 {
75         char *result;
76         int resultlen;
77         char buf[YPMAXRECORD + 2];
78         int rv;
79
80         snprintf(buf, sizeof(buf), "%d/%s", ntohs(___getservbyport_yp),
81                                                 ___getservbyproto_yp);
82
83         ___getservbyport_yp = 0;
84         ___getservbyproto_yp = NULL;
85
86         if(!yp_domain) {
87                 if(yp_get_default_domain(&yp_domain))
88                         return (0);
89         }
90
91         /*
92          * We have to be a little flexible here. Ideally you're supposed
93          * to have both a services.byname and a services.byport map, but
94          * some systems have only services.byname. FreeBSD cheats a little
95          * by putting the services.byport information in the same map as
96          * services.byname so that either case will work. We allow for both
97          * possibilities here: if there is no services.byport map, we try
98          * services.byname instead.
99          */
100         if ((rv = yp_match(yp_domain, "services.byport", buf, strlen(buf),
101                                                 &result, &resultlen))) {
102                 if (rv == YPERR_MAP) {
103                         if (yp_match(yp_domain, "services.byname", buf,
104                                         strlen(buf), &result, &resultlen))
105                         return(0);
106                 } else
107                         return(0);
108         }
109                 
110         /* getservent() expects lines terminated with \n -- make it happy */
111         snprintf(line, BUFSIZ, "%.*s\n", resultlen, result);
112
113         free(result);
114         return(1);
115 }
116
117 static int
118 _getservbyname_yp(line)
119         char *line;
120 {
121         char *result;
122         int resultlen;
123         char buf[YPMAXRECORD + 2];
124
125         if(!yp_domain) {
126                 if(yp_get_default_domain(&yp_domain))
127                         return (0);
128         }
129
130         snprintf(buf, sizeof(buf), "%s/%s", ___getservbyname_yp,
131                                                 ___getservbyproto_yp);
132
133         ___getservbyname_yp = 0;
134         ___getservbyproto_yp = NULL;
135
136         if (yp_match(yp_domain, "services.byname", buf, strlen(buf),
137                                                 &result, &resultlen)) {
138                 return(0);
139         }
140                 
141         /* getservent() expects lines terminated with \n -- make it happy */
142         snprintf(line, BUFSIZ, "%.*s\n", resultlen, result);
143
144         free(result);
145         return(1);
146 }
147
148 static int
149 _getservent_yp(line)
150         char *line;
151 {
152         static char *key = NULL;
153         static int keylen;
154         char *lastkey, *result;
155         int resultlen;
156         int rv;
157
158         if(!yp_domain) {
159                 if(yp_get_default_domain(&yp_domain))
160                         return (0);
161         }
162
163         if (!serv_stepping_yp) {
164                 if (key)
165                         free(key);
166                 if ((rv = yp_first(yp_domain, "services.byname", &key, &keylen,
167                              &result, &resultlen))) {
168                         serv_stepping_yp = 0;
169                         return(0);
170                 }
171                 serv_stepping_yp = 1;
172         } else {
173                 lastkey = key;
174                 rv = yp_next(yp_domain, "services.byname", key, keylen, &key,
175                              &keylen, &result, &resultlen);
176                 free(lastkey);
177                 if (rv) {
178                         serv_stepping_yp = 0;
179                         return (0);
180                 }
181         }
182
183         /* getservent() expects lines terminated with \n -- make it happy */
184         snprintf(line, BUFSIZ, "%.*s\n", resultlen, result);
185
186         free(result);
187
188         return(1);
189 }
190 #endif
191
192 void
193 setservent(f)
194         int f;
195 {
196         if (servf == NULL)
197                 servf = fopen(_PATH_SERVICES, "r" );
198         else
199                 rewind(servf);
200         _serv_stayopen |= f;
201 }
202
203 void
204 endservent()
205 {
206         if (servf) {
207                 fclose(servf);
208                 servf = NULL;
209         }
210         _serv_stayopen = 0;
211 }
212
213 struct servent *
214 getservent()
215 {
216         char *p;
217         char *cp, **q;
218
219 #ifdef YP
220         if (serv_stepping_yp && _getservent_yp(line)) {
221                 p = (char *)&line;
222                 goto unpack;
223         }
224 tryagain:
225 #endif
226         if (servf == NULL && (servf = fopen(_PATH_SERVICES, "r" )) == NULL)
227                 return (NULL);
228 again:
229         if ((p = fgets(line, BUFSIZ, servf)) == NULL)
230                 return (NULL);
231 #ifdef YP
232         if (*p == '+' && _yp_check(NULL)) {
233                 if (___getservbyname_yp != NULL) {
234                         if (!_getservbyname_yp(line))
235                                 goto tryagain;
236                 } 
237                 else if (___getservbyport_yp != 0) {
238                         if (!_getservbyport_yp(line))
239                                 goto tryagain;
240                 }
241                 else if (!_getservent_yp(line))
242                         goto tryagain;
243         }
244 unpack:
245 #endif
246         if (*p == '#')
247                 goto again;
248         cp = strpbrk(p, "#\n");
249         if (cp == NULL)
250                 goto again;
251         *cp = '\0';
252         serv.s_name = p;
253         p = strpbrk(p, " \t");
254         if (p == NULL)
255                 goto again;
256         *p++ = '\0';
257         while (*p == ' ' || *p == '\t')
258                 p++;
259         cp = strpbrk(p, ",/");
260         if (cp == NULL)
261                 goto again;
262         *cp++ = '\0';
263         serv.s_port = htons((u_short)atoi(p));
264         serv.s_proto = cp;
265         q = serv.s_aliases = serv_aliases;
266         cp = strpbrk(cp, " \t");
267         if (cp != NULL)
268                 *cp++ = '\0';
269         while (cp && *cp) {
270                 if (*cp == ' ' || *cp == '\t') {
271                         cp++;
272                         continue;
273                 }
274                 if (q < &serv_aliases[MAXALIASES - 1])
275                         *q++ = cp;
276                 cp = strpbrk(cp, " \t");
277                 if (cp != NULL)
278                         *cp++ = '\0';
279         }
280         *q = NULL;
281         return (&serv);
282 }