fix maintainer
[userv-utils] / www-cgi / ucgicommon.c
CommitLineData
a33962ba 1/*
711a0748 2 * Copyright (C) 1998-1999,2003 Ian Jackson
a33962ba 3 *
4 * This is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with userv-utils; if not, write to the Free Software
16 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * $Id$
19 */
6a580c17 20
21#include <stdio.h>
22#include <string.h>
6aaa2ce3 23#include <errno.h>
6a580c17 24
25#include "ucgi.h"
26
27const char *const envok[]= {
28 "CONTENT_LENGTH",
29 "CONTENT_TYPE",
30 "DOCUMENT_ROOT",
31 "GATEWAY_INTERFACE",
32 "HTTP_ACCEPT",
33 "HTTP_ACCEPT_ENCODING",
34 "HTTP_ACCEPT_LANGUAGE",
35 "HTTP_CACHE_CONTROL",
05aecda5 36 "HTTP_COOKIE",
6a580c17 37 "HTTP_HOST",
38 "HTTP_NEGOTIATE",
39 "HTTP_PRAGMA",
50689b02 40 "HTTP_REFERER",
6a580c17 41 "HTTP_USER_AGENT",
42 "PATH_INFO",
43 "PATH_TRANSLATED",
44 "QUERY_STRING",
45 "REMOTE_ADDR",
46 "REMOTE_HOST",
47 "REMOTE_USER",
48 "REMOTE_IDENT",
49 "REQUEST_METHOD",
50 "SCRIPT_FILENAME",
51 "SCRIPT_NAME",
52 "SCRIPT_URI",
53 "SCRIPT_URL",
54 "SERVER_ADMIN",
55 "SERVER_NAME",
56 "SERVER_PORT",
57 "SERVER_PROTOCOL",
58 "SERVER_SOFTWARE",
59 0
60};
61const int nenvok= sizeof(envok)/sizeof(envok[0]);
62
63int debugmode= 0;
64
65static void outerror(void) {
66 perror("stdout");
67 exit(debugmode ? 0 : -1);
68}
69
70void syserror(const char *m) {
71 if (printf("Content-Type: text/plain\n\n"
72 "ucgi: system call error:\n"
73 "%s: %s\n",
74 m,strerror(errno))==EOF || fflush(stdout)) outerror();
75 exit(0);
76}
77
78void error(const char *m) {
79 if (printf("Content-Type: text/plain\n\n"
80 "ucgi: error:\n"
81 "%s\n",
82 m)==EOF || fflush(stdout)) outerror();
83 exit(0);
84}
85
86void *xmalloc(size_t sz) {
87 void *r;
88
89 r= malloc(sz);
90 if (!r) syserror("malloc failed");
91 return r;
92}
93
94void xsetenv(const char *en, const char *ev, int overwrite) {
95 if (setenv(en,ev,overwrite)) syserror("setenv");
96}