Annotation of parser3/src/targets/cgi/parser3.C, revision 1.362
1.27 paf 1: /** @file
2: Parser: scripting and CGI main.
3:
1.356 moko 4: Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
1.350 moko 5: Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
1.189 paf 6: */
1.27 paf 7:
1.362 ! moko 8: volatile const char * IDENT_PARSER3_C="$Id: parser3.C,v 1.361 2024/11/10 12:57:17 moko Exp $";
1.1 paf 9:
1.40 paf 10: #include "pa_config_includes.h"
1.3 paf 11:
1.37 paf 12: #include "pa_sapi.h"
1.76 paf 13: #include "classes.h"
1.24 paf 14: #include "pa_common.h"
1.2 paf 15: #include "pa_request.h"
1.68 paf 16: #include "pa_version.h"
1.333 moko 17: #include "pa_threads.h"
1.266 moko 18: #include "pa_vconsole.h"
1.294 moko 19: #include "pa_sapi_info.h"
1.207 paf 20:
1.263 moko 21: #ifdef _MSC_VER
1.264 moko 22: #include <crtdbg.h>
1.263 moko 23: #include <windows.h>
24: #include <direct.h>
1.328 moko 25:
26: extern "C" HANDLE WINAPI GC_CreateThread(LPSECURITY_ATTRIBUTES, DWORD, LPTHREAD_START_ROUTINE, LPVOID, DWORD, LPDWORD);
27:
28: #else
29:
30: extern "C" int GC_pthread_create(pthread_t *, const pthread_attr_t *, void *(*)(void *), void * /* arg */);
31:
1.120 parser 32: #endif
33:
1.232 paf 34: // defines
1.231 paf 35:
1.233 paf 36: // comment remove me after debugging
1.362 ! moko 37: //#define PA_DEBUG_CGI_ENTRY_EXIT
1.233 paf 38:
1.278 moko 39: #if defined(_MSC_VER) && !defined(_DEBUG)
1.231 paf 40: # define PA_SUPPRESS_SYSTEM_EXCEPTION
41: #endif
42:
1.109 parser 43: // consts
1.84 parser 44:
1.175 paf 45: #define REDIRECT_PREFIX "REDIRECT_"
1.181 paf 46: #define PARSER_CONFIG_ENV_NAME "CGI_PARSER_CONFIG"
1.226 paf 47: #define PARSER_LOG_ENV_NAME "CGI_PARSER_LOG"
1.159 paf 48:
1.358 moko 49: SAPI_Info sapi_console;
50: SAPI_Info_CGI sapi_cgi;
51:
52: static SAPI_Info *sapi_info = &sapi_cgi;
53: static THREAD_LOCAL SAPI_Info *sapi_info_4log = NULL; // global for correct send error in die()
1.357 moko 54:
1.316 moko 55: static const char* filespec_to_process = 0; // [file]
56: static const char* httpd_host_port = 0; // -p option
1.319 moko 57: static const char* config_filespec = 0; // -f option or from env or next to the executable if exists
1.362 ! moko 58: static const char* log_filespec = 0; // -l option
1.316 moko 59: static bool mail_received = false; // -m option? [asked to parse incoming message to $mail:received]
1.347 moko 60: static const char* parser3_filespec = 0; // argv[0]
1.319 moko 61: static char** argv_extra = NULL;
1.245 misha 62:
1.317 moko 63: // for error logging
1.341 moko 64: static THREAD_LOCAL Request_info *request_info_4log = NULL; // global for correct log() reporting
1.322 moko 65: static const char* filespec_4log = NULL; // null only if system-wide auto.p used
1.201 paf 66:
1.352 moko 67: template <typename T> static T *dir_pos(T *fname){
68: T *result=NULL;
1.353 moko 69: while (fname=strpbrk(fname, "/\\")){
70: result=fname;
71: fname++;
1.352 moko 72: }
1.353 moko 73: return result;
1.352 moko 74: }
75:
1.46 paf 76: // SAPI
1.86 parser 77:
1.335 moko 78: static void pa_log(const char* fmt, va_list args) {
1.61 paf 79: FILE *f=0;
80:
1.362 ! moko 81: if(log_filespec)
! 82: f=fopen(log_filespec, "at");
! 83:
! 84: if(!f) {
! 85: const char* log_by_env=getenv(PARSER_LOG_ENV_NAME);
! 86: if(!log_by_env)
! 87: log_by_env=getenv(REDIRECT_PREFIX PARSER_LOG_ENV_NAME);
! 88: if(log_by_env)
! 89: f=fopen(log_by_env, "at");
1.226 paf 90: }
91:
1.362 ! moko 92: if(!f && filespec_4log) {
1.352 moko 93: char log_spec[MAX_STRING + 12 /* '/parser3.log' */];
94: pa_strncpy(log_spec, filespec_4log, MAX_STRING);
95:
1.354 moko 96: if(char* log_dir_pos=dir_pos(log_spec)){
1.352 moko 97: strcpy(log_dir_pos, "/parser3.log");
98: } else {
1.193 paf 99: // no path, just filename
1.352 moko 100: strcpy(log_spec, "./parser3.log");
1.193 paf 101: }
102:
1.352 moko 103: f=fopen(log_spec, "at");
1.193 paf 104: }
1.192 paf 105: // fallback to stderr
1.362 ! moko 106: if(!f)
1.61 paf 107: f=stderr;
1.208 paf 108:
109: // use no memory [so that we could log out-of-memory error]
110: setbuf(f, 0); // stderr stream is unbuffered by default, but still...
1.61 paf 111:
112: // prefix
113: time_t t=time(0);
1.218 paf 114: if(const char* stamp=ctime(&t)) { // never saw that
1.173 paf 115: if(size_t len=strlen(stamp)) // saw once stamp being =""
1.333 moko 116: fprintf(f, "[%.*s] [%u] ", (int)len-1, stamp, (unsigned int)pa_get_thread_id() );
1.171 paf 117: }
1.61 paf 118: // message
1.117 parser 119:
1.246 misha 120: char buf[MAX_LOG_STRING];
121: size_t size=vsnprintf(buf, MAX_LOG_STRING, fmt, args);
122: size=remove_crlf(buf, buf+size);
1.239 paf 123: fwrite(buf, size, 1, f);
124:
1.341 moko 125: if(request_info_4log && request_info_4log->method) {
126: fprintf(f, " [uri=%s, method=%s, cl=%lu]\n", request_info_4log->uri ? request_info_4log->uri : "<unknown>", request_info_4log->method, (unsigned long)request_info_4log->content_length);
1.297 moko 127: } else
128: fputs(" [no request info]\n", f);
1.61 paf 129:
1.362 ! moko 130: if(f!=stderr)
1.61 paf 131: fclose(f);
1.85 parser 132: else
133: fflush(f);
1.124 parser 134: }
1.272 moko 135:
1.335 moko 136: void pa_log(const char* fmt, ...) {
1.272 moko 137: va_list args;
1.233 paf 138: va_start(args,fmt);
1.335 moko 139: pa_log(fmt, args);
1.233 paf 140: va_end(args);
141: }
1.124 parser 142:
1.322 moko 143: // appends to parser3.log located next to the config file if openable, to stderr otherwize
1.218 paf 144: void SAPI::log(SAPI_Info&, const char* fmt, ...) {
1.272 moko 145: va_list args;
1.124 parser 146: va_start(args,fmt);
1.335 moko 147: pa_log(fmt, args);
1.124 parser 148: va_end(args);
149: }
150:
1.290 moko 151: void SAPI::die(const char* fmt, ...) {
152: va_list args;
153:
154: // logging first, first vsnprintf
155: va_start(args,fmt);
1.335 moko 156: pa_log(fmt, args);
1.290 moko 157: va_end(args);
1.138 paf 158:
1.290 moko 159: // inform user, second vsnprintf
160: va_start(args, fmt);
1.299 moko 161: char message[MAX_STRING];
1.300 moko 162: vsnprintf(message, MAX_STRING, fmt, args);
1.134 paf 163:
1.358 moko 164: SAPI::send_error(sapi_info_4log ? *sapi_info_4log : *sapi_info, message);
1.290 moko 165: exit(1);
1.258 moko 166: // va_end(args);
1.28 paf 167: }
168:
1.358 moko 169: void SAPI::send_error(SAPI_Info& info, const char *exception_cstr, const char *status){
170: info.send_error(exception_cstr, status);
171: }
172:
1.294 moko 173: char* SAPI::Env::get(SAPI_Info& info, const char* name) {
174: return info.get_env(name);
1.218 paf 175: }
176:
1.305 moko 177: bool SAPI::Env::set(SAPI_Info& info, const char* name, const char* value) {
178: return info.set_env(name, value);
179: }
180:
1.294 moko 181: const char* const *SAPI::Env::get(SAPI_Info& info) {
182: return info.get_env();
1.180 paf 183: }
184:
1.354 moko 185: size_t SAPI::read_post(SAPI_Info& info, char* buf, size_t max_bytes) {
1.294 moko 186: return info.read_post(buf, max_bytes);
1.10 paf 187: }
188:
1.294 moko 189: void SAPI::add_header_attribute(SAPI_Info& info, const char* dont_store_key, const char* dont_store_value) {
1.358 moko 190: info.add_header(dont_store_key, dont_store_value);
1.19 paf 191: }
192:
1.360 moko 193: void SAPI::send_headers(SAPI_Info& info) {
1.358 moko 194: info.send_headers();
1.30 paf 195: }
1.20 paf 196:
1.360 moko 197: void SAPI::clear_headers(SAPI_Info& info) {
1.361 moko 198: info.clear_headers();
1.360 moko 199: }
200:
1.294 moko 201: size_t SAPI::send_body(SAPI_Info& info, const void *buf, size_t size) {
202: return info.send_body(buf, size);
1.58 paf 203: }
204:
1.354 moko 205: static const char* full_disk_path(const char* file_name = "") {
206: char* result;
1.351 moko 207: if(file_name[0]=='/'
1.167 paf 208: #ifdef WIN32
1.308 moko 209: || file_name[0] && file_name[1]==':'
1.167 paf 210: #endif
1.308 moko 211: ){
1.351 moko 212: result=pa_strdup(file_name);
1.308 moko 213: } else {
214: char cwd[MAX_STRING];
1.351 moko 215: result=pa_strcat(getcwd(cwd, MAX_STRING) ? cwd : "", "/", file_name);
1.308 moko 216: }
1.166 paf 217: #ifdef WIN32
1.351 moko 218: back_slashes_to_slashes(result);
1.166 paf 219: #endif
1.351 moko 220: return result;
1.97 parser 221: }
222:
1.218 paf 223: static void log_signal(const char* signal_name) {
1.358 moko 224: pa_log("%s received %s processing request", signal_name, request ? "while" : "before or after");
1.205 paf 225: }
226:
1.201 paf 227: #ifdef SIGPIPE
1.243 misha 228: #define SIGPIPE_NAME "SIGPIPE"
229: static const String sigpipe_name(SIGPIPE_NAME);
1.205 paf 230: static void SIGPIPE_handler(int /*sig*/){
1.243 misha 231: Value* sigpipe=0;
232: if(request)
1.251 misha 233: sigpipe=request->main_class.get_element(sigpipe_name);
1.243 misha 234: if(sigpipe && sigpipe->as_bool())
1.244 misha 235: log_signal(SIGPIPE_NAME);
1.243 misha 236:
1.201 paf 237: if(request)
1.276 moko 238: request->set_skip(Request::SKIP_INTERRUPTED);
1.201 paf 239: }
240: #endif
241:
1.322 moko 242: // requires pa_thread_request() in entry_exists() under Windows
1.354 moko 243: static const char* locate_config(const char* config_filespec_option, const char* executable_path){
1.322 moko 244: filespec_4log=config_filespec_option;
245: if(!filespec_4log)
1.321 moko 246: filespec_4log=getenv(PARSER_CONFIG_ENV_NAME);
1.322 moko 247: if(!filespec_4log)
248: filespec_4log=getenv(REDIRECT_PREFIX PARSER_CONFIG_ENV_NAME);
249: if(!filespec_4log){
1.354 moko 250: const char* exec_dir_pos = dir_pos(executable_path);
1.322 moko 251: #ifdef SYSTEM_CONFIG_FILE
1.353 moko 252: if(exec_dir_pos){
253: #endif
254: // next to the executable
255: if(!exec_dir_pos || (exec_dir_pos==executable_path+1 && *executable_path=='.')){
1.355 moko 256: // when just parser3 or ./parser3 full path should be used to avoid "parser already configured"
1.353 moko 257: filespec_4log=full_disk_path(AUTO_FILE_NAME);
258: } else {
259: filespec_4log=pa_strcat(pa_strdup(executable_path, exec_dir_pos - executable_path), "/" AUTO_FILE_NAME);
260: }
261: if(entry_exists(filespec_4log))
262: return filespec_4log;
263: #ifdef SYSTEM_CONFIG_FILE
264: }
1.322 moko 265: if(entry_exists(SYSTEM_CONFIG_FILE)){
266: filespec_4log=NULL;
267: return SYSTEM_CONFIG_FILE;
268: }
269: #endif
270: return NULL;
1.321 moko 271: }
272: return filespec_4log;
273: }
274:
1.227 paf 275: #ifdef WIN32
1.354 moko 276: static const char* maybe_reconstruct_IIS_status_in_qs(const char* original) {
1.228 paf 277: // 404;http://servername/page[?param=value...]
1.227 paf 278: // ';' should be urlencoded by HTTP standard, so we shouldn't get it from browser
279: // and can consider that as an indication that this is IIS way to report errors
280:
1.272 moko 281: if(original && isdigit((unsigned char)original[0]) && isdigit((unsigned char)original[1]) && isdigit((unsigned char)original[2]) && original[3]==';'){
1.227 paf 282: size_t original_len=strlen(original);
1.272 moko 283: char* reconstructed=new(PointerFreeGC) char[original_len +12/*IIS-STATUS=&*/ +14/*IIS-DOCUMENT=&*/ +1];
1.227 paf 284: char* cur=reconstructed;
285: memcpy(cur, "IIS-STATUS=", 11); cur+=11;
286: memcpy(cur, original, 3); cur+=3;
287: *cur++='&';
288:
1.228 paf 289: const char* qmark_at=strchr(original, '?');
1.227 paf 290: memcpy(cur, "IIS-DOCUMENT=", 13); cur+=13;
291: {
1.272 moko 292: size_t value_len=(qmark_at ? qmark_at-original : original_len)-4;
1.227 paf 293: memcpy(cur, original+4, value_len); cur+=value_len;
294: }
295:
296: if(qmark_at) {
297: *cur++='&';
298: strcpy(cur, qmark_at+1/*skip ? itself*/);
299: } else
300: *cur=0;
301:
302: return reconstructed;
303: }
304:
305: return original;
306: }
1.283 moko 307:
1.354 moko 308: static const char* maybe_back_slashes_to_slashes(const char* original){
309: char *result=pa_strdup(original);
310: back_slashes_to_slashes(result);
311: return result;
312: }
313:
1.283 moko 314: #define MAYBE_RECONSTRUCT_IIS_STATUS_IN_QS(s) maybe_reconstruct_IIS_status_in_qs(s)
1.354 moko 315: #define MAYBE_BACK_SLASHES_TO_SLASHES(s) maybe_back_slashes_to_slashes(s)
316:
1.342 moko 317: #else
1.354 moko 318:
1.283 moko 319: #define MAYBE_RECONSTRUCT_IIS_STATUS_IN_QS(s) s
1.354 moko 320: #define MAYBE_BACK_SLASHES_TO_SLASHES(s) s
321:
1.227 paf 322: #endif
323:
1.256 misha 324: class RequestController {
325: public:
326: RequestController(Request* r){
1.341 moko 327: request=r;
1.256 misha 328: }
329: ~RequestController(){
1.341 moko 330: request=0;
331: }
332: };
333:
334: class RequestInfoController {
335: public:
1.358 moko 336: RequestInfoController(Request_info* rinfo, SAPI_Info* sinfo){
1.341 moko 337: request_info_4log=rinfo;
1.358 moko 338: sapi_info_4log=sinfo;
1.341 moko 339: }
340: ~RequestInfoController(){
341: request_info_4log=0;
1.358 moko 342: sapi_info_4log=0;
1.256 misha 343: }
344: };
345:
1.342 moko 346: /** httpd support */
347: static const String httpd_class_name("httpd");
348:
1.317 moko 349: static void config_handler(SAPI_Info &info) {
1.341 moko 350: Request_info request_info;
1.358 moko 351: RequestInfoController ric(&request_info, &info);
1.341 moko 352:
1.351 moko 353: request_info.document_root = full_disk_path();
1.317 moko 354: request_info.uri = "";
1.319 moko 355: request_info.argv = argv_extra;
1.317 moko 356:
357: // prepare to process request
1.323 moko 358: Request r(info, request_info, String::Language(String::L_HTML|String::L_OPTIMIZE_BIT));
1.330 moko 359: // only once
360: config_filespec = locate_config(config_filespec, parser3_filespec);
361: // process main auto.p only
362: r.core(config_filespec, false, String::Empty);
1.317 moko 363: }
364:
365: static void connection_handler(SAPI_Info_HTTPD &info, HTTPD_Connection &connection) {
1.341 moko 366: Request_info request_info;
1.358 moko 367: RequestInfoController ric(&request_info, &info);
1.341 moko 368:
1.325 moko 369: try {
1.336 moko 370: if(!connection.read_header())
1.332 moko 371: return; // ignore "void" connections
1.325 moko 372: info.populate_env();
373:
1.351 moko 374: request_info.document_root = full_disk_path();
1.325 moko 375: request_info.path_translated = filespec_to_process;
376: request_info.method = connection.method();
377: request_info.query_string = connection.query();
378: request_info.uri = request_info.strip_absolute_uri(connection.uri());
379: request_info.content_type = connection.content_type();
380: request_info.content_length = (size_t)connection.content_length();
381: request_info.cookie = info.get_env("HTTP_COOKIE");
382: request_info.mail_received = false;
383: request_info.argv = argv_extra;
1.294 moko 384:
1.325 moko 385: // prepare to process request
386: Request r(info, request_info, String::Language(String::L_HTML|String::L_OPTIMIZE_BIT));
1.330 moko 387: // process the request
1.342 moko 388: r.core(config_filespec, strcasecmp(request_info.method, "HEAD")==0, main_method_name, &httpd_class_name);
1.361 moko 389: } catch(const Exception& e) { // exception in connection handling
1.325 moko 390: SAPI::log(info, "%s", e.comment());
1.354 moko 391: const char* status = info.exception_http_status(e.type());
1.358 moko 392: if(*status)
1.337 moko 393: SAPI::send_error(info, e.comment(), status);
1.325 moko 394: }
395: }
1.317 moko 396:
1.328 moko 397: #ifdef _MSC_VER
398: DWORD WINAPI connection_thread(void *arg){
399: #else
1.325 moko 400: static void *connection_thread(void *arg){
1.328 moko 401: #endif
1.325 moko 402: HTTPD_Connection &connection=*(HTTPD_Connection*)arg;
403: SAPI_Info_HTTPD info(connection);
1.294 moko 404:
1.325 moko 405: try {
406: connection_handler(info, connection);
407: } catch(const Exception& e) { // exception in send_error
1.358 moko 408: pa_log("%s", e.comment());
1.294 moko 409: }
1.325 moko 410:
411: delete(&connection);
1.328 moko 412: return 0;
1.294 moko 413: }
414:
1.317 moko 415: static void httpd_mode() {
1.358 moko 416: config_handler(*sapi_info);
1.325 moko 417:
1.346 moko 418: SOCKET sock = HTTPD_Server::bind(httpd_host_port);
1.294 moko 419:
1.327 moko 420: #ifdef SIGPIPE
1.325 moko 421: signal(SIGPIPE, SIG_IGN);
422: #endif
1.317 moko 423:
1.297 moko 424: while(1){
1.328 moko 425: #ifndef _MSC_VER
1.325 moko 426: pid_t pid=1;
1.343 moko 427: if(HTTPD_Server::mode == HTTPD_Server::PARALLEL)
428: while (waitpid((pid_t)(-1), 0, WNOHANG) > 0);
1.328 moko 429: #endif
1.303 moko 430: try {
431: HTTPD_Connection connection;
1.345 moko 432: if(!connection.accept(sock, 500))
1.303 moko 433: continue;
434:
1.325 moko 435: switch (HTTPD_Server::mode) {
436: case HTTPD_Server::MULTITHREADED:
1.328 moko 437: #ifdef _MSC_VER
438: if (!GC_CreateThread(0, 0, connection_thread, new HTTPD_Connection(connection), 0, 0))
439: throw Exception("httpd.fork", 0, "thread creation failed");
1.346 moko 440: connection.sock=INVALID_SOCKET;
1.328 moko 441: break;
442: #else
1.339 moko 443: #ifdef HAVE_TLS
1.325 moko 444: pthread_t thread;
445: pthread_attr_t attr;
446: pthread_attr_init(&attr);
447: pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
448:
449: if(int result=GC_pthread_create(&thread, &attr, connection_thread, new HTTPD_Connection(connection)))
450: throw Exception("httpd.fork", 0, "thread creation failed (%d)", result);
1.346 moko 451: connection.sock=INVALID_SOCKET;
1.325 moko 452: break;
1.339 moko 453: #endif
1.325 moko 454: case HTTPD_Server::PARALLEL:
455: pid=fork();
456: if(pid<0)
457: throw Exception("httpd.fork", 0, "fork failed: %s (%d)", strerror(errno), errno);
458: if(pid>0)
459: continue; // parent should close connection.sock as well
460: #endif
461: case HTTPD_Server::SEQUENTIAL: // and fork child
1.303 moko 462:
1.325 moko 463: SAPI_Info_HTTPD info(connection);
464: connection_handler(info, connection);
1.303 moko 465: }
466: // closing connection socket in HTTPD_Connection destructor
467: } catch(const Exception& e) { // exception in accept or send_error
1.358 moko 468: pa_log("%s", e.comment());
1.294 moko 469: }
1.325 moko 470:
1.328 moko 471: #ifndef _MSC_VER
1.325 moko 472: if(pid==0) // fork child
473: exit(0);
1.328 moko 474: #endif
1.294 moko 475: }
476: }
1.231 paf 477:
1.294 moko 478: /** main workhorse */
479:
1.316 moko 480: static void real_parser_handler(bool cgi) {
1.280 moko 481: // init libraries
1.218 paf 482: pa_globals_init();
1.294 moko 483:
1.296 moko 484: if(httpd_host_port){
1.308 moko 485: httpd_mode();
1.294 moko 486: }
487:
488: const char* request_method=getenv("REQUEST_METHOD");
489:
1.308 moko 490: if(!filespec_to_process)
1.282 moko 491: SAPI::die("Parser/%s", PARSER_VERSION);
1.122 parser 492:
1.297 moko 493: // global request info
1.341 moko 494: Request_info request_info;
1.358 moko 495: RequestInfoController ric(&request_info, sapi_info);
1.341 moko 496:
1.283 moko 497: request_info.path_translated = filespec_to_process;
498: request_info.method = request_method ? request_method : "GET";
499: request_info.query_string = MAYBE_RECONSTRUCT_IIS_STATUS_IN_QS(getenv("QUERY_STRING"));
500:
1.122 parser 501: if(cgi) {
1.284 moko 502: // obligatory
1.218 paf 503: const char* path_info=getenv("PATH_INFO");
1.214 paf 504: if(!path_info)
1.349 moko 505: SAPI::die("parser3: illegal CGI call (missing PATH_INFO)");
1.283 moko 506:
507: request_info.document_root = getenv("DOCUMENT_ROOT");
508: if(!request_info.document_root) {
1.285 moko 509: // IIS or fcgiwrap minimalistic setup
510: ssize_t prefix_len = strlen(filespec_to_process) - strlen(path_info);
511: if(prefix_len < 0 || strcmp(filespec_to_process + prefix_len, path_info) != 0)
1.349 moko 512: SAPI::die("parser3: illegal CGI call (invalid PATH_INFO in reinventing DOCUMENT_ROOT)");
1.285 moko 513:
514: char* document_root = new(PointerFreeGC) char[prefix_len + 1/*0*/];
515: memcpy(document_root, filespec_to_process, prefix_len); document_root[prefix_len] = 0;
516: request_info.document_root = document_root;
1.283 moko 517: }
1.214 paf 518:
1.285 moko 519: request_info.uri = request_info.strip_absolute_uri(getenv("REQUEST_URI"));
1.283 moko 520: if(request_info.uri) { // apache & others stuck to standards
1.284 moko 521: // another obligatory
1.285 moko 522: const char* script_name = getenv("SCRIPT_NAME");
1.284 moko 523: if(!script_name)
1.349 moko 524: SAPI::die("parser3: illegal CGI call (missing SCRIPT_NAME)");
1.214 paf 525: /*
526: http://parser3/env.html?123 =OK
527: $request:uri=/env.html?123
528: REQUEST_URI='/env.html?123'
529: SCRIPT_NAME='/cgi-bin/parser3'
530: PATH_INFO='/env.html'
1.285 moko 531:
1.214 paf 532: http://parser3/cgi-bin/parser3/env.html?123 =ERROR
533: $request:uri=/cgi-bin/parser3/env.html?123
534: REQUEST_URI='/cgi-bin/parser3/env.html?123'
535: SCRIPT_NAME='/cgi-bin/parser3'
536: PATH_INFO='/env.html'
537: */
1.285 moko 538: size_t script_name_len = strlen(script_name);
539: size_t uri_len = strlen(request_info.uri);
1.283 moko 540: if(strncmp(request_info.uri, script_name, script_name_len)==0 && script_name_len != uri_len) // under IIS they are the same
1.349 moko 541: SAPI::die("parser3: illegal CGI call (REQUEST_URI starts with SCRIPT_NAME)");
1.284 moko 542: } else { // fcgiwrap minimalistic setup
1.315 moko 543: request_info.uri = request_info.query_string && *request_info.query_string ? pa_strcat(path_info, "?", request_info.query_string) : path_info;
1.214 paf 544: }
1.283 moko 545: } else{
1.351 moko 546: request_info.document_root = full_disk_path();
1.285 moko 547: request_info.uri = "";
1.283 moko 548: }
1.122 parser 549:
1.283 moko 550: request_info.content_type = getenv("CONTENT_TYPE");
1.348 moko 551: request_info.content_length = cgi ? (size_t)pa_atoul(getenv("CONTENT_LENGTH")) : 0; // only SAPI_Info_CGI can read POST
1.283 moko 552: request_info.cookie = getenv("HTTP_COOKIE");
553: request_info.mail_received = mail_received;
1.184 paf 554:
1.319 moko 555: request_info.argv = argv_extra;
1.245 misha 556:
1.233 paf 557: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
1.362 ! moko 558: pa_log("request_info: method=%s, uri=%s, q=%s, dr=%s, pt=%s", request_info.method, request_info.uri, request_info.query_string, request_info.document_root, request_info.path_translated);
1.233 paf 559: #endif
560:
1.122 parser 561: // prepare to process request
1.358 moko 562: Request r(*sapi_info, request_info, cgi ? String::Language(String::L_HTML|String::L_OPTIMIZE_BIT) : String::L_AS_IS);
1.256 misha 563: {
1.297 moko 564: // initing ::request ptr for signal handlers
1.323 moko 565: RequestController rc(&r);
1.256 misha 566: // process the request
1.323 moko 567: r.core(locate_config(config_filespec, parser3_filespec), strcasecmp(request_info.method, "HEAD")==0);
1.303 moko 568: // clearing ::request in RequestController destructor to prevent signal handlers from accessing invalid memory
1.122 parser 569: }
1.231 paf 570:
1.280 moko 571: // finalize libraries
1.225 paf 572: pa_globals_done();
1.218 paf 573: }
574:
1.231 paf 575: #ifdef PA_SUPPRESS_SYSTEM_EXCEPTION
1.316 moko 576: static const Exception call_real_parser_handler__do_PEH_return_it(bool cgi) {
1.231 paf 577: try {
1.316 moko 578: real_parser_handler(cgi);
1.231 paf 579: } catch(const Exception& e) {
580: return e;
1.122 parser 581: }
1.231 paf 582:
583: return Exception();
1.122 parser 584: }
1.272 moko 585:
1.316 moko 586: static void call_real_parser_handler__supress_system_exception(bool cgi) {
1.231 paf 587: Exception parser_exception;
588: LPEXCEPTION_POINTERS system_exception=0;
1.122 parser 589:
1.231 paf 590: __try {
1.316 moko 591: parser_exception=call_real_parser_handler__do_PEH_return_it(cgi);
1.288 moko 592: } __except ( (system_exception=GetExceptionInformation()), EXCEPTION_EXECUTE_HANDLER) {
1.231 paf 593: if(system_exception)
594: if(_EXCEPTION_RECORD *er=system_exception->ExceptionRecord)
1.272 moko 595: throw Exception("system", 0, "0x%08X at 0x%08X", er->ExceptionCode, er->ExceptionAddress);
1.218 paf 596: else
1.272 moko 597: throw Exception("system", 0, "<no exception record>");
1.218 paf 598: else
1.272 moko 599: throw Exception("system", 0, "<no exception information>");
1.231 paf 600: }
601:
602: if(parser_exception)
603: throw Exception(parser_exception);
604: }
1.273 moko 605:
606: #define REAL_PARSER_HANDLER call_real_parser_handler__supress_system_exception
607: #else
608: #define REAL_PARSER_HANDLER real_parser_handler
1.218 paf 609: #endif
1.131 paf 610:
1.218 paf 611: static void usage(const char* program) {
1.188 paf 612: printf(
1.235 paf 613: "Parser/%s\n"
1.356 moko 614: "Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)\n"
1.350 moko 615: "Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>\n"
1.184 paf 616: "\n"
1.307 moko 617: "Usage: %s [options] [file]\n"
1.184 paf 618: "Options are:\n"
1.185 paf 619: #ifdef WITH_MAILRECEIVE
1.193 paf 620: " -m Parse mail, put received letter to $mail:received\n"
1.184 paf 621: #endif
1.193 paf 622: " -f config_file Use this config file (/path/to/auto.p)\n"
1.296 moko 623: " -p [host:]port Start web server on this port\n"
1.272 moko 624: " -h Display usage information (this message)\n",
625: PARSER_VERSION,
1.184 paf 626: program);
627: exit(EINVAL);
628: }
629:
1.294 moko 630:
1.249 misha 631: int main(int argc, char *argv[]) {
1.233 paf 632: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
1.362 ! moko 633: pa_log("main: entry");
1.233 paf 634: #endif
1.217 paf 635:
1.354 moko 636: parser3_filespec = argc && argv[0] ? MAYBE_BACK_SLASHES_TO_SLASHES(argv[0]) : "parser3";
1.294 moko 637: umask(2);
638:
639: // were we started as CGI?
1.316 moko 640: bool cgi=(getenv("SERVER_SOFTWARE") || getenv("SERVER_NAME") || getenv("GATEWAY_INTERFACE") || getenv("REQUEST_METHOD")) && !getenv("PARSER_VERSION");
1.357 moko 641: if(!cgi)
1.358 moko 642: sapi_info = &sapi_console;
1.294 moko 643:
1.203 paf 644: #ifdef SIGPIPE
1.325 moko 645: signal(SIGPIPE, SIGPIPE_handler);
1.203 paf 646: #endif
647:
1.354 moko 648: char* raw_filespec_to_process = NULL;
1.210 paf 649: if(cgi) {
1.184 paf 650: raw_filespec_to_process=getenv("PATH_TRANSLATED");
1.319 moko 651: argv_extra=argv + 1;
1.210 paf 652: } else {
1.250 misha 653: int optind=1;
1.245 misha 654: while(optind < argc){
1.354 moko 655: char* carg = argv[optind];
1.245 misha 656: if(carg[0] != '-')
1.184 paf 657: break;
1.245 misha 658:
659: for(size_t k = 1; k < strlen(carg); k++){
660: char c = carg[k];
661: switch (c) {
662: case 'h':
1.347 moko 663: usage(parser3_filespec);
1.245 misha 664: break;
665: case 'f':
666: if(optind < argc - 1){
667: optind++;
1.311 moko 668: config_filespec=argv[optind];
1.245 misha 669: }
670: break;
1.362 ! moko 671: case 'l':
! 672: if(optind < argc - 1){
! 673: optind++;
! 674: log_filespec=argv[optind];
! 675: }
! 676: break;
1.294 moko 677: case 'p':
678: if(optind < argc - 1){
679: optind++;
1.296 moko 680: httpd_host_port=argv[optind];
1.294 moko 681: }
682: break;
1.185 paf 683: #ifdef WITH_MAILRECEIVE
1.245 misha 684: case 'm':
685: mail_received=true;
686: break;
687: #endif
688: default:
1.347 moko 689: fprintf(stderr, "%s: invalid option '%c'\n", parser3_filespec, c);
690: usage(parser3_filespec);
1.245 misha 691: break;
692: }
1.184 paf 693: }
1.245 misha 694: optind++;
1.184 paf 695: }
1.245 misha 696:
697: if (optind > argc - 1) {
1.296 moko 698: if(!httpd_host_port) {
1.347 moko 699: fprintf(stderr, "%s: file not specified\n", parser3_filespec);
700: usage(parser3_filespec);
1.294 moko 701: }
702: } else {
703: raw_filespec_to_process=argv[optind];
1.10 paf 704: }
1.294 moko 705:
1.296 moko 706: if (httpd_host_port && mail_received) {
1.347 moko 707: fprintf(stderr, "%s: -p and -m options should not be used together\n", parser3_filespec);
708: usage(parser3_filespec);
1.294 moko 709: }
1.310 moko 710:
1.319 moko 711: argv_extra=argv + optind;
1.10 paf 712: }
713:
1.264 moko 714: #ifdef _MSC_VER
1.100 parser 715: setmode(fileno(stdin), _O_BINARY);
716: setmode(fileno(stdout), _O_BINARY);
717: setmode(fileno(stderr), _O_BINARY);
718: #endif
719:
1.218 paf 720: #if defined(_MSC_VER) && defined(_DEBUG)
1.148 paf 721: // Get current flag
722: int tmpFlag = _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG );
723:
724: // Turn on leak-checking bit
725: tmpFlag |= _CRTDBG_LEAK_CHECK_DF;
726:
727: // Set flag to the new value
728: _CrtSetDbgFlag( tmpFlag );
1.138 paf 729:
1.218 paf 730: _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_FILE );
731: _CrtSetReportFile( _CRT_WARN, _CRTDBG_FILE_STDERR );
1.138 paf 732: #endif
733:
1.318 moko 734: try { // global try
735: if(raw_filespec_to_process && *raw_filespec_to_process){
1.351 moko 736: filespec_to_process=full_disk_path(raw_filespec_to_process);
1.318 moko 737: }
1.10 paf 738:
1.316 moko 739: REAL_PARSER_HANDLER(cgi);
1.361 moko 740: } catch(const Exception& e) { // exception in config_handler
1.359 moko 741: SAPI::log(*sapi_info, "%s", e.comment());
742: SAPI::send_error(*sapi_info, e.comment(), strcmp(e.type(), "file.missing") ? "500" : "404");
1.16 paf 743: }
1.109 parser 744:
1.233 paf 745: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
1.362 ! moko 746: pa_log("main: successful return");
1.233 paf 747: #endif
1.358 moko 748: return sapi_info->http_response_code < 100 ? sapi_info->http_response_code : 0;
1.1 paf 749: }
E-mail: