]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - lib/libc/rpc/getnetconfig.c
MFC r320494: Fix double free by reverting r300385 and r300624 which was
[FreeBSD/stable/9.git] / lib / libc / rpc / getnetconfig.c
1 /*      $NetBSD: getnetconfig.c,v 1.3 2000/07/06 03:10:34 christos Exp $        */
2
3 /*-
4  * Copyright (c) 2009, Sun Microsystems, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without 
8  * modification, are permitted provided that the following conditions are met:
9  * - Redistributions of source code must retain the above copyright notice, 
10  *   this list of conditions and the following disclaimer.
11  * - Redistributions in binary form must reproduce the above copyright notice, 
12  *   this list of conditions and the following disclaimer in the documentation 
13  *   and/or other materials provided with the distribution.
14  * - Neither the name of Sun Microsystems, Inc. nor the names of its 
15  *   contributors may be used to endorse or promote products derived 
16  *   from this software without specific prior written permission.
17  * 
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #if defined(LIBC_SCCS) && !defined(lint)
32 static char sccsid[] = "@(#)getnetconfig.c      1.12 91/12/19 SMI";
33 #endif
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 /*
38  * Copyright (c) 1989 by Sun Microsystems, Inc.
39  */
40
41 #include "namespace.h"
42 #include "reentrant.h"
43 #include <stdio.h>
44 #include <errno.h>
45 #include <netconfig.h>
46 #include <stddef.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <rpc/rpc.h>
50 #include <unistd.h>
51 #include "un-namespace.h"
52 #include "rpc_com.h"
53
54 /*
55  * The five library routines in this file provide application access to the
56  * system network configuration database, /etc/netconfig.  In addition to the
57  * netconfig database and the routines for accessing it, the environment
58  * variable NETPATH and its corresponding routines in getnetpath.c may also be
59  * used to specify the network transport to be used.
60  */
61
62
63 /*
64  * netconfig errors
65  */
66
67 #define NC_NONETCONFIG  ENOENT
68 #define NC_NOMEM        ENOMEM
69 #define NC_NOTINIT      EINVAL      /* setnetconfig was not called first */
70 #define NC_BADFILE      EBADF       /* format for netconfig file is bad */
71 #define NC_NOTFOUND     ENOPROTOOPT /* specified netid was not found */
72
73 /*
74  * semantics as strings (should be in netconfig.h)
75  */
76 #define NC_TPI_CLTS_S       "tpi_clts"
77 #define NC_TPI_COTS_S       "tpi_cots"
78 #define NC_TPI_COTS_ORD_S   "tpi_cots_ord"
79 #define NC_TPI_RAW_S        "tpi_raw"
80
81 /*
82  * flags as characters (also should be in netconfig.h)
83  */
84 #define NC_NOFLAG_C     '-'
85 #define NC_VISIBLE_C    'v'
86 #define NC_BROADCAST_C  'b'
87
88 /*
89  * Character used to indicate there is no name-to-address lookup library
90  */
91 #define NC_NOLOOKUP     "-"
92
93 static const char * const _nc_errors[] = {
94     "Netconfig database not found",
95     "Not enough memory",
96     "Not initialized",
97     "Netconfig database has invalid format",
98     "Netid not found in netconfig database"
99 };
100
101 struct netconfig_info {
102     int         eof;    /* all entries has been read */
103     int         ref;    /* # of times setnetconfig() has been called */
104     struct netconfig_list       *head;  /* head of the list */
105     struct netconfig_list       *tail;  /* last of the list */
106 };
107
108 struct netconfig_list {
109     char                        *linep; /* hold line read from netconfig */
110     struct netconfig            *ncp;
111     struct netconfig_list       *next;
112 };
113
114 struct netconfig_vars {
115     int   valid;        /* token that indicates a valid netconfig_vars */
116     int   flag;         /* first time flag */
117     struct netconfig_list *nc_configs;  /* pointer to the current netconfig entry */
118 };
119
120 #define NC_VALID        0xfeed
121 #define NC_STORAGE      0xf00d
122 #define NC_INVALID      0
123
124
125 static int *__nc_error(void);
126 static int parse_ncp(char *, struct netconfig *);
127 static struct netconfig *dup_ncp(struct netconfig *);
128
129
130 static FILE *nc_file;           /* for netconfig db */
131 static mutex_t nc_file_lock = MUTEX_INITIALIZER;
132
133 static struct netconfig_info    ni = { 0, 0, NULL, NULL};
134 static mutex_t ni_lock = MUTEX_INITIALIZER;
135
136 static thread_key_t nc_key;
137 static once_t nc_once = ONCE_INITIALIZER;
138 static int nc_key_error;
139
140 static void
141 nc_key_init(void)
142 {
143
144         nc_key_error = thr_keycreate(&nc_key, free);
145 }
146
147 #define MAXNETCONFIGLINE    1000
148
149 static int *
150 __nc_error()
151 {
152         static int nc_error = 0;
153         int *nc_addr;
154
155         /*
156          * Use the static `nc_error' if we are the main thread
157          * (including non-threaded programs), or if an allocation
158          * fails.
159          */
160         if (thr_main())
161                 return (&nc_error);
162         if (thr_once(&nc_once, nc_key_init) != 0 || nc_key_error != 0)
163                 return (&nc_error);
164         if ((nc_addr = (int *)thr_getspecific(nc_key)) == NULL) {
165                 nc_addr = (int *)malloc(sizeof (int));
166                 if (thr_setspecific(nc_key, (void *) nc_addr) != 0) {
167                         free(nc_addr);
168                         return (&nc_error);
169                 }
170                 *nc_addr = 0;
171         }
172         return (nc_addr);
173 }
174
175 #define nc_error        (*(__nc_error()))
176 /*
177  * A call to setnetconfig() establishes a /etc/netconfig "session".  A session
178  * "handle" is returned on a successful call.  At the start of a session (after
179  * a call to setnetconfig()) searches through the /etc/netconfig database will
180  * proceed from the start of the file.  The session handle must be passed to
181  * getnetconfig() to parse the file.  Each call to getnetconfig() using the
182  * current handle will process one subsequent entry in /etc/netconfig.
183  * setnetconfig() must be called before the first call to getnetconfig().
184  * (Handles are used to allow for nested calls to setnetpath()).
185  *
186  * A new session is established with each call to setnetconfig(), with a new
187  * handle being returned on each call.  Previously established sessions remain
188  * active until endnetconfig() is called with that session's handle as an
189  * argument.
190  *
191  * setnetconfig() need *not* be called before a call to getnetconfigent().
192  * setnetconfig() returns a NULL pointer on failure (for example, if
193  * the netconfig database is not present).
194  */
195 void *
196 setnetconfig()
197 {
198     struct netconfig_vars *nc_vars;
199
200     if ((nc_vars = (struct netconfig_vars *)malloc(sizeof
201                 (struct netconfig_vars))) == NULL) {
202         return(NULL);
203     }
204
205     /*
206      * For multiple calls, i.e. nc_file is not NULL, we just return the
207      * handle without reopening the netconfig db.
208      */
209     mutex_lock(&ni_lock);
210     ni.ref++;
211     mutex_unlock(&ni_lock);
212
213     mutex_lock(&nc_file_lock);
214     if ((nc_file != NULL) || (nc_file = fopen(NETCONFIG, "r")) != NULL) {
215         nc_vars->valid = NC_VALID;
216         nc_vars->flag = 0;
217         nc_vars->nc_configs = ni.head;
218         mutex_unlock(&nc_file_lock);
219         return ((void *)nc_vars);
220     }
221     mutex_unlock(&nc_file_lock);
222
223     mutex_lock(&ni_lock);
224     ni.ref--;
225     mutex_unlock(&ni_lock);
226
227     nc_error = NC_NONETCONFIG;
228     free(nc_vars);
229     return (NULL);
230 }
231
232
233 /*
234  * When first called, getnetconfig() returns a pointer to the first entry in
235  * the netconfig database, formatted as a struct netconfig.  On each subsequent
236  * call, getnetconfig() returns a pointer to the next entry in the database.
237  * getnetconfig() can thus be used to search the entire netconfig file.
238  * getnetconfig() returns NULL at end of file.
239  */
240
241 struct netconfig *
242 getnetconfig(handlep)
243 void *handlep;
244 {
245     struct netconfig_vars *ncp = (struct netconfig_vars *)handlep;
246     char *stringp;              /* tmp string pointer */
247     struct netconfig_list       *list;
248     struct netconfig *np;
249     struct netconfig *result;
250
251     /*
252      * Verify that handle is valid
253      */
254     mutex_lock(&nc_file_lock);
255     if (ncp == NULL || nc_file == NULL) {
256         nc_error = NC_NOTINIT;
257         mutex_unlock(&nc_file_lock);
258         return (NULL);
259     }
260     mutex_unlock(&nc_file_lock);
261
262     switch (ncp->valid) {
263     case NC_VALID:
264         /*
265          * If entry has already been read into the list,
266          * we return the entry in the linked list.
267          * If this is the first time call, check if there are any entries in
268          * linked list.  If no entries, we need to read the netconfig db.
269          * If we have been here and the next entry is there, we just return
270          * it.
271          */
272         if (ncp->flag == 0) {   /* first time */
273             ncp->flag = 1;
274             mutex_lock(&ni_lock);
275             ncp->nc_configs = ni.head;
276             mutex_unlock(&ni_lock);
277             if (ncp->nc_configs != NULL)        /* entry already exist */
278                 return(ncp->nc_configs->ncp);
279         }
280         else if (ncp->nc_configs != NULL && ncp->nc_configs->next != NULL) {
281             ncp->nc_configs = ncp->nc_configs->next;
282             return(ncp->nc_configs->ncp);
283         }
284
285         /*
286          * If we cannot find the entry in the list and is end of file,
287          * we give up.
288          */
289         mutex_lock(&ni_lock);
290         if (ni.eof == 1) {
291                 mutex_unlock(&ni_lock);
292                 return(NULL);
293         }
294         mutex_unlock(&ni_lock);
295
296         break;
297     default:
298         nc_error = NC_NOTINIT;
299         return (NULL);
300     }
301
302     stringp = (char *) malloc(MAXNETCONFIGLINE);
303     if (stringp == NULL)
304         return (NULL);
305
306 #ifdef MEM_CHK
307     if (malloc_verify() == 0) {
308         fprintf(stderr, "memory heap corrupted in getnetconfig\n");
309         exit(1);
310     }
311 #endif
312
313     /*
314      * Read a line from netconfig file.
315      */
316     mutex_lock(&nc_file_lock);
317     do {
318         if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
319             free(stringp);
320             mutex_lock(&ni_lock);
321             ni.eof = 1;
322             mutex_unlock(&ni_lock);
323             mutex_unlock(&nc_file_lock);
324             return (NULL);
325         }
326     } while (*stringp == '#');
327     mutex_unlock(&nc_file_lock);
328
329     list = (struct netconfig_list *) malloc(sizeof (struct netconfig_list));
330     if (list == NULL) {
331         free(stringp);
332         return(NULL);
333     }
334     np = (struct netconfig *) malloc(sizeof (struct netconfig));
335     if (np == NULL) {
336         free(stringp);
337         free(list);
338         return(NULL);
339     }
340     list->ncp = np;
341     list->next = NULL;
342     list->ncp->nc_lookups = NULL;
343     list->linep = stringp;
344     if (parse_ncp(stringp, list->ncp) == -1) {
345         free(stringp);
346         free(np);
347         free(list);
348         return (NULL);
349     }
350     else {
351         /*
352          * If this is the first entry that's been read, it is the head of
353          * the list.  If not, put the entry at the end of the list.
354          * Reposition the current pointer of the handle to the last entry
355          * in the list.
356          */
357         mutex_lock(&ni_lock);
358         if (ni.head == NULL) {  /* first entry */
359             ni.head = ni.tail = list;
360         }
361         else {
362             ni.tail->next = list;
363             ni.tail = ni.tail->next;
364         }
365         ncp->nc_configs = ni.tail;
366         result = ni.tail->ncp;
367         mutex_unlock(&ni_lock);
368         return(result);
369     }
370 }
371
372 /*
373  * endnetconfig() may be called to "unbind" or "close" the netconfig database
374  * when processing is complete, releasing resources for reuse.  endnetconfig()
375  * may not be called before setnetconfig().  endnetconfig() returns 0 on
376  * success and -1 on failure (for example, if setnetconfig() was not called
377  * previously).
378  */
379 int
380 endnetconfig(handlep)
381 void *handlep;
382 {
383     struct netconfig_vars *nc_handlep = (struct netconfig_vars *)handlep;
384
385     struct netconfig_list *q, *p;
386
387     /*
388      * Verify that handle is valid
389      */
390     if (nc_handlep == NULL || (nc_handlep->valid != NC_VALID &&
391             nc_handlep->valid != NC_STORAGE)) {
392         nc_error = NC_NOTINIT;
393         return (-1);
394     }
395
396     /*
397      * Return 0 if anyone still needs it.
398      */
399     nc_handlep->valid = NC_INVALID;
400     nc_handlep->flag = 0;
401     nc_handlep->nc_configs = NULL;
402     mutex_lock(&ni_lock);
403     if (--ni.ref > 0) {
404         mutex_unlock(&ni_lock);
405         free(nc_handlep);
406         return(0);
407     }
408
409     /*
410      * Noone needs these entries anymore, then frees them.
411      * Make sure all info in netconfig_info structure has been reinitialized.
412      */
413     q = ni.head;
414     ni.eof = ni.ref = 0;
415     ni.head = NULL;
416     ni.tail = NULL;
417     mutex_unlock(&ni_lock);
418
419     while (q != NULL) {
420         p = q->next;
421         free(q->ncp->nc_lookups);
422         free(q->ncp);
423         free(q->linep);
424         free(q);
425         q = p;
426     }
427     free(nc_handlep);
428
429     mutex_lock(&nc_file_lock);
430     fclose(nc_file);
431     nc_file = NULL;
432     mutex_unlock(&nc_file_lock);
433
434     return (0);
435 }
436
437 /*
438  * getnetconfigent(netid) returns a pointer to the struct netconfig structure
439  * corresponding to netid.  It returns NULL if netid is invalid (that is, does
440  * not name an entry in the netconfig database).  It returns NULL and sets
441  * errno in case of failure (for example, if the netconfig database cannot be
442  * opened).
443  */
444
445 struct netconfig *
446 getnetconfigent(netid)
447         const char *netid;
448 {
449     FILE *file;         /* NETCONFIG db's file pointer */
450     char *linep;        /* holds current netconfig line */
451     char *stringp;      /* temporary string pointer */
452     struct netconfig *ncp = NULL;   /* returned value */
453     struct netconfig_list *list;        /* pointer to cache list */
454
455     nc_error = NC_NOTFOUND;     /* default error. */
456     if (netid == NULL || strlen(netid) == 0) {
457         return (NULL);
458     }
459
460     /*
461      * Look up table if the entries have already been read and parsed in
462      * getnetconfig(), then copy this entry into a buffer and return it.
463      * If we cannot find the entry in the current list and there are more
464      * entries in the netconfig db that has not been read, we then read the
465      * db and try find the match netid.
466      * If all the netconfig db has been read and placed into the list and
467      * there is no match for the netid, return NULL.
468      */
469     mutex_lock(&ni_lock);
470     if (ni.head != NULL) {
471         for (list = ni.head; list; list = list->next) {
472             if (strcmp(list->ncp->nc_netid, netid) == 0) {
473                 mutex_unlock(&ni_lock);
474                 return(dup_ncp(list->ncp));
475             }
476         }
477         if (ni.eof == 1) {      /* that's all the entries */
478                 mutex_unlock(&ni_lock);
479                 return(NULL);
480         }
481     }
482     mutex_unlock(&ni_lock);
483
484
485     if ((file = fopen(NETCONFIG, "r")) == NULL) {
486         nc_error = NC_NONETCONFIG;
487         return (NULL);
488     }
489
490     if ((linep = malloc(MAXNETCONFIGLINE)) == NULL) {
491         fclose(file);
492         nc_error = NC_NOMEM;
493         return (NULL);
494     }
495     do {
496         ptrdiff_t len;
497         char *tmpp;     /* tmp string pointer */
498
499         do {
500             if ((stringp = fgets(linep, MAXNETCONFIGLINE, file)) == NULL) {
501                 break;
502             }
503         } while (*stringp == '#');
504         if (stringp == NULL) {      /* eof */
505             break;
506         }
507         if ((tmpp = strpbrk(stringp, "\t ")) == NULL) { /* can't parse file */
508             nc_error = NC_BADFILE;
509             break;
510         }
511         if (strlen(netid) == (size_t) (len = tmpp - stringp) && /* a match */
512                 strncmp(stringp, netid, (size_t)len) == 0) {
513             if ((ncp = (struct netconfig *)
514                     malloc(sizeof (struct netconfig))) == NULL) {
515                 break;
516             }
517             ncp->nc_lookups = NULL;
518             if (parse_ncp(linep, ncp) == -1) {
519                 free(ncp);
520                 ncp = NULL;
521             }
522             break;
523         }
524     } while (stringp != NULL);
525     if (ncp == NULL) {
526         free(linep);
527     }
528     fclose(file);
529     return(ncp);
530 }
531
532 /*
533  * freenetconfigent(netconfigp) frees the netconfig structure pointed to by
534  * netconfigp (previously returned by getnetconfigent()).
535  */
536
537 void
538 freenetconfigent(netconfigp)
539         struct netconfig *netconfigp;
540 {
541     if (netconfigp != NULL) {
542         free(netconfigp->nc_netid);     /* holds all netconfigp's strings */
543         free(netconfigp->nc_lookups);
544         free(netconfigp);
545     }
546     return;
547 }
548
549 /*
550  * Parse line and stuff it in a struct netconfig
551  * Typical line might look like:
552  *      udp tpi_cots vb inet udp /dev/udp /usr/lib/ip.so,/usr/local/ip.so
553  *
554  * We return -1 if any of the tokens don't parse, or malloc fails.
555  *
556  * Note that we modify stringp (putting NULLs after tokens) and
557  * we set the ncp's string field pointers to point to these tokens within
558  * stringp.
559  */
560
561 static int
562 parse_ncp(stringp, ncp)
563 char *stringp;          /* string to parse */
564 struct netconfig *ncp;  /* where to put results */
565 {
566     char    *tokenp;    /* for processing tokens */
567     char    *lasts;
568     char    **nc_lookups;
569
570     nc_error = NC_BADFILE;      /* nearly anything that breaks is for this reason */
571     stringp[strlen(stringp)-1] = '\0';  /* get rid of newline */
572     /* netid */
573     if ((ncp->nc_netid = strtok_r(stringp, "\t ", &lasts)) == NULL) {
574         return (-1);
575     }
576
577     /* semantics */
578     if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) {
579         return (-1);
580     }
581     if (strcmp(tokenp, NC_TPI_COTS_ORD_S) == 0)
582         ncp->nc_semantics = NC_TPI_COTS_ORD;
583     else if (strcmp(tokenp, NC_TPI_COTS_S) == 0)
584         ncp->nc_semantics = NC_TPI_COTS;
585     else if (strcmp(tokenp, NC_TPI_CLTS_S) == 0)
586         ncp->nc_semantics = NC_TPI_CLTS;
587     else if (strcmp(tokenp, NC_TPI_RAW_S) == 0)
588         ncp->nc_semantics = NC_TPI_RAW;
589     else
590         return (-1);
591
592     /* flags */
593     if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) {
594         return (-1);
595     }
596     for (ncp->nc_flag = NC_NOFLAG; *tokenp != '\0';
597             tokenp++) {
598         switch (*tokenp) {
599         case NC_NOFLAG_C:
600             break;
601         case NC_VISIBLE_C:
602             ncp->nc_flag |= NC_VISIBLE;
603             break;
604         case NC_BROADCAST_C:
605             ncp->nc_flag |= NC_BROADCAST;
606             break;
607         default:
608             return (-1);
609         }
610     }
611     /* protocol family */
612     if ((ncp->nc_protofmly = strtok_r(NULL, "\t ", &lasts)) == NULL) {
613         return (-1);
614     }
615     /* protocol name */
616     if ((ncp->nc_proto = strtok_r(NULL, "\t ", &lasts)) == NULL) {
617         return (-1);
618     }
619     /* network device */
620     if ((ncp->nc_device = strtok_r(NULL, "\t ", &lasts)) == NULL) {
621         return (-1);
622     }
623     if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) {
624         return (-1);
625     }
626     if (strcmp(tokenp, NC_NOLOOKUP) == 0) {
627         ncp->nc_nlookups = 0;
628         ncp->nc_lookups = NULL;
629     } else {
630         char *cp;           /* tmp string */
631
632         free(ncp->nc_lookups); /* from last visit */
633         ncp->nc_lookups = NULL;
634         ncp->nc_nlookups = 0;
635         while ((cp = tokenp) != NULL) {
636             if ((nc_lookups = realloc(ncp->nc_lookups,
637                 (ncp->nc_nlookups + 1) * sizeof *ncp->nc_lookups)) == NULL) {
638                     free(ncp->nc_lookups);
639                     ncp->nc_lookups = NULL;
640                     return (-1);
641             }
642             tokenp = _get_next_token(cp, ',');
643             ncp->nc_lookups = nc_lookups;
644             ncp->nc_lookups[ncp->nc_nlookups++] = cp;
645         }
646     }
647     return (0);
648 }
649
650
651 /*
652  * Returns a string describing the reason for failure.
653  */
654 char *
655 nc_sperror()
656 {
657     const char *message;
658
659     switch(nc_error) {
660     case NC_NONETCONFIG:
661         message = _nc_errors[0];
662         break;
663     case NC_NOMEM:
664         message = _nc_errors[1];
665         break;
666     case NC_NOTINIT:
667         message = _nc_errors[2];
668         break;
669     case NC_BADFILE:
670         message = _nc_errors[3];
671         break;
672     case NC_NOTFOUND:
673         message = _nc_errors[4];
674         break;
675     default:
676         message = "Unknown network selection error";
677     }
678     /* LINTED const castaway */
679     return ((char *)message);
680 }
681
682 /*
683  * Prints a message onto standard error describing the reason for failure.
684  */
685 void
686 nc_perror(s)
687         const char *s;
688 {
689     fprintf(stderr, "%s: %s\n", s, nc_sperror());
690 }
691
692 /*
693  * Duplicates the matched netconfig buffer.
694  */
695 static struct netconfig *
696 dup_ncp(ncp)
697 struct netconfig        *ncp;
698 {
699     struct netconfig    *p;
700     char        *tmp;
701     u_int       i;
702
703     if ((tmp=malloc(MAXNETCONFIGLINE)) == NULL)
704         return(NULL);
705     if ((p=(struct netconfig *)malloc(sizeof(struct netconfig))) == NULL) {
706         free(tmp);
707         return(NULL);
708     }
709     /*
710      * First we dup all the data from matched netconfig buffer.  Then we
711      * adjust some of the member pointer to a pre-allocated buffer where
712      * contains part of the data.
713      * To follow the convention used in parse_ncp(), we store all the
714      * necessary information in the pre-allocated buffer and let each
715      * of the netconfig char pointer member point to the right address
716      * in the buffer.
717      */
718     *p = *ncp;
719     p->nc_netid = (char *)strcpy(tmp,ncp->nc_netid);
720     tmp = strchr(tmp, '\0') + 1;
721     p->nc_protofmly = (char *)strcpy(tmp,ncp->nc_protofmly);
722     tmp = strchr(tmp, '\0') + 1;
723     p->nc_proto = (char *)strcpy(tmp,ncp->nc_proto);
724     tmp = strchr(tmp, '\0') + 1;
725     p->nc_device = (char *)strcpy(tmp,ncp->nc_device);
726     p->nc_lookups = (char **)malloc((size_t)(p->nc_nlookups+1) * sizeof(char *));
727     if (p->nc_lookups == NULL) {
728         free(p->nc_netid);
729         free(p);
730         return(NULL);
731     }
732     for (i=0; i < p->nc_nlookups; i++) {
733         tmp = strchr(tmp, '\0') + 1;
734         p->nc_lookups[i] = (char *)strcpy(tmp,ncp->nc_lookups[i]);
735     }
736     return(p);
737 }