]> git.cameronkatri.com Git - mandoc.git/blobdiff - cgi.c
Link to the new man.cgi(8) manual, now that we have it! :-)
[mandoc.git] / cgi.c
diff --git a/cgi.c b/cgi.c
index 8609b8783914d4e45a32e1f7e5b09aef12368acc..284e4883634ad693a5a7fcb5c771a24fe9d838e6 100644 (file)
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-/*     $Id: cgi.c,v 1.57 2014/07/09 12:09:04 schwarze Exp $ */
+/*     $Id: cgi.c,v 1.61 2014/07/10 00:52:50 schwarze Exp $ */
 /*
  * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014 Ingo Schwarze <schwarze@usta.de>
@@ -20,6 +20,7 @@
 #endif
 
 #include <ctype.h>
+#include <errno.h>
 #include <fcntl.h>
 #include <limits.h>
 #include <stdio.h>
@@ -44,7 +45,7 @@ enum  page {
  * A query as passed to the search function.
  */
 struct query {
-       const char      *manroot; /* manual root directory */
+       const char      *manpath; /* desired manual directory */
        const char      *arch; /* architecture */
        const char      *sec; /* manual section */
        const char      *expr; /* unparsed expression string */
@@ -52,10 +53,10 @@ struct      query {
 };
 
 struct req {
-       struct query     q;
-       char            **p; /* array of available manroots */
-       size_t           psz; /* number of available manroots */
-       enum page        page;
+       struct query      q;
+       char            **p; /* array of available manpaths */
+       size_t            psz; /* number of available manpaths */
+       enum page         page;
 };
 
 static void             catman(const struct req *, const char *);
@@ -73,22 +74,23 @@ static      void             pathgen(struct req *);
 static void             pg_index(const struct req *, char *);
 static void             pg_search(const struct req *, char *);
 static void             pg_show(const struct req *, char *);
-static void             resp_bad(void);
-static void             resp_baddb(void);
-static void             resp_error400(void);
-static void             resp_error404(const char *);
 static void             resp_begin_html(int, const char *);
 static void             resp_begin_http(int, const char *);
 static void             resp_end_html(void);
+static void             resp_error_badrequest(const char *);
+static void             resp_error_internal(void);
+static void             resp_error_notfound(const char *);
 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 const char       *progname; /* cgi script name */
-static const char       *cache; /* cache directory */
-static const char       *css; /* css directory */
-static const char       *host; /* hostname */
+static const char       *scriptname; /* CGI script name */
+static const char       *mandir; /* contains all manpath directories */
+static const char       *cssdir; /* css directory */
+static const char       *httphost; /* hostname used in the URIs */
 
 static const char * const pages[PAGE__MAX] = {
        "index", /* PAGE_INDEX */ 
@@ -127,9 +129,9 @@ static void
 http_printquery(const struct req *req)
 {
 
-       if (NULL != req->q.manroot) {
+       if (NULL != req->q.manpath) {
                printf("&manpath=");
-               http_print(req->q.manroot);
+               http_print(req->q.manpath);
        }
        if (NULL != req->q.sec) {
                printf("&sec=");
@@ -149,9 +151,9 @@ static void
 html_printquery(const struct req *req)
 {
 
-       if (NULL != req->q.manroot) {
+       if (NULL != req->q.manpath) {
                printf("&amp;manpath=");
-               html_print(req->q.manroot);
+               html_print(req->q.manpath);
        }
        if (NULL != req->q.sec) {
                printf("&amp;sec=");
@@ -203,7 +205,7 @@ http_parse(struct req *req, char *p)
        int              legacy;
 
        memset(&req->q, 0, sizeof(struct query));
-       req->q.manroot = req->p[0];
+       req->q.manpath = req->p[0];
 
        legacy = -1;
        while ('\0' != *p) {
@@ -237,7 +239,7 @@ http_parse(struct req *req, char *p)
                else if (0 == strcmp(key, "arch"))
                        req->q.arch = val;
                else if (0 == strcmp(key, "manpath"))
-                       req->q.manroot = val;
+                       req->q.manpath = val;
                else if (0 == strcmp(key, "apropos"))
                        legacy = 0 == strcmp(val, "0");
        }
@@ -342,7 +344,8 @@ resp_begin_html(int code, const char *msg)
               "<TITLE>System Manpage Reference</TITLE>\n"
               "</HEAD>\n"
               "<BODY>\n"
-              "<!-- Begin page content. //-->\n", css, css);
+              "<!-- Begin page content. //-->\n",
+              cssdir, cssdir);
 }
 
 static void
@@ -364,9 +367,9 @@ resp_searchform(const struct req *req)
               "<FIELDSET>\n"
               "<LEGEND>Search Parameters</LEGEND>\n"
               "<INPUT TYPE=\"submit\" "
-              " VALUE=\"Search\"> for manuals satisfying \n"
+              " VALUE=\"Search\"> for manuals matching \n"
               "<INPUT TYPE=\"text\" NAME=\"expr\" VALUE=\"",
-              progname);
+              scriptname);
        html_print(req->q.expr ? req->q.expr : "");
        printf("\">, section "
               "<INPUT TYPE=\"text\""
@@ -378,11 +381,11 @@ resp_searchform(const struct req *req)
        html_print(req->q.arch ? req->q.arch : "");
        printf("\">");
        if (req->psz > 1) {
-               puts(", <SELECT NAME=\"manpath\">");
+               puts(", in <SELECT NAME=\"manpath\">");
                for (i = 0; i < (int)req->psz; i++) {
                        printf("<OPTION ");
-                       if (NULL == req->q.manroot ? 0 == i :
-                           0 == strcmp(req->q.manroot, req->p[i]))
+                       if (NULL == req->q.manpath ? 0 == i :
+                           0 == strcmp(req->q.manpath, req->p[i]))
                                printf("SELECTED=\"selected\" ");
                        printf("VALUE=\"");
                        html_print(req->p[i]);
@@ -392,7 +395,7 @@ resp_searchform(const struct req *req)
                }
                puts("</SELECT>");
        }
-       puts(".\n"
+       puts("&mdash;\n"
             "<INPUT TYPE=\"reset\" VALUE=\"Reset\">\n"
             "</FIELDSET>\n"
             "</FORM>\n"
@@ -405,26 +408,48 @@ resp_index(const struct req *req)
 {
 
        resp_begin_html(200, NULL);
+       puts("<H1>\n"
+            "Online manuals with "
+            "<A HREF=\"http://mdocml.bsd.lv/\">mandoc</A>\n"
+            "</H1>");
        resp_searchform(req);
+       puts("<P>\n"
+            "This web interface is documented in the "
+            "<A HREF=\"search?expr=Nm~^man\\.cgi$&amp;sec=8\">"
+            "man.cgi</A> manual, and the "
+            "<A HREF=\"search?expr=Nm~^apropos$&amp;sec=1\">"
+            "apropos</A> manual explains the query syntax.\n"
+            "</P>");
        resp_end_html();
 }
 
 static void
-resp_error400(void)
+resp_noresult(const struct req *req, const char *msg)
+{
+       resp_begin_html(200, NULL);
+       resp_searchform(req);
+       puts("<P>");
+       puts(msg);
+       puts("</P>");
+       resp_end_html();
+}
+
+static void
+resp_error_badrequest(const char *msg)
 {
 
-       resp_begin_html(400, "Query Malformed");
-       printf("<H1>Malformed Query</H1>\n"
-              "<P>\n"
-              "The query your entered was malformed.\n"
-              "Try again from the\n"
-              "<A HREF=\"%s/index.html\">main page</A>.\n"
-              "</P>", progname);
+       resp_begin_html(400, "Bad Request");
+       puts("<H1>Bad Request</H1>\n"
+            "<P>\n");
+       puts(msg);
+       printf("Try again from the\n"
+              "<A HREF=\"%s\">main page</A>.\n"
+              "</P>", scriptname);
        resp_end_html();
 }
 
 static void
-resp_error404(const char *page)
+resp_error_notfound(const char *page)
 {
 
        resp_begin_html(404, "Not Found");
@@ -436,25 +461,16 @@ resp_error404(const char *page)
        printf("</B>,\n"
               "could not be found.\n"
               "Try searching from the\n"
-              "<A HREF=\"%s/index.html\">main page</A>.\n"
-              "</P>", progname);
+              "<A HREF=\"%s\">main page</A>.\n"
+              "</P>", scriptname);
        resp_end_html();
 }
 
 static void
-resp_bad(void)
+resp_error_internal(void)
 {
        resp_begin_html(500, "Internal Server Error");
-       puts("<P>Generic badness happened.</P>");
-       resp_end_html();
-}
-
-static void
-resp_baddb(void)
-{
-
-       resp_begin_html(500, "Internal Server Error");
-       puts("<P>Your database is broken.</P>");
+       puts("<P>Internal Server Error</P>");
        resp_end_html();
 }
 
@@ -470,36 +486,25 @@ resp_search(const struct req *req, struct manpage *r, size_t sz)
                 */
                puts("Status: 303 See Other");
                printf("Location: http://%s%s/show/%s/%s?",
-                   host, progname, req->q.manroot, r[0].file);
+                   httphost, scriptname, req->q.manpath, r[0].file);
                http_printquery(req);
                puts("\n"
                     "Content-Type: text/html; charset=utf-8\n");
                return;
        }
 
+       qsort(r, sz, sizeof(struct manpage), cmp);
+
        resp_begin_html(200, NULL);
        resp_searchform(req);
-
        puts("<DIV CLASS=\"results\">");
-
-       if (0 == sz) {
-               puts("<P>\n"
-                    "No results found.\n"
-                    "</P>\n"
-                    "</DIV>");
-               resp_end_html();
-               return;
-       }
-
-       qsort(r, sz, sizeof(struct manpage), cmp);
-
        puts("<TABLE>");
 
        for (i = 0; i < sz; i++) {
                printf("<TR>\n"
                       "<TD CLASS=\"title\">\n"
                       "<A HREF=\"%s/show/%s/%s?", 
-                   progname, req->q.manroot, r[i].file);
+                   scriptname, req->q.manpath, r[i].file);
                html_printquery(req);
                printf("\">");
                html_print(r[i].names);
@@ -534,7 +539,8 @@ catman(const struct req *req, const char *file)
        int              italic, bold;
 
        if (NULL == (f = fopen(file, "r"))) {
-               resp_baddb();
+               resp_error_badrequest(
+                   "You specified an invalid manual file.");
                return;
        }
 
@@ -672,27 +678,32 @@ format(const struct req *req, const char *file)
        char             opts[PATH_MAX + 128];
 
        if (-1 == (fd = open(file, O_RDONLY, 0))) {
-               resp_baddb();
+               resp_error_badrequest(
+                   "You specified an invalid manual file.");
                return;
        }
 
        mp = mparse_alloc(MPARSE_SO, MANDOCLEVEL_FATAL, NULL,
-           req->q.manroot);
+           req->q.manpath);
        rc = mparse_readfd(mp, fd, file);
        close(fd);
 
        if (rc >= MANDOCLEVEL_FATAL) {
-               resp_baddb();
+               fprintf(stderr, "fatal mandoc error: %s/%s\n",
+                   req->q.manpath, file);
+               resp_error_internal();
                return;
        }
 
        snprintf(opts, sizeof(opts),
            "fragment,man=%s/search?sec=%%S&expr=Nm~^%%N$",
-           progname);
+           scriptname);
 
        mparse_result(mp, &mdoc, &man, NULL);
        if (NULL == man && NULL == mdoc) {
-               resp_baddb();
+               fprintf(stderr, "fatal mandoc error: %s/%s\n",
+                   req->q.manpath, file);
+               resp_error_internal();
                mparse_free(mp);
                return;
        }
@@ -720,20 +731,21 @@ pg_show(const struct req *req, char *path)
        char            *sub;
 
        if (NULL == path || NULL == (sub = strchr(path, '/'))) {
-               resp_error400();
+               resp_error_badrequest(
+                   "You did not specify a page to show.");
                return;
        } 
        *sub++ = '\0';
 
        /*
-        * Begin by chdir()ing into the manroot.
+        * Begin by chdir()ing into the manpath.
         * This way we can pick up the database files, which are
         * relative to the manpath root.
         */
 
        if (-1 == chdir(path)) {
-               perror(path);
-               resp_baddb();
+               resp_error_badrequest(
+                   "You specified an invalid manpath.");
                return;
        }
 
@@ -760,9 +772,9 @@ pg_search(const struct req *req, char *path)
         * relative to the manpath root.
         */
 
-       if (-1 == (chdir(req->q.manroot))) {
-               perror(req->q.manroot);
-               resp_search(req, NULL, 0);
+       if (-1 == (chdir(req->q.manpath))) {
+               resp_error_badrequest(
+                   "You specified an invalid manpath.");
                return;
        }
 
@@ -798,10 +810,12 @@ pg_search(const struct req *req, char *path)
                        ep++;
        }
 
-       if (mansearch(&search, &paths, sz, cp, "Nd", &res, &ressz))
-               resp_search(req, res, ressz);
+       if (0 == mansearch(&search, &paths, sz, cp, "Nd", &res, &ressz))
+               resp_noresult(req, "You entered an invalid query.");
+       else if (0 == ressz)
+               resp_noresult(req, "No results found.");
        else
-               resp_baddb();
+               resp_search(req, res, ressz);
 
        for (i = 0; i < sz; i++)
                free(cp[i]);
@@ -823,31 +837,32 @@ main(void)
 {
        int              i;
        struct req       req;
-       char            *p, *path, *subpath;
+       char            *querystring, *path, *subpath;
 
        /* Scan our run-time environment. */
 
-       if (NULL == (cache = getenv("CACHE_DIR")))
-               cache = "/cache/man.cgi";
+       if (NULL == (mandir = getenv("MAN_DIR")))
+               mandir = "/man";
 
-       if (NULL == (progname = getenv("SCRIPT_NAME")))
-               progname = "";
+       if (NULL == (scriptname = getenv("SCRIPT_NAME")))
+               scriptname = "";
 
-       if (NULL == (css = getenv("CSS_DIR")))
-               css = "";
+       if (NULL == (cssdir = getenv("CSS_DIR")))
+               cssdir = "";
 
-       if (NULL == (host = getenv("HTTP_HOST")))
-               host = "localhost";
+       if (NULL == (httphost = getenv("HTTP_HOST")))
+               httphost = "localhost";
 
        /*
-        * First we change directory into the cache directory so that
+        * First we change directory into the mandir so that
         * subsequent scanning for manpath directories is rooted
         * relative to the same position.
         */
 
-       if (-1 == chdir(cache)) {
-               perror(cache);
-               resp_bad();
+       if (-1 == chdir(mandir)) {
+               fprintf(stderr, "MAN_DIR: %s: %s\n",
+                   mandir, strerror(errno));
+               resp_error_internal();
                return(EXIT_FAILURE);
        } 
 
@@ -856,8 +871,8 @@ main(void)
 
        /* Next parse out the query string. */
 
-       if (NULL != (p = getenv("QUERY_STRING")))
-               http_parse(&req, p);
+       if (NULL != (querystring = getenv("QUERY_STRING")))
+               http_parse(&req, querystring);
 
        /*
         * Now juggle paths to extract information.
@@ -902,7 +917,7 @@ main(void)
                pg_show(&req, subpath);
                break;
        default:
-               resp_error404(path);
+               resp_error_notfound(path);
                break;
        }