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

Diff for /mandoc/cgi.c between version 1.69 and 1.77

version 1.69, 2014/07/13 09:39:32 version 1.77, 2014/07/19 13:15:11
Line 64  static void   http_print(const char *);
Line 64  static void   http_print(const char *);
 static  void             http_putchar(char);  static  void             http_putchar(char);
 static  void             http_printquery(const struct req *);  static  void             http_printquery(const struct req *);
 static  void             pathgen(struct req *);  static  void             pathgen(struct req *);
   static  void             pg_error_badrequest(const char *);
   static  void             pg_error_internal(void);
   static  void             pg_index(const struct req *);
   static  void             pg_noresult(const struct req *, const char *);
 static  void             pg_search(const struct req *);  static  void             pg_search(const struct req *);
   static  void             pg_searchres(const struct req *,
                                   struct manpage *, size_t);
 static  void             pg_show(const struct req *, const char *);  static  void             pg_show(const struct req *, const char *);
 static  void             resp_begin_html(int, const char *);  static  void             resp_begin_html(int, const char *);
 static  void             resp_begin_http(int, const char *);  static  void             resp_begin_http(int, const char *);
 static  void             resp_end_html(void);  static  void             resp_end_html(void);
 static  void             resp_error_badrequest(const char *);  
 static  void             resp_error_internal(void);  
 static  void             resp_index(const struct req *);  
 static  void             resp_noresult(const struct req *,  
                                 const char *);  
 static  void             resp_search(const struct req *,  
                                 struct manpage *, size_t);  
 static  void             resp_searchform(const struct req *);  static  void             resp_searchform(const struct req *);
   static  void             resp_show(const struct req *, const char *);
   
 static  const char       *scriptname; /* CGI script name */  static  const char       *scriptname; /* CGI script name */
 static  const char       *httphost; /* hostname used in the URIs */  
   
   static  const int sec_prios[] = {1, 4, 5, 8, 6, 3, 7, 2, 9};
 static  const char *const sec_numbers[] = {  static  const char *const sec_numbers[] = {
     "0", "1", "2", "3", "3p", "4", "5", "6", "7", "8", "9"      "0", "1", "2", "3", "3p", "4", "5", "6", "7", "8", "9"
 };  };
Line 249  http_parse(struct req *req, char *p)
Line 249  http_parse(struct req *req, char *p)
   
                 if (0 == strcmp(key, "query"))                  if (0 == strcmp(key, "query"))
                         req->q.expr = val;                          req->q.expr = val;
                 else if (0 == strcmp(key, "manpath"))                  else if (0 == strcmp(key, "manpath")) {
   #ifdef COMPAT_OLDURI
                           if (0 == strncmp(val, "OpenBSD ", 8)) {
                                   val[7] = '-';
                                   if ('C' == val[8])
                                           val[8] = 'c';
                           }
   #endif
                         req->q.manpath = val;                          req->q.manpath = val;
                 else if (0 == strcmp(key, "apropos"))                  } else if (0 == strcmp(key, "apropos"))
                         req->q.equal = !strcmp(val, "0");                          req->q.equal = !strcmp(val, "0");
                 else if (0 == strcmp(key, "sec") ||                  else if (0 == strcmp(key, "sec")) {
                          0 == strcmp(key, "sektion")) {  
                         if (strcmp(val, "0"))                          if (strcmp(val, "0"))
                                 req->q.sec = val;                                  req->q.sec = val;
   #ifdef COMPAT_OLDURI
                   } else if (0 == strcmp(key, "sektion")) {
                           if (strcmp(val, "0"))
                                   req->q.sec = val;
   #endif
                 } else if (0 == strcmp(key, "arch")) {                  } else if (0 == strcmp(key, "arch")) {
                         if (strcmp(val, "default"))                          if (strcmp(val, "default"))
                                 req->q.arch = val;                                  req->q.arch = val;
Line 455  resp_searchform(const struct req *req)
Line 466  resp_searchform(const struct req *req)
         puts("<!-- End search form. //-->");          puts("<!-- End search form. //-->");
 }  }
   
   static int
   validate_manpath(const struct req *req, const char* manpath)
   {
           size_t   i;
   
           if ( ! strcmp(manpath, "mandoc"))
                   return(1);
   
           for (i = 0; i < req->psz; i++)
                   if ( ! strcmp(manpath, req->p[i]))
                           return(1);
   
           return(0);
   }
   
   static int
   validate_filename(const char *file)
   {
   
           if ('.' == file[0] && '/' == file[1])
                   file += 2;
   
           return ( ! (strstr(file, "../") || strstr(file, "/..") ||
               (strncmp(file, "man", 3) && strncmp(file, "cat", 3))));
   }
   
 static void  static void
 resp_index(const struct req *req)  pg_index(const struct req *req)
 {  {
   
         resp_begin_html(200, NULL);          resp_begin_html(200, NULL);
Line 473  resp_index(const struct req *req)
Line 510  resp_index(const struct req *req)
 }  }
   
 static void  static void
 resp_noresult(const struct req *req, const char *msg)  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);
