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

Diff for /mandoc/cgi.c between version 1.123 and 1.128

version 1.123, 2016/04/15 00:14:17 version 1.128, 2016/04/15 16:42:52
Line 21 
Line 21 
 #include <sys/time.h>  #include <sys/time.h>
   
 #include <ctype.h>  #include <ctype.h>
   #include <err.h>
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <limits.h>  #include <limits.h>
Line 108  static const int sec_MAX = sizeof(sec_names) / sizeof(
Line 109  static const int sec_MAX = sizeof(sec_names) / sizeof(
   
 static  const char *const arch_names[] = {  static  const char *const arch_names[] = {
     "amd64",       "alpha",       "armish",      "armv7",      "amd64",       "alpha",       "armish",      "armv7",
     "aviion",      "hppa",        "hppa64",      "i386",      "hppa",        "hppa64",      "i386",        "landisk",
     "ia64",        "landisk",     "loongson",    "luna88k",      "loongson",    "luna88k",     "macppc",      "mips64",
     "macppc",      "mips64",      "octeon",      "sgi",      "octeon",      "sgi",         "socppc",      "sparc",
     "socppc",      "solbourne",   "sparc",       "sparc64",      "sparc64",     "zaurus",
     "vax",         "zaurus",  
     "amiga",       "arc",         "arm32",       "atari",      "amiga",       "arc",         "arm32",       "atari",
     "beagle",      "cats",        "hp300",       "mac68k",      "aviion",      "beagle",      "cats",        "hp300",
     "mvme68k",     "mvme88k",     "mvmeppc",     "palm",      "ia64",        "mac68k",      "mvme68k",     "mvme88k",
     "pc532",       "pegasos",     "pmax",        "powerpc",      "mvmeppc",     "palm",        "pc532",       "pegasos",
     "sun3",        "wgrisc",      "x68k"      "pmax",        "powerpc",     "solbourne",   "sun3",
       "vax",         "wgrisc",      "x68k"
 };  };
 static  const int arch_MAX = sizeof(arch_names) / sizeof(char *);  static  const int arch_MAX = sizeof(arch_names) / sizeof(char *);
   
Line 341  resp_begin_html(int code, const char *msg)
Line 342  resp_begin_html(int code, const char *msg)
         resp_begin_http(code, msg);          resp_begin_http(code, msg);
   
         printf("<!DOCTYPE html>\n"          printf("<!DOCTYPE html>\n"
                "<HTML>\n"                 "<html>\n"
                "<HEAD>\n"                 "<head>\n"
                "<META CHARSET=\"UTF-8\" />\n"                 "<meta charset=\"UTF-8\"/>\n"
                "<LINK REL=\"stylesheet\" HREF=\"%s/mandoc.css\""                 "<link rel=\"stylesheet\" href=\"%s/mandoc.css\""
                " TYPE=\"text/css\" media=\"all\">\n"                 " type=\"text/css\" media=\"all\">\n"
                "<TITLE>%s</TITLE>\n"                 "<title>%s</title>\n"
                "</HEAD>\n"                 "</head>\n"
                "<BODY>\n"                 "<body>\n"
                "<!-- Begin page content. //-->\n",                 "<!-- Begin page content. //-->\n",
                CSS_DIR, CUSTOMIZE_TITLE);                 CSS_DIR, CUSTOMIZE_TITLE);
   
Line 361  resp_end_html(void)
Line 362  resp_end_html(void)
   
         resp_copy(MAN_DIR "/footer.html");          resp_copy(MAN_DIR "/footer.html");
   
         puts("</BODY>\n"          puts("</body>\n"
              "</HTML>");               "</html>");
 }  }
   
 static void  static void
