[BACK]Return to getcap.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/gen/getcap.c between version 1.33.2.2 and 1.52.2.1

version 1.33.2.2, 2002/04/17 11:32:47 version 1.52.2.1, 2014/08/20 00:02:14
Line 15 
Line 15 
  * 2. Redistributions in binary form must reproduce the above copyright   * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the   *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.   *    documentation and/or other materials provided with the distribution.
  * 3. All advertising materials mentioning features or use of this software   * 3. Neither the name of the University nor the names of its contributors
  *    must display the following acknowledgement:  
  *      This product includes software developed by the University of  
  *      California, Berkeley and its contributors.  
  * 4. Neither the name of the University nor the names of its contributors  
  *    may be used to endorse or promote products derived from this software   *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.   *    without specific prior written permission.
  *   *
Line 36 
Line 32 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
   #if HAVE_NBTOOL_CONFIG_H
   #include "nbtool_config.h"
   #endif
   
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)  #if defined(LIBC_SCCS) && !defined(lint)
 #if 0  #if 0
Line 45  __RCSID("$NetBSD$");
Line 45  __RCSID("$NetBSD$");
 #endif  #endif
 #endif /* LIBC_SCCS and not lint */  #endif /* LIBC_SCCS and not lint */
   
   #ifndef SMALL
 #include "namespace.h"  #include "namespace.h"
   #endif
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/param.h>
   
 #include <assert.h>  #include <assert.h>
   #include <stddef.h>
 #include <ctype.h>  #include <ctype.h>
   #ifndef SMALL
 #include <db.h>  #include <db.h>
   #endif
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <limits.h>  #include <limits.h>
Line 59  __RCSID("$NetBSD$");
Line 65  __RCSID("$NetBSD$");
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
 #ifdef __weak_alias  #if defined(__weak_alias) && !defined(SMALL)
 __weak_alias(cgetcap,_cgetcap)  __weak_alias(cgetcap,_cgetcap)
 __weak_alias(cgetclose,_cgetclose)  __weak_alias(cgetclose,_cgetclose)
 __weak_alias(cgetent,_cgetent)  __weak_alias(cgetent,_cgetent)
Line 70  __weak_alias(cgetnum,_cgetnum)
Line 76  __weak_alias(cgetnum,_cgetnum)
 __weak_alias(cgetset,_cgetset)  __weak_alias(cgetset,_cgetset)
 __weak_alias(cgetstr,_cgetstr)  __weak_alias(cgetstr,_cgetstr)
 __weak_alias(cgetustr,_cgetustr)  __weak_alias(cgetustr,_cgetustr)
   __weak_alias(csetexpandtc,_csetexpandtc)
 #endif  #endif
   
 #define BFRAG           1024  #define BFRAG           1024
Line 85  __weak_alias(cgetustr,_cgetustr)
Line 92  __weak_alias(cgetustr,_cgetustr)
 static size_t    topreclen;     /* toprec length */  static size_t    topreclen;     /* toprec length */
 static char     *toprec;        /* Additional record specified by cgetset() */  static char     *toprec;        /* Additional record specified by cgetset() */
 static int       gottoprec;     /* Flag indicating retrieval of toprecord */  static int       gottoprec;     /* Flag indicating retrieval of toprecord */
   static int       expandtc = 1;  /* flag to expand tc= or not */
   
 static int      cdbget __P((DB *, char **, const char *));  #ifndef SMALL
 static int      getent __P((char **, size_t *, char **, int, const char *, int, char *));  static int      cdbget(DB *, char **, const char *);
 static int      nfcmp __P((char *, char *));  #endif
   static int      getent(char **, size_t *, const char * const *, int,
       const char *, int, char *);
   static int      nfcmp(char *, char *);
   
 /*  /*
  * Cgetset() allows the addition of a user specified buffer to be added   * Cgetset() allows the addition of a user specified buffer to be added
Line 96  static int nfcmp __P((char *, char *));
Line 107  static int nfcmp __P((char *, char *));
  * virtual database. 0 is returned on success, -1 on failure.   * virtual database. 0 is returned on success, -1 on failure.
  */   */
 int  int
 cgetset(ent)  cgetset(const char *ent)
         const char *ent;  
 {  {
         const char *source, *check;          const char *source, *check;
         char *dest;          char *dest;
   
         if (ent == NULL) {          if (ent == NULL) {
                 if (toprec)                  if (toprec != NULL)
                         free(toprec);                          free(toprec);
                 toprec = NULL;                  toprec = NULL;
                 topreclen = 0;                  topreclen = 0;
                 return (0);                  return 0;
         }          }
         topreclen = strlen(ent);          topreclen = strlen(ent);
         if ((toprec = malloc (topreclen + 1)) == NULL) {          if ((toprec = malloc(topreclen + 1)) == NULL) {
                 errno = ENOMEM;                  errno = ENOMEM;
                 return (-1);                  return -1;
         }          }
         gottoprec = 0;          gottoprec = 0;
   
         source=ent;          source = ent;
         dest=toprec;          dest = toprec;
         while (*source) { /* Strip whitespace */          while (*source != '\0') { /* Strip whitespace */
                 *dest++ = *source++; /* Do not check first field */                  *dest++ = *source++; /* Do not check first field */
                 while (*source == ':') {                  while (*source == ':') {
                         check=source+1;                          check = source + 1;
                         while (*check && (isspace((unsigned char)*check) ||                          while (*check && (isspace((unsigned char)*check) ||
                             (*check=='\\' && isspace((unsigned char)check[1]))))                              (*check=='\\' && isspace((unsigned char)check[1]))))
                                 ++check;                                  ++check;
                         if( *check == ':' )                          if (*check == ':')
                                 source=check;                                  source = check;
                         else                          else
                                 break;                                  break;
   
                 }                  }
         }          }
         *dest=0;          *dest = 0;
   
         return (0);          return 0;
 }  }
   
 /*  /*
Line 150  cgetset(ent)
Line 160  cgetset(ent)
  * return NULL.   * return NULL.
  */   */
 char *  char *
 cgetcap(buf, cap, type)  cgetcap(char *buf, const char *cap, int type)
         char *buf;  
         const char *cap;  
         int type;  
 {  {
         char *bp;          char *bp;
         const char *cp;          const char *cp;
Line 170  cgetcap(buf, cap, type)
Line 177  cgetcap(buf, cap, type)
                  */                   */
                 for (;;)                  for (;;)
                         if (*bp == '\0')                          if (*bp == '\0')
                                 return (NULL);                                  return NULL;
                         else                          else if (*bp++ == ':')
                                 if (*bp++ == ':')                                  break;
                                         break;  
   
                 /*                  /*
                  * Try to match (cap, type) in buf.                   * Try to match (cap, type) in buf.
Line 183  cgetcap(buf, cap, type)
Line 189  cgetcap(buf, cap, type)
                 if (*cp != '\0')                  if (*cp != '\0')
                         continue;                          continue;
                 if (*bp == '@')                  if (*bp == '@')
                         return (NULL);                          return NULL;
                 if (type == ':') {                  if (type == ':') {
                         if (*bp != '\0' && *bp != ':')                          if (*bp != '\0' && *bp != ':')
                                 continue;                                  continue;
                         return(bp);                          return bp;
                 }                  }
                 if (*bp != type)                  if (*bp != type)
                         continue;                          continue;
                 bp++;                  bp++;
                 return (*bp == '@' ? NULL : bp);                  return *bp == '@' ? NULL : bp;
         }          }
         /* NOTREACHED */          /* NOTREACHED */
 }  }
