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

Diff for /mandoc/main.c between version 1.257 and 1.258

version 1.257, 2015/11/07 17:58:55 version 1.258, 2015/11/14 23:57:47
Line 27 
Line 27 
 #if HAVE_ERR  #if HAVE_ERR
 #include <err.h>  #include <err.h>
 #endif  #endif
   #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <glob.h>  #include <glob.h>
 #include <signal.h>  #include <signal.h>
Line 131  main(int argc, char *argv[])
Line 132  main(int argc, char *argv[])
         int              show_usage;          int              show_usage;
         int              options;          int              options;
         int              use_pager;          int              use_pager;
           int              status;
         int              c;          int              c;
           pid_t            pager_pid;
   
 #if HAVE_PROGNAME  #if HAVE_PROGNAME
         progname = getprogname();          progname = getprogname();
Line 152  main(int argc, char *argv[])
Line 155  main(int argc, char *argv[])
 #endif  #endif
   
 #if HAVE_PLEDGE  #if HAVE_PLEDGE
         if (pledge("stdio rpath tmppath proc exec flock", NULL) == -1)          if (pledge("stdio rpath tmppath tty proc exec flock", NULL) == -1)
                 err((int)MANDOCLEVEL_SYSERR, "pledge");                  err((int)MANDOCLEVEL_SYSERR, "pledge");
 #endif  #endif
   
Line 427  main(int argc, char *argv[])
Line 430  main(int argc, char *argv[])
         /* mandoc(1) */          /* mandoc(1) */
   
 #if HAVE_PLEDGE  #if HAVE_PLEDGE
         if (pledge(use_pager ? "stdio rpath tmppath proc exec" :          if (pledge(use_pager ? "stdio rpath tmppath tty proc exec" :
             "stdio rpath", NULL) == -1)              "stdio rpath", NULL) == -1)
                 err((int)MANDOCLEVEL_SYSERR, "pledge");                  err((int)MANDOCLEVEL_SYSERR, "pledge");
 #endif  #endif
Line 527  out:
Line 530  out:
         if (tag_files != NULL) {          if (tag_files != NULL) {
                 fclose(stdout);                  fclose(stdout);
                 tag_write();                  tag_write();
                 waitpid(spawn_pager(tag_files), NULL, 0);                  pager_pid = spawn_pager(tag_files);
                   for (;;) {
                           if (waitpid(pager_pid, &status, WUNTRACED) == -1) {
                                   if (errno == EINTR)
                                           continue;
                                   warn("wait");
                                   rc = MANDOCLEVEL_SYSERR;
                                   break;
                           }
                           if (!WIFSTOPPED(status))
                                   break;
   
                           (void)tcsetpgrp(STDIN_FILENO, getpgid(0));
                           kill(0, WSTOPSIG(status));
   
                           /*
                            * I'm now stopped.
                            * When getting SIGCONT, continue here:
                            */
   
                           (void)tcsetpgrp(STDIN_FILENO, pager_pid);
                           kill(pager_pid, SIGCONT);
                   }
                 tag_unlink();                  tag_unlink();
         }          }
   
Line 1016  spawn_pager(struct tag_files *tag_files)
Line 1041  spawn_pager(struct tag_files *tag_files)
         case -1:          case -1:
                 err((int)MANDOCLEVEL_SYSERR, "fork");                  err((int)MANDOCLEVEL_SYSERR, "fork");
         case 0:          case 0:
                   /* Set pgrp in both parent and child to avoid racing exec. */
                   (void)setpgid(0, 0);
                 break;                  break;
         default:          default:
                   (void)setpgid(pager_pid, 0);
                   if (tcsetpgrp(STDIN_FILENO, pager_pid) == -1)
                           err((int)MANDOCLEVEL_SYSERR, "tcsetpgrp");
 #if HAVE_PLEDGE  #if HAVE_PLEDGE
                 if (pledge("stdio rpath tmppath", NULL) == -1)                  if (pledge("stdio rpath tmppath tty proc", NULL) == -1)
                         err((int)MANDOCLEVEL_SYSERR, "pledge");                          err((int)MANDOCLEVEL_SYSERR, "pledge");
 #endif  #endif
                 return pager_pid;                  return pager_pid;

Legend:
Removed from v.1.257  
changed lines
  Added in v.1.258

CVSweb