Line 371  resp_searchform(const struct req *req)
Line 372  resp_searchform(const struct req *req)
         int              i;          int              i;
   
         puts("<!-- Begin search form. //-->");          puts("<!-- Begin search form. //-->");
         printf("<DIV ID=\"mancgi\">\n"          printf("<div id=\"mancgi\">\n"
                "<FORM ACTION=\"/%s\" METHOD=\"get\">\n"                 "<form action=\"/%s\" method=\"get\">\n"
                "<FIELDSET>\n"                 "<fieldset>\n"
                "<LEGEND>Manual Page Search Parameters</LEGEND>\n",                 "<legend>Manual Page Search Parameters</legend>\n",
                scriptname);                 scriptname);
   
         /* Write query input box. */          /* Write query input box. */
   
         printf( "<TABLE><TR><TD>\n"          printf( "<table><tr><td>\n"
                 "<INPUT TYPE=\"text\" NAME=\"query\" VALUE=\"");                  "<input type=\"text\" name=\"query\" value=\"");
         if (NULL != req->q.query)          if (NULL != req->q.query)
                 html_print(req->q.query);                  html_print(req->q.query);
         puts("\" SIZE=\"40\">");          puts("\" size=\"40\">");
   
         /* Write submission and reset buttons. */          /* Write submission and reset buttons. */
   
         printf( "<INPUT TYPE=\"submit\" VALUE=\"Submit\">\n"          printf( "<input type=\"submit\" value=\"Submit\">\n"
                 "<INPUT TYPE=\"reset\" VALUE=\"Reset\">\n");                  "<input type=\"reset\" value=\"Reset\">\n");
   
         /* Write show radio button */          /* Write show radio button */
   
         printf( "</TD><TD>\n"          printf( "</td><td>\n"
                 "<INPUT TYPE=\"radio\" ");                  "<input type=\"radio\" ");
         if (req->q.equal)          if (req->q.equal)
                 printf("CHECKED=\"checked\" ");                  printf("checked=\"checked\" ");
         printf( "NAME=\"apropos\" ID=\"show\" VALUE=\"0\">\n"          printf( "name=\"apropos\" id=\"show\" value=\"0\">\n"
                 "<LABEL FOR=\"show\">Show named manual page</LABEL>\n");                  "<label for=\"show\">Show named manual page</label>\n");
   
         /* Write section selector. */          /* Write section selector. */
   
         puts(   "</TD></TR><TR><TD>\n"          puts(   "</td></tr><tr><td>\n"
                 "<SELECT NAME=\"sec\">");                  "<select name=\"sec\">");
         for (i = 0; i < sec_MAX; i++) {          for (i = 0; i < sec_MAX; i++) {
                 printf("<OPTION VALUE=\"%s\"", sec_numbers[i]);                  printf("<option value=\"%s\"", sec_numbers[i]);
                 if (NULL != req->q.sec &&                  if (NULL != req->q.sec &&
                     0 == strcmp(sec_numbers[i], req->q.sec))                      0 == strcmp(sec_numbers[i], req->q.sec))
                         printf(" SELECTED=\"selected\"");                          printf(" selected=\"selected\"");
                 printf(">%s</OPTION>\n", sec_names[i]);                  printf(">%s</option>\n", sec_names[i]);
         }          }
         puts("</SELECT>");          puts("</select>");
   
         /* Write architecture selector. */          /* Write architecture selector. */
   
         printf( "<SELECT NAME=\"arch\">\n"          printf( "<select name=\"arch\">\n"
                 "<OPTION VALUE=\"default\"");                  "<option value=\"default\"");
         if (NULL == req->q.arch)          if (NULL == req->q.arch)
                 printf(" SELECTED=\"selected\"");                  printf(" selected=\"selected\"");
         puts(">All Architectures</OPTION>");          puts(">All Architectures</option>");
         for (i = 0; i < arch_MAX; i++) {          for (i = 0; i < arch_MAX; i++) {
                 printf("<OPTION VALUE=\"%s\"", arch_names[i]);                  printf("<option value=\"%s\"", arch_names[i]);
                 if (NULL != req->q.arch &&                  if (NULL != req->q.arch &&
                     0 == strcmp(arch_names[i], req->q.arch))                      0 == strcmp(arch_names[i], req->q.arch))
                         printf(" SELECTED=\"selected\"");                          printf(" selected=\"selected\"");
                 printf(">%s</OPTION>\n", arch_names[i]);                  printf(">%s</option>\n", arch_names[i]);
         }          }
         puts("</SELECT>");          puts("</select>");
   
         /* Write manpath selector. */          /* Write manpath selector. */
   
         if (req->psz > 1) {          if (req->psz > 1) {
                 puts("<SELECT NAME=\"manpath\">");                  puts("<select name=\"manpath\">");
                 for (i = 0; i < (int)req->psz; i++) {                  for (i = 0; i < (int)req->psz; i++) {
                         printf("<OPTION ");                          printf("<option ");
                         if (strcmp(req->q.manpath, req->p[i]) == 0)                          if (strcmp(req->q.manpath, req->p[i]) == 0)
                                 printf("SELECTED=\"selected\" ");                                  printf("selected=\"selected\" ");
                         printf("VALUE=\"");                          printf("value=\"");
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         printf("\">");                          printf("\">");
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         puts("</OPTION>");                          puts("</option>");
                 }                  }
                 puts("</SELECT>");                  puts("</select>");
         }          }
   
         /* Write search radio button */          /* Write search radio button */
   
         printf( "</TD><TD>\n"          printf( "</td><td>\n"
                 "<INPUT TYPE=\"radio\" ");                  "<input type=\"radio\" ");
         if (0 == req->q.equal)          if (0 == req->q.equal)
                 printf("CHECKED=\"checked\" ");                  printf("checked=\"checked\" ");
         printf( "NAME=\"apropos\" ID=\"search\" VALUE=\"1\">\n"          printf( "name=\"apropos\" id=\"search\" value=\"1\">\n"
                 "<LABEL FOR=\"search\">Search with apropos query</LABEL>\n");                  "<label for=\"search\">Search with apropos query</label>\n");
   
         puts("</TD></TR></TABLE>\n"          puts("</td></tr></table>\n"
              "</FIELDSET>\n"               "</fieldset>\n"
              "</FORM>\n"               "</form>\n"
              "</DIV>");               "</div>");
         puts("<!-- End search form. //-->");          puts("<!-- End search form. //-->");
 }  }
   