Line 206  cgetcap(buf, cap, type)
Line 212  cgetcap(buf, cap, type)
  * encountered (couldn't open/read a file, etc.), and -3 if a potential   * encountered (couldn't open/read a file, etc.), and -3 if a potential
  * reference loop is detected.   * reference loop is detected.
  */   */
   /* coverity[+alloc : arg-*0] */
 int  int
 cgetent(buf, db_array, name)  cgetent(char **buf, const char * const *db_array, const char *name)
         char **buf, **db_array;  
         const char *name;  
 {  {
         size_t dummy;          size_t dummy;
   
Line 217  cgetent(buf, db_array, name)
Line 222  cgetent(buf, db_array, name)
         _DIAGASSERT(db_array != NULL);          _DIAGASSERT(db_array != NULL);
         _DIAGASSERT(name != NULL);          _DIAGASSERT(name != NULL);
   
         return (getent(buf, &dummy, db_array, -1, name, 0, NULL));          return getent(buf, &dummy, db_array, -1, name, 0, NULL);
   }
   
   void
   csetexpandtc(int etc)
   {
           expandtc = etc;
 }  }
   
 /*  /*
Line 238  cgetent(buf, db_array, name)
Line 249  cgetent(buf, db_array, name)
  *        names interpolated, a name can't be found, or depth exceeds   *        names interpolated, a name can't be found, or depth exceeds
  *        MAX_RECURSION.   *        MAX_RECURSION.
  */   */
   /* coverity[+alloc : arg-*0] */
 static int  static int
 getent(cap, len, db_array, fd, name, depth, nfield)  getent(char **cap, size_t *len, const char * const *db_array, int fd,
         char **cap, **db_array, *nfield;      const char *name, int depth, char *nfield)
         const char *name;  
         size_t *len;  
         int fd, depth;  
 {  {
         DB *capdbp;          char *record, *newrecord;
         char *r_end, *rp = NULL, **db_p;        /* pacify gcc */          char *r_end, *rp;       /* pacify gcc */
         int myfd = 0, eof, foundit, retval;          const char * const *db_p;
         size_t clen;          int myfd, eof, foundit;
         char *record, *cbuf, *newrecord;  
         int tc_not_resolved;          int tc_not_resolved;
         char pbuf[_POSIX_PATH_MAX];  
   
         _DIAGASSERT(cap != NULL);          _DIAGASSERT(cap != NULL);
         _DIAGASSERT(len != NULL);          _DIAGASSERT(len != NULL);
Line 260  getent(cap, len, db_array, fd, name, dep
Line 267  getent(cap, len, db_array, fd, name, dep
         _DIAGASSERT(name != NULL);          _DIAGASSERT(name != NULL);
         /* nfield may be NULL */          /* nfield may be NULL */
   
           myfd = 0;
           rp = NULL;
   
         /*          /*
          * Return with ``loop detected'' error if we've recursed more than           * Return with ``loop detected'' error if we've recursed more than
          * MAX_RECURSION times.           * MAX_RECURSION times.
          */           */
         if (depth > MAX_RECURSION)          if (depth > MAX_RECURSION)
                 return (-3);                  return -3;
   
         /*          /*
          * Check if we have a top record from cgetset().           * Check if we have a top record from cgetset().
          */           */
         if (depth == 0 && toprec != NULL && cgetmatch(toprec, name) == 0) {          if (depth == 0 && toprec != NULL && cgetmatch(toprec, name) == 0) {
                 if ((record = malloc (topreclen + BFRAG)) == NULL) {                  if ((record = malloc(topreclen + BFRAG)) == NULL) {
                         errno = ENOMEM;                          errno = ENOMEM;
                         return (-2);                          return -2;
                 }                  }
                 (void)strcpy(record, toprec);   /* XXX: strcpy is safe */                  (void)strcpy(record, toprec);   /* XXX: strcpy is safe */
                 db_p = db_array;                  db_p = db_array;
Line 286  getent(cap, len, db_array, fd, name, dep
Line 296  getent(cap, len, db_array, fd, name, dep
          */           */
         if ((record = malloc(BFRAG)) == NULL) {          if ((record = malloc(BFRAG)) == NULL) {
                 errno = ENOMEM;                  errno = ENOMEM;
                 return (-2);                  return -2;
         }          }
         r_end = record + BFRAG;          r_end = record + BFRAG;
         foundit = 0;          foundit = 0;
Line 304  getent(cap, len, db_array, fd, name, dep
Line 314  getent(cap, len, db_array, fd, name, dep
                 if (fd >= 0) {                  if (fd >= 0) {
                         (void)lseek(fd, (off_t)0, SEEK_SET);                          (void)lseek(fd, (off_t)0, SEEK_SET);
                 } else {                  } else {
   #ifndef SMALL
                           DB *capdbp;
                           char pbuf[MAXPATHLEN];
                           char *cbuf;
                           int retval;
                           size_t clen;
   
                         (void)snprintf(pbuf, sizeof(pbuf), "%s.db", *db_p);                          (void)snprintf(pbuf, sizeof(pbuf), "%s.db", *db_p);
                         if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))                          if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))
                              != NULL) {                               != NULL) {
Line 312  getent(cap, len, db_array, fd, name, dep
Line 329  getent(cap, len, db_array, fd, name, dep
                                 if (retval < 0) {                                  if (retval < 0) {
                                         /* no record available */                                          /* no record available */
                                         (void)capdbp->close(capdbp);                                          (void)capdbp->close(capdbp);
                                         return (retval);                                          return retval;
                                 }                                  }
                                 /* save the data; close frees it */                                  /* save the data; close frees it */
                                 clen = strlen(record);                                  clen = strlen(record);
                                 cbuf = malloc(clen + 1);                                  if ((cbuf = malloc(clen + 1)) == NULL) {
                                           (void)capdbp->close(capdbp);
                                           errno = ENOMEM;
                                           return -2;
                                   }
                                 memmove(cbuf, record, clen + 1);                                  memmove(cbuf, record, clen + 1);
                                 if (capdbp->close(capdbp) < 0) {                                  if (capdbp->close(capdbp) < 0) {
                                         int serrno = errno;                                          int serrno = errno;
   
                                         free(cbuf);                                          free(cbuf);
                                         errno = serrno;                                          errno = serrno;
                                         return (-2);                                          return -2;
                                 }                                  }
                                 *len = clen;                                  *len = clen;
                                 *cap = cbuf;                                  *cap = cbuf;
                                 return (retval);                                  return retval;
                         } else {                          } else
   #endif
                           {
                                 fd = open(*db_p, O_RDONLY, 0);                                  fd = open(*db_p, O_RDONLY, 0);
                                 if (fd < 0) {                                  if (fd < 0) {
                                         /* No error on unfound file. */                                          /* No error on unfound file. */
Line 356  getent(cap, len, db_array, fd, name, dep
Line 379  getent(cap, len, db_array, fd, name, dep
                  */                   */
                 b_end = buf;                  b_end = buf;
                 bp = buf;                  bp = buf;
                 cp = 0;                  cp = NULL;
                 slash = 0;                  slash = 0;
                 for (;;) {                  for (;;) {
   
                         /*                          /*
                          * Read in a line implementing (\, newline)                           * Read in a line implementing (\, newline)
                          * line continuation.                           * line continuation.
Line 367  getent(cap, len, db_array, fd, name, dep
Line 389  getent(cap, len, db_array, fd, name, dep
                         rp = record;                          rp = record;
                         for (;;) {                          for (;;) {
                                 if (bp >= b_end) {                                  if (bp >= b_end) {
                                         int n;                                          ssize_t n;
   
                                         n = read(fd, buf, sizeof(buf));                                          n = read(fd, buf, sizeof(buf));
                                         if (n <= 0) {                                          if (n <= 0) {
Line 378  getent(cap, len, db_array, fd, name, dep
Line 400  getent(cap, len, db_array, fd, name, dep
   
                                                         free(record);                                                          free(record);
                                                         errno = serrno;                                                          errno = serrno;
                                                         return (-2);                                                          return -2;
                                                 } else {                                                  } else {
                                                         fd = -1;                                                          fd = -1;
                                                         eof = 1;                                                          eof = 1;
Line 409  getent(cap, len, db_array, fd, name, dep
Line 431  getent(cap, len, db_array, fd, name, dep
                                          * to the colon (eliminating the                                           * to the colon (eliminating the
                                          * field).                                           * field).
                                          */                                           */
                                         if (cp)                                          if (cp != NULL)
                                                 rp = cp;                                                  rp = cp;
                                         else                                          else
                                                 cp = rp;                                                  cp = rp;
Line 430  getent(cap, len, db_array, fd, name, dep
Line 452  getent(cap, len, db_array, fd, name, dep
                                  * some more.                                   * some more.
                                  */                                   */
                                 if (rp >= r_end) {                                  if (rp >= r_end) {
                                         u_int pos;                                          ptrdiff_t pos;
                                         size_t newsize;                                          size_t newsize;
   
                                         pos = rp - record;                                          pos = rp - record;
Line 441  getent(cap, len, db_array, fd, name, dep
Line 463  getent(cap, len, db_array, fd, name, dep
                                                 if (myfd)                                                  if (myfd)
                                                         (void)close(fd);                                                          (void)close(fd);
                                                 errno = ENOMEM;                                                  errno = ENOMEM;
                                                 return (-2);                                                  return -2;
                                         }                                          }
                                         record = newrecord;                                          record = newrecord;
                                         r_end = record + newsize;                                          r_end = record + newsize;
Line 469  getent(cap, len, db_array, fd, name, dep
Line 491  getent(cap, len, db_array, fd, name, dep
                         /*                          /*
                          * See if this is the record we want ...                           * See if this is the record we want ...
                          */                           */
                         if (cgetmatch(record, name) == 0) {                          if (cgetmatch(record, name) == 0)
                                 if (nfield == NULL || !nfcmp(nfield, record)) {                                  if (nfield == NULL || !nfcmp(nfield, record)) {
                                         foundit = 1;                                          foundit = 1;
                                         break;  /* found it! */                                          break;  /* found it! */
                                 }                                  }
                         }  
                 }                  }
         }                  }
                 if (foundit)                  if (foundit)
                         break;                          break;
         }          }
   
         if (!foundit)          if (!foundit)
                 return (-1);                  return -1;
   
         /*          /*
          * Got the capability record, but now we have to expand all tc=name           * Got the capability record, but now we have to expand all tc=name
          * references in it ...           * references in it ...
          */           */
 tc_exp: {  tc_exp:
           tc_not_resolved = 0;
           if (expandtc) {
                 char *newicap, *s;                  char *newicap, *s;
                 size_t ilen, newilen;                  size_t ilen, newilen;
                 int diff, iret, tclen;                  int iret;
                   ptrdiff_t diff, tclen;
                 char *icap, *scan, *tc, *tcstart, *tcend;                  char *icap, *scan, *tc, *tcstart, *tcend;
   
                 /*                  /*
Line 503  tc_exp: {
Line 527  tc_exp: {
                  *      scanned for tc=name constructs.                   *      scanned for tc=name constructs.
                  */                   */
                 scan = record;                  scan = record;
                 tc_not_resolved = 0;  
                 for (;;) {                  for (;;) {
                         if ((tc = cgetcap(scan, "tc", '=')) == NULL)                          if ((tc = cgetcap(scan, "tc", '=')) == NULL)
                                 break;                                  break;
Line 535  tc_exp: {
Line 558  tc_exp: {
                                         if (myfd)                                          if (myfd)
                                                 (void)close(fd);                                                  (void)close(fd);
                                         free(record);                                          free(record);
                                         return (iret);                                          return iret;
                                 }                                  }
                                 if (iret == 1)                                  if (iret == 1)
                                         tc_not_resolved = 1;                                          tc_not_resolved = 1;
Line 553  tc_exp: {
Line 576  tc_exp: {
                         for (;;)                          for (;;)
                                 if (*s == '\0')                                  if (*s == '\0')
                                         break;                                          break;
                                 else                                  else if (*s++ == ':')
                                         if (*s++ == ':')                                          break;
                                                 break;  
                         newilen -= s - newicap;                          newilen -= s - newicap;
                         newicap = s;                          newicap = s;
   
                         /* make sure interpolated record is `:'-terminated */                          /* make sure interpolated record is `:'-terminated */
                         s += newilen;                          s += newilen;
                         if (*(s-1) != ':') {                          if (*(s - 1) != ':') {
                                 *s = ':';       /* overwrite NUL with : */                                  *s = ':';       /* overwrite NUL with : */
                                 newilen++;                                  newilen++;
                         }                          }
Line 572  tc_exp: {
Line 594  tc_exp: {
                          */                           */
                         diff = newilen - tclen;                          diff = newilen - tclen;
                         if (diff >= r_end - rp) {                          if (diff >= r_end - rp) {
                                 u_int pos, tcpos, tcposend;                                  ptrdiff_t pos, tcpos, tcposend;
                                 size_t newsize;                                  size_t newsize;
   
                                 pos = rp - record;                                  pos = rp - record;
Line 586  tc_exp: {
Line 608  tc_exp: {
                                                 (void)close(fd);                                                  (void)close(fd);
                                         free(icap);                                          free(icap);
                                         errno = ENOMEM;                                          errno = ENOMEM;
                                         return (-2);                                          return -2;
                                 }                                  }
                                 record = newrecord;                                  record = newrecord;
                                 r_end = record + newsize;                                  r_end = record + newsize;
Line 608  tc_exp: {
Line 630  tc_exp: {
                          * Start scan on `:' so next cgetcap works properly                           * Start scan on `:' so next cgetcap works properly
                          * (cgetcap always skips first field).                           * (cgetcap always skips first field).
                          */                           */
                         scan = s-1;                          scan = s - 1;
                 }                  }
   
         }          }
Line 624  tc_exp: {
Line 646  tc_exp: {
                      realloc(record, (size_t)(rp - record))) == NULL) {                       realloc(record, (size_t)(rp - record))) == NULL) {
                         free(record);                          free(record);
                         errno = ENOMEM;                          errno = ENOMEM;
                         return (-2);                          return -2;
                 }                  }
                 record = newrecord;                  record = newrecord;
         }          }
   
         *cap = record;          *cap = record;
         if (tc_not_resolved)          if (tc_not_resolved)
                 return (1);                  return 1;
         return (0);          return 0;
 }  }
   
   #ifndef SMALL
 static int  static int
 cdbget(capdbp, bp, name)  cdbget(DB *capdbp, char **bp, const char *name)
         DB *capdbp;  
         char **bp;  
         const char *name;  
 {  {
         DBT key;          DBT key;
         DBT data;          DBT data;
Line 648  cdbget(capdbp, bp, name)
Line 668  cdbget(capdbp, bp, name)
         _DIAGASSERT(bp != NULL);          _DIAGASSERT(bp != NULL);
         _DIAGASSERT(name != NULL);          _DIAGASSERT(name != NULL);
   
         /* LINTED key is not modified */          key.data = __UNCONST(name);
         key.data = (char *)name;  
         key.size = strlen(name);          key.size = strlen(name);
   
         for (;;) {          for (;;) {
                 /* Get the reference. */                  /* Get the reference. */
                 switch(capdbp->get(capdbp, &key, &data, 0)) {                  switch(capdbp->get(capdbp, &key, &data, 0)) {
                 case -1:                  case -1:
                         return (-2);                          return -2;
                 case 1:                  case 1:
                         return (-1);                          return -1;
                 }                  }
   
                 /* If not an index to another record, leave. */                  /* If not an index to another record, leave. */
Line 670  cdbget(capdbp, bp, name)
Line 689  cdbget(capdbp, bp, name)
         }          }
   
         *bp = (char *)data.data + 1;          *bp = (char *)data.data + 1;
         return (((char *)(data.data))[0] == TCERR ? 1 : 0);          return ((char *)(data.data))[0] == TCERR ? 1 : 0;
 }  }
   #endif
   
 /*  /*
  * Cgetmatch will return 0 if name is one of the names of the capability   * Cgetmatch will return 0 if name is one of the names of the capability
  * record buf, -1 if not.   * record buf, -1 if not.
  */   */
 int  int
 cgetmatch(buf, name)  cgetmatch(const char *buf, const char *name)
         const char *buf, *name;  
 {  {
         const char *np, *bp;          const char *np, *bp;
   
Line 698  cgetmatch(buf, name)
Line 717  cgetmatch(buf, name)
                 for (;;)                  for (;;)
                         if (*np == '\0') {                          if (*np == '\0') {
                                 if (*bp == '|' || *bp == ':' || *bp == '\0')                                  if (*bp == '|' || *bp == ':' || *bp == '\0')
                                         return (0);                                          return 0;
                                 else                                  else
                                         break;                                          break;
                         } else                          } else if (*bp++ != *np++)
                                 if (*bp++ != *np++)                                  break;
                                         break;  
   
                 /*                  /*
                  * Match failed, skip to next name in record.                   * Match failed, skip to next name in record.
Line 711  cgetmatch(buf, name)
Line 729  cgetmatch(buf, name)
                 if (bp > buf)                  if (bp > buf)
                         bp--;   /* a '|' or ':' may have stopped the match */                          bp--;   /* a '|' or ':' may have stopped the match */
                 else                  else
                         return (-1);                          return -1;
                 for (;;)                  for (;;)
                         if (*bp == '\0' || *bp == ':')                          if (*bp == '\0' || *bp == ':')
                                 return (-1);    /* match failed totally */                                  return -1;      /* match failed totally */
                         else                          else if (*bp++ == '|')
                                 if (*bp++ == '|')                                  break;          /* found next name */
                                         break;  /* found next name */  
         }          }
 }  }
   
 int  int
 cgetfirst(buf, db_array)  cgetfirst(char **buf, const char * const *db_array)
         char **buf, **db_array;  
 {  {
   
         _DIAGASSERT(buf != NULL);          _DIAGASSERT(buf != NULL);
         _DIAGASSERT(db_array != NULL);          _DIAGASSERT(db_array != NULL);
   
         (void)cgetclose();          (void)cgetclose();
         return (cgetnext(buf, db_array));          return cgetnext(buf, db_array);
 }  }
   
 static FILE *pfp;  static FILE *pfp;
 static int slash;  static int slash;
 static char **dbp;  static const char * const *dbp;
   
 int  int
 cgetclose()  cgetclose(void)
 {  {
         if (pfp != NULL) {          if (pfp != NULL) {
                 (void)fclose(pfp);                  (void)fclose(pfp);
Line 747  cgetclose()
Line 763  cgetclose()
         dbp = NULL;          dbp = NULL;
         gottoprec = 0;          gottoprec = 0;
         slash = 0;          slash = 0;
         return(0);          return 0;
 }  }
   
 /*  /*
Line 755  cgetclose()
Line 771  cgetclose()
  * specified by db_array.  It returns 0 upon completion of the database, 1   * specified by db_array.  It returns 0 upon completion of the database, 1
  * upon returning an entry with more remaining, and -1 if an error occurs.   * upon returning an entry with more remaining, and -1 if an error occurs.
  */   */
   /* coverity[+alloc : arg-*0] */
 int  int
 cgetnext(bp, db_array)  cgetnext(char **bp, const char * const *db_array)
         char **bp;  
         char **db_array;  
 {  {
         size_t len;          size_t len = 0;
         int status, done;          int status, done;
         char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];          char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
         size_t dummy;          size_t dummy;
Line 771  cgetnext(bp, db_array)
Line 786  cgetnext(bp, db_array)
         if (dbp == NULL)          if (dbp == NULL)
                 dbp = db_array;                  dbp = db_array;
   
         if (pfp == NULL && (pfp = fopen(*dbp, "r")) == NULL) {          if (pfp == NULL && (pfp = fopen(*dbp, "re")) == NULL) {
                 (void)cgetclose();                  (void)cgetclose();
                 return (-1);                  return -1;
         }          }
         for(;;) {          for (;;) {
                 if (toprec && !gottoprec) {                  if (toprec != NULL && !gottoprec) {
                         gottoprec = 1;                          gottoprec = 1;
                         line = toprec;                          line = toprec;
                 } else {                  } else {
                         line = fgetln(pfp, &len);                          line = fgetln(pfp, &len);
                         if (line == NULL && pfp) {                          if (line == NULL) {
                                   if (pfp == NULL)
                                           return -1;
                                 if (ferror(pfp)) {                                  if (ferror(pfp)) {
                                         (void)cgetclose();                                          (void)cgetclose();
                                         return (-1);                                          return -1;
                                 } else {                                  } else {
                                         (void)fclose(pfp);                                          (void)fclose(pfp);
                                         pfp = NULL;                                          pfp = NULL;
                                         if (*++dbp == NULL) {                                          if (*++dbp == NULL) {
                                                 (void)cgetclose();                                                  (void)cgetclose();
                                                 return (0);                                                  return 0;
                                         } else if ((pfp =                                          } else if ((pfp =
                                             fopen(*dbp, "r")) == NULL) {                                              fopen(*dbp, "re")) == NULL) {
                                                 (void)cgetclose();                                                  (void)cgetclose();
                                                 return (-1);                                                  return -1;
                                         } else                                          } else
                                                 continue;                                                  continue;
                                 }                                  }
Line 845  cgetnext(bp, db_array)
Line 862  cgetnext(bp, db_array)
                                 if (line == NULL && pfp) {                                  if (line == NULL && pfp) {
                                         if (ferror(pfp)) {                                          if (ferror(pfp)) {
                                                 (void)cgetclose();                                                  (void)cgetclose();
                                                 return (-1);                                                  return -1;
                                         }                                          }
                                         (void)fclose(pfp);                                          (void)fclose(pfp);
                                         pfp = NULL;                                          pfp = NULL;
Line 858  cgetnext(bp, db_array)
Line 875  cgetnext(bp, db_array)
                 if (len > sizeof(buf))                  if (len > sizeof(buf))
                         return -1;                          return -1;
                 rp = buf;                  rp = buf;
                 for(cp = nbuf; *cp != '\0'; cp++)                  for (cp = nbuf; *cp != '\0'; cp++)
                         if (*cp == '|' || *cp == ':')                          if (*cp == '|' || *cp == ':')
                                 break;                                  break;
                         else                          else
Line 877  cgetnext(bp, db_array)
Line 894  cgetnext(bp, db_array)
                 if (status == -2 || status == -3)                  if (status == -2 || status == -3)
                         (void)cgetclose();                          (void)cgetclose();
   
                 return (status + 1);                  return status + 1;
         }          }
         /* NOTREACHED */          /* NOTREACHED */
 }  }
Line 892  cgetnext(bp, db_array)
Line 909  cgetnext(bp, db_array)
  * allocation failure).   * allocation failure).
  */   */
 int  int
 cgetstr(buf, cap, str)  cgetstr(char *buf, const char *cap, char **str)
         char *buf;  
         const char *cap;  
         char **str;  
 {  {
         u_int m_room;          u_int m_room;
         const char *bp;          const char *bp;
         char *mp;          char *mp;
         int len;          ptrdiff_t len;
         char *mem, *newmem;          char *mem, *newmem;
   
         _DIAGASSERT(buf != NULL);          _DIAGASSERT(buf != NULL);
Line 912  cgetstr(buf, cap, str)
Line 926  cgetstr(buf, cap, str)
          */           */
         bp = cgetcap(buf, cap, '=');          bp = cgetcap(buf, cap, '=');
         if (bp == NULL)          if (bp == NULL)
                 return (-1);                  return -1;
   
         /*          /*
          * Conversion / storage allocation loop ...  Allocate memory in           * Conversion / storage allocation loop ...  Allocate memory in
Line 920  cgetstr(buf, cap, str)
Line 934  cgetstr(buf, cap, str)
          */           */
         if ((mem = malloc(SFRAG)) == NULL) {          if ((mem = malloc(SFRAG)) == NULL) {
                 errno = ENOMEM;                  errno = ENOMEM;
                 return (-2);    /* couldn't even allocate the first fragment */                  return -2;      /* couldn't even allocate the first fragment */
         }          }
         m_room = SFRAG;          m_room = SFRAG;
         mp = mem;          mp = mem;
Line 994  cgetstr(buf, cap, str)
Line 1008  cgetstr(buf, cap, str)
   
                         if ((newmem = realloc(mem, size + SFRAG)) == NULL) {                          if ((newmem = realloc(mem, size + SFRAG)) == NULL) {
                                 free(mem);                                  free(mem);
                                 return (-2);                                  return -2;
                         }                          }
                         mem = newmem;                          mem = newmem;
                         m_room = SFRAG;                          m_room = SFRAG;
Line 1011  cgetstr(buf, cap, str)
Line 1025  cgetstr(buf, cap, str)
         if (m_room != 0) {          if (m_room != 0) {
                 if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {                  if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {
                         free(mem);                          free(mem);
                         return (-2);                          return -2;
                 }                  }
                 mem = newmem;                  mem = newmem;
         }          }
         *str = mem;          *str = mem;
         return (len);          _DIAGASSERT(__type_fit(int, len));
           return (int)len;
 }  }
   
 /*  /*
Line 1030  cgetstr(buf, cap, str)
Line 1045  cgetstr(buf, cap, str)
  * error was encountered (storage allocation failure).   * error was encountered (storage allocation failure).
  */   */
 int  int
 cgetustr(buf, cap, str)  cgetustr(char *buf, const char *cap, char **str)
         char *buf;  
         const char *cap;  
         char **str;  
 {  {
         u_int m_room;          u_int m_room;
         const char *bp;          const char *bp;
         char *mp;          char *mp;
         int len;          size_t len;
         char *mem, *newmem;          char *mem, *newmem;
   
         _DIAGASSERT(buf != NULL);          _DIAGASSERT(buf != NULL);
Line 1049  cgetustr(buf, cap, str)
Line 1061  cgetustr(buf, cap, str)
          * Find string capability cap           * Find string capability cap
          */           */
         if ((bp = cgetcap(buf, cap, '=')) == NULL)          if ((bp = cgetcap(buf, cap, '=')) == NULL)
                 return (-1);                  return -1;
   
         /*          /*
          * Conversion / storage allocation loop ...  Allocate memory in           * Conversion / storage allocation loop ...  Allocate memory in
Line 1057  cgetustr(buf, cap, str)
Line 1069  cgetustr(buf, cap, str)
          */           */
         if ((mem = malloc(SFRAG)) == NULL) {          if ((mem = malloc(SFRAG)) == NULL) {
                 errno = ENOMEM;                  errno = ENOMEM;
                 return (-2);    /* couldn't even allocate the first fragment */                  return -2;      /* couldn't even allocate the first fragment */
         }          }
         m_room = SFRAG;          m_room = SFRAG;
         mp = mem;          mp = mem;
Line 1081  cgetustr(buf, cap, str)
Line 1093  cgetustr(buf, cap, str)
   
                         if ((newmem = realloc(mem, size + SFRAG)) == NULL) {                          if ((newmem = realloc(mem, size + SFRAG)) == NULL) {
                                 free(mem);                                  free(mem);
                                 return (-2);                                  return -2;
                         }                          }
                         mem = newmem;                          mem = newmem;
                         m_room = SFRAG;                          m_room = SFRAG;
Line 1098  cgetustr(buf, cap, str)
Line 1110  cgetustr(buf, cap, str)
         if (m_room != 0) {          if (m_room != 0) {
                 if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {                  if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {
                         free(mem);                          free(mem);
                         return (-2);                          return -2;
                 }                  }
                 mem = newmem;                  mem = newmem;
         }          }
         *str = mem;          *str = mem;
         return (len);          _DIAGASSERT(__type_fit(int, len));
           return (int)len;
 }  }
   
 /*  /*
Line 1113  cgetustr(buf, cap, str)
Line 1126  cgetustr(buf, cap, str)
  * numeric capability couldn't be found.   * numeric capability couldn't be found.
  */   */
 int  int
 cgetnum(buf, cap, num)  cgetnum(char *buf, const char *cap, long *num)
         char *buf;  
         const char *cap;  
         long *num;  
 {  {
         long n;          long n;
         int base, digit;          int base, digit;
Line 1131  cgetnum(buf, cap, num)
Line 1141  cgetnum(buf, cap, num)
          */           */
         bp = cgetcap(buf, cap, '#');          bp = cgetcap(buf, cap, '#');
         if (bp == NULL)          if (bp == NULL)
                 return (-1);                  return -1;
   
         /*          /*
          * Look at value and determine numeric base:           * Look at value and determine numeric base:
Line 1174  cgetnum(buf, cap, num)
Line 1184  cgetnum(buf, cap, num)
          * Return value and success.           * Return value and success.
          */           */
         *num = n;          *num = n;
         return (0);          return 0;
 }  }
   
   
Line 1182  cgetnum(buf, cap, num)
Line 1192  cgetnum(buf, cap, num)
  * Compare name field of record.   * Compare name field of record.
  */   */
 static int  static int
 nfcmp(nf, rec)  nfcmp(char *nf, char *rec)
         char *nf, *rec;  
 {  {
         char *cp, tmp;          char *cp, tmp;
         int ret;          int ret;
Line 1192  nfcmp(nf, rec)
Line 1201  nfcmp(nf, rec)
         _DIAGASSERT(rec != NULL);          _DIAGASSERT(rec != NULL);
   
         for (cp = rec; *cp != ':'; cp++)          for (cp = rec; *cp != ':'; cp++)
                 ;                  continue;
   
         tmp = *(cp + 1);          tmp = *(cp + 1);
         *(cp + 1) = '\0';          *(cp + 1) = '\0';
         ret = strcmp(nf, rec);          ret = strcmp(nf, rec);
         *(cp + 1) = tmp;          *(cp + 1) = tmp;
   
         return (ret);          return ret;
 }  }

Legend:
Removed from v.1.33.2.2  
changed lines
  Added in v.1.52.2.1

CVSweb <webmaster@jp.NetBSD.org>