summaryrefslogtreecommitdiffstats
path: root/cgi.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-12-10 22:20:59 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-12-10 22:20:59 +0000
commit339c7839f2337f21101971fc34ddb9f7d0e1c096 (patch)
treefdab66ddcd274ccff818cd8f3f9525da4fa5fdfe /cgi.c
parent5650c3dd4d062099f5b381d067e631126f7d6abd (diff)
downloadmandoc-339c7839f2337f21101971fc34ddb9f7d0e1c096.tar.gz
Encode "manroot" into file URL and parse it properly. Right now this
just uses the first manroot by default.
Diffstat (limited to 'cgi.c')
-rw-r--r--cgi.c39
1 files changed, 26 insertions, 13 deletions
diff --git a/cgi.c b/cgi.c
index 7047bca9..89f8a22c 100644
--- a/cgi.c
+++ b/cgi.c
@@ -491,7 +491,7 @@ resp_search(struct res *r, size_t sz, void *arg)
"<TD CLASS=\"title\">\n"
"<A HREF=\"");
html_print(progname);
- printf("/show/%u/%u.html\">", r[i].volume, r[i].rec);
+ printf("/show/0/%u/%u.html\">", r[i].volume, r[i].rec);
html_print(r[i].title);
putchar('(');
html_print(r[i].cat);
@@ -719,20 +719,36 @@ pg_show(const struct req *req, char *path)
char file[MAXPATHLEN];
const char *fn, *cp;
int rc;
- unsigned int vol, rec;
+ unsigned int vol, rec, mr;
DB *idx;
DBT key, val;
idx = NULL;
- if (0 == req->psz || NULL == path) {
+ /* Parse out mroot, volume, and record from the path. */
+
+ if (NULL == path || NULL == (sub = strchr(path, '/'))) {
resp_error400();
return;
- } else if (NULL == (sub = strrchr(path, '/'))) {
+ }
+ *sub++ = '\0';
+ if ( ! atou(path, &mr)) {
resp_error400();
return;
- } else
- *sub++ = '\0';
+ }
+ path = sub;
+ if (NULL == (sub = strchr(path, '/'))) {
+ resp_error400();
+ return;
+ }
+ *sub++ = '\0';
+ if ( ! atou(path, &vol) || ! atou(sub, &rec)) {
+ resp_error400();
+ return;
+ } else if (mr >= (unsigned int)req->psz) {
+ resp_error400();
+ return;
+ }
/*
* Begin by chdir()ing into the root of the manpath.
@@ -740,19 +756,16 @@ pg_show(const struct req *req, char *path)
* relative to the manpath root.
*/
- if (-1 == chdir(req->p[0].path)) {
- perror(req->p[0].path);
- resp_error400();
+ if (-1 == chdir(req->p[(int)mr].path)) {
+ perror(req->p[(int)mr].path);
+ resp_baddb();
return;
}
memset(&ps, 0, sizeof(struct manpaths));
manpath_manconf("etc/catman.conf", &ps);
- if ( ! (atou(path, &vol) && atou(sub, &rec))) {
- resp_error400();
- goto out;
- } else if (vol >= (unsigned int)ps.sz) {
+ if (vol >= (unsigned int)ps.sz) {
resp_error400();
goto out;
}