Line 484  resp_noresult(const struct req *req, const char *msg)
Line 521  resp_noresult(const struct req *req, const char *msg)
 }  }
   
 static void  static void
 resp_error_badrequest(const char *msg)  pg_error_badrequest(const char *msg)
 {  {
   
         resp_begin_html(400, "Bad Request");          resp_begin_html(400, "Bad Request");
Line 498  resp_error_badrequest(const char *msg)
Line 535  resp_error_badrequest(const char *msg)
 }  }
   
 static void  static void
 resp_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>");
Line 506  resp_error_internal(void)
Line 543  resp_error_internal(void)
 }  }
   
 static void  static void
 resp_search(const struct req *req, struct manpage *r, size_t sz)  pg_searchres(const struct req *req, struct manpage *r, size_t sz)
 {  {
         size_t           i;          size_t           i, iuse, isec;
           int              prio, priouse;
           char             sec;
   
           for (i = 0; i < sz; i++) {
                   if (validate_filename(r[i].file))
                           continue;
                   fprintf(stderr, "invalid filename %s in %s database\n",
                       r[i].file, req->q.manpath);
                   pg_error_internal();
                   return;
           }
   
         if (1 == sz) {          if (1 == sz) {
                 /*                  /*
                  * If we have just one result, then jump there now                   * If we have just one result, then jump there now
                  * without any delay.                   * without any delay.
                  */                   */
                 printf("Status: 303 See Other\r\n");                  printf("Status: 303 See Other\r\n");
                 printf("Location: http://%s%s/%s/%s?",                  printf("Location: %s/%s/%s?",
                     httphost, scriptname, req->q.manpath, r[0].file);                      scriptname, req->q.manpath, r[0].file);
                 http_printquery(req);                  http_printquery(req);
                 printf("\r\n"                  printf("\r\n"
                      "Content-Type: text/html; charset=utf-8\r\n"                       "Content-Type: text/html; charset=utf-8\r\n"
Line 550  resp_search(const struct req *req, struct manpage *r, 
Line 598  resp_search(const struct req *req, struct manpage *r, 
   
         puts("</TABLE>\n"          puts("</TABLE>\n"
              "</DIV>");               "</DIV>");
   
           /*
            * In man(1) mode, show one of the pages
            * even if more than one is found.
            */
   
           if (req->q.equal) {
                   puts("<HR>");
                   iuse = 0;
                   priouse = 10;
                   for (i = 0; i < sz; i++) {
                           isec = strcspn(r[i].file, "123456789");
                           sec = r[i].file[isec];
                           if ('\0' == sec)
                                   continue;
                           prio = sec_prios[sec - '1'];
                           if (prio >= priouse)
                                   continue;
                           priouse = prio;
                           iuse = i;
                   }
                   resp_show(req, r[iuse].file);
           }
   
         resp_end_html();          resp_end_html();
 }  }
   
Line 563  catman(const struct req *req, const char *file)
Line 635  catman(const struct req *req, const char *file)
         int              italic, bold;          int              italic, bold;
   
         if (NULL == (f = fopen(file, "r"))) {          if (NULL == (f = fopen(file, "r"))) {
                 resp_error_badrequest(                  puts("<P>You specified an invalid manual file.</P>");
                     "You specified an invalid manual file.");  
                 return;                  return;
         }          }
   
         resp_begin_html(200, NULL);  
         resp_searchform(req);  
         puts("<DIV CLASS=\"catman\">\n"          puts("<DIV CLASS=\"catman\">\n"
              "<PRE>");               "<PRE>");
   
Line 683  catman(const struct req *req, const char *file)
Line 752  catman(const struct req *req, const char *file)
         }          }
   
         puts("</PRE>\n"          puts("</PRE>\n"
              "</DIV>\n"               "</DIV>");
              "</BODY>\n"  
              "</HTML>");  
   
         fclose(f);          fclose(f);
 }  }
Line 702  format(const struct req *req, const char *file)
Line 769  format(const struct req *req, const char *file)
         char             opts[PATH_MAX + 128];          char             opts[PATH_MAX + 128];
   
         if (-1 == (fd = open(file, O_RDONLY, 0))) {          if (-1 == (fd = open(file, O_RDONLY, 0))) {
                 resp_error_badrequest(                  puts("<P>You specified an invalid manual file.</P>");
                     "You specified an invalid manual file.");  
                 return;                  return;
         }          }
   
Line 715  format(const struct req *req, const char *file)
Line 781  format(const struct req *req, const char *file)
         if (rc >= MANDOCLEVEL_FATAL) {          if (rc >= MANDOCLEVEL_FATAL) {
                 fprintf(stderr, "fatal mandoc error: %s/%s\n",                  fprintf(stderr, "fatal mandoc error: %s/%s\n",
                     req->q.manpath, file);                      req->q.manpath, file);
                 resp_error_internal();                  pg_error_internal();
                 return;                  return;
         }          }
   
Line 727  format(const struct req *req, const char *file)
Line 793  format(const struct req *req, const char *file)
         if (NULL == man && NULL == mdoc) {          if (NULL == man && NULL == mdoc) {
                 fprintf(stderr, "fatal mandoc error: %s/%s\n",                  fprintf(stderr, "fatal mandoc error: %s/%s\n",
                     req->q.manpath, file);                      req->q.manpath, file);
                 resp_error_internal();                  pg_error_internal();
                 mparse_free(mp);                  mparse_free(mp);
                 return;                  return;
         }          }
   
         resp_begin_html(200, NULL);  
         resp_searchform(req);  
   
         vp = html_alloc(opts);          vp = html_alloc(opts);
   
         if (NULL != mdoc)          if (NULL != mdoc)
Line 742  format(const struct req *req, const char *file)
Line 805  format(const struct req *req, const char *file)
         else          else
                 html_man(vp, man);                  html_man(vp, man);
   
         puts("</BODY>\n"  
              "</HTML>");  
   
         html_free(vp);          html_free(vp);
         mparse_free(mp);          mparse_free(mp);
 }  }
   
 static void  static void
   resp_show(const struct req *req, const char *file)
   {
   
           if ('.' == file[0] && '/' == file[1])
                   file += 2;
   
           if ('c' == *file)
                   catman(req, file);
           else
                   format(req, file);
   }
   
   static void
 pg_show(const struct req *req, const char *path)  pg_show(const struct req *req, const char *path)
 {  {
         char            *sub;          char            *sub;
   
         if (NULL == path || NULL == (sub = strchr(path, '/'))) {          if (NULL == path || NULL == (sub = strchr(path, '/'))) {
                 resp_error_badrequest(                  pg_error_badrequest(
                     "You did not specify a page to show.");                      "You did not specify a page to show.");
                 return;                  return;
         }          }
         *sub++ = '\0';          *sub++ = '\0';
   
           if ( ! validate_manpath(req, path)) {
                   pg_error_badrequest(
                       "You specified an invalid manpath.");
                   return;
           }
   
         /*          /*
          * Begin by chdir()ing into the manpath.           * Begin by chdir()ing into the manpath.
          * This way we can pick up the database files, which are           * This way we can pick up the database files, which are
Line 768  pg_show(const struct req *req, const char *path)
Line 847  pg_show(const struct req *req, const char *path)
          */           */
   
         if (-1 == chdir(path)) {          if (-1 == chdir(path)) {
                 resp_error_badrequest(                  fprintf(stderr, "chdir %s: %s\n",
                     "You specified an invalid manpath.");                      path, strerror(errno));
                   pg_error_internal();
                 return;                  return;
         }          }
   
         if ('c' == *sub)          if ( ! validate_filename(sub)) {
                 catman(req, sub);                  pg_error_badrequest(
         else                      "You specified an invalid manual file.");
                 format(req, sub);                  return;
           }
   
           resp_begin_html(200, NULL);
           resp_searchform(req);
           resp_show(req, sub);
           resp_end_html();
 }  }
   
 static void  static void
