xref: /dflybsd-src/lib/libc/net/getprotoent.c (revision c9fbf0d3b1d54097180190816f8fa4f5d415b174)
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. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * @(#)getprotoent.c	8.1 (Berkeley) 6/4/93
30  * $DragonFly: src/lib/libc/net/getprotoent.c,v 1.4 2005/09/19 09:34:53 asmodai Exp $
31  */
32 
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <netdb.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 
40 #define	MAXALIASES	35
41 
42 static FILE *protof = NULL;
43 static char line[BUFSIZ+1];
44 static struct protoent proto;
45 static char *proto_aliases[MAXALIASES];
46 int _proto_stayopen;
47 
48 void
49 setprotoent(f)
50 	int f;
51 {
52 	if (protof == NULL)
53 		protof = fopen(_PATH_PROTOCOLS, "r" );
54 	else
55 		rewind(protof);
56 	_proto_stayopen |= f;
57 }
58 
59 void
60 endprotoent()
61 {
62 	if (protof) {
63 		fclose(protof);
64 		protof = NULL;
65 	}
66 	_proto_stayopen = 0;
67 }
68 
69 struct protoent *
70 getprotoent()
71 {
72 	char *p;
73 	char *cp, **q;
74 
75 	if (protof == NULL && (protof = fopen(_PATH_PROTOCOLS, "r" )) == NULL)
76 		return (NULL);
77 again:
78 	if ((p = fgets(line, BUFSIZ, protof)) == NULL)
79 		return (NULL);
80 	if (*p == '#')
81 		goto again;
82 	cp = strpbrk(p, "#\n");
83 	if (cp == NULL)
84 		goto again;
85 	*cp = '\0';
86 	proto.p_name = p;
87 	cp = strpbrk(p, " \t");
88 	if (cp == NULL)
89 		goto again;
90 	*cp++ = '\0';
91 	while (*cp == ' ' || *cp == '\t')
92 		cp++;
93 	p = strpbrk(cp, " \t");
94 	if (p != NULL)
95 		*p++ = '\0';
96 	proto.p_proto = atoi(cp);
97 	q = proto.p_aliases = proto_aliases;
98 	if (p != NULL) {
99 		cp = p;
100 		while (cp && *cp) {
101 			if (*cp == ' ' || *cp == '\t') {
102 				cp++;
103 				continue;
104 			}
105 			if (q < &proto_aliases[MAXALIASES - 1])
106 				*q++ = cp;
107 			cp = strpbrk(cp, " \t");
108 			if (cp != NULL)
109 				*cp++ = '\0';
110 		}
111 	}
112 	*q = NULL;
113 	return (&proto);
114 }
115