]> granicus.if.org Git - apache/blob - modules/generators/mod_cgi.c
db45295f2085457692aba2954078f0b15017cc49
[apache] / modules / generators / mod_cgi.c
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /*
18  * http_script: keeps all script-related ramblings together.
19  *
20  * Compliant to CGI/1.1 spec
21  *
22  * Adapted by rst from original NCSA code by Rob McCool
23  *
24  * Apache adds some new env vars; REDIRECT_URL and REDIRECT_QUERY_STRING for
25  * custom error responses, and DOCUMENT_ROOT because we found it useful.
26  * It also adds SERVER_ADMIN - useful for scripts to know who to mail when
27  * they fail.
28  */
29
30 #include "apr.h"
31 #include "apr_strings.h"
32 #include "apr_thread_proc.h"    /* for RLIMIT stuff */
33 #include "apr_optional.h"
34 #include "apr_buckets.h"
35 #include "apr_lib.h"
36 #include "apr_poll.h"
37
38 #define APR_WANT_STRFUNC
39 #define APR_WANT_MEMFUNC
40 #include "apr_want.h"
41
42 #include "util_filter.h"
43 #include "ap_config.h"
44 #include "httpd.h"
45 #include "http_config.h"
46 #include "http_request.h"
47 #include "http_core.h"
48 #include "http_protocol.h"
49 #include "http_main.h"
50 #include "http_log.h"
51 #include "util_script.h"
52 #include "ap_mpm.h"
53 #include "mod_core.h"
54 #include "mod_cgi.h"
55
56 #if APR_HAVE_STRUCT_RLIMIT
57 #if defined (RLIMIT_CPU) || defined (RLIMIT_NPROC) || defined (RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS)
58 #define AP_CGI_USE_RLIMIT
59 #endif
60 #endif
61
62 module AP_MODULE_DECLARE_DATA cgi_module;
63
64 static APR_OPTIONAL_FN_TYPE(ap_register_include_handler) *cgi_pfn_reg_with_ssi;
65 static APR_OPTIONAL_FN_TYPE(ap_ssi_get_tag_and_value) *cgi_pfn_gtv;
66 static APR_OPTIONAL_FN_TYPE(ap_ssi_parse_string) *cgi_pfn_ps;
67 static APR_OPTIONAL_FN_TYPE(ap_cgi_build_command) *cgi_build_command;
68
69 /* Read and discard the data in the brigade produced by a CGI script */
70 static void discard_script_output(apr_bucket_brigade *bb);
71
72 /* KLUDGE --- for back-combatibility, we don't have to check ExecCGI
73  * in ScriptAliased directories, which means we need to know if this
74  * request came through ScriptAlias or not... so the Alias module
75  * leaves a note for us.
76  */
77
78 static int is_scriptaliased(request_rec *r)
79 {
80     const char *t = apr_table_get(r->notes, "alias-forced-type");
81     return t && (!strcasecmp(t, "cgi-script"));
82 }
83
84 /* Configuration stuff */
85
86 #define DEFAULT_LOGBYTES 10385760
87 #define DEFAULT_BUFBYTES 1024
88
89 typedef struct {
90     const char *logname;
91     long        logbytes;
92     apr_size_t  bufbytes;
93 } cgi_server_conf;
94
95 static void *create_cgi_config(apr_pool_t *p, server_rec *s)
96 {
97     cgi_server_conf *c =
98     (cgi_server_conf *) apr_pcalloc(p, sizeof(cgi_server_conf));
99
100     c->logname = NULL;
101     c->logbytes = DEFAULT_LOGBYTES;
102     c->bufbytes = DEFAULT_BUFBYTES;
103
104     return c;
105 }
106
107 static void *merge_cgi_config(apr_pool_t *p, void *basev, void *overridesv)
108 {
109     cgi_server_conf *base = (cgi_server_conf *) basev,
110                     *overrides = (cgi_server_conf *) overridesv;
111
112     return overrides->logname ? overrides : base;
113 }
114
115 static const char *set_scriptlog(cmd_parms *cmd, void *dummy, const char *arg)
116 {
117     server_rec *s = cmd->server;
118     cgi_server_conf *conf = ap_get_module_config(s->module_config,
119                                                  &cgi_module);
120
121     conf->logname = ap_server_root_relative(cmd->pool, arg);
122
123     if (!conf->logname) {
124         return apr_pstrcat(cmd->pool, "Invalid ScriptLog path ",
125                            arg, NULL);
126     }
127
128     return NULL;
129 }
130
131 static const char *set_scriptlog_length(cmd_parms *cmd, void *dummy,
132                                         const char *arg)
133 {
134     server_rec *s = cmd->server;
135     cgi_server_conf *conf = ap_get_module_config(s->module_config,
136                                                  &cgi_module);
137
138     conf->logbytes = atol(arg);
139     return NULL;
140 }
141
142 static const char *set_scriptlog_buffer(cmd_parms *cmd, void *dummy,
143                                         const char *arg)
144 {
145     server_rec *s = cmd->server;
146     cgi_server_conf *conf = ap_get_module_config(s->module_config,
147                                                  &cgi_module);
148
149     conf->bufbytes = atoi(arg);
150     return NULL;
151 }
152
153 static const command_rec cgi_cmds[] =
154 {
155 AP_INIT_TAKE1("ScriptLog", set_scriptlog, NULL, RSRC_CONF,
156      "the name of a log for script debugging info"),
157 AP_INIT_TAKE1("ScriptLogLength", set_scriptlog_length, NULL, RSRC_CONF,
158      "the maximum length (in bytes) of the script debug log"),
159 AP_INIT_TAKE1("ScriptLogBuffer", set_scriptlog_buffer, NULL, RSRC_CONF,
160      "the maximum size (in bytes) to record of a POST request"),
161     {NULL}
162 };
163
164 static int log_scripterror(request_rec *r, cgi_server_conf * conf, int ret,
165                            apr_status_t rv, char *error)
166 {
167     apr_file_t *f = NULL;
168     apr_finfo_t finfo;
169     char time_str[APR_CTIME_LEN];
170     int log_flags = rv ? APLOG_ERR : APLOG_ERR;
171
172     ap_log_rerror(APLOG_MARK, log_flags, rv, r,
173                   "%s: %s", error, r->filename);
174
175     /* XXX Very expensive mainline case! Open, then getfileinfo! */
176     if (!conf->logname ||
177         ((apr_stat(&finfo, conf->logname,
178                    APR_FINFO_SIZE, r->pool) == APR_SUCCESS) &&
179          (finfo.size > conf->logbytes)) ||
180         (apr_file_open(&f, conf->logname,
181                        APR_APPEND|APR_WRITE|APR_CREATE, APR_OS_DEFAULT,
182                        r->pool) != APR_SUCCESS)) {
183         return ret;
184     }
185
186     /* "%% [Wed Jun 19 10:53:21 1996] GET /cgi-bin/printenv HTTP/1.0" */
187     apr_ctime(time_str, apr_time_now());
188     apr_file_printf(f, "%%%% [%s] %s %s%s%s %s\n", time_str, r->method, r->uri,
189                     r->args ? "?" : "", r->args ? r->args : "", r->protocol);
190     /* "%% 500 /usr/local/apache/cgi-bin */
191     apr_file_printf(f, "%%%% %d %s\n", ret, r->filename);
192
193     apr_file_printf(f, "%%error\n%s\n", error);
194
195     apr_file_close(f);
196     return ret;
197 }
198
199 /* Soak up stderr from a script and redirect it to the error log.
200  */
201 static apr_status_t log_script_err(request_rec *r, apr_file_t *script_err)
202 {
203     char argsbuffer[HUGE_STRING_LEN];
204     char *newline;
205     apr_status_t rv;
206
207     while ((rv = apr_file_gets(argsbuffer, HUGE_STRING_LEN,
208                                script_err)) == APR_SUCCESS) {
209         newline = strchr(argsbuffer, '\n');
210         if (newline) {
211             *newline = '\0';
212         }
213         ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
214                       "%s", argsbuffer);
215     }
216
217     return rv;
218 }
219
220 static int log_script(request_rec *r, cgi_server_conf * conf, int ret,
221                       char *dbuf, const char *sbuf, apr_bucket_brigade *bb,
222                       apr_file_t *script_err)
223 {
224     const apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);
225     const apr_table_entry_t *hdrs = (const apr_table_entry_t *) hdrs_arr->elts;
226     char argsbuffer[HUGE_STRING_LEN];
227     apr_file_t *f = NULL;
228     apr_bucket *e;
229     const char *buf;
230     apr_size_t len;
231     apr_status_t rv;
232     int first;
233     int i;
234     apr_finfo_t finfo;
235     char time_str[APR_CTIME_LEN];
236
237     /* XXX Very expensive mainline case! Open, then getfileinfo! */
238     if (!conf->logname ||
239         ((apr_stat(&finfo, conf->logname,
240                    APR_FINFO_SIZE, r->pool) == APR_SUCCESS) &&
241          (finfo.size > conf->logbytes)) ||
242         (apr_file_open(&f, conf->logname,
243                        APR_APPEND|APR_WRITE|APR_CREATE, APR_OS_DEFAULT,
244                        r->pool) != APR_SUCCESS)) {
245         /* Soak up script output */
246         discard_script_output(bb);
247         log_script_err(r, script_err);
248         return ret;
249     }
250
251     /* "%% [Wed Jun 19 10:53:21 1996] GET /cgi-bin/printenv HTTP/1.0" */
252     apr_ctime(time_str, apr_time_now());
253     apr_file_printf(f, "%%%% [%s] %s %s%s%s %s\n", time_str, r->method, r->uri,
254                     r->args ? "?" : "", r->args ? r->args : "", r->protocol);
255     /* "%% 500 /usr/local/apache/cgi-bin" */
256     apr_file_printf(f, "%%%% %d %s\n", ret, r->filename);
257
258     apr_file_puts("%request\n", f);
259     for (i = 0; i < hdrs_arr->nelts; ++i) {
260         if (!hdrs[i].key)
261             continue;
262         apr_file_printf(f, "%s: %s\n", hdrs[i].key, hdrs[i].val);
263     }
264     if ((r->method_number == M_POST || r->method_number == M_PUT) &&
265         *dbuf) {
266         apr_file_printf(f, "\n%s\n", dbuf);
267     }
268
269     apr_file_puts("%response\n", f);
270     hdrs_arr = apr_table_elts(r->err_headers_out);
271     hdrs = (const apr_table_entry_t *) hdrs_arr->elts;
272
273     for (i = 0; i < hdrs_arr->nelts; ++i) {
274         if (!hdrs[i].key)
275             continue;
276         apr_file_printf(f, "%s: %s\n", hdrs[i].key, hdrs[i].val);
277     }
278
279     if (sbuf && *sbuf)
280         apr_file_printf(f, "%s\n", sbuf);
281
282     first = 1;
283     for (e = APR_BRIGADE_FIRST(bb);
284          e != APR_BRIGADE_SENTINEL(bb);
285          e = APR_BUCKET_NEXT(e))
286     {
287         if (APR_BUCKET_IS_EOS(e)) {
288             break;
289         }
290         rv = apr_bucket_read(e, &buf, &len, APR_BLOCK_READ);
291         if (rv != APR_SUCCESS || (len == 0)) {
292             break;
293         }
294         if (first) {
295             apr_file_puts("%stdout\n", f);
296             first = 0;
297         }
298         apr_file_write(f, buf, &len);
299         apr_file_puts("\n", f);
300     }
301
302     if (apr_file_gets(argsbuffer, HUGE_STRING_LEN, script_err) == APR_SUCCESS) {
303         apr_file_puts("%stderr\n", f);
304         apr_file_puts(argsbuffer, f);
305         while (apr_file_gets(argsbuffer, HUGE_STRING_LEN,
306                              script_err) == APR_SUCCESS) {
307             apr_file_puts(argsbuffer, f);
308         }
309         apr_file_puts("\n", f);
310     }
311
312     apr_brigade_destroy(bb);
313     apr_file_close(script_err);
314
315     apr_file_close(f);
316     return ret;
317 }
318
319
320 /* This is the special environment used for running the "exec cmd="
321  *   variety of SSI directives.
322  */
323 static void add_ssi_vars(request_rec *r)
324 {
325     apr_table_t *e = r->subprocess_env;
326
327     if (r->path_info && r->path_info[0] != '\0') {
328         request_rec *pa_req;
329
330         apr_table_setn(e, "PATH_INFO", ap_escape_shell_cmd(r->pool,
331                                                            r->path_info));
332
333         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info),
334                                        r, NULL);
335         if (pa_req->filename) {
336             apr_table_setn(e, "PATH_TRANSLATED",
337                            apr_pstrcat(r->pool, pa_req->filename,
338                                        pa_req->path_info, NULL));
339         }
340         ap_destroy_sub_req(pa_req);
341     }
342
343     if (r->args) {
344         char *arg_copy = apr_pstrdup(r->pool, r->args);
345
346         apr_table_setn(e, "QUERY_STRING", r->args);
347         ap_unescape_url(arg_copy);
348         apr_table_setn(e, "QUERY_STRING_UNESCAPED",
349                        ap_escape_shell_cmd(r->pool, arg_copy));
350     }
351 }
352
353 static void cgi_child_errfn(apr_pool_t *pool, apr_status_t err,
354                             const char *description)
355 {
356     apr_file_t *stderr_log;
357     char errbuf[200];
358
359     apr_file_open_stderr(&stderr_log, pool);
360     /* Escape the logged string because it may be something that
361      * came in over the network.
362      */
363     apr_file_printf(stderr_log,
364                     "(%d)%s: %s\n",
365                     err,
366                     apr_strerror(err, errbuf, sizeof(errbuf)),
367 #ifndef AP_UNSAFE_ERROR_LOG_UNESCAPED
368                     ap_escape_logitem(pool,
369 #endif
370                     description
371 #ifndef AP_UNSAFE_ERROR_LOG_UNESCAPED
372                     )
373 #endif
374                     );
375 }
376
377 static apr_status_t run_cgi_child(apr_file_t **script_out,
378                                   apr_file_t **script_in,
379                                   apr_file_t **script_err,
380                                   const char *command,
381                                   const char * const argv[],
382                                   request_rec *r,
383                                   apr_pool_t *p,
384                                   cgi_exec_info_t *e_info)
385 {
386     const char * const *env;
387     apr_procattr_t *procattr;
388     apr_proc_t *procnew;
389     apr_status_t rc = APR_SUCCESS;
390
391 #ifdef AP_CGI_USE_RLIMIT
392     core_dir_config *conf = ap_get_core_module_config(r->per_dir_config);
393 #endif
394
395 #ifdef DEBUG_CGI
396 #ifdef OS2
397     /* Under OS/2 need to use device con. */
398     FILE *dbg = fopen("con", "w");
399 #else
400     FILE *dbg = fopen("/dev/tty", "w");
401 #endif
402     int i;
403 #endif
404
405     RAISE_SIGSTOP(CGI_CHILD);
406 #ifdef DEBUG_CGI
407     fprintf(dbg, "Attempting to exec %s as CGI child (argv0 = %s)\n",
408             r->filename, argv[0]);
409 #endif
410
411     env = (const char * const *)ap_create_environment(p, r->subprocess_env);
412
413 #ifdef DEBUG_CGI
414     fprintf(dbg, "Environment: \n");
415     for (i = 0; env[i]; ++i)
416         fprintf(dbg, "'%s'\n", env[i]);
417     fclose(dbg);
418 #endif
419
420     /* Transmute ourselves into the script.
421      * NB only ISINDEX scripts get decoded arguments.
422      */
423     if (((rc = apr_procattr_create(&procattr, p)) != APR_SUCCESS) ||
424         ((rc = apr_procattr_io_set(procattr,
425                                    e_info->in_pipe,
426                                    e_info->out_pipe,
427                                    e_info->err_pipe)) != APR_SUCCESS) ||
428         ((rc = apr_procattr_dir_set(procattr,
429                         ap_make_dirstr_parent(r->pool,
430                                               r->filename))) != APR_SUCCESS) ||
431 #if defined(RLIMIT_CPU) && defined(AP_CGI_USE_RLIMIT)
432         ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_CPU,
433                                       conf->limit_cpu)) != APR_SUCCESS) ||
434 #endif
435 #if defined(AP_CGI_USE_RLIMIT) && (defined(RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS))
436         ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_MEM,
437                                       conf->limit_mem)) != APR_SUCCESS) ||
438 #endif
439 #if RLIMIT_NPROC && defined(AP_CGI_USE_RLIMIT)
440         ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_NPROC,
441                                       conf->limit_nproc)) != APR_SUCCESS) ||
442 #endif
443         ((rc = apr_procattr_cmdtype_set(procattr,
444                                         e_info->cmd_type)) != APR_SUCCESS) ||
445
446         ((rc = apr_procattr_detach_set(procattr,
447                                         e_info->detached)) != APR_SUCCESS) ||
448         ((rc = apr_procattr_addrspace_set(procattr,
449                                         e_info->addrspace)) != APR_SUCCESS) ||
450         ((rc = apr_procattr_child_errfn_set(procattr, cgi_child_errfn)) != APR_SUCCESS)) {
451         /* Something bad happened, tell the world. */
452         ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r,
453                       "couldn't set child process attributes: %s", r->filename);
454     }
455     else {
456         procnew = apr_pcalloc(p, sizeof(*procnew));
457         rc = ap_os_create_privileged_process(r, procnew, command, argv, env,
458                                              procattr, p);
459
460         if (rc != APR_SUCCESS) {
461             /* Bad things happened. Everyone should have cleaned up. */
462             ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_TOCLIENT, rc, r,
463                           "couldn't create child process: %d: %s", rc,
464                           apr_filepath_name_get(r->filename));
465         }
466         else {
467             apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
468
469             *script_in = procnew->out;
470             if (!*script_in)
471                 return APR_EBADF;
472             apr_file_pipe_timeout_set(*script_in, r->server->timeout);
473
474             if (e_info->prog_type == RUN_AS_CGI) {
475                 *script_out = procnew->in;
476                 if (!*script_out)
477                     return APR_EBADF;
478                 apr_file_pipe_timeout_set(*script_out, r->server->timeout);
479
480                 *script_err = procnew->err;
481                 if (!*script_err)
482                     return APR_EBADF;
483                 apr_file_pipe_timeout_set(*script_err, r->server->timeout);
484             }
485         }
486     }
487     return (rc);
488 }
489
490
491 static apr_status_t default_build_command(const char **cmd, const char ***argv,
492                                           request_rec *r, apr_pool_t *p,
493                                           cgi_exec_info_t *e_info)
494 {
495     int numwords, x, idx;
496     char *w;
497     const char *args = NULL;
498
499     if (e_info->process_cgi) {
500         *cmd = r->filename;
501         /* Do not process r->args if they contain an '=' assignment
502          */
503         if (r->args && r->args[0] && !ap_strchr_c(r->args, '=')) {
504             args = r->args;
505         }
506     }
507
508     if (!args) {
509         numwords = 1;
510     }
511     else {
512         /* count the number of keywords */
513         for (x = 0, numwords = 2; args[x]; x++) {
514             if (args[x] == '+') {
515                 ++numwords;
516             }
517         }
518     }
519     /* Everything is - 1 to account for the first parameter
520      * which is the program name.
521      */
522     if (numwords > APACHE_ARG_MAX - 1) {
523         numwords = APACHE_ARG_MAX - 1;    /* Truncate args to prevent overrun */
524     }
525     *argv = apr_palloc(p, (numwords + 2) * sizeof(char *));
526     (*argv)[0] = *cmd;
527     for (x = 1, idx = 1; x < numwords; x++) {
528         w = ap_getword_nulls(p, &args, '+');
529         ap_unescape_url(w);
530         (*argv)[idx++] = ap_escape_shell_cmd(p, w);
531     }
532     (*argv)[idx] = NULL;
533
534     return APR_SUCCESS;
535 }
536
537 static void discard_script_output(apr_bucket_brigade *bb)
538 {
539     apr_bucket *e;
540     const char *buf;
541     apr_size_t len;
542     apr_status_t rv;
543
544     for (e = APR_BRIGADE_FIRST(bb);
545          e != APR_BRIGADE_SENTINEL(bb);
546          e = APR_BUCKET_NEXT(e))
547     {
548         if (APR_BUCKET_IS_EOS(e)) {
549             break;
550         }
551         rv = apr_bucket_read(e, &buf, &len, APR_BLOCK_READ);
552         if (rv != APR_SUCCESS) {
553             break;
554         }
555     }
556 }
557
558 #if APR_FILES_AS_SOCKETS
559
560 /* A CGI bucket type is needed to catch any output to stderr from the
561  * script; see PR 22030. */
562 static const apr_bucket_type_t bucket_type_cgi;
563
564 struct cgi_bucket_data {
565     apr_pollset_t *pollset;
566     request_rec *r;
567 };
568
569 /* Create a CGI bucket using pipes from script stdout 'out'
570  * and stderr 'err', for request 'r'. */
571 static apr_bucket *cgi_bucket_create(request_rec *r,
572                                      apr_file_t *out, apr_file_t *err,
573                                      apr_bucket_alloc_t *list)
574 {
575     apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
576     apr_status_t rv;
577     apr_pollfd_t fd;
578     struct cgi_bucket_data *data = apr_palloc(r->pool, sizeof *data);
579
580     APR_BUCKET_INIT(b);
581     b->free = apr_bucket_free;
582     b->list = list;
583     b->type = &bucket_type_cgi;
584     b->length = (apr_size_t)(-1);
585     b->start = -1;
586
587     /* Create the pollset */
588     rv = apr_pollset_create(&data->pollset, 2, r->pool, 0);
589     if (rv != APR_SUCCESS) {
590         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
591                      "apr_pollset_create(); check system or user limits");
592         return NULL;
593     }
594
595     fd.desc_type = APR_POLL_FILE;
596     fd.reqevents = APR_POLLIN;
597     fd.p = r->pool;
598     fd.desc.f = out; /* script's stdout */
599     fd.client_data = (void *)1;
600     rv = apr_pollset_add(data->pollset, &fd);
601     if (rv != APR_SUCCESS) {
602         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
603                      "apr_pollset_add(); check system or user limits");
604         return NULL;
605     }
606
607     fd.desc.f = err; /* script's stderr */
608     fd.client_data = (void *)2;
609     rv = apr_pollset_add(data->pollset, &fd);
610     if (rv != APR_SUCCESS) {
611         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
612                      "apr_pollset_add(); check system or user limits");
613         return NULL;
614     }
615
616     data->r = r;
617     b->data = data;
618     return b;
619 }
620
621 /* Create a duplicate CGI bucket using given bucket data */
622 static apr_bucket *cgi_bucket_dup(struct cgi_bucket_data *data,
623                                   apr_bucket_alloc_t *list)
624 {
625     apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
626     APR_BUCKET_INIT(b);
627     b->free = apr_bucket_free;
628     b->list = list;
629     b->type = &bucket_type_cgi;
630     b->length = (apr_size_t)(-1);
631     b->start = -1;
632     b->data = data;
633     return b;
634 }
635
636 /* Handle stdout from CGI child.  Duplicate of logic from the _read
637  * method of the real APR pipe bucket implementation. */
638 static apr_status_t cgi_read_stdout(apr_bucket *a, apr_file_t *out,
639                                     const char **str, apr_size_t *len)
640 {
641     char *buf;
642     apr_status_t rv;
643
644     *str = NULL;
645     *len = APR_BUCKET_BUFF_SIZE;
646     buf = apr_bucket_alloc(*len, a->list); /* XXX: check for failure? */
647
648     rv = apr_file_read(out, buf, len);
649
650     if (rv != APR_SUCCESS && rv != APR_EOF) {
651         apr_bucket_free(buf);
652         return rv;
653     }
654
655     if (*len > 0) {
656         struct cgi_bucket_data *data = a->data;
657         apr_bucket_heap *h;
658
659         /* Change the current bucket to refer to what we read */
660         a = apr_bucket_heap_make(a, buf, *len, apr_bucket_free);
661         h = a->data;
662         h->alloc_len = APR_BUCKET_BUFF_SIZE; /* note the real buffer size */
663         *str = buf;
664         APR_BUCKET_INSERT_AFTER(a, cgi_bucket_dup(data, a->list));
665     }
666     else {
667         apr_bucket_free(buf);
668         a = apr_bucket_immortal_make(a, "", 0);
669         *str = a->data;
670     }
671     return rv;
672 }
673
674 /* Read method of CGI bucket: polls on stderr and stdout of the child,
675  * sending any stderr output immediately away to the error log. */
676 static apr_status_t cgi_bucket_read(apr_bucket *b, const char **str,
677                                     apr_size_t *len, apr_read_type_e block)
678 {
679     struct cgi_bucket_data *data = b->data;
680     apr_interval_time_t timeout;
681     apr_status_t rv;
682     int gotdata = 0;
683
684     timeout = block == APR_NONBLOCK_READ ? 0 : data->r->server->timeout;
685
686     do {
687         const apr_pollfd_t *results;
688         apr_int32_t num;
689
690         rv = apr_pollset_poll(data->pollset, timeout, &num, &results);
691         if (APR_STATUS_IS_TIMEUP(rv)) {
692             if (timeout) {
693                 ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, data->r,
694                               "Timeout waiting for output from CGI script %s",
695                               data->r->filename);
696                 return rv;
697             }
698             else {
699                 return APR_EAGAIN;
700             }
701         }
702         else if (APR_STATUS_IS_EINTR(rv)) {
703             continue;
704         }
705         else if (rv != APR_SUCCESS) {
706             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, data->r,
707                           "poll failed waiting for CGI child");
708             return rv;
709         }
710
711         for (; num; num--, results++) {
712             if (results[0].client_data == (void *)1) {
713                 /* stdout */
714                 rv = cgi_read_stdout(b, results[0].desc.f, str, len);
715                 if (APR_STATUS_IS_EOF(rv)) {
716                     rv = APR_SUCCESS;
717                 }
718                 gotdata = 1;
719             } else {
720                 /* stderr */
721                 apr_status_t rv2 = log_script_err(data->r, results[0].desc.f);
722                 if (APR_STATUS_IS_EOF(rv2)) {
723                     apr_pollset_remove(data->pollset, &results[0]);
724                 }
725             }
726         }
727
728     } while (!gotdata);
729
730     return rv;
731 }
732
733 static const apr_bucket_type_t bucket_type_cgi = {
734     "CGI", 5, APR_BUCKET_DATA,
735     apr_bucket_destroy_noop,
736     cgi_bucket_read,
737     apr_bucket_setaside_notimpl,
738     apr_bucket_split_notimpl,
739     apr_bucket_copy_notimpl
740 };
741
742 #endif
743
744 static int cgi_handler(request_rec *r)
745 {
746     int nph;
747     apr_size_t dbpos = 0;
748     const char *argv0;
749     const char *command;
750     const char **argv;
751     char *dbuf = NULL;
752     apr_file_t *script_out = NULL, *script_in = NULL, *script_err = NULL;
753     apr_bucket_brigade *bb;
754     apr_bucket *b;
755     int is_included;
756     int seen_eos, child_stopped_reading;
757     apr_pool_t *p;
758     cgi_server_conf *conf;
759     apr_status_t rv;
760     cgi_exec_info_t e_info;
761     conn_rec *c;
762
763     if (strcmp(r->handler, CGI_MAGIC_TYPE) && strcmp(r->handler, "cgi-script")) {
764         return DECLINED;
765     }
766
767     c = r->connection;
768
769     is_included = !strcmp(r->protocol, "INCLUDED");
770
771     p = r->main ? r->main->pool : r->pool;
772
773     argv0 = apr_filepath_name_get(r->filename);
774     nph = !(strncmp(argv0, "nph-", 4));
775     conf = ap_get_module_config(r->server->module_config, &cgi_module);
776
777     if (!(ap_allow_options(r) & OPT_EXECCGI) && !is_scriptaliased(r))
778         return log_scripterror(r, conf, HTTP_FORBIDDEN, 0,
779                                "Options ExecCGI is off in this directory");
780     if (nph && is_included)
781         return log_scripterror(r, conf, HTTP_FORBIDDEN, 0,
782                                "attempt to include NPH CGI script");
783
784     if (r->finfo.filetype == APR_NOFILE)
785         return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
786                                "script not found or unable to stat");
787     if (r->finfo.filetype == APR_DIR)
788         return log_scripterror(r, conf, HTTP_FORBIDDEN, 0,
789                                "attempt to invoke directory as script");
790
791     if ((r->used_path_info == AP_REQ_REJECT_PATH_INFO) &&
792         r->path_info && *r->path_info)
793     {
794         /* default to accept */
795         return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
796                                "AcceptPathInfo off disallows user's path");
797     }
798 /*
799     if (!ap_suexec_enabled) {
800         if (!ap_can_exec(&r->finfo))
801             return log_scripterror(r, conf, HTTP_FORBIDDEN, 0,
802                                    "file permissions deny server execution");
803     }
804
805 */
806     ap_add_common_vars(r);
807     ap_add_cgi_vars(r);
808
809     e_info.process_cgi = 1;
810     e_info.cmd_type    = APR_PROGRAM;
811     e_info.detached    = 0;
812     e_info.in_pipe     = APR_CHILD_BLOCK;
813     e_info.out_pipe    = APR_CHILD_BLOCK;
814     e_info.err_pipe    = APR_CHILD_BLOCK;
815     e_info.prog_type   = RUN_AS_CGI;
816     e_info.bb          = NULL;
817     e_info.ctx         = NULL;
818     e_info.next        = NULL;
819     e_info.addrspace   = 0;
820
821     /* build the command line */
822     if ((rv = cgi_build_command(&command, &argv, r, p, &e_info)) != APR_SUCCESS) {
823         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
824                       "don't know how to spawn child process: %s",
825                       r->filename);
826         return HTTP_INTERNAL_SERVER_ERROR;
827     }
828
829     /* run the script in its own process */
830     if ((rv = run_cgi_child(&script_out, &script_in, &script_err,
831                             command, argv, r, p, &e_info)) != APR_SUCCESS) {
832         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
833                       "couldn't spawn child process: %s", r->filename);
834         return HTTP_INTERNAL_SERVER_ERROR;
835     }
836
837     /* Transfer any put/post args, CERN style...
838      * Note that we already ignore SIGPIPE in the core server.
839      */
840     bb = apr_brigade_create(r->pool, c->bucket_alloc);
841     seen_eos = 0;
842     child_stopped_reading = 0;
843     if (conf->logname) {
844         dbuf = apr_palloc(r->pool, conf->bufbytes + 1);
845         dbpos = 0;
846     }
847     do {
848         apr_bucket *bucket;
849
850         rv = ap_get_brigade(r->input_filters, bb, AP_MODE_READBYTES,
851                             APR_BLOCK_READ, HUGE_STRING_LEN);
852
853         if (rv != APR_SUCCESS) {
854             if (APR_STATUS_IS_TIMEUP(rv)) {
855                 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
856                               "Timeout during reading request entity data");
857                 return HTTP_REQUEST_TIME_OUT;
858             }
859             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
860                           "Error reading request entity data");
861             return HTTP_INTERNAL_SERVER_ERROR;
862         }
863
864         for (bucket = APR_BRIGADE_FIRST(bb);
865              bucket != APR_BRIGADE_SENTINEL(bb);
866              bucket = APR_BUCKET_NEXT(bucket))
867         {
868             const char *data;
869             apr_size_t len;
870
871             if (APR_BUCKET_IS_EOS(bucket)) {
872                 seen_eos = 1;
873                 break;
874             }
875
876             /* We can't do much with this. */
877             if (APR_BUCKET_IS_FLUSH(bucket)) {
878                 continue;
879             }
880
881             /* If the child stopped, we still must read to EOS. */
882             if (child_stopped_reading) {
883                 continue;
884             }
885
886             /* read */
887             apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
888
889             if (conf->logname && dbpos < conf->bufbytes) {
890                 int cursize;
891
892                 if ((dbpos + len) > conf->bufbytes) {
893                     cursize = conf->bufbytes - dbpos;
894                 }
895                 else {
896                     cursize = len;
897                 }
898                 memcpy(dbuf + dbpos, data, cursize);
899                 dbpos += cursize;
900             }
901
902             /* Keep writing data to the child until done or too much time
903              * elapses with no progress or an error occurs.
904              */
905             rv = apr_file_write_full(script_out, data, len, NULL);
906
907             if (rv != APR_SUCCESS) {
908                 /* silly script stopped reading, soak up remaining message */
909                 child_stopped_reading = 1;
910             }
911         }
912         apr_brigade_cleanup(bb);
913     }
914     while (!seen_eos);
915
916     if (conf->logname) {
917         dbuf[dbpos] = '\0';
918     }
919     /* Is this flush really needed? */
920     apr_file_flush(script_out);
921     apr_file_close(script_out);
922
923     AP_DEBUG_ASSERT(script_in != NULL);
924
925     apr_brigade_cleanup(bb);
926
927 #if APR_FILES_AS_SOCKETS
928     apr_file_pipe_timeout_set(script_in, 0);
929     apr_file_pipe_timeout_set(script_err, 0);
930
931     b = cgi_bucket_create(r, script_in, script_err, c->bucket_alloc);
932     if (b == NULL)
933         return HTTP_INTERNAL_SERVER_ERROR;
934 #else
935     b = apr_bucket_pipe_create(script_in, c->bucket_alloc);
936 #endif
937     APR_BRIGADE_INSERT_TAIL(bb, b);
938     b = apr_bucket_eos_create(c->bucket_alloc);
939     APR_BRIGADE_INSERT_TAIL(bb, b);
940
941     /* Handle script return... */
942     if (!nph) {
943         const char *location;
944         char sbuf[MAX_STRING_LEN];
945         int ret;
946
947         if ((ret = ap_scan_script_header_err_brigade_ex(r, bb, sbuf,
948                                                         APLOG_MODULE_INDEX)))
949         {
950             ret = log_script(r, conf, ret, dbuf, sbuf, bb, script_err);
951
952             /*
953              * ret could be HTTP_NOT_MODIFIED in the case that the CGI script
954              * does not set an explicit status and ap_meets_conditions, which
955              * is called by ap_scan_script_header_err_brigade, detects that
956              * the conditions of the requests are met and the response is
957              * not modified.
958              * In this case set r->status and return OK in order to prevent
959              * running through the error processing stack as this would
960              * break with mod_cache, if the conditions had been set by
961              * mod_cache itself to validate a stale entity.
962              * BTW: We circumvent the error processing stack anyway if the
963              * CGI script set an explicit status code (whatever it is) and
964              * the only possible values for ret here are:
965              *
966              * HTTP_NOT_MODIFIED          (set by ap_meets_conditions)
967              * HTTP_PRECONDITION_FAILED   (set by ap_meets_conditions)
968              * HTTP_INTERNAL_SERVER_ERROR (if something went wrong during the
969              * processing of the response of the CGI script, e.g broken headers
970              * or a crashed CGI process).
971              */
972             if (ret == HTTP_NOT_MODIFIED) {
973                 r->status = ret;
974                 return OK;
975             }
976
977             return ret;
978         }
979
980         location = apr_table_get(r->headers_out, "Location");
981
982         if (location && r->status == 200) {
983             /* For a redirect whether internal or not, discard any
984              * remaining stdout from the script, and log any remaining
985              * stderr output, as normal. */
986             discard_script_output(bb);
987             apr_brigade_destroy(bb);
988             apr_file_pipe_timeout_set(script_err, r->server->timeout);
989             log_script_err(r, script_err);
990         }
991
992         if (location && location[0] == '/' && r->status == 200) {
993             /* This redirect needs to be a GET no matter what the original
994              * method was.
995              */
996             r->method = apr_pstrdup(r->pool, "GET");
997             r->method_number = M_GET;
998
999             /* We already read the message body (if any), so don't allow
1000              * the redirected request to think it has one.  We can ignore
1001              * Transfer-Encoding, since we used REQUEST_CHUNKED_ERROR.
1002              */
1003             apr_table_unset(r->headers_in, "Content-Length");
1004
1005             ap_internal_redirect_handler(location, r);
1006             return OK;
1007         }
1008         else if (location && r->status == 200) {
1009             /* XXX: Note that if a script wants to produce its own Redirect
1010              * body, it now has to explicitly *say* "Status: 302"
1011              */
1012             return HTTP_MOVED_TEMPORARILY;
1013         }
1014
1015         rv = ap_pass_brigade(r->output_filters, bb);
1016     }
1017     else /* nph */ {
1018         struct ap_filter_t *cur;
1019
1020         /* get rid of all filters up through protocol...  since we
1021          * haven't parsed off the headers, there is no way they can
1022          * work
1023          */
1024
1025         cur = r->proto_output_filters;
1026         while (cur && cur->frec->ftype < AP_FTYPE_CONNECTION) {
1027             cur = cur->next;
1028         }
1029         r->output_filters = r->proto_output_filters = cur;
1030
1031         rv = ap_pass_brigade(r->output_filters, bb);
1032     }
1033
1034     /* don't soak up script output if errors occurred writing it
1035      * out...  otherwise, we prolong the life of the script when the
1036      * connection drops or we stopped sending output for some other
1037      * reason */
1038     if (rv == APR_SUCCESS && !r->connection->aborted) {
1039         apr_file_pipe_timeout_set(script_err, r->server->timeout);
1040         log_script_err(r, script_err);
1041     }
1042
1043     apr_file_close(script_err);
1044
1045     return OK;                      /* NOT r->status, even if it has changed. */
1046 }
1047
1048 /*============================================================================
1049  *============================================================================
1050  * This is the beginning of the cgi filter code moved from mod_include. This
1051  *   is the code required to handle the "exec" SSI directive.
1052  *============================================================================
1053  *============================================================================*/
1054 static apr_status_t include_cgi(include_ctx_t *ctx, ap_filter_t *f,
1055                                 apr_bucket_brigade *bb, char *s)
1056 {
1057     request_rec *r = f->r;
1058     request_rec *rr = ap_sub_req_lookup_uri(s, r, f->next);
1059     int rr_status;
1060
1061     if (rr->status != HTTP_OK) {
1062         ap_destroy_sub_req(rr);
1063         return APR_EGENERAL;
1064     }
1065
1066     /* No hardwired path info or query allowed */
1067     if ((rr->path_info && rr->path_info[0]) || rr->args) {
1068         ap_destroy_sub_req(rr);
1069         return APR_EGENERAL;
1070     }
1071     if (rr->finfo.filetype != APR_REG) {
1072         ap_destroy_sub_req(rr);
1073         return APR_EGENERAL;
1074     }
1075
1076     /* Script gets parameters of the *document*, for back compatibility */
1077     rr->path_info = r->path_info;       /* hard to get right; see mod_cgi.c */
1078     rr->args = r->args;
1079
1080     /* Force sub_req to be treated as a CGI request, even if ordinary
1081      * typing rules would have called it something else.
1082      */
1083     ap_set_content_type(rr, CGI_MAGIC_TYPE);
1084
1085     /* Run it. */
1086     rr_status = ap_run_sub_req(rr);
1087     if (ap_is_HTTP_REDIRECT(rr_status)) {
1088         const char *location = apr_table_get(rr->headers_out, "Location");
1089
1090         if (location) {
1091             char *buffer;
1092
1093             location = ap_escape_html(rr->pool, location);
1094             buffer = apr_pstrcat(ctx->pool, "<a href=\"", location, "\">",
1095                                  location, "</a>", NULL);
1096
1097             APR_BRIGADE_INSERT_TAIL(bb, apr_bucket_pool_create(buffer,
1098                                     strlen(buffer), ctx->pool,
1099                                     f->c->bucket_alloc));
1100         }
1101     }
1102
1103     ap_destroy_sub_req(rr);
1104
1105     return APR_SUCCESS;
1106 }
1107
1108 static apr_status_t include_cmd(include_ctx_t *ctx, ap_filter_t *f,
1109                                 apr_bucket_brigade *bb, const char *command)
1110 {
1111     cgi_exec_info_t  e_info;
1112     const char **argv;
1113     apr_file_t *script_out = NULL, *script_in = NULL, *script_err = NULL;
1114     apr_status_t rv;
1115     request_rec *r = f->r;
1116
1117     add_ssi_vars(r);
1118
1119     e_info.process_cgi = 0;
1120     e_info.cmd_type    = APR_SHELLCMD;
1121     e_info.detached    = 0;
1122     e_info.in_pipe     = APR_NO_PIPE;
1123     e_info.out_pipe    = APR_FULL_BLOCK;
1124     e_info.err_pipe    = APR_NO_PIPE;
1125     e_info.prog_type   = RUN_AS_SSI;
1126     e_info.bb          = &bb;
1127     e_info.ctx         = ctx;
1128     e_info.next        = f->next;
1129     e_info.addrspace   = 0;
1130
1131     if ((rv = cgi_build_command(&command, &argv, r, r->pool,
1132                                 &e_info)) != APR_SUCCESS) {
1133         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
1134                       "don't know how to spawn cmd child process: %s",
1135                       r->filename);
1136         return rv;
1137     }
1138
1139     /* run the script in its own process */
1140     if ((rv = run_cgi_child(&script_out, &script_in, &script_err,
1141                             command, argv, r, r->pool,
1142                             &e_info)) != APR_SUCCESS) {
1143         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
1144                       "couldn't spawn child process: %s", r->filename);
1145         return rv;
1146     }
1147
1148     APR_BRIGADE_INSERT_TAIL(bb, apr_bucket_pipe_create(script_in,
1149                             f->c->bucket_alloc));
1150     ctx->flush_now = 1;
1151
1152     /* We can't close the pipe here, because we may return before the
1153      * full CGI has been sent to the network.  That's okay though,
1154      * because we can rely on the pool to close the pipe for us.
1155      */
1156     return APR_SUCCESS;
1157 }
1158
1159 static apr_status_t handle_exec(include_ctx_t *ctx, ap_filter_t *f,
1160                                 apr_bucket_brigade *bb)
1161 {
1162     char *tag = NULL;
1163     char *tag_val = NULL;
1164     request_rec *r = f->r;
1165     char *file = r->filename;
1166     char parsed_string[MAX_STRING_LEN];
1167
1168     if (!ctx->argc) {
1169         ap_log_rerror(APLOG_MARK,
1170                       (ctx->flags & SSI_FLAG_PRINTING)
1171                           ? APLOG_ERR : APLOG_WARNING,
1172                       0, r, "missing argument for exec element in %s",
1173                       r->filename);
1174     }
1175
1176     if (!(ctx->flags & SSI_FLAG_PRINTING)) {
1177         return APR_SUCCESS;
1178     }
1179
1180     if (!ctx->argc) {
1181         SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
1182         return APR_SUCCESS;
1183     }
1184
1185     if (ctx->flags & SSI_FLAG_NO_EXEC) {
1186         ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "exec used but not allowed "
1187                       "in %s", r->filename);
1188         SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
1189         return APR_SUCCESS;
1190     }
1191
1192     while (1) {
1193         cgi_pfn_gtv(ctx, &tag, &tag_val, SSI_VALUE_DECODED);
1194         if (!tag || !tag_val) {
1195             break;
1196         }
1197
1198         if (!strcmp(tag, "cmd")) {
1199             apr_status_t rv;
1200
1201             cgi_pfn_ps(ctx, tag_val, parsed_string, sizeof(parsed_string),
1202                        SSI_EXPAND_LEAVE_NAME);
1203
1204             rv = include_cmd(ctx, f, bb, parsed_string);
1205             if (rv != APR_SUCCESS) {
1206                 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "execution failure "
1207                               "for parameter \"%s\" to tag exec in file %s",
1208                               tag, r->filename);
1209                 SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
1210                 break;
1211             }
1212         }
1213         else if (!strcmp(tag, "cgi")) {
1214             apr_status_t rv;
1215
1216             cgi_pfn_ps(ctx, tag_val, parsed_string, sizeof(parsed_string),
1217                        SSI_EXPAND_DROP_NAME);
1218
1219             rv = include_cgi(ctx, f, bb, parsed_string);
1220             if (rv != APR_SUCCESS) {
1221                 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "invalid CGI ref "
1222                               "\"%s\" in %s", tag_val, file);
1223                 SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
1224                 break;
1225             }
1226         }
1227         else {
1228             ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "unknown parameter "
1229                           "\"%s\" to tag exec in %s", tag, file);
1230             SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
1231             break;
1232         }
1233     }
1234
1235     return APR_SUCCESS;
1236 }
1237
1238
1239 /*============================================================================
1240  *============================================================================
1241  * This is the end of the cgi filter code moved from mod_include.
1242  *============================================================================
1243  *============================================================================*/
1244
1245
1246 static int cgi_post_config(apr_pool_t *p, apr_pool_t *plog,
1247                                 apr_pool_t *ptemp, server_rec *s)
1248 {
1249     cgi_pfn_reg_with_ssi = APR_RETRIEVE_OPTIONAL_FN(ap_register_include_handler);
1250     cgi_pfn_gtv          = APR_RETRIEVE_OPTIONAL_FN(ap_ssi_get_tag_and_value);
1251     cgi_pfn_ps           = APR_RETRIEVE_OPTIONAL_FN(ap_ssi_parse_string);
1252
1253     if ((cgi_pfn_reg_with_ssi) && (cgi_pfn_gtv) && (cgi_pfn_ps)) {
1254         /* Required by mod_include filter. This is how mod_cgi registers
1255          *   with mod_include to provide processing of the exec directive.
1256          */
1257         cgi_pfn_reg_with_ssi("exec", handle_exec);
1258     }
1259
1260     /* This is the means by which unusual (non-unix) os's may find alternate
1261      * means to run a given command (e.g. shebang/registry parsing on Win32)
1262      */
1263     cgi_build_command    = APR_RETRIEVE_OPTIONAL_FN(ap_cgi_build_command);
1264     if (!cgi_build_command) {
1265         cgi_build_command = default_build_command;
1266     }
1267     return OK;
1268 }
1269
1270 static void register_hooks(apr_pool_t *p)
1271 {
1272     static const char * const aszPre[] = { "mod_include.c", NULL };
1273     ap_hook_handler(cgi_handler, NULL, NULL, APR_HOOK_MIDDLE);
1274     ap_hook_post_config(cgi_post_config, aszPre, NULL, APR_HOOK_REALLY_FIRST);
1275 }
1276
1277 AP_DECLARE_MODULE(cgi) =
1278 {
1279     STANDARD20_MODULE_STUFF,
1280     NULL,                        /* dir config creater */
1281     NULL,                        /* dir merger --- default is to override */
1282     create_cgi_config,           /* server config */
1283     merge_cgi_config,            /* merge server config */
1284     cgi_cmds,                    /* command apr_table_t */
1285     register_hooks               /* register hooks */
1286 };