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

Diff for /mandoc/cgi.c between version 1.141 and 1.148

version 1.141, 2016/09/12 00:06:20 version 1.148, 2017/02/22 16:20:01
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016 Ingo Schwarze <schwarze@usta.de>   * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@usta.de>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 21 
Line 21 
 #include <sys/time.h>  #include <sys/time.h>
   
 #include <ctype.h>  #include <ctype.h>
   #if HAVE_ERR
 #include <err.h>  #include <err.h>
   #endif
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <limits.h>  #include <limits.h>
Line 113  static const char *const sec_names[] = {
Line 115  static const char *const sec_names[] = {
 static  const int sec_MAX = sizeof(sec_names) / sizeof(char *);  static  const int sec_MAX = sizeof(sec_names) / sizeof(char *);
   
 static  const char *const arch_names[] = {  static  const char *const arch_names[] = {
     "amd64",       "alpha",       "armv7",      "amd64",       "alpha",       "armv7",      "arm64",
     "hppa",        "i386",        "landisk",      "hppa",        "i386",        "landisk",
     "loongson",    "luna88k",     "macppc",      "mips64",      "loongson",    "luna88k",     "macppc",      "mips64",
     "octeon",      "sgi",         "socppc",      "sparc64",      "octeon",      "sgi",         "socppc",      "sparc64",
Line 351  resp_begin_html(int code, const char *msg)
Line 353  resp_begin_html(int code, const char *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",  
                CSS_DIR, CUSTOMIZE_TITLE);                 CSS_DIR, CUSTOMIZE_TITLE);
   
         resp_copy(MAN_DIR "/header.html");          resp_copy(MAN_DIR "/header.html");
Line 378  resp_searchform(const struct req *req, enum focus focu
Line 379  resp_searchform(const struct req *req, enum focus focu
 {  {
         int              i;          int              i;
   
         puts("<!-- Begin search form. //-->");          printf("<form action=\"/%s\" method=\"get\">\n"
         printf("<div id=\"mancgi\">\n"                 "  <fieldset>\n"
                "<form action=\"/%s\" method=\"get\">\n"                 "    <legend>Manual Page Search Parameters</legend>\n",
                "<fieldset>\n"  
                "<legend>Manual Page Search Parameters</legend>\n",  
                scriptname);                 scriptname);
   
         /* Write query input box. */          /* Write query input box. */
   
         printf("<input type=\"text\" name=\"query\" value=\"");          printf("    <input type=\"text\" name=\"query\" value=\"");
         if (req->q.query != NULL)          if (req->q.query != NULL)
                 html_print(req->q.query);                  html_print(req->q.query);
         printf( "\" size=\"40\"");          printf( "\" size=\"40\"");
Line 397  resp_searchform(const struct req *req, enum focus focu
Line 396  resp_searchform(const struct req *req, enum focus focu
   
         /* Write submission buttons. */          /* Write submission buttons. */
   
         printf( "<button type=\"submit\" name=\"apropos\" value=\"0\">"          printf( "    <button type=\"submit\" name=\"apropos\" value=\"0\">"
                 "man</button>\n"                  "man</button>\n"
                 "<button type=\"submit\" name=\"apropos\" value=\"1\">"                  "    <button type=\"submit\" name=\"apropos\" value=\"1\">"
                 "apropos</button>\n<br/>\n");                  "apropos</button>\n"
                   "    <br/>\n");
   
         /* Write section selector. */          /* Write section selector. */
   
         puts("<select name=\"sec\">");          puts("    <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=\"");
Line 444  resp_searchform(const struct req *req, enum focus focu
Line 444  resp_searchform(const struct req *req, enum focus focu
                         html_print(req->p[i]);                          html_print(req->p[i]);
                         puts("</option>");                          puts("</option>");
                 }                  }
                 puts("</select>");                  puts("    </select>");
         }          }
   
         puts("</fieldset>\n"          puts("  </fieldset>\n"
              "</form>\n"               "</form>");
              "</div>");  
         puts("<!-- End search form. //-->");  
 }  }
   
 static int  static int
Line 498  pg_index(const struct req *req)
Line 496  pg_index(const struct req *req)
         resp_searchform(req, FOCUS_QUERY);          resp_searchform(req, FOCUS_QUERY);
         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%sman.cgi.8\">man.cgi(8)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sman.cgi.8\">man.cgi(8)</a>\n"
                "manual, and the\n"                 "manual, and the\n"
                "<a href=\"/%s%sapropos.1\">apropos(1)</a>\n"                 "<a class=\"Xr\" href=\"/%s%sapropos.1\">apropos(1)</a>\n"
                "manual explains the query syntax.\n"                 "manual explains the query syntax.\n"
                "</p>\n",                 "</p>\n",
                scriptname, *scriptname == '\0' ? "" : "/",                 scriptname, *scriptname == '\0' ? "" : "/",
Line 580  pg_searchres(const struct req *req, struct manpage *r,
Line 578  pg_searchres(const struct req *req, struct manpage *r,
             req->q.equal || sz == 1 ? FOCUS_NONE : FOCUS_QUERY);              req->q.equal || sz == 1 ? FOCUS_NONE : FOCUS_QUERY);
   
         if (sz > 1) {          if (sz > 1) {
                 puts("<div class=\"results\">");                  puts("<table class=\"results\">");
                 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>"
                                "<a href=\"/%s%s%s/%s",                                 "<a class=\"Xr\" href=\"/%s%s%s/%s\">",
                             scriptname, *scriptname == '\0' ? "" : "/",                              scriptname, *scriptname == '\0' ? "" : "/",
                             req->q.manpath, r[i].file);                              req->q.manpath, r[i].file);
                         printf("\">");  
                         html_print(r[i].names);                          html_print(r[i].names);
                         printf("</a>\n"                          printf("</a></td>\n"
                                "</td>\n"                                 "    <td><span class=\"Nd\">");
                                "<td class=\"desc\">");  
                         html_print(r[i].output);                          html_print(r[i].output);
                         puts("</td>\n"                          puts("</span></td>\n"
                              "</tr>");                               "  </tr>");
                 }                  }
                   puts("</table>");
                 puts("</table>\n"  
                      "</div>");  
         }          }
   
         /*          /*
Line 809  resp_format(const struct req *req, const char *file)
Line 801  resp_format(const struct req *req, const char *file)
   
         memset(&conf, 0, sizeof(conf));          memset(&conf, 0, sizeof(conf));
         conf.fragment = 1;          conf.fragment = 1;
           conf.style = mandoc_strdup(CSS_DIR "/mandoc.css");
         usepath = strcmp(req->q.manpath, req->p[0]);          usepath = strcmp(req->q.manpath, req->p[0]);
         mandoc_asprintf(&conf.man, "/%s%s%%N.%%S",          mandoc_asprintf(&conf.man, "/%s%s%%N.%%S",
             usepath ? req->q.manpath : "", usepath ? "/" : "");              usepath ? req->q.manpath : "", usepath ? "/" : "");
Line 836  resp_format(const struct req *req, const char *file)
Line 829  resp_format(const struct req *req, const char *file)
         mparse_free(mp);          mparse_free(mp);
         mchars_free();          mchars_free();
         free(conf.man);          free(conf.man);
           free(conf.style);
 }  }
   
 static void  static void
Line 983  main(void)
Line 977  main(void)
         const char      *path;          const char      *path;
         const char      *querystring;          const char      *querystring;
         int              i;          int              i;
   
   #if HAVE_PLEDGE
           /*
            * The "rpath" pledge could be revoked after mparse_readfd()
            * if the file desciptor to "/footer.html" would be opened
            * up front, but it's probably not worth the complication
            * of the code it would cause: it would require scattering
            * pledge() calls in multiple low-level resp_*() functions.
            */
   
           if (pledge("stdio rpath", NULL) == -1) {
                   warn("pledge");
                   pg_error_internal();
                   return EXIT_FAILURE;
           }
   #endif
   
         /* Poor man's ReDoS mitigation. */          /* Poor man's ReDoS mitigation. */
   

Legend:
Removed from v.1.141  
changed lines
  Added in v.1.148

CVSweb