[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.1 and 1.28

version 1.1, 1993/05/18 07:37:54 version 1.28, 1999/03/23 02:58:50
Line 1 
Line 1 
   /*      $NetBSD$        */
   
 /*-  /*-
  * Copyright (c) 1992 The Regents of the University of California.   * Copyright (c) 1992, 1993
  * All rights reserved.   *      The Regents of the University of California.  All rights reserved.
  *   *
  * This code is derived from software contributed to Berkeley by   * This code is derived from software contributed to Berkeley by
  * Casey Leedom of Lawrence Livermore National Laboratory.   * Casey Leedom of Lawrence Livermore National Laboratory.
Line 34 
Line 36 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
   #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)  #if defined(LIBC_SCCS) && !defined(lint)
 static char sccsid[] = "@(#)getcap.c    5.15 (Berkeley) 3/19/93";  #if 0
   static char sccsid[] = "@(#)getcap.c    8.3 (Berkeley) 3/25/94";
   #else
   __RCSID("$NetBSD$");
   #endif
 #endif /* LIBC_SCCS and not lint */  #endif /* LIBC_SCCS and not lint */
   
   #include "namespace.h"
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <ctype.h>  #include <ctype.h>
 #include <db.h>  #include <db.h>
 #include <errno.h>  #include <errno.h>
Line 50  static char sccsid[] = "@(#)getcap.c 5.1
Line 57  static char sccsid[] = "@(#)getcap.c 5.1
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
   #ifdef __weak_alias
   __weak_alias(cgetcap,_cgetcap);
   __weak_alias(cgetclose,_cgetclose);
   __weak_alias(cgetent,_cgetent);
   __weak_alias(cgetfirst,_cgetfirst);
   __weak_alias(cgetmatch,_cgetmatch);
   __weak_alias(cgetnext,_cgetnext);
   __weak_alias(cgetnum,_cgetnum);
   __weak_alias(cgetset,_cgetset);
   __weak_alias(cgetstr,_cgetstr);
   __weak_alias(cgetustr,_cgetustr);
   #endif
   
 #define BFRAG           1024  #define BFRAG           1024
 #define BSIZE           1024  #define BSIZE           1024
 #define ESC             ('[' & 037)     /* ASCII ESC */  #define ESC             ('[' & 037)     /* ASCII ESC */
Line 64  static size_t  topreclen; /* toprec leng
Line 84  static size_t  topreclen; /* toprec leng
 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      cdbget __P((DB *, char **, char *));  static int      cdbget __P((DB *, char **, const char *));
 static int      getent __P((char **, u_int *, char **, int, char *, int, char *));  static int      getent __P((char **, size_t *, char **, int, const char *, int, char *));
 static int      nfcmp __P((char *, char *));  static int      nfcmp __P((char *, char *));
   
 /*  /*
Line 75  static int nfcmp __P((char *, char *));
Line 95  static int nfcmp __P((char *, char *));
  */   */
 int  int
 cgetset(ent)  cgetset(ent)
         char *ent;          const char *ent;
 {  {
           const char *source, *check;
           char *dest;
   
         if (ent == NULL) {          if (ent == NULL) {
                 if (toprec)                  if (toprec)
                         free(toprec);                          free(toprec);
Line 90  cgetset(ent)
Line 113  cgetset(ent)
                 return (-1);                  return (-1);
         }          }
         gottoprec = 0;          gottoprec = 0;
         (void)strcpy(toprec, ent);  
           source=ent;
           dest=toprec;
           while (*source) { /* Strip whitespace */
                   *dest++ = *source++; /* Do not check first field */
                   while (*source == ':') {
                           check=source+1;
                           while (*check && (isspace(*check) ||
                               (*check=='\\' && isspace(check[1]))) )
                                   ++check;
                           if( *check == ':' )
                                   source=check;
                           else
                                   break;
   
                   }
           }
           *dest=0;
   
         return (0);          return (0);
 }  }
   
Line 108  cgetset(ent)
Line 149  cgetset(ent)
  */   */
 char *  char *
 cgetcap(buf, cap, type)  cgetcap(buf, cap, type)
         char *buf, *cap;          char *buf;
           const char *cap;
         int type;          int type;
 {  {
         register char *bp, *cp;          char *bp;
           const char *cp;
   
         bp = buf;          bp = buf;
         for (;;) {          for (;;) {
Line 160  cgetcap(buf, cap, type)
Line 203  cgetcap(buf, cap, type)
  */   */
 int  int
 cgetent(buf, db_array, name)  cgetent(buf, db_array, name)
         char **buf, **db_array, *name;          char **buf, **db_array;
           const char *name;
 {  {
         u_int dummy;          size_t dummy;
   
         return (getent(buf, &dummy, db_array, -1, name, 0, NULL));          return (getent(buf, &dummy, db_array, -1, name, 0, NULL));
 }  }
Line 187  cgetent(buf, db_array, name)
Line 231  cgetent(buf, db_array, name)
  */   */
 static int  static int
 getent(cap, len, db_array, fd, name, depth, nfield)  getent(cap, len, db_array, fd, name, depth, nfield)
         char **cap, **db_array, *name, *nfield;          char **cap, **db_array, *nfield;
         u_int *len;          const char *name;
           size_t *len;
         int fd, depth;          int fd, depth;
 {  {
         DB *capdbp;          DB *capdbp;
         DBT key, data;          char *r_end, *rp = NULL, **db_p;        /* pacify gcc */
         register char *r_end, *rp, **db_p;          int myfd = 0, eof, foundit, retval;
         int myfd, eof, foundit, retval;          size_t clen;
         char *record;          char *record, *cbuf;
         int tc_not_resolved;          int tc_not_resolved;
         char pbuf[_POSIX_PATH_MAX];          char pbuf[_POSIX_PATH_MAX];
   
Line 214  getent(cap, len, db_array, fd, name, dep
Line 259  getent(cap, len, db_array, fd, name, dep
                         errno = ENOMEM;                          errno = ENOMEM;
                         return (-2);                          return (-2);
                 }                  }
                 (void)strcpy(record, toprec);                  (void)strcpy(record, toprec);   /* XXX: strcpy is safe */
                 myfd = 0;  
                 db_p = db_array;                  db_p = db_array;
                 rp = record + topreclen + 1;                  rp = record + topreclen + 1;
                 r_end = rp + BFRAG;                  r_end = rp + BFRAG;
Line 242  getent(cap, len, db_array, fd, name, dep
Line 286  getent(cap, len, db_array, fd, name, dep
                  */                   */
   
                 if (fd >= 0) {                  if (fd >= 0) {
                         (void)lseek(fd, (off_t)0, L_SET);                          (void)lseek(fd, (off_t)0, SEEK_SET);
                         myfd = 0;  
                 } else {                  } else {
                         (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) {
                                 free(record);                                  free(record);
                                 retval = cdbget(capdbp, &record, name);                                  retval = cdbget(capdbp, &record, name);
                                 if (capdbp->close(capdbp) < 0)                                  if (retval < 0) {
                                           /* no record available */
                                           (void)capdbp->close(capdbp);
                                           return (retval);
                                   }
                                   /* save the data; close frees it */
                                   clen = strlen(record);
                                   cbuf = malloc(clen + 1);
                                   memmove(cbuf, record, clen + 1);
                                   if (capdbp->close(capdbp) < 0) {
                                           free(cbuf);
                                         return (-2);                                          return (-2);
                                 *len = strlen(record);                                  }
                                 *cap = malloc(*len + 1);                                  *len = clen;
                                 memmove(*cap, record, *len + 1);                                  *cap = cbuf;
                                 return (retval);                                  return (retval);
                         } else {                          } else {
                                 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. */
                                         if (errno == ENOENT)                                          continue;
                                                 continue;  
                                         free(record);  
                                         return (-2);  
                                 }                                  }
                                 myfd = 1;                                  myfd = 1;
                         }                          }
Line 273  getent(cap, len, db_array, fd, name, dep
Line 323  getent(cap, len, db_array, fd, name, dep
                  */                   */
                 {                  {
                 char buf[BUFSIZ];                  char buf[BUFSIZ];
                 register char *b_end, *bp;                  char *b_end, *bp, *cp;
                 register int c;                  int c, slash;
   
                 /*                  /*
                  * Loop invariants:                   * Loop invariants:
Line 283  getent(cap, len, db_array, fd, name, dep
Line 333  getent(cap, len, db_array, fd, name, dep
                  *      Rp always points just past last character in record.                   *      Rp always points just past last character in record.
                  *      B_end always points just past last character in buf.                   *      B_end always points just past last character in buf.
                  *      Bp always points at next character in buf.                   *      Bp always points at next character in buf.
                    *      Cp remembers where the last colon was.
                  */                   */
                 b_end = buf;                  b_end = buf;
                 bp = buf;                  bp = buf;
                   cp = 0;
                   slash = 0;
                 for (;;) {                  for (;;) {
   
                         /*                          /*
Line 316  getent(cap, len, db_array, fd, name, dep
Line 369  getent(cap, len, db_array, fd, name, dep
   
                                 c = *bp++;                                  c = *bp++;
                                 if (c == '\n') {                                  if (c == '\n') {
                                         if (rp > record && *(rp-1) == '\\') {                                          if (slash) {
                                                   slash = 0;
                                                 rp--;                                                  rp--;
                                                 continue;                                                  continue;
                                         } else                                          } else
                                                 break;                                                  break;
                                 }                                  }
                                   if (slash) {
                                           slash = 0;
                                           cp = 0;
                                   }
                                   if (c == ':') {
                                           /*
                                            * If the field was `empty' (i.e.
                                            * contained only white space), back up
                                            * to the colon (eliminating the
                                            * field).
                                            */
                                           if (cp)
                                                   rp = cp;
                                           else
                                                   cp = rp;
                                   } else if (c == '\\') {
                                           slash = 1;
                                   } else if (c != ' ' && c != '\t') {
                                           /*
                                            * Forget where the colon was, as this
                                            * is not an empty field.
                                            */
                                           cp = 0;
                                   }
                                 *rp++ = c;                                  *rp++ = c;
   
                                 /*                                  /*
Line 346  getent(cap, len, db_array, fd, name, dep
Line 424  getent(cap, len, db_array, fd, name, dep
                                         rp = record + pos;                                          rp = record + pos;
                                 }                                  }
                         }                          }
                                 /* loop invariant let's us do this */                          /* Eliminate any white space after the last colon. */
                           if (cp)
                                   rp = cp + 1;
                           /* Loop invariant lets us do this. */
                         *rp++ = '\0';                          *rp++ = '\0';
   
                         /*                          /*
Line 384  getent(cap, len, db_array, fd, name, dep
Line 465  getent(cap, len, db_array, fd, name, dep
          * references in it ...           * references in it ...
          */           */
 tc_exp: {  tc_exp: {
                 register char *newicap, *s;                  char *newicap, *s;
                 register int newilen;                  size_t ilen, newilen;
                 u_int ilen;  
                 int diff, iret, tclen;                  int diff, iret, tclen;
                 char *icap, *scan, *tc, *tcstart, *tcend;                  char *icap, *scan, *tc, *tcstart, *tcend;
   
Line 493  tc_exp: {
Line 573  tc_exp: {
                          * Insert tc'ed record into our record.                           * Insert tc'ed record into our record.
                          */                           */
                         s = tcstart + newilen;                          s = tcstart + newilen;
                         bcopy(tcend, s, rp - tcend);                          memmove(s, tcend,  (size_t)(rp - tcend));
                         bcopy(newicap, tcstart, newilen);                          memmove(tcstart, newicap, newilen);
                         rp += diff;                          rp += diff;
                         free(icap);                          free(icap);
   
Line 529  tc_exp: {
Line 609  tc_exp: {
 static int  static int
 cdbget(capdbp, bp, name)  cdbget(capdbp, bp, name)
         DB *capdbp;          DB *capdbp;
         char **bp, *name;          char **bp;
           const char *name;
 {  {
         DBT key, data;          DBT key;
         char *buf;          DBT data;
         int st;  
   
         key.data = name;          /* LINTED key is not modified */
           key.data = (char *)name;
         key.size = strlen(name);          key.size = strlen(name);
   
         for (;;) {          for (;;) {
Line 565  cdbget(capdbp, bp, name)
Line 646  cdbget(capdbp, bp, name)
  */   */
 int  int
 cgetmatch(buf, name)  cgetmatch(buf, name)
         char *buf, *name;          const char *buf, *name;
 {  {
         register char *np, *bp;          const char *np, *bp;
   
         /*          /*
          * Start search at beginning of record.           * Start search at beginning of record.
Line 579  cgetmatch(buf, name)
Line 660  cgetmatch(buf, name)
                  */                   */
                 np = name;                  np = 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;
   
Line 601  cgetmatch(buf, name)
Line 682  cgetmatch(buf, name)
         }          }
 }  }
   
   
   
   
   
 int  int
 cgetfirst(buf, db_array)  cgetfirst(buf, db_array)
         char **buf, **db_array;          char **buf, **db_array;
Line 637  cgetclose()
Line 714  cgetclose()
  */   */
 int  int
 cgetnext(bp, db_array)  cgetnext(bp, db_array)
         register char **bp;          char **bp;
         char **db_array;          char **db_array;
 {  {
         size_t len;          size_t len;
         int status, i, done;          int status, done;
         char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];          char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
         u_int dummy;          size_t dummy;
   
         if (dbp == NULL)          if (dbp == NULL)
                 dbp = db_array;                  dbp = db_array;
Line 657  cgetnext(bp, db_array)
Line 734  cgetnext(bp, db_array)
                         gottoprec = 1;                          gottoprec = 1;
                         line = toprec;                          line = toprec;
                 } else {                  } else {
                         line = fgetline(pfp, &len);                          line = fgetln(pfp, &len);
                         if (line == NULL && pfp) {                          if (line == NULL && pfp) {
                                 (void)fclose(pfp);  
                                 if (ferror(pfp)) {                                  if (ferror(pfp)) {
                                         (void)cgetclose();                                          (void)cgetclose();
                                         return (-1);                                          return (-1);
                                 } else {                                  } else {
                                           (void)fclose(pfp);
                                           pfp = NULL;
                                         if (*++dbp == NULL) {                                          if (*++dbp == NULL) {
                                                 (void)cgetclose();                                                  (void)cgetclose();
                                                 return (0);                                                  return (0);
Line 680  cgetnext(bp, db_array)
Line 758  cgetnext(bp, db_array)
                                 slash = 0;                                  slash = 0;
                                 continue;                                  continue;
                         }                          }
                         if (isspace(*line) ||                          if (isspace((unsigned char)*line) ||
                             *line == ':' || *line == '#' || slash) {                              *line == ':' || *line == '#' || slash) {
                                 if (line[len - 2] == '\\')                                  if (line[len - 2] == '\\')
                                         slash = 1;                                          slash = 1;
Line 698  cgetnext(bp, db_array)
Line 776  cgetnext(bp, db_array)
                 /*                  /*
                  * Line points to a name line.                   * Line points to a name line.
                  */                   */
                 i = 0;  
                 done = 0;                  done = 0;
                 np = nbuf;                  np = nbuf;
                 for (;;) {                  for (;;) {
Line 716  cgetnext(bp, db_array)
Line 793  cgetnext(bp, db_array)
                                 *np = '\0';                                  *np = '\0';
                                 break;                                  break;
                         } else { /* name field extends beyond the line */                          } else { /* name field extends beyond the line */
                                 line = fgetline(pfp, &len);                                  line = fgetln(pfp, &len);
                                 if (line == NULL && pfp) {                                  if (line == NULL && pfp) {
                                         (void)fclose(pfp);  
                                         if (ferror(pfp)) {                                          if (ferror(pfp)) {
                                                 (void)cgetclose();                                                  (void)cgetclose();
                                                 return (-1);                                                  return (-1);
                                         }                                          }
                                           (void)fclose(pfp);
                                           pfp = NULL;
                                           *np = '\0';
                                           break;
                                 } else                                  } else
                                         line[len - 1] = '\0';                                          line[len - 1] = '\0';
                         }                          }
                 }                  }
                 rp = buf;                  rp = buf;
                 for(cp = nbuf; *cp != NULL; cp++)                  for(cp = nbuf; *cp != '\0'; cp++)
                         if (*cp == '|' || *cp == ':')                          if (*cp == '|' || *cp == ':')
                                 break;                                  break;
                         else                          else
Line 763  cgetnext(bp, db_array)
Line 843  cgetnext(bp, db_array)
  */   */
 int  int
 cgetstr(buf, cap, str)  cgetstr(buf, cap, str)
         char *buf, *cap;          char *buf;
           const char *cap;
         char **str;          char **str;
 {  {
         register u_int m_room;          u_int m_room;
         register char *bp, *mp;          const char *bp;
           char *mp;
         int len;          int len;
         char *mem;          char *mem;
   
Line 806  cgetstr(buf, cap, str)
Line 888  cgetstr(buf, cap, str)
                         if (*bp == ':' || *bp == '\0')                          if (*bp == ':' || *bp == '\0')
                                 break;  /* drop unfinished escape */                                  break;  /* drop unfinished escape */
                         if ('0' <= *bp && *bp <= '7') {                          if ('0' <= *bp && *bp <= '7') {
                                 register int n, i;                                  int n, i;
   
                                 n = 0;                                  n = 0;
                                 i = 3;  /* maximum of three octal digits */                                  i = 3;  /* maximum of three octal digits */
Line 888  cgetstr(buf, cap, str)
Line 970  cgetstr(buf, cap, str)
  */   */
 int  int
 cgetustr(buf, cap, str)  cgetustr(buf, cap, str)
         char *buf, *cap, **str;          char *buf;
           const char *cap;
           char **str;
 {  {
         register u_int m_room;          u_int m_room;
         register char *bp, *mp;          const char *bp;
           char *mp;
         int len;          int len;
         char *mem;          char *mem;
   
Line 957  cgetustr(buf, cap, str)
Line 1042  cgetustr(buf, cap, str)
  */   */
 int  int
 cgetnum(buf, cap, num)  cgetnum(buf, cap, num)
         char *buf, *cap;          char *buf;
           const char *cap;
         long *num;          long *num;
 {  {
         register long n;          long n;
         register int base, digit;          int base, digit;
         register char *bp;          const char *bp;
   
         /*          /*
          * Find numeric capability cap           * Find numeric capability cap

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.28

CVSweb <webmaster@jp.NetBSD.org>