Add nsswitch support.
[dragonfly.git] / lib / libc / net / getnetbyht.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. 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  * @(#)getnetent.c      8.1 (Berkeley) 6/4/93
30  * $FreeBSD: src/lib/libc/net/getnetbyht.c,v 1.7.2.1 2002/07/07 11:34:42 robert Exp $
31  * $DragonFly: src/lib/libc/net/getnetbyht.c,v 1.5 2005/11/13 02:04:47 swildner Exp $
32  */
33
34 /* Portions Copyright (c) 1993 Carlos Leandro and Rui Salgueiro
35  *      Dep. Matematica Universidade de Coimbra, Portugal, Europe
36  *
37  * Permission to use, copy, modify, and distribute this software for any
38  * purpose with or without fee is hereby granted, provided that the above
39  * copyright notice and this permission notice appear in all copies.
40  *
41  * from getnetent.c     1.1 (Coimbra) 93/06/02
42  */
43
44 #include <sys/types.h>
45 #include <sys/socket.h>
46 #include <netinet/in.h>
47 #include <arpa/inet.h>
48 #include <arpa/nameser.h>
49 #include <netdb.h>
50 #include <stdio.h>
51 #include <string.h>
52 #include <stdarg.h>
53 #include <nsswitch.h>
54
55 #define MAXALIASES      35
56
57 static FILE *netf;
58 static char line[BUFSIZ+1];
59 static struct netent net;
60 static char *net_aliases[MAXALIASES];
61 static int _net_stayopen;
62
63 void
64 _setnethtent(int f)
65 {
66
67         if (netf == NULL)
68                 netf = fopen(_PATH_NETWORKS, "r" );
69         else
70                 rewind(netf);
71         _net_stayopen |= f;
72 }
73
74 void
75 _endnethtent(void)
76 {
77
78         if (netf) {
79                 fclose(netf);
80                 netf = NULL;
81         }
82         _net_stayopen = 0;
83 }
84
85 struct netent *
86 getnetent(void)
87 {
88         char *p;
89         char *cp, **q;
90
91         if (netf == NULL && (netf = fopen(_PATH_NETWORKS, "r" )) == NULL)
92                 return (NULL);
93 again:
94         p = fgets(line, sizeof line, netf);
95         if (p == NULL)
96                 return (NULL);
97         if (*p == '#')
98                 goto again;
99         cp = strpbrk(p, "#\n");
100         if (cp == NULL)
101                 goto again;
102         *cp = '\0';
103         net.n_name = p;
104         cp = strpbrk(p, " \t");
105         if (cp == NULL)
106                 goto again;
107         *cp++ = '\0';
108         while (*cp == ' ' || *cp == '\t')
109                 cp++;
110         p = strpbrk(cp, " \t");
111         if (p != NULL)
112                 *p++ = '\0';
113         net.n_net = inet_network(cp);
114         net.n_addrtype = AF_INET;
115         q = net.n_aliases = net_aliases;
116         if (p != NULL) 
117                 cp = p;
118         while (cp && *cp) {
119                 if (*cp == ' ' || *cp == '\t') {
120                         cp++;
121                         continue;
122                 }
123                 if (q < &net_aliases[MAXALIASES - 1])
124                         *q++ = cp;
125                 cp = strpbrk(cp, " \t");
126                 if (cp != NULL)
127                         *cp++ = '\0';
128         }
129         *q = NULL;
130         return (&net);
131 }
132
133 int
134 _ht_getnetbyname(void *rval, void *cb_data, va_list ap)
135 {
136         const char *name;
137         struct netent *p;
138         char **cp;
139
140         name = va_arg(ap, const char *);
141
142         setnetent(_net_stayopen);
143         while ( (p = getnetent()) ) {
144                 if (strcasecmp(p->n_name, name) == 0)
145                         break;
146                 for (cp = p->n_aliases; *cp != 0; cp++)
147                         if (strcasecmp(*cp, name) == 0)
148                                 goto found;
149         }
150 found:
151         if (!_net_stayopen)
152                 endnetent();
153         *(struct netent **)rval = p;
154         return (p != NULL) ? NS_SUCCESS : NS_NOTFOUND;
155 }
156
157 int
158 _ht_getnetbyaddr(void *rval, void *cb_data, va_list ap)
159 {
160         unsigned long net;
161         int type;
162         struct netent *p;
163
164         net = va_arg(ap, unsigned long);
165         type = va_arg(ap, int);
166
167         setnetent(_net_stayopen);
168         while ( (p = getnetent()) )
169                 if (p->n_addrtype == type && p->n_net == net)
170                         break;
171         if (!_net_stayopen)
172                 endnetent();
173         *(struct netent **)rval = p;
174         return (p != NULL) ? NS_SUCCESS : NS_NOTFOUND;
175 }