[BACK]Return to mandocdb.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mandocdb.c between version 1.254 and 1.255

version 1.254, 2017/08/26 12:59:17 version 1.255, 2017/08/26 15:55:46
Line 19 
Line 19 
 #include "config.h"  #include "config.h"
   
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/mman.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/wait.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
Line 319  mandocdb(int argc, char *argv[])
Line 319  mandocdb(int argc, char *argv[])
         int               ch, i;          int               ch, i;
   
 #if HAVE_PLEDGE  #if HAVE_PLEDGE
         if (pledge("stdio rpath wpath cpath fattr flock proc exec", NULL) == -1) {          if (pledge("stdio rpath wpath cpath", NULL) == -1) {
                 warn("pledge");                  warn("pledge");
                 return (int)MANDOCLEVEL_SYSERR;                  return (int)MANDOCLEVEL_SYSERR;
         }          }
Line 440  mandocdb(int argc, char *argv[])
Line 440  mandocdb(int argc, char *argv[])
                          * The existing database is usable.  Process                           * The existing database is usable.  Process
                          * all files specified on the command-line.                           * all files specified on the command-line.
                          */                           */
 #if HAVE_PLEDGE  
                         if (!nodb) {  
                                 if (pledge("stdio rpath wpath cpath fattr flock", NULL) == -1) {  
                                         warn("pledge");  
                                         exitcode = (int)MANDOCLEVEL_SYSERR;  
                                         goto out;  
                                 }  
                         }  
 #endif  
                         use_all = 1;                          use_all = 1;
                         for (i = 0; i < argc; i++)                          for (i = 0; i < argc; i++)
                                 filescan(argv[i]);                                  filescan(argv[i]);
Line 2119  dbprune(struct dba *dba)
Line 2110  dbprune(struct dba *dba)
 static void  static void
 dbwrite(struct dba *dba)  dbwrite(struct dba *dba)
 {  {
         char             tfn[33];          struct stat      sb1, sb2;
         int              status;          char             tfn[33], *cp1, *cp2;
         pid_t            child;          off_t            i;
           int              fd1, fd2;
   
         /*          /*
          * Do not write empty databases, and delete existing ones           * Do not write empty databases, and delete existing ones
Line 2160  dbwrite(struct dba *dba)
Line 2152  dbwrite(struct dba *dba)
                 say("", "&%s", tfn);                  say("", "&%s", tfn);
                 return;                  return;
         }          }
           cp1 = cp2 = NULL;
           fd1 = fd2 = -1;
         (void)strlcat(tfn, "/" MANDOC_DB, sizeof(tfn));          (void)strlcat(tfn, "/" MANDOC_DB, sizeof(tfn));
         if (dba_write(tfn, dba) == -1) {          if (dba_write(tfn, dba) == -1) {
                 exitcode = (int)MANDOCLEVEL_SYSERR;  
                 say(tfn, "&dba_write");                  say(tfn, "&dba_write");
                 goto out;                  goto err;
         }          }
           if ((fd1 = open(MANDOC_DB, O_RDONLY, 0)) == -1) {
         switch (child = fork()) {                  say(MANDOC_DB, "&open");
         case -1:                  goto err;
                 exitcode = (int)MANDOCLEVEL_SYSERR;  
                 say("", "&fork cmp");  
                 return;  
         case 0:  
                 execlp("cmp", "cmp", "-s", tfn, MANDOC_DB, (char *)NULL);  
                 say("", "&exec cmp");  
                 exit(0);  
         default:  
                 break;  
         }          }
         if (waitpid(child, &status, 0) == -1) {          if ((fd2 = open(tfn, O_RDONLY, 0)) == -1) {
                 exitcode = (int)MANDOCLEVEL_SYSERR;                  say(tfn, "&open");
                 say("", "&wait cmp");                  goto err;
         } else if (WIFSIGNALED(status)) {  
                 exitcode = (int)MANDOCLEVEL_SYSERR;  
                 say("", "cmp died from signal %d", WTERMSIG(status));  
         } else if (WEXITSTATUS(status)) {  
                 exitcode = (int)MANDOCLEVEL_SYSERR;  
                 say(MANDOC_DB,  
                     "Data changed, but cannot replace database");  
         }          }
           if (fstat(fd1, &sb1) == -1) {
                   say(MANDOC_DB, "&fstat");
                   goto err;
           }
           if (fstat(fd2, &sb2) == -1) {
                   say(tfn, "&fstat");
                   goto err;
           }
           if (sb1.st_size != sb2.st_size)
                   goto err;
           if ((cp1 = mmap(NULL, sb1.st_size, PROT_READ, MAP_PRIVATE,
               fd1, 0)) == NULL) {
                   say(MANDOC_DB, "&mmap");
                   goto err;
           }
           if ((cp2 = mmap(NULL, sb2.st_size, PROT_READ, MAP_PRIVATE,
               fd2, 0)) == NULL) {
                   say(tfn, "&mmap");
                   goto err;
           }
           for (i = 0; i < sb1.st_size; i++)
                   if (cp1[i] != cp2[i])
                           goto err;
           goto out;
   
   err:
           exitcode = (int)MANDOCLEVEL_SYSERR;
           say(MANDOC_DB, "Data changed, but cannot replace database");
   
 out:  out:
           if (cp1 != NULL)
                   munmap(cp1, sb1.st_size);
           if (cp2 != NULL)
                   munmap(cp2, sb2.st_size);
           if (fd1 != -1)
                   close(fd1);
           if (fd2 != -1)
                   close(fd2);
         unlink(tfn);          unlink(tfn);
         *strrchr(tfn, '/') = '\0';          *strrchr(tfn, '/') = '\0';
         rmdir(tfn);          rmdir(tfn);

Legend:
Removed from v.1.254  
changed lines
  Added in v.1.255

CVSweb