Line 507  pg_index(const struct req *req)
Line 508  pg_index(const struct req *req)
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req);
         printf("<P>\n"          printf("<p>\n"
                "This web interface is documented in the\n"                 "This web interface is documented in the\n"
                "<A HREF=\"/%s%smandoc/man8/man.cgi.8\">man.cgi</A>\n"                 "<a href=\"/%s%smandoc/man8/man.cgi.8\">man.cgi</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<A HREF=\"/%s%smandoc/man1/apropos.1\">apropos</A>\n"                 "<a href=\"/%s%smandoc/man1/apropos.1\">apropos</a>\n"
                "manual explains the query syntax.\n"                 "manual explains the query syntax.\n"
                "</P>\n",                 "</p>\n",
                scriptname, *scriptname == '\0' ? "" : "/",                 scriptname, *scriptname == '\0' ? "" : "/",
                scriptname, *scriptname == '\0' ? "" : "/");                 scriptname, *scriptname == '\0' ? "" : "/");
         resp_end_html();          resp_end_html();
Line 524  pg_noresult(const struct req *req, const char *msg)
Line 525  pg_noresult(const struct req *req, const char *msg)
 {  {
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
         resp_searchform(req);          resp_searchform(req);
         puts("<P>");          puts("<p>");
         puts(msg);          puts(msg);
         puts("</P>");          puts("</p>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 535  pg_error_badrequest(const char *msg)
Line 536  pg_error_badrequest(const char *msg)
 {  {
   
         resp_begin_html(400, "Bad Request");          resp_begin_html(400, "Bad Request");
         puts("<H1>Bad Request</H1>\n"          puts("<h1>Bad Request</h1>\n"
              "<P>\n");               "<p>\n");
         puts(msg);          puts(msg);
         printf("Try again from the\n"          printf("Try again from the\n"
                "<A HREF=\"/%s\">main page</A>.\n"                 "<a href=\"/%s\">main page</a>.\n"
                "</P>", scriptname);                 "</p>", scriptname);
         resp_end_html();          resp_end_html();
 }  }
   
Line 548  static void
Line 549  static void
 pg_error_internal(void)  pg_error_internal(void)
 {  {
         resp_begin_html(500, "Internal Server Error");          resp_begin_html(500, "Internal Server Error");
         puts("<P>Internal Server Error</P>");          puts("<p>Internal Server Error</p>");
         resp_end_html();          resp_end_html();
 }  }
   
Line 564  pg_searchres(const struct req *req, struct manpage *r,
Line 565  pg_searchres(const struct req *req, struct manpage *r,
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 if (validate_filename(r[i].file))                  if (validate_filename(r[i].file))
                         continue;                          continue;
                 fprintf(stderr, "invalid filename %s in %s database\n",                  warnx("invalid filename %s in %s database",
                     r[i].file, req->q.manpath);                      r[i].file, req->q.manpath);
                 pg_error_internal();                  pg_error_internal();
                 return;                  return;
Line 590  pg_searchres(const struct req *req, struct manpage *r,
Line 591  pg_searchres(const struct req *req, struct manpage *r,
         resp_searchform(req);          resp_searchform(req);
   
         if (sz > 1) {          if (sz > 1) {
                 puts("<DIV CLASS=\"results\">");                  puts("<div class=\"results\">");
                 puts("<TABLE>");                  puts("<table>");
   
                 for (i = 0; i < sz; i++) {                  for (i = 0; i < sz; i++) {
                         printf("<TR>\n"                          printf("<tr>\n"
                                "<TD CLASS=\"title\">\n"                                 "<td class=\"title\">\n"
                                "<A HREF=\"/%s%s%s/%s",                                 "<a href=\"/%s%s%s/%s",
                             scriptname, *scriptname == '\0' ? "" : "/",                              scriptname, *scriptname == '\0' ? "" : "/",
                             req->q.manpath, r[i].file);                              req->q.manpath, r[i].file);
                         printf("\">");                          printf("\">");
                         html_print(r[i].names);                          html_print(r[i].names);
                         printf("</A>\n"                          printf("</a>\n"
                                "</TD>\n"                                 "</td>\n"
                                "<TD CLASS=\"desc\">");                                 "<td class=\"desc\">");
                         html_print(r[i].output);                          html_print(r[i].output);
                         puts("</TD>\n"                          puts("</td>\n"
                              "</TR>");                               "</tr>");
                 }                  }
   
                 puts("</TABLE>\n"                  puts("</table>\n"
                      "</DIV>");                       "</div>");
         }          }
   
         /*          /*
Line 619  pg_searchres(const struct req *req, struct manpage *r,
Line 620  pg_searchres(const struct req *req, struct manpage *r,
          */           */
   
         if (req->q.equal || sz == 1) {          if (req->q.equal || sz == 1) {
                 puts("<HR>");                  puts("<hr>");
                 iuse = 0;                  iuse = 0;
                 priouse = 20;                  priouse = 20;
                 archpriouse = 3;                  archpriouse = 3;
Line 670  catman(const struct req *req, const char *file)
Line 671  catman(const struct req *req, const char *file)
         int              italic, bold;          int              italic, bold;
   
         if ((f = fopen(file, "r")) == NULL) {          if ((f = fopen(file, "r")) == NULL) {
                 puts("<P>You specified an invalid manual file.</P>");                  puts("<p>You specified an invalid manual file.</p>");
                 return;                  return;
         }          }
   
         puts("<DIV CLASS=\"catman\">\n"          puts("<div class=\"catman\">\n"
              "<PRE>");               "<pre>");
   
         p = NULL;          p = NULL;
         sz = 0;          sz = 0;
Line 701  catman(const struct req *req, const char *file)
Line 702  catman(const struct req *req, const char *file)
   
                         if ('\b' != p[i + 1]) {                          if ('\b' != p[i + 1]) {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 html_putchar(p[i]);                                  html_putchar(p[i]);
                                 continue;                                  continue;
Line 714  catman(const struct req *req, const char *file)
Line 715  catman(const struct req *req, const char *file)
   
                         if ('_' == p[i]) {                          if ('_' == p[i]) {
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 if ( ! italic)                                  if ( ! italic)
                                         printf("<I>");                                          printf("<i>");
                                 bold = 0;                                  bold = 0;
                                 italic = 1;                                  italic = 1;
                                 i += 2;                                  i += 2;
Line 738  catman(const struct req *req, const char *file)
Line 739  catman(const struct req *req, const char *file)
                                         ('*' == p[i] && '|' == p[i + 2]) ||                                          ('*' == p[i] && '|' == p[i + 2]) ||
                                         ('|' == p[i] && '*' == p[i + 2]))  {                                          ('|' == p[i] && '*' == p[i + 2]))  {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 putchar('*');                                  putchar('*');
                                 i += 2;                                  i += 2;
Line 752  catman(const struct req *req, const char *file)
Line 753  catman(const struct req *req, const char *file)
                                         ('+' == p[i] && '|' == p[i + 1]) ||                                          ('+' == p[i] && '|' == p[i + 1]) ||
                                         ('|' == p[i] && '+' == p[i + 1]))  {                                          ('|' == p[i] && '+' == p[i + 1]))  {
                                 if (italic)                                  if (italic)
                                         printf("</I>");                                          printf("</i>");
                                 if (bold)                                  if (bold)
                                         printf("</B>");                                          printf("</b>");
                                 italic = bold = 0;                                  italic = bold = 0;
                                 putchar('+');                                  putchar('+');
                                 i += 2;                                  i += 2;
Line 764  catman(const struct req *req, const char *file)
Line 765  catman(const struct req *req, const char *file)
                         /* Bold mode. */                          /* Bold mode. */
   
                         if (italic)                          if (italic)
                                 printf("</I>");                                  printf("</i>");
                         if ( ! bold)                          if ( ! bold)
                                 printf("<B>");                                  printf("<b>");
                         bold = 1;                          bold = 1;
                         italic = 0;                          italic = 0;
                         i += 2;                          i += 2;
Line 779  catman(const struct req *req, const char *file)
Line 780  catman(const struct req *req, const char *file)
                  */                   */
   
                 if (italic)                  if (italic)
                         printf("</I>");                          printf("</i>");
                 if (bold)                  if (bold)
                         printf("</B>");                          printf("</b>");
   
                 if (i == len - 1 && p[i] != '\n')                  if (i == len - 1 && p[i] != '\n')
                         html_putchar(p[i]);                          html_putchar(p[i]);
Line 790  catman(const struct req *req, const char *file)
Line 791  catman(const struct req *req, const char *file)
         }          }
         free(p);          free(p);
   
         puts("</PRE>\n"          puts("</pre>\n"
              "</DIV>");               "</div>");
   
         fclose(f);          fclose(f);
 }  }
Line 807  format(const struct req *req, const char *file)
Line 808  format(const struct req *req, const char *file)
         int              usepath;          int              usepath;
   
         if (-1 == (fd = open(file, O_RDONLY, 0))) {          if (-1 == (fd = open(file, O_RDONLY, 0))) {
                 puts("<P>You specified an invalid manual file.</P>");                  puts("<p>You specified an invalid manual file.</p>");
                 return;                  return;
         }          }
   
Line 824  format(const struct req *req, const char *file)
Line 825  format(const struct req *req, const char *file)
   
         mparse_result(mp, &man, NULL);          mparse_result(mp, &man, NULL);
         if (man == NULL) {          if (man == NULL) {
                 fprintf(stderr, "fatal mandoc error: %s/%s\n",                  warnx("fatal mandoc error: %s/%s", req->q.manpath, file);
                     req->q.manpath, file);  
                 pg_error_internal();                  pg_error_internal();
                 mparse_free(mp);                  mparse_free(mp);
                 mchars_free();                  mchars_free();
Line 889  pg_show(struct req *req, const char *fullpath)
Line 889  pg_show(struct req *req, const char *fullpath)
          */           */
   
         if (chdir(manpath) == -1) {          if (chdir(manpath) == -1) {
                 fprintf(stderr, "chdir %s: %s\n",                  warn("chdir %s", manpath);
                     manpath, strerror(errno));  
                 pg_error_internal();                  pg_error_internal();
                 free(manpath);                  free(manpath);
                 return;                  return;
Line 931  pg_search(const struct req *req)
Line 930  pg_search(const struct req *req)
          * relative to the manpath root.           * relative to the manpath root.
          */           */
   
         if (-1 == (chdir(req->q.manpath))) {          if (chdir(req->q.manpath) == -1) {
                 fprintf(stderr, "chdir %s: %s\n",                  warn("chdir %s", req->q.manpath);
                     req->q.manpath, strerror(errno));  
                 pg_error_internal();                  pg_error_internal();
                 return;                  return;
         }          }
Line 1008  main(void)
Line 1006  main(void)
         itimer.it_interval.tv_sec = 2;          itimer.it_interval.tv_sec = 2;
         itimer.it_interval.tv_usec = 0;          itimer.it_interval.tv_usec = 0;
         if (setitimer(ITIMER_VIRTUAL, &itimer, NULL) == -1) {          if (setitimer(ITIMER_VIRTUAL, &itimer, NULL) == -1) {
                 fprintf(stderr, "setitimer: %s\n", strerror(errno));                  warn("setitimer");
                 pg_error_internal();                  pg_error_internal();
                 return EXIT_FAILURE;                  return EXIT_FAILURE;
         }          }
Line 1019  main(void)
Line 1017  main(void)
          * relative to the same position.           * relative to the same position.
          */           */
   
         if (-1 == chdir(MAN_DIR)) {          if (chdir(MAN_DIR) == -1) {
                 fprintf(stderr, "MAN_DIR: %s: %s\n",                  warn("MAN_DIR: %s", MAN_DIR);
                     MAN_DIR, strerror(errno));  
                 pg_error_internal();                  pg_error_internal();
                 return EXIT_FAILURE;                  return EXIT_FAILURE;
         }          }
Line 1037  main(void)
Line 1034  main(void)
         else if (*path == '/')          else if (*path == '/')
                 path++;                  path++;
   
         if (*path != '\0' && access(path, F_OK) == -1) {          if (*path != '\0') {
                 path_parse(&req, path);                  path_parse(&req, path);
                 path = "";                  if (access(path, F_OK) == -1)
                           path = "";
         } else if ((querystring = getenv("QUERY_STRING")) != NULL)          } else if ((querystring = getenv("QUERY_STRING")) != NULL)
                 http_parse(&req, querystring);                  http_parse(&req, querystring);
   
Line 1084  main(void)
Line 1082  main(void)
 static void  static void
 path_parse(struct req *req, const char *path)  path_parse(struct req *req, const char *path)
 {  {
         int      dir_done;          char    *dir;
   
         req->isquery = 0;          req->isquery = 0;
         req->q.equal = 1;          req->q.equal = 1;
Line 1114  path_parse(struct req *req, const char *path)
Line 1112  path_parse(struct req *req, const char *path)
         req->q.query = mandoc_strdup(req->q.query);          req->q.query = mandoc_strdup(req->q.query);
   
         /* Optional architecture. */          /* Optional architecture. */
         dir_done = 0;          dir = strrchr(req->q.manpath, '/');
         for (;;) {          if (dir != NULL && strncmp(dir + 1, "man", 3) != 0) {
                 if ((req->q.arch = strrchr(req->q.manpath, '/')) == NULL)                  *dir++ = '\0';
                         break;                  req->q.arch = mandoc_strdup(dir);
                 *req->q.arch++ = '\0';                  dir = strrchr(req->q.manpath, '/');
                 if (dir_done || strncmp(req->q.arch, "man", 3)) {          } else
                         req->q.arch = mandoc_strdup(req->q.arch);                  req->q.arch = NULL;
                         break;  
                 }  
   
                 /* Optional directory name. */          /* Optional directory name. */
                 req->q.arch += 3;          if (dir != NULL && strncmp(dir + 1, "man", 3) == 0) {
                 if (*req->q.arch != '\0') {                  *dir++ = '\0';
                         free(req->q.sec);                  free(req->q.sec);
                         req->q.sec = mandoc_strdup(req->q.arch);                  req->q.sec = mandoc_strdup(dir + 3);
                 }  
                 dir_done = 1;  
         }          }
 }  }
   
Line 1145  pathgen(struct req *req)
Line 1139  pathgen(struct req *req)
         size_t   dpsz;          size_t   dpsz;
         ssize_t  len;          ssize_t  len;
   
         if (NULL == (fp = fopen("manpath.conf", "r"))) {          if ((fp = fopen("manpath.conf", "r")) == NULL) {
                 fprintf(stderr, "%s/manpath.conf: %s\n",                  warn("%s/manpath.conf", MAN_DIR);
                         MAN_DIR, strerror(errno));  
                 pg_error_internal();                  pg_error_internal();
                 exit(EXIT_FAILURE);                  exit(EXIT_FAILURE);
         }          }
Line 1161  pathgen(struct req *req)
Line 1154  pathgen(struct req *req)
                 req->p = mandoc_realloc(req->p,                  req->p = mandoc_realloc(req->p,
                     (req->psz + 1) * sizeof(char *));                      (req->psz + 1) * sizeof(char *));
                 if ( ! validate_urifrag(dp)) {                  if ( ! validate_urifrag(dp)) {
                         fprintf(stderr, "%s/manpath.conf contains "                          warnx("%s/manpath.conf contains "
                             "unsafe path \"%s\"\n", MAN_DIR, dp);                              "unsafe path \"%s\"", MAN_DIR, dp);
                         pg_error_internal();                          pg_error_internal();
                         exit(EXIT_FAILURE);                          exit(EXIT_FAILURE);
                 }                  }
                 if (NULL != strchr(dp, '/')) {                  if (strchr(dp, '/') != NULL) {
                         fprintf(stderr, "%s/manpath.conf contains "                          warnx("%s/manpath.conf contains "
                             "path with slash \"%s\"\n", MAN_DIR, dp);                              "path with slash \"%s\"", MAN_DIR, dp);
                         pg_error_internal();                          pg_error_internal();
                         exit(EXIT_FAILURE);                          exit(EXIT_FAILURE);
                 }                  }
Line 1178  pathgen(struct req *req)
Line 1171  pathgen(struct req *req)
         }          }
         free(dp);          free(dp);
   
         if ( req->p == NULL ) {          if (req->p == NULL) {
                 fprintf(stderr, "%s/manpath.conf is empty\n", MAN_DIR);                  warnx("%s/manpath.conf is empty", MAN_DIR);
                 pg_error_internal();                  pg_error_internal();
                 exit(EXIT_FAILURE);                  exit(EXIT_FAILURE);
         }          }

Legend:
Removed from v.1.123  
changed lines
  Added in v.1.128

CVSweb