Line 797  pg_search(const struct req *req)
Line 883  pg_search(const struct req *req)
          */           */
   
         if (-1 == (chdir(req->q.manpath))) {          if (-1 == (chdir(req->q.manpath))) {
                 resp_error_badrequest(                  fprintf(stderr, "chdir %s: %s\n",
                     "You specified an invalid manpath.");                      req->q.manpath, strerror(errno));
                   pg_error_internal();
                 return;                  return;
         }          }
   
Line 835  pg_search(const struct req *req)
Line 922  pg_search(const struct req *req)
         }          }
   
         if (0 == mansearch(&search, &paths, sz, cp, "Nd", &res, &ressz))          if (0 == mansearch(&search, &paths, sz, cp, "Nd", &res, &ressz))
                 resp_noresult(req, "You entered an invalid query.");                  pg_noresult(req, "You entered an invalid query.");
         else if (0 == ressz)          else if (0 == ressz)
                 resp_noresult(req, "No results found.");                  pg_noresult(req, "No results found.");
         else          else
                 resp_search(req, res, ressz);                  pg_searchres(req, res, ressz);
   
         for (i = 0; i < sz; i++)          for (i = 0; i < sz; i++)
                 free(cp[i]);                  free(cp[i]);
Line 869  main(void)
Line 956  main(void)
         if (NULL == (scriptname = getenv("SCRIPT_NAME")))          if (NULL == (scriptname = getenv("SCRIPT_NAME")))
                 scriptname = "";                  scriptname = "";
   
         if (NULL == (httphost = getenv("HTTP_HOST")))  
                 httphost = "localhost";  
   
         /*          /*
          * First we change directory into the MAN_DIR so that           * First we change directory into the MAN_DIR so that
          * subsequent scanning for manpath directories is rooted           * subsequent scanning for manpath directories is rooted
Line 881  main(void)
Line 965  main(void)
         if (-1 == chdir(MAN_DIR)) {          if (-1 == chdir(MAN_DIR)) {
                 fprintf(stderr, "MAN_DIR: %s: %s\n",                  fprintf(stderr, "MAN_DIR: %s: %s\n",
                     MAN_DIR, strerror(errno));                      MAN_DIR, strerror(errno));
                 resp_error_internal();                  pg_error_internal();
                 return(EXIT_FAILURE);                  return(EXIT_FAILURE);
         }          }
   
Line 893  main(void)
Line 977  main(void)
         if (NULL != (querystring = getenv("QUERY_STRING")))          if (NULL != (querystring = getenv("QUERY_STRING")))
                 http_parse(&req, querystring);                  http_parse(&req, querystring);
   
           if ( ! validate_manpath(&req, req.q.manpath)) {
                   pg_error_badrequest(
                       "You specified an invalid manpath.");
                   return(EXIT_FAILURE);
           }
   
         /* Dispatch to the three different pages. */          /* Dispatch to the three different pages. */
   
         path = getenv("PATH_INFO");          path = getenv("PATH_INFO");
