mod_cgid.c revision 443f96ac390c06ca4fa763d3bfcfbc8f757bd756
6ae232055d4d8a97267517c5e50074c2c819941and/* ====================================================================
6ae232055d4d8a97267517c5e50074c2c819941and * The Apache Software License, Version 1.1
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd *
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * Copyright (c) 2000 The Apache Software Foundation. All rights
fd9abdda70912b99b24e3bf1a38f26fde908a74cnd * reserved.
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * Redistribution and use in source and binary forms, with or without
6ae232055d4d8a97267517c5e50074c2c819941and * modification, are permitted provided that the following conditions
6ae232055d4d8a97267517c5e50074c2c819941and * are met:
96ad5d81ee4a2cc66a4ae19893efc8aa6d06fae7jailletc *
6ae232055d4d8a97267517c5e50074c2c819941and * 1. Redistributions of source code must retain the above copyright
6ae232055d4d8a97267517c5e50074c2c819941and * notice, this list of conditions and the following disclaimer.
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen *
2e545ce2450a9953665f701bb05350f0d3f26275nd * 2. Redistributions in binary form must reproduce the above copyright
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * notice, this list of conditions and the following disclaimer in
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen * the documentation and/or other materials provided with the
6ae232055d4d8a97267517c5e50074c2c819941and * distribution.
6ae232055d4d8a97267517c5e50074c2c819941and *
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen * 3. The end-user documentation included with the redistribution,
3f08db06526d6901aa08c110b5bc7dde6bc39905nd * if any, must include the following acknowledgment:
6ae232055d4d8a97267517c5e50074c2c819941and * "This product includes software developed by the
6ae232055d4d8a97267517c5e50074c2c819941and * Apache Software Foundation (http://www.apache.org/)."
6ae232055d4d8a97267517c5e50074c2c819941and * Alternately, this acknowledgment may appear in the software itself,
b43f840409794ed298e8634f6284741f193b6c4ftakashi * if and wherever such third-party acknowledgments normally appear.
6ae232055d4d8a97267517c5e50074c2c819941and *
b43f840409794ed298e8634f6284741f193b6c4ftakashi * 4. The names "Apache" and "Apache Software Foundation" must
af84459fbf938e508fd10b01cb8d699c79083813takashi * not be used to endorse or promote products derived from this
6ae232055d4d8a97267517c5e50074c2c819941and * software without prior written permission. For written
f3ec420152ca921e4c1ce77782f51b53f659018dnd * permission, please contact apache@apache.org.
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung *
6ae232055d4d8a97267517c5e50074c2c819941and * 5. Products derived from this software may not be called "Apache",
b43f840409794ed298e8634f6284741f193b6c4ftakashi * nor may "Apache" appear in their name, without prior written
b43f840409794ed298e8634f6284741f193b6c4ftakashi * permission of the Apache Software Foundation.
b43f840409794ed298e8634f6284741f193b6c4ftakashi *
b43f840409794ed298e8634f6284741f193b6c4ftakashi * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
6ae232055d4d8a97267517c5e50074c2c819941and * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
6ae232055d4d8a97267517c5e50074c2c819941and * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
6ae232055d4d8a97267517c5e50074c2c819941and * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
6ae232055d4d8a97267517c5e50074c2c819941and * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
6ae232055d4d8a97267517c5e50074c2c819941and * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
6ae232055d4d8a97267517c5e50074c2c819941and * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
6ae232055d4d8a97267517c5e50074c2c819941and * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
6ae232055d4d8a97267517c5e50074c2c819941and * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
6ae232055d4d8a97267517c5e50074c2c819941and * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
6ae232055d4d8a97267517c5e50074c2c819941and * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
6ae232055d4d8a97267517c5e50074c2c819941and * SUCH DAMAGE.
6ae232055d4d8a97267517c5e50074c2c819941and * ====================================================================
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh *
6ae232055d4d8a97267517c5e50074c2c819941and * This software consists of voluntary contributions made by many
6ae232055d4d8a97267517c5e50074c2c819941and * individuals on behalf of the Apache Software Foundation. For more
6ae232055d4d8a97267517c5e50074c2c819941and * information on the Apache Software Foundation, please see
6ae232055d4d8a97267517c5e50074c2c819941and * <http://www.apache.org/>.
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * Portions of this software are based upon public domain software
6ae232055d4d8a97267517c5e50074c2c819941and * originally written at the National Center for Supercomputing Applications,
6ae232055d4d8a97267517c5e50074c2c819941and * University of Illinois, Urbana-Champaign.
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and/*
6ae232055d4d8a97267517c5e50074c2c819941and * http_script: keeps all script-related ramblings together.
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * Compliant to cgi/1.1 spec
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * Adapted by rst from original NCSA code by Rob McCool
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * Apache adds some new env vars; REDIRECT_URL and REDIRECT_QUERY_STRING for
6ae232055d4d8a97267517c5e50074c2c819941and * custom error responses, and DOCUMENT_ROOT because we found it useful.
6ae232055d4d8a97267517c5e50074c2c819941and * It also adds SERVER_ADMIN - useful for scripts to know who to mail when
6ae232055d4d8a97267517c5e50074c2c819941and * they fail.
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and#define CORE_PRIVATE
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and#include "apr_lib.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "apr_strings.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "apr_general.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "apr_file_io.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "apr_portable.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "httpd.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_config.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_request.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_core.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_protocol.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_main.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_log.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "util_script.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "http_conf_globals.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "buff.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "ap_mpm.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include "unixd.h"
6ae232055d4d8a97267517c5e50074c2c819941and#include <sys/stat.h>
6ae232055d4d8a97267517c5e50074c2c819941and#ifdef HAVE_SYS_SOCKET_H
6ae232055d4d8a97267517c5e50074c2c819941and#include <sys/socket.h>
6ae232055d4d8a97267517c5e50074c2c819941and#endif
6ae232055d4d8a97267517c5e50074c2c819941and#ifdef HAVE_UNISTD_H
6ae232055d4d8a97267517c5e50074c2c819941and#include <unistd.h>
6ae232055d4d8a97267517c5e50074c2c819941and#endif
6ae232055d4d8a97267517c5e50074c2c819941and#ifdef HAVE_STRINGS_H
6ae232055d4d8a97267517c5e50074c2c819941and#include <strings.h>
6ae232055d4d8a97267517c5e50074c2c819941and#endif
6ae232055d4d8a97267517c5e50074c2c819941and#include <sys/un.h> /* for sockaddr_un */
6ae232055d4d8a97267517c5e50074c2c819941and#include <sys/types.h>
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andmodule MODULE_VAR_EXPORT cgid_module;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andstatic void cgid_init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *main_server);
6ae232055d4d8a97267517c5e50074c2c819941andstatic int once_through = 0;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andstatic apr_pool_t *pcgi;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and/* KLUDGE --- for back-combatibility, we don't have to check Execcgid
6ae232055d4d8a97267517c5e50074c2c819941and * in ScriptAliased directories, which means we need to know if this
6ae232055d4d8a97267517c5e50074c2c819941and * request came through ScriptAlias or not... so the Alias module
6ae232055d4d8a97267517c5e50074c2c819941and * leaves a note for us.
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andstatic int is_scriptaliased(request_rec *r)
6ae232055d4d8a97267517c5e50074c2c819941and{
6ae232055d4d8a97267517c5e50074c2c819941and const char *t = apr_table_get(r->notes, "alias-forced-type");
6ae232055d4d8a97267517c5e50074c2c819941and return t && (!strcasecmp(t, "cgi-script"));
6ae232055d4d8a97267517c5e50074c2c819941and}
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and/* Configuration stuff */
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and#define DEFAULT_LOGBYTES 10385760
6ae232055d4d8a97267517c5e50074c2c819941and#define DEFAULT_BUFBYTES 1024
6ae232055d4d8a97267517c5e50074c2c819941and#define DEFAULT_SOCKET "logs/cgisock"
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and#define SHELL_PATH "/bin/sh"
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and/* DEFAULT_CGID_LISTENBACKLOG controls the max depth on the unix socket's
6ae232055d4d8a97267517c5e50074c2c819941and * pending connection queue. If a bunch of cgi requests arrive at about
6ae232055d4d8a97267517c5e50074c2c819941and * the same time, connections from httpd threads/processes will back up
6ae232055d4d8a97267517c5e50074c2c819941and * in the queue while the cgid process slowly forks off a child to process
6ae232055d4d8a97267517c5e50074c2c819941and * each connection on the unix socket. If the queue is too short, the
6ae232055d4d8a97267517c5e50074c2c819941and * httpd process will get ECONNREFUSED when trying to connect.
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941and#ifndef DEFAULT_CGID_LISTENBACKLOG
6ae232055d4d8a97267517c5e50074c2c819941and#define DEFAULT_CGID_LISTENBACKLOG 100
6ae232055d4d8a97267517c5e50074c2c819941and#endif
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andtypedef struct {
6ae232055d4d8a97267517c5e50074c2c819941and const char *sockname;
6ae232055d4d8a97267517c5e50074c2c819941and const char *logname;
6ae232055d4d8a97267517c5e50074c2c819941and long logbytes;
6ae232055d4d8a97267517c5e50074c2c819941and int bufbytes;
6ae232055d4d8a97267517c5e50074c2c819941and BUFF *bin;
6ae232055d4d8a97267517c5e50074c2c819941and BUFF *bout;
6ae232055d4d8a97267517c5e50074c2c819941and BUFF *berror;
6ae232055d4d8a97267517c5e50074c2c819941and} cgid_server_conf;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and/* If a request includes query info in the URL (stuff after "?"), and
6ae232055d4d8a97267517c5e50074c2c819941and * the query info does not contain "=" (indicative of a FORM submission),
6ae232055d4d8a97267517c5e50074c2c819941and * then this routine is called to create the argument list to be passed
6ae232055d4d8a97267517c5e50074c2c819941and * to the CGI script. When suexec is enabled, the suexec path, user, and
6ae232055d4d8a97267517c5e50074c2c819941and * group are the first three arguments to be passed; if not, all three
6ae232055d4d8a97267517c5e50074c2c819941and * must be NULL. The query info is split into separate arguments, where
6ae232055d4d8a97267517c5e50074c2c819941and * "+" is the separator between keyword arguments.
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and * XXXX: note that the WIN32 code uses one of the suexec strings
6ae232055d4d8a97267517c5e50074c2c819941and * to pass an interpreter name. Remember this if changing the way they
6ae232055d4d8a97267517c5e50074c2c819941and * are handled in create_argv.
6ae232055d4d8a97267517c5e50074c2c819941and *
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941andstatic char **create_argv(apr_pool_t *p, char *path, char *user, char *group,
6ae232055d4d8a97267517c5e50074c2c819941and char *av0, const char *args)
6ae232055d4d8a97267517c5e50074c2c819941and{
6ae232055d4d8a97267517c5e50074c2c819941and int x, numwords;
6ae232055d4d8a97267517c5e50074c2c819941and char **av;
6ae232055d4d8a97267517c5e50074c2c819941and char *w;
6ae232055d4d8a97267517c5e50074c2c819941and int idx = 0;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and /* count the number of keywords */
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and for (x = 0, numwords = 1; args[x]; x++) {
6ae232055d4d8a97267517c5e50074c2c819941and if (args[x] == '+') {
6ae232055d4d8a97267517c5e50074c2c819941and ++numwords;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if (numwords > APACHE_ARG_MAX - 5) {
6ae232055d4d8a97267517c5e50074c2c819941and numwords = APACHE_ARG_MAX - 5; /* Truncate args to prevent overrun */
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and av = (char **) apr_palloc(p, (numwords + 5) * sizeof(char *));
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if (path) {
6ae232055d4d8a97267517c5e50074c2c819941and av[idx++] = path;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and if (user) {
6ae232055d4d8a97267517c5e50074c2c819941and av[idx++] = user;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and if (group) {
6ae232055d4d8a97267517c5e50074c2c819941and av[idx++] = group;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and av[idx++] = av0;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and for (x = 1; x <= numwords; x++) {
6ae232055d4d8a97267517c5e50074c2c819941and w = ap_getword_nulls(p, &args, '+');
6ae232055d4d8a97267517c5e50074c2c819941and ap_unescape_url(w);
6ae232055d4d8a97267517c5e50074c2c819941and av[idx++] = ap_escape_shell_cmd(p, w);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and av[idx] = NULL;
6ae232055d4d8a97267517c5e50074c2c819941and return av;
6ae232055d4d8a97267517c5e50074c2c819941and}
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941andstatic int call_exec(request_rec *r, char *argv0, char **env, int shellcmd)
6ae232055d4d8a97267517c5e50074c2c819941and{
6ae232055d4d8a97267517c5e50074c2c819941and int pid = 0;
6ae232055d4d8a97267517c5e50074c2c819941and int errfileno = STDERR_FILENO;
6ae232055d4d8a97267517c5e50074c2c819941and /* the fd on r->server->error_log is closed, but we need somewhere to
6ae232055d4d8a97267517c5e50074c2c819941and * put the error messages from the log_* functions. So, we use stderr,
6ae232055d4d8a97267517c5e50074c2c819941and * since that is better than allowing errors to go unnoticed.
6ae232055d4d8a97267517c5e50074c2c819941and */
6ae232055d4d8a97267517c5e50074c2c819941and apr_put_os_file(&r->server->error_log, &errfileno, r->pool);
6ae232055d4d8a97267517c5e50074c2c819941and /* TODO: reimplement suexec */
6ae232055d4d8a97267517c5e50074c2c819941and#if 0
6ae232055d4d8a97267517c5e50074c2c819941and if (ap_suexec_enabled
6ae232055d4d8a97267517c5e50074c2c819941and && ((r->server->server_uid != ap_user_id)
6ae232055d4d8a97267517c5e50074c2c819941and || (r->server->server_gid != ap_group_id)
6ae232055d4d8a97267517c5e50074c2c819941and || (!strncmp("/~", r->uri, 2)))) {
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and char *execuser, *grpname;
6ae232055d4d8a97267517c5e50074c2c819941and struct passwd *pw;
6ae232055d4d8a97267517c5e50074c2c819941and struct group *gr;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if (!strncmp("/~", r->uri, 2)) {
6ae232055d4d8a97267517c5e50074c2c819941and gid_t user_gid;
6ae232055d4d8a97267517c5e50074c2c819941and char *username = apr_pstrdup(r->pool, r->uri + 2);
6ae232055d4d8a97267517c5e50074c2c819941and char *pos = strchr(username, '/');
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if (pos) {
6ae232055d4d8a97267517c5e50074c2c819941and *pos = '\0';
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if ((pw = getpwnam(username)) == NULL) {
6ae232055d4d8a97267517c5e50074c2c819941and ap_log_rerror(APLOG_MARK, APLOG_ERR, r,
6ae232055d4d8a97267517c5e50074c2c819941and "getpwnam: invalid username %s", username);
6ae232055d4d8a97267517c5e50074c2c819941and return (pid);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and execuser = apr_pstrcat(r->pool, "~", pw->pw_name, NULL);
6ae232055d4d8a97267517c5e50074c2c819941and user_gid = pw->pw_gid;
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if ((gr = getgrgid(user_gid)) == NULL) {
6ae232055d4d8a97267517c5e50074c2c819941and if ((grpname = apr_palloc(r->pool, 16)) == NULL) {
6ae232055d4d8a97267517c5e50074c2c819941and return (pid);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and else {
6ae232055d4d8a97267517c5e50074c2c819941and apr_snprintf(grpname, 16, "%ld", (long) user_gid);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and else {
6ae232055d4d8a97267517c5e50074c2c819941and grpname = gr->gr_name;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and else {
6ae232055d4d8a97267517c5e50074c2c819941and if ((pw = getpwuid(r->server->server_uid)) == NULL) {
6ae232055d4d8a97267517c5e50074c2c819941and ap_log_rerror(APLOG_MARK, APLOG_ERR, r,
6ae232055d4d8a97267517c5e50074c2c819941and "getpwuid: invalid userid %ld",
6ae232055d4d8a97267517c5e50074c2c819941and (long) r->server->server_uid);
6ae232055d4d8a97267517c5e50074c2c819941and return (pid);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and execuser = apr_pstrdup(r->pool, pw->pw_name);
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if ((gr = getgrgid(r->server->server_gid)) == NULL) {
6ae232055d4d8a97267517c5e50074c2c819941and ap_log_rerror(APLOG_MARK, APLOG_ERR, r,
6ae232055d4d8a97267517c5e50074c2c819941and "getgrgid: invalid groupid %ld",
6ae232055d4d8a97267517c5e50074c2c819941and (long) r->server->server_gid);
6ae232055d4d8a97267517c5e50074c2c819941and return (pid);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and grpname = gr->gr_name;
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and if (shellcmd) {
6ae232055d4d8a97267517c5e50074c2c819941and execle(SUEXEC_BIN, SUEXEC_BIN, execuser, grpname, argv0,
6ae232055d4d8a97267517c5e50074c2c819941and NULL, env);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and else if ((!r->args) || (!r->args[0]) || strchr(r->args, '=')) {
6ae232055d4d8a97267517c5e50074c2c819941and execle(SUEXEC_BIN, SUEXEC_BIN, execuser, grpname, argv0,
6ae232055d4d8a97267517c5e50074c2c819941and NULL, env);
6ae232055d4d8a97267517c5e50074c2c819941and }
6ae232055d4d8a97267517c5e50074c2c819941and
6ae232055d4d8a97267517c5e50074c2c819941and else {
6ae232055d4d8a97267517c5e50074c2c819941and execve(SUEXEC_BIN,
6ae232055d4d8a97267517c5e50074c2c819941and create_argv(r->pool, SUEXEC_BIN, execuser, grpname,
b43f840409794ed298e8634f6284741f193b6c4ftakashi argv0, r->args),
af84459fbf938e508fd10b01cb8d699c79083813takashi env);
6ae232055d4d8a97267517c5e50074c2c819941and }
f3ec420152ca921e4c1ce77782f51b53f659018dnd }
f086b4b402fa9a2fefc7dda85de2a3cc1cd0a654rjung else {
727872d18412fc021f03969b8641810d8896820bhumbedooh#endif
0d0ba3a410038e179b695446bb149cce6264e0abnd if (shellcmd) {
727872d18412fc021f03969b8641810d8896820bhumbedooh execle(SHELL_PATH, SHELL_PATH, "-c", argv0, NULL, env);
cc7e1025de9ac63bd4db6fe7f71c158b2cf09fe4humbedooh }
0d0ba3a410038e179b695446bb149cce6264e0abnd
cc7e1025de9ac63bd4db6fe7f71c158b2cf09fe4humbedooh else if ((!r->args) || (!r->args[0]) || strchr(r->args, '=')) {
727872d18412fc021f03969b8641810d8896820bhumbedooh execle(r->filename, argv0, NULL, env);
0d0ba3a410038e179b695446bb149cce6264e0abnd }
0d0ba3a410038e179b695446bb149cce6264e0abnd
0d0ba3a410038e179b695446bb149cce6264e0abnd else {
ac082aefa89416cbdc9a1836eaf3bed9698201c8humbedooh execve(r->filename,
0d0ba3a410038e179b695446bb149cce6264e0abnd create_argv(r->pool, NULL, NULL, NULL, argv0, r->args),
0d0ba3a410038e179b695446bb149cce6264e0abnd env);
0d0ba3a410038e179b695446bb149cce6264e0abnd }
727872d18412fc021f03969b8641810d8896820bhumbedooh#if 0
0d0ba3a410038e179b695446bb149cce6264e0abnd }
0d0ba3a410038e179b695446bb149cce6264e0abnd#endif
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh return (pid);
205f749042ed530040a4f0080dbcb47ceae8a374rjung}
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen
0d0ba3a410038e179b695446bb149cce6264e0abndstatic void cgid_maint(int reason, void *data, apr_wait_t status)
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd{
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd#if APR_HAS_OTHER_CHILD
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd int *sd = data;
6ae232055d4d8a97267517c5e50074c2c819941and switch (reason) {
case APR_OC_REASON_DEATH:
case APR_OC_REASON_LOST:
/* stop gap to make sure everything else works. In the end,
* we'll just restart the cgid server. */
apr_destroy_pool(pcgi);
kill(getppid(), SIGWINCH);
break;
case APR_OC_REASON_RESTART:
case APR_OC_REASON_UNREGISTER:
apr_destroy_pool(pcgi);
kill(*sd, SIGHUP);
break;
}
#endif
}
static void get_req(int fd, request_rec *r, char **filename, char **argv0, char ***env)
{
int i, len, j;
unsigned char *data;
char **environ;
core_dir_config *temp_core;
void **dconf;
r->server = apr_pcalloc(r->pool, sizeof(server_rec));
read(fd, &j, sizeof(int));
read(fd, &len, sizeof(int));
data = apr_pcalloc(r->pool, len + 1); /* get a cleared byte for final '\0' */
i = read(fd, data, len);
r->filename = ap_getword(r->pool, (const char **)&data, '\n');
*argv0 = ap_getword(r->pool, (const char **)&data, '\n');
r->uri = ap_getword(r->pool, (const char **)&data, '\n');
environ = apr_pcalloc(r->pool, (j + 2) *sizeof(char *));
i = 0;
for (i = 0; i < j; i++) {
environ[i] = ap_getword(r->pool, (const char **)&data, '\n');
}
*env = environ;
r->args = ap_getword(r->pool, (const char **)&data, '\n');
read(fd, &r->server->server_uid, sizeof(uid_t));
read(fd, &r->server->server_gid, sizeof(gid_t));
read(fd, &i, sizeof(int));
/* add 1, so that if i == 0, we still malloc something. */
dconf = (void **)malloc(sizeof(void *) * i + 1);
temp_core = (core_dir_config *)malloc(sizeof(core_module));
#if 0
#ifdef RLIMIT_CPU
read(fd, &j, sizeof(int));
if (j) {
temp_core->limit_cpu = (struct rlimit *)malloc (sizeof(struct rlimit));
read(fd, temp_core->limit_cpu, sizeof(struct rlimit));
}
else {
temp_core->limit_cpu = NULL;
}
#endif
#if defined (RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS)
read(fd, &j, sizeof(int));
if (j) {
temp_core->limit_mem = (struct rlimit *)malloc (sizeof(struct rlimit));
read(fd, temp_core->limit_mem, sizeof(struct rlimit));
}
else {
temp_core->limit_mem = NULL;
}
#endif
#ifdef RLIMIT_NPROC
read(fd, &j, sizeof(int));
if (j) {
temp_core->limit_nproc = (struct rlimit *)malloc (sizeof(struct rlimit));
read(fd, temp_core->limit_nproc, sizeof(struct rlimit));
}
else {
temp_core->limit_nproc = NULL;
}
#endif
#endif
dconf[i] = (void *)temp_core;
r->per_dir_config = dconf;
}
static void send_req(int fd, request_rec *r, char *argv0, char **env)
{
int len;
int i = 0;
char *data;
data = apr_pstrcat(r->pool, r->filename, "\n", argv0, "\n", r->uri, "\n",
NULL);
for (i =0; env[i]; i++) {
continue;
}
if (write(fd, &i, sizeof(int)) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
for (i = 0; env[i]; i++) {
data = apr_pstrcat(r->pool, data, env[i], "\n", NULL);
}
data = apr_pstrcat(r->pool, data, r->args, NULL);
len = strlen(data);
if (write(fd, &len, sizeof(int)) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
if (write(fd, data, len) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
if (write(fd, &r->server->server_uid, sizeof(uid_t)) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
if (write(fd, &r->server->server_gid, sizeof(gid_t)) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
if (write(fd, &core_module.module_index, sizeof(int)) < 0) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, errno, r,
"write to cgi daemon process");
}
#if 0
#ifdef RLIMIT_CPU
if (conf->limit_cpu) {
len = 1;
write(fd, &len, sizeof(int));
write(fd, conf->limit_cpu, sizeof(struct rlimit));
}
else {
len = 0;
write(fd, &len, sizeof(int));
}
#endif
#if defined(RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS)
if (conf->limit_mem) {
len = 1;
write(fd, &len, sizeof(int));
write(fd, conf->limit_mem, sizeof(struct rlimit));
}
else {
len = 0;
write(fd, &len, sizeof(int));
}
#endif
#ifdef RLIMIT_NPROC
if (conf->limit_nproc) {
len = 1;
write(fd, &len, sizeof(int));
write(fd, conf->limit_nproc, sizeof(struct rlimit));
}
else {
len = 0;
write(fd, &len, sizeof(int));
}
#endif
#endif
}
static int cgid_server_child(int sd)
{
char *argv0;
char *filename;
char **env;
apr_pool_t *p;
request_rec *r;
apr_create_pool(&p, pcgi);
r = apr_pcalloc(p, sizeof(request_rec));
r->pool = p;
dup2(sd, STDIN_FILENO);
dup2(sd, STDOUT_FILENO);
get_req(sd, r, &filename, &argv0, &env);
call_exec(r, argv0, env, 0);
exit(-1); /* We should NEVER get here */
}
static int cgid_server(void *data)
{
struct sockaddr_un unix_addr;
int pid;
int sd, sd2, len, rc;
int errfile;
mode_t omask;
server_rec *main_server = data;
cgid_server_conf *sconf = (cgid_server_conf *)ap_get_module_config(
main_server->module_config, &cgid_module);
apr_signal(SIGCHLD, SIG_IGN);
if (unlink(sconf->sockname) < 0 &&
errno != ENOENT) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't unlink unix domain socket %s",
sconf->sockname);
/* just a warning; don't bail out */
}
if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't create unix domain socket");
return errno;
}
memset(&unix_addr, 0, sizeof(unix_addr));
unix_addr.sun_family = AF_UNIX;
strcpy(unix_addr.sun_path, sconf->sockname);
omask = umask(0077); /* so that only Apache can use socket */
rc = bind(sd, (struct sockaddr *)&unix_addr, sizeof(unix_addr));
umask(omask); /* can't fail, so can't clobber errno */
if (rc < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't bind unix domain socket %s",
sconf->sockname);
return errno;
}
if (listen(sd, DEFAULT_CGID_LISTENBACKLOG) < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't listen on unix domain socket");
return errno;
}
if (!geteuid()) {
if (chown(sconf->sockname, unixd_config.user_id, -1) < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't change owner of unix domain socket %s",
sconf->sockname);
return errno;
}
}
unixd_setup_child(); /* if running as root, switch to configured user/group */
while (1) {
len = sizeof(unix_addr);
sd2 = accept(sd, (struct sockaddr *)&unix_addr, &len);
if (sd2 < 0) {
if (errno != EINTR) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno,
(server_rec *)data,
"Error accepting on cgid socket.");
}
continue;
}
if ((pid = fork()) > 0) {
close(sd2);
}
else if (pid == 0) {
/* setup the STDERR here, because I have all the info
* for it. I'll do the STDIN and STDOUT later, but I can't
* do STDERR as easily.
*/
if (sconf->logname) {
dup2(open(sconf->logname, O_WRONLY), STDERR_FILENO);
}
else {
apr_get_os_file(&errfile, main_server->error_log);
dup2(errfile, STDERR_FILENO);
}
cgid_server_child(sd2);
}
else {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, (server_rec *)data,
"Couldn't fork cgi script");
}
}
return -1;
}
static void cgid_init(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *main_server)
{
pid_t pid;
apr_proc_t *procnew;
if (once_through > 0) {
apr_create_pool(&pcgi, p);
if ((pid = fork()) < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, errno, main_server,
"Couldn't spawn cgid daemon process");
}
else if (pid == 0) {
cgid_server(main_server);
exit(-1);
}
procnew = apr_pcalloc(p, sizeof(*procnew));
procnew->pid = pid;
procnew->err = procnew->in = procnew->out = NULL;
apr_note_subprocess(p, procnew, kill_after_timeout);
#if APR_HAS_OTHER_CHILD
apr_register_other_child(procnew, cgid_maint, NULL, NULL, p);
#endif
}
else once_through++;
}
static void *create_cgid_config(apr_pool_t *p, server_rec *s)
{
cgid_server_conf *c =
(cgid_server_conf *) apr_pcalloc(p, sizeof(cgid_server_conf));
c->logname = NULL;
c->logbytes = DEFAULT_LOGBYTES;
c->bufbytes = DEFAULT_BUFBYTES;
c->sockname = ap_server_root_relative(p, DEFAULT_SOCKET);
c->bin = c->bout = c->berror = NULL;
return c;
}
static void *merge_cgid_config(apr_pool_t *p, void *basev, void *overridesv)
{
cgid_server_conf *base = (cgid_server_conf *) basev, *overrides = (cgid_server_conf *) overridesv;
return overrides->logname ? overrides : base;
}
static const char *set_scriptlog(cmd_parms *cmd, void *dummy, const char *arg)
{
server_rec *s = cmd->server;
cgid_server_conf *conf =
(cgid_server_conf *) ap_get_module_config(s->module_config, &cgid_module);
conf->logname = arg;
return NULL;
}
static const char *set_scriptlog_length(cmd_parms *cmd, void *dummy, const char *arg)
{
server_rec *s = cmd->server;
cgid_server_conf *conf =
(cgid_server_conf *) ap_get_module_config(s->module_config, &cgid_module);
conf->logbytes = atol(arg);
return NULL;
}
static const char *set_scriptlog_buffer(cmd_parms *cmd, void *dummy, const char *arg)
{
server_rec *s = cmd->server;
cgid_server_conf *conf =
(cgid_server_conf *) ap_get_module_config(s->module_config, &cgid_module);
conf->bufbytes = atoi(arg);
return NULL;
}
static const char *set_script_socket(cmd_parms *cmd, void *dummy, const char *arg)
{
server_rec *s = cmd->server;
cgid_server_conf *conf =
(cgid_server_conf *) ap_get_module_config(s->module_config, &cgid_module);
conf->sockname = ap_server_root_relative(cmd->pool, arg);
return NULL;
}
static const command_rec cgid_cmds[] =
{
AP_INIT_TAKE1("ScriptLog", set_scriptlog, NULL, RSRC_CONF,
"the name of a log for script debugging info"),
AP_INIT_TAKE1("ScriptLogLength", set_scriptlog_length, NULL, RSRC_CONF,
"the maximum length (in bytes) of the script debug log"),
AP_INIT_TAKE1("ScriptLogBuffer", set_scriptlog_buffer, NULL, RSRC_CONF,
"the maximum size (in bytes) to record of a POST request"),
AP_INIT_TAKE1("Scriptsock", set_script_socket, NULL, RSRC_CONF,
"the name of the socket to use for communication with "
"the cgi daemon."),
{NULL}
};
static int log_scripterror(request_rec *r, cgid_server_conf * conf, int ret,
int show_errno, char *error)
{
apr_file_t *f = NULL;
struct stat finfo;
char time_str[APR_CTIME_LEN];
ap_log_rerror(APLOG_MARK, show_errno|APLOG_ERR, errno, r,
"%s: %s", error, r->filename);
if (!conf->logname ||
((stat(ap_server_root_relative(r->pool, conf->logname), &finfo) == 0)
&& (finfo.st_size > conf->logbytes)) ||
(apr_open(&f, ap_server_root_relative(r->pool, conf->logname),
APR_APPEND|APR_WRITE|APR_CREATE, APR_OS_DEFAULT, r->pool) != APR_SUCCESS)) {
return ret;
}
/* "%% [Wed Jun 19 10:53:21 1996] GET /cgid-bin/printenv HTTP/1.0" */
apr_ctime(time_str, apr_now());
apr_fprintf(f, "%%%% [%s] %s %s%s%s %s\n", time_str, r->method, r->uri,
r->args ? "?" : "", r->args ? r->args : "", r->protocol);
/* "%% 500 /usr/local/apache/cgid-bin */
apr_fprintf(f, "%%%% %d %s\n", ret, r->filename);
apr_fprintf(f, "%%error\n%s\n", error);
apr_close(f);
return ret;
}
static int log_script(request_rec *r, cgid_server_conf * conf, int ret,
char *dbuf, const char *sbuf, BUFF *script_in, BUFF *script_err)
{
apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);
apr_table_entry_t *hdrs = (apr_table_entry_t *) hdrs_arr->elts;
char argsbuffer[HUGE_STRING_LEN];
apr_file_t *f = NULL;
int i;
struct stat finfo;
char time_str[APR_CTIME_LEN];
if (!conf->logname ||
((stat(ap_server_root_relative(r->pool, conf->logname), &finfo) == 0)
&& (finfo.st_size > conf->logbytes)) ||
(apr_open(&f, ap_server_root_relative(r->pool, conf->logname),
APR_APPEND|APR_WRITE|APR_CREATE, APR_OS_DEFAULT, r->pool) != APR_SUCCESS)) {
/* Soak up script output */
while (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_in) > 0)
continue;
if (script_err) {
while (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_err) > 0)
continue;
}
return ret;
}
/* "%% [Wed Jun 19 10:53:21 1996] GET /cgid-bin/printenv HTTP/1.0" */
apr_ctime(time_str, apr_now());
apr_fprintf(f, "%%%% [%s] %s %s%s%s %s\n", time_str, r->method, r->uri,
r->args ? "?" : "", r->args ? r->args : "", r->protocol);
/* "%% 500 /usr/local/apache/cgid-bin" */
apr_fprintf(f, "%%%% %d %s\n", ret, r->filename);
apr_puts("%request\n", f);
for (i = 0; i < hdrs_arr->nelts; ++i) {
if (!hdrs[i].key)
continue;
apr_fprintf(f, "%s: %s\n", hdrs[i].key, hdrs[i].val);
}
if ((r->method_number == M_POST || r->method_number == M_PUT)
&& *dbuf) {
apr_fprintf(f, "\n%s\n", dbuf);
}
apr_puts("%response\n", f);
hdrs_arr = apr_table_elts(r->err_headers_out);
hdrs = (apr_table_entry_t *) hdrs_arr->elts;
for (i = 0; i < hdrs_arr->nelts; ++i) {
if (!hdrs[i].key)
continue;
apr_fprintf(f, "%s: %s\n", hdrs[i].key, hdrs[i].val);
}
if (sbuf && *sbuf)
apr_fprintf(f, "%s\n", sbuf);
if (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_in) > 0) {
apr_puts("%stdout\n", f);
apr_puts(argsbuffer, f);
while (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_in) > 0)
apr_puts(argsbuffer, f);
apr_puts("\n", f);
}
if (script_err) {
if (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_err) > 0) {
apr_puts("%stderr\n", f);
apr_puts(argsbuffer, f);
while (ap_bgets(argsbuffer, HUGE_STRING_LEN, script_err) > 0)
apr_puts(argsbuffer, f);
apr_puts("\n", f);
}
}
ap_bclose(script_in);
if (script_err) {
ap_bclose(script_err);
}
apr_close(f);
return ret;
}
/****************************************************************
*
* Actual cgid handling...
*/
static int cgid_handler(request_rec *r)
{
int retval, nph, dbpos = 0;
char *argv0, *dbuf = NULL;
BUFF *script = NULL;
char argsbuffer[HUGE_STRING_LEN];
void *sconf = r->server->module_config;
cgid_server_conf *conf = (cgid_server_conf *) ap_get_module_config(sconf, &cgid_module);
int is_included = !strcmp(r->protocol, "INCLUDED");
int sd;
char **env;
struct sockaddr_un unix_addr;
apr_socket_t *tempsock = NULL;
int nbytes;
script = ap_bcreate(r->pool, B_RDWR);
if (r->method_number == M_OPTIONS) {
/* 99 out of 100 cgid scripts, this is all they support */
r->allowed |= (1 << M_GET);
r->allowed |= (1 << M_POST);
return DECLINED;
}
if ((argv0 = strrchr(r->filename, '/')) != NULL)
argv0++;
else
argv0 = r->filename;
nph = !(strncmp(argv0, "nph-", 4));
if ((argv0 = strrchr(r->filename, '/')) != NULL)
argv0++;
else
argv0 = r->filename;
if (!(ap_allow_options(r) & OPT_EXECCGI) && !is_scriptaliased(r))
return log_scripterror(r, conf, HTTP_FORBIDDEN, APLOG_NOERRNO,
"Options ExecCGI is off in this directory");
if (nph && is_included)
return log_scripterror(r, conf, HTTP_FORBIDDEN, APLOG_NOERRNO,
"attempt to include NPH CGI script");
#if defined(OS2) || defined(WIN32)
/* Allow for cgid files without the .EXE extension on them under OS/2 */
if (r->finfo.st_mode == 0) {
struct stat statbuf;
char *newfile;
newfile = apr_pstrcat(r->pool, r->filename, ".EXE", NULL);
if ((stat(newfile, &statbuf) != 0) || (!S_ISREG(statbuf.st_mode))) {
return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
"script not found or unable to stat");
} else {
r->filename = newfile;
}
}
#else
if (r->finfo.protection == 0)
return log_scripterror(r, conf, HTTP_NOT_FOUND, APLOG_NOERRNO,
"script not found or unable to stat");
#endif
if (r->finfo.filetype == APR_DIR)
return log_scripterror(r, conf, HTTP_FORBIDDEN, APLOG_NOERRNO,
"attempt to invoke directory as script");
/*
if (!ap_suexec_enabled) {
if (!ap_can_exec(&r->finfo))
return log_scripterror(r, conf, HTTP_FORBIDDEN, APLOG_NOERRNO,
"file permissions deny server execution");
}
*/
ap_add_common_vars(r);
ap_add_cgi_vars(r);
env = ap_create_environment(r->pool, r->subprocess_env);
if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
"unable to create socket to cgi daemon");
}
memset(&unix_addr, 0, sizeof(unix_addr));
unix_addr.sun_family = AF_UNIX;
strcpy(unix_addr.sun_path, conf->sockname);
if (connect(sd, (struct sockaddr *)&unix_addr, sizeof(unix_addr)) < 0) {
return log_scripterror(r, conf, HTTP_NOT_FOUND, 0,
"unable to connect to cgi daemon");
}
send_req(sd, r, argv0, env);
apr_put_os_sock(&tempsock, &sd, pcgi);
ap_bpush_socket(script, tempsock);
if ((retval = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)))
return retval;
if ((argv0 = strrchr(r->filename, '/')) != NULL)
argv0++;
else
argv0 = r->filename;
/* Transfer any put/post args, CERN style...
* Note that we already ignore SIGPIPE in the core server.
*/
if (ap_should_client_block(r)) {
int dbsize, len_read;
if (conf->logname) {
dbuf = apr_pcalloc(r->pool, conf->bufbytes + 1);
dbpos = 0;
}
while ((len_read =
ap_get_client_block(r, argsbuffer, HUGE_STRING_LEN)) > 0) {
if (conf->logname) {
if ((dbpos + len_read) > conf->bufbytes) {
dbsize = conf->bufbytes - dbpos;
}
else {
dbsize = len_read;
}
memcpy(dbuf + dbpos, argsbuffer, dbsize);
dbpos += dbsize;
}
ap_bwrite(script, argsbuffer, len_read, &nbytes);
if (nbytes < len_read) {
/* silly script stopped reading, soak up remaining message */
while (ap_get_client_block(r, argsbuffer, HUGE_STRING_LEN) > 0) {
/* dump it */
}
break;
}
}
ap_bflush(script);
}
/* Handle script return... */
if (script && !nph) {
const char *location;
char sbuf[MAX_STRING_LEN];
int ret;
if ((ret = ap_scan_script_header_err_buff(r, script, sbuf))) {
return log_script(r, conf, ret, dbuf, sbuf, script, NULL);
}
location = apr_table_get(r->headers_out, "Location");
if (location && location[0] == '/' && r->status == 200) {
/* Soak up all the script output */
while (ap_bgets(argsbuffer, HUGE_STRING_LEN, script) > 0) {
continue;
}
/* This redirect needs to be a GET no matter what the original
* method was.
*/
r->method = apr_pstrdup(r->pool, "GET");
r->method_number = M_GET;
/* We already read the message body (if any), so don't allow
* the redirected request to think it has one. We can ignore
* Transfer-Encoding, since we used REQUEST_CHUNKED_ERROR.
*/
apr_table_unset(r->headers_in, "Content-Length");
ap_internal_redirect_handler(location, r);
return OK;
}
else if (location && r->status == 200) {
/* XX Note that if a script wants to produce its own Redirect
* body, it now has to explicitly *say* "Status: 302"
*/
return HTTP_MOVED_TEMPORARILY;
}
ap_send_http_header(r);
if (!r->header_only) {
ap_send_fb(script, r);
}
ap_bclose(script);
}
if (script && nph) {
ap_send_fb(script, r);
}
return OK; /* NOT r->status, even if it has changed. */
}
static const handler_rec cgid_handlers[] =
{
{CGI_MAGIC_TYPE, cgid_handler},
{"cgi-script", cgid_handler},
{NULL}
};
static void register_hook(void)
{
ap_hook_post_config(cgid_init, NULL, NULL, AP_HOOK_MIDDLE);
}
module MODULE_VAR_EXPORT cgid_module = {
STANDARD20_MODULE_STUFF,
NULL, /* dir config creater */
NULL, /* dir merger --- default is to override */
create_cgid_config, /* server config */
merge_cgid_config, /* merge server config */
cgid_cmds, /* command table */
cgid_handlers, /* handlers */
register_hook /* register_handlers */
};