source: rtems/cpukit/libnetworking/libc/getnetbyht.c @ b2b143f4

4.104.114.84.95
Last change on this file since b2b143f4 was b2b143f4, checked in by Joel Sherrill <joel.sherrill@…>, on 03/05/04 at 17:58:51

2004-03-05 Joel Sherrill <joel@…>

  • libblock/src/bdbuf.c, libblock/src/ramdisk.c, libcsupport/src/newlibc.c, libcsupport/src/sync.c, libmisc/cpuuse/cpuuse.c, libmisc/monitor/mon-symbols.c, libmisc/shell/cmds.c, libmisc/shell/shell.c, libnetworking/kern/kern_sysctl.c, libnetworking/lib/ftpfs.c, libnetworking/lib/tftpDriver.c, libnetworking/libc/gethostbydns.c, libnetworking/libc/gethostbyht.c, libnetworking/libc/gethostnamadr.c, libnetworking/libc/getnetbyht.c, libnetworking/libc/getnetnamadr.c, libnetworking/libc/inet_addr.c, libnetworking/libc/linkaddr.c, libnetworking/libc/map_v4v6.c, libnetworking/libc/ns_print.c, libnetworking/libc/ns_ttl.c, libnetworking/libc/nsap_addr.c, libnetworking/libc/rcmd.c, libnetworking/libc/res_debug.c, libnetworking/libc/res_mkupdate.c, libnetworking/libc/res_query.c, libnetworking/libc/res_send.c, libnetworking/libc/res_update.c, libnetworking/net/radix.c, libnetworking/rtems/mkrootfs.c, librpc/src/rpc/clnt_perror.c, librpc/src/rpc/rtems_rpc.c, librpc/src/rpc/svc.c, sapi/include/confdefs.h, score/macros/rtems/score/chain.inl, score/src/objectidtoname.c:
  • Property mode set to 100644
File size: 4.6 KB
Line 
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/* 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#if defined(LIBC_SCCS) && !defined(lint)
45static char sccsid[] = "@(#)getnetent.c 8.1 (Berkeley) 6/4/93";
46static char orig_rcsid[] = "From: Id: getnetent.c,v 8.4 1997/06/01 20:34:37 vixie Exp";
47static chat rcsid[] = "$Id$";
48#endif /* LIBC_SCCS and not lint */
49
50/* Since we compile with strict ANSI we need to undef it to get
51 * prototypes for extensions
52 */
53#undef __STRICT_ANSI__
54
55#include <sys/types.h>
56#include <sys/socket.h>
57#include <netinet/in.h>
58#include <arpa/inet.h>
59#include <arpa/nameser.h>
60#include <netdb.h>
61#include <stdio.h>
62#include <string.h>
63
64#define MAXALIASES      35
65
66static FILE *netf;
67static char line[BUFSIZ+1];
68static struct netent net;
69static char *net_aliases[MAXALIASES];
70static int _net_stayopen;
71
72void
73_setnethtent(f)
74        int f;
75{
76
77        if (netf == NULL)
78                netf = fopen(_PATH_NETWORKS, "r" );
79        else
80                rewind(netf);
81        _net_stayopen |= f;
82}
83
84void
85_endnethtent()
86{
87
88        if (netf) {
89                fclose(netf);
90                netf = NULL;
91        }
92        _net_stayopen = 0;
93}
94
95struct netent *
96getnetent()
97{
98        char *p;
99        register char *cp, **q;
100
101        if (netf == NULL && (netf = fopen(_PATH_NETWORKS, "r" )) == NULL)
102                return (NULL);
103again:
104        p = fgets(line, sizeof line, netf);
105        if (p == NULL)
106                return (NULL);
107        if (*p == '#')
108                goto again;
109        cp = strpbrk(p, "#\n");
110        if (cp == NULL)
111                goto again;
112        *cp = '\0';
113        net.n_name = p;
114        cp = strpbrk(p, " \t");
115        if (cp == NULL)
116                goto again;
117        *cp++ = '\0';
118        while (*cp == ' ' || *cp == '\t')
119                cp++;
120        p = strpbrk(cp, " \t");
121        if (p != NULL)
122                *p++ = '\0';
123        net.n_net = inet_network(cp);
124        net.n_addrtype = AF_INET;
125        q = net.n_aliases = net_aliases;
126        if (p != NULL)
127                cp = p;
128        while (cp && *cp) {
129                if (*cp == ' ' || *cp == '\t') {
130                        cp++;
131                        continue;
132                }
133                if (q < &net_aliases[MAXALIASES - 1])
134                        *q++ = cp;
135                cp = strpbrk(cp, " \t");
136                if (cp != NULL)
137                        *cp++ = '\0';
138        }
139        *q = NULL;
140        return (&net);
141}
142
143struct netent *
144_getnetbyhtname(name)
145        register const char *name;
146{
147        register struct netent *p;
148        register char **cp;
149
150        setnetent(_net_stayopen);
151        while ( (p = getnetent()) ) {
152                if (strcasecmp(p->n_name, name) == 0)
153                        break;
154                for (cp = p->n_aliases; *cp != 0; cp++)
155                        if (strcasecmp(*cp, name) == 0)
156                                goto found;
157        }
158found:
159        if (!_net_stayopen)
160                endnetent();
161        return (p);
162}
163
164struct netent *
165_getnetbyhtaddr(net, type)
166        register unsigned long net;
167        register int type;
168{
169        register struct netent *p;
170
171        setnetent(_net_stayopen);
172        while ( (p = getnetent()) )
173                if (p->n_addrtype == type && p->n_net == net)
174                        break;
175        if (!_net_stayopen)
176                endnetent();
177        return (p);
178}
Note: See TracBrowser for help on using the repository browser.