Line 906  main(void)
Line 996  main(void)
         else if (NULL != req.q.expr)          else if (NULL != req.q.expr)
                 pg_search(&req);                  pg_search(&req);
         else          else
                 resp_index(&req);                  pg_index(&req);
   
         for (i = 0; i < (int)req.psz; i++)          for (i = 0; i < (int)req.psz; i++)
                 free(req.p[i]);                  free(req.p[i]);
Line 932  pathgen(struct req *req)
Line 1022  pathgen(struct req *req)
         char    *dp;          char    *dp;
         size_t   dpsz;          size_t   dpsz;
   
         if (NULL == (fp = fopen("manpath.conf", "r")))          if (NULL == (fp = fopen("manpath.conf", "r"))) {
                 return;                  fprintf(stderr, "%s/manpath.conf: %s\n",
                           MAN_DIR, strerror(errno));
                   pg_error_internal();
                   exit(EXIT_FAILURE);
           }
   
         while (NULL != (dp = fgetln(fp, &dpsz))) {          while (NULL != (dp = fgetln(fp, &dpsz))) {
                 if ('\n' == dp[dpsz - 1])                  if ('\n' == dp[dpsz - 1])
Line 941  pathgen(struct req *req)
Line 1035  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 *));
                 req->p[req->psz++] = mandoc_strndup(dp, dpsz);                  req->p[req->psz++] = mandoc_strndup(dp, dpsz);
           }
   
           if ( req->p == NULL ) {
                   fprintf(stderr, "%s/manpath.conf is empty\n", MAN_DIR);
                   pg_error_internal();
                   exit(EXIT_FAILURE);
         }          }
 }  }

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.77

CVSweb