Annotation of parser3/src/targets/cgi/parser3.C, revision 1.244
1.27 paf 1: /** @file
2: Parser: scripting and CGI main.
3:
1.237 paf 4: Copyright(c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com)
1.154 paf 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.189 paf 6: */
1.27 paf 7:
1.244 ! misha 8: static const char * const IDENT_PARSER3_C="$Date: 2007/08/17 08:16:11 $";
1.1 paf 9:
1.40 paf 10: #include "pa_config_includes.h"
1.3 paf 11:
1.139 paf 12: #if _MSC_VER
1.148 paf 13: # include <crtdbg.h>
1.3 paf 14: #endif
1.27 paf 15:
1.37 paf 16: #include "pa_sapi.h"
1.76 paf 17: #include "classes.h"
1.24 paf 18: #include "pa_common.h"
1.2 paf 19: #include "pa_request.h"
1.57 paf 20: #include "pa_socks.h"
1.68 paf 21: #include "pa_version.h"
1.207 paf 22:
1.149 paf 23: #ifdef WIN32
24: # include <windows.h>
1.184 paf 25: # include "getopt.h"
26: #else
27: # include <getopt.h>
1.120 parser 28: #endif
29:
1.232 paf 30: // defines
1.231 paf 31:
1.233 paf 32: // comment remove me after debugging
1.234 paf 33: //#define PA_DEBUG_CGI_ENTRY_EXIT "c:\\parser\\debug-parser3.log"
1.233 paf 34:
1.231 paf 35: #if _MSC_VER && !defined(_DEBUG)
36: # define PA_SUPPRESS_SYSTEM_EXCEPTION
37: #endif
38:
1.196 paf 39: //#define DEBUG_MAILRECEIVE "mailreceive.eml"
1.160 paf 40:
1.109 parser 41: // consts
1.84 parser 42:
1.175 paf 43: #define REDIRECT_PREFIX "REDIRECT_"
1.181 paf 44: #define PARSER_CONFIG_ENV_NAME "CGI_PARSER_CONFIG"
1.226 paf 45: #define PARSER_LOG_ENV_NAME "CGI_PARSER_LOG"
1.159 paf 46:
1.42 paf 47: /// IIS refuses to read bigger chunks
48: const size_t READ_POST_CHUNK_SIZE=0x400*0x400; // 1M
49:
1.218 paf 50: static const char* argv0;
51: static const char* config_filespec_cstr=0;
1.193 paf 52: static bool fail_on_config_read_problem=true;
1.192 paf 53:
1.184 paf 54: static bool cgi; ///< we were started as CGI?
55: static bool mail_received=false; ///< we were started with -m option? [asked to parse incoming message to $mail:received]
1.5 paf 56:
1.201 paf 57: // for signal handlers
58: Request *request=0;
1.218 paf 59: Request_info *request_info=0;
60: bool execution_canceled=false;
1.201 paf 61:
1.46 paf 62: // SAPI
1.86 parser 63:
1.218 paf 64: class SAPI_Info{} SAPI_info;
65:
66: static void log(const char* fmt, va_list args) {
1.193 paf 67: bool opened=false;
1.61 paf 68: FILE *f=0;
69:
1.226 paf 70: const char* log_by_env=getenv(PARSER_LOG_ENV_NAME);
71: if(!log_by_env)
72: log_by_env=getenv(REDIRECT_PREFIX PARSER_LOG_ENV_NAME);
73: if(log_by_env) {
74: f=fopen(log_by_env, "at");
75: opened=f!=0;
76: }
1.233 paf 77: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
78: f=fopen(PA_DEBUG_CGI_ENTRY_EXIT, "at");
79: opened=f!=0;
80: #endif
1.226 paf 81:
82: if(!opened && config_filespec_cstr) {
1.193 paf 83: char beside_config_path[MAX_STRING];
84: strncpy(beside_config_path, config_filespec_cstr, MAX_STRING-1); beside_config_path[MAX_STRING-1]=0;
85: if(!(
86: rsplit(beside_config_path, '/') ||
87: rsplit(beside_config_path, '\\'))) { // strip filename
88: // no path, just filename
89: beside_config_path[0]='.'; beside_config_path[1]=0;
90: }
91:
92: char file_spec[MAX_STRING];
93: snprintf(file_spec, MAX_STRING,
94: "%s/parser3.log", beside_config_path);
95: f=fopen(file_spec, "at");
96: opened=f!=0;
97: }
1.192 paf 98: // fallback to stderr
1.61 paf 99: if(!opened)
100: f=stderr;
1.208 paf 101:
102: // use no memory [so that we could log out-of-memory error]
103: setbuf(f, 0); // stderr stream is unbuffered by default, but still...
1.61 paf 104:
105: // prefix
106: time_t t=time(0);
1.218 paf 107: if(const char* stamp=ctime(&t)) { // never saw that
1.173 paf 108: if(size_t len=strlen(stamp)) // saw once stamp being =""
1.233 paf 109: fprintf(f, "[%.*s] [%u] ", len-1, stamp,
1.236 paf 110: (unsigned int)getpid()
1.233 paf 111: );
1.171 paf 112: }
1.61 paf 113: // message
1.117 parser 114:
115: char buf[MAX_STRING];
116: size_t size=vsnprintf(buf, MAX_STRING, fmt, args);
117: remove_crlf(buf, buf+size);
1.239 paf 118: fwrite(buf, size, 1, f);
119:
120: if(request_info)
121: fprintf(f, " [uri=%s, method=%s, cl=%u]",
122: request_info->uri? request_info->uri: "<unknown>",
123: request_info->method? request_info->method: "<unknown>",
124: request_info->content_length);
125: else
126: fputs(" [no request info]", f);
1.117 parser 127:
1.61 paf 128: // newline
1.239 paf 129: fputs("\n", f);
1.61 paf 130:
131: if(opened)
132: fclose(f);
1.85 parser 133: else
134: fflush(f);
1.124 parser 135: }
1.236 paf 136: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
1.233 paf 137: static void log(const char* fmt, ...) {
138: va_list args;
139: va_start(args,fmt);
140: log(fmt, args);
141: va_end(args);
142: }
1.236 paf 143: #endif
1.124 parser 144:
145: // appends to parser3.log located beside my binary if openable, to stderr otherwize
1.218 paf 146: void SAPI::log(SAPI_Info&, const char* fmt, ...) {
1.124 parser 147: va_list args;
148: va_start(args,fmt);
149: ::log(fmt, args);
150: va_end(args);
151: }
152:
1.218 paf 153: static void die_or_abort(const char* fmt, va_list args, bool write_core) {
1.138 paf 154: // log
155:
156: // logging is more important than user
1.204 paf 157: // she can cancel download, we'd get SIGPIPE,
1.138 paf 158: // nothing would be logged then
1.124 parser 159: ::log(fmt, args);
160:
1.138 paf 161: // inform user
162:
1.134 paf 163: char body[MAX_STRING];
1.138 paf 164: int content_length=vsnprintf(body, MAX_STRING, fmt, args);
1.134 paf 165:
166: // prepare header
167: // let's be honest, that's bad we couldn't produce valid output
1.218 paf 168: SAPI::add_header_attribute(SAPI_info, "status", "500");
169: SAPI::add_header_attribute(SAPI_info, "content-type", "text/plain");
1.134 paf 170: char content_length_cstr[MAX_NUMBER];
1.168 paf 171: snprintf(content_length_cstr, sizeof(content_length_cstr), "%u", content_length);
1.218 paf 172: SAPI::add_header_attribute(SAPI_info, "content-length", content_length_cstr);
1.134 paf 173:
174: // send header
1.218 paf 175: SAPI::send_header(SAPI_info);
1.134 paf 176:
177: // body
1.218 paf 178: SAPI::send_body(SAPI_info, body, content_length);
1.134 paf 179:
1.218 paf 180: // exit & try to produce core dump[unix] or invoke debugger[Win32 Debug version]
181: if(write_core) {
182: #if defined(WIN32) && !defined(_DEBUG)
183: // IIS with abort failes to show STDOUT, it just barks "abnormal program termination"
184: exit(1);
1.214 paf 185: #else
1.218 paf 186: #if _MSC_VER
187: _asm int 3;
188: #endif
189: abort();
1.214 paf 190: #endif
1.218 paf 191: }
192: else
193: exit(1);
194: }
195:
196: void SAPI::die(const char* fmt, ...) {
197: va_list args;
198: va_start(args, fmt);
199: die_or_abort(fmt, args, false/*write core?*/);
1.238 paf 200: //unreachable anyway va_end(args);
1.61 paf 201: }
202:
1.218 paf 203: void SAPI::abort(const char* fmt, ...) {
204: va_list args;
205: va_start(args, fmt);
206: die_or_abort(fmt, args, true/*write core?*/);
1.238 paf 207: //unreachable anyway va_end(args);
1.28 paf 208: }
209:
1.218 paf 210: char* SAPI::get_env(SAPI_Info& , const char* name) {
211: if(char *local=getenv(name))
212: return pa_strdup(local);
213: else
214: return 0;
215: }
216:
217: const char* const *SAPI::environment(SAPI_Info&) {
1.180 paf 218: #ifdef _MSC_VER
219: extern char **_environ;
220: return _environ;
221: #else
222: extern char **environ;
223: return environ;
224: #endif
225: }
226:
1.218 paf 227: size_t SAPI::read_post(SAPI_Info& , char *buf, size_t max_bytes) {
1.59 paf 228: size_t read_size=0;
1.12 paf 229: do {
1.200 paf 230: ssize_t chunk_size=read(fileno(stdin),
1.42 paf 231: buf+read_size, min(READ_POST_CHUNK_SIZE, max_bytes-read_size));
1.129 paf 232: if(chunk_size<=0)
1.12 paf 233: break;
234: read_size+=chunk_size;
235: } while(read_size<max_bytes);
236:
237: return read_size;
1.10 paf 238: }
239:
1.218 paf 240: void SAPI::add_header_attribute(SAPI_Info& , const char* dont_store_key, const char* dont_store_value) {
1.242 misha 241: if( cgi && (!request || !request->console.was_used()) )
1.218 paf 242: printf("%s: %s\n", dont_store_key, dont_store_value);
1.19 paf 243: }
244:
1.56 paf 245: /// @todo intelligent cache-control
1.218 paf 246: void SAPI::send_header(SAPI_Info& ) {
1.33 paf 247: if(cgi) {
1.147 paf 248: // puts("expires: Fri, 23 Mar 2001 09:32:23 GMT");
1.33 paf 249:
250: // header | body delimiter
1.20 paf 251: puts("");
1.33 paf 252: }
1.30 paf 253: }
1.20 paf 254:
1.229 paf 255: size_t SAPI::send_body(SAPI_Info& , const void *buf, size_t size) {
256: return stdout_write(buf, size);
1.58 paf 257: }
258:
1.97 parser 259: //
260:
1.218 paf 261: static void full_file_spec(const char* file_name, char *buf, size_t buf_size) {
1.210 paf 262: if(file_name)
1.167 paf 263: if(file_name[0]=='/'
264: #ifdef WIN32
1.210 paf 265: || file_name[0] && file_name[1]==':'
1.167 paf 266: #endif
1.210 paf 267: )
1.218 paf 268: strncpy(buf, file_name, buf_size);
1.167 paf 269: else {
270: char cwd[MAX_STRING]; getcwd(cwd, MAX_STRING);
271: snprintf(buf, buf_size, "%s/%s", cwd, file_name);
272: }
273: else
274: buf[0]=0;
1.166 paf 275: #ifdef WIN32
276: back_slashes_to_slashes(buf);
277: #endif
1.97 parser 278: }
279:
1.218 paf 280: static void log_signal(const char* signal_name) {
281: if(request_info)
1.219 paf 282: SAPI::log(SAPI_info, "%s received while %s. uri=%s, method=%s, cl=%u",
1.218 paf 283: signal_name,
284: request?"executing code":"reading data",
285: request_info->uri,
286: request_info->method,
287: request_info->content_length);
288: else
289: SAPI::log(SAPI_info, "%s received before or after processing request",
290: signal_name);
1.205 paf 291: }
292:
1.201 paf 293: #ifdef SIGUSR1
1.205 paf 294: static void SIGUSR1_handler(int /*sig*/){
295: log_signal("SIGUSR1");
1.201 paf 296: }
297: #endif
298:
299: #ifdef SIGPIPE
1.243 misha 300: #define SIGPIPE_NAME "SIGPIPE"
301: static const String sigpipe_name(SIGPIPE_NAME);
1.205 paf 302: static void SIGPIPE_handler(int /*sig*/){
1.243 misha 303: Value* sigpipe=0;
304: if(request)
305: sigpipe=request->main_class.get_element(sigpipe_name, request->main_class, false);
306: if(sigpipe && sigpipe->as_bool())
1.244 ! misha 307: log_signal(SIGPIPE_NAME);
1.243 misha 308:
1.218 paf 309: execution_canceled=true;
1.201 paf 310: if(request)
1.218 paf 311: request->set_interrupted(true);
1.201 paf 312: }
313: #endif
314:
1.227 paf 315: #ifdef WIN32
316: const char* maybe_reconstruct_IIS_status_in_qs(const char* original)
317: {
1.228 paf 318: // 404;http://servername/page[?param=value...]
1.227 paf 319: // ';' should be urlencoded by HTTP standard, so we shouldn't get it from browser
320: // and can consider that as an indication that this is IIS way to report errors
321:
1.228 paf 322: if(original
1.230 paf 323: && isdigit((unsigned char)original[0])
324: && isdigit((unsigned char)original[1])
325: && isdigit((unsigned char)original[2])
1.227 paf 326: && original[3]==';')
327: {
328: size_t original_len=strlen(original);
329: char* reconstructed=new(PointerFreeGC) char[original_len
330: +12/*IIS-STATUS=&*/
331: +14/*IIS-DOCUMENT=&*/
332: +1];
333: char* cur=reconstructed;
334: memcpy(cur, "IIS-STATUS=", 11); cur+=11;
335: memcpy(cur, original, 3); cur+=3;
336: *cur++='&';
337:
1.228 paf 338: const char* qmark_at=strchr(original, '?');
1.227 paf 339: memcpy(cur, "IIS-DOCUMENT=", 13); cur+=13;
340: {
341: size_t value_len=(qmark_at? qmark_at-original: original_len)-4;
342: memcpy(cur, original+4, value_len); cur+=value_len;
343: }
344:
345: if(qmark_at) {
346: *cur++='&';
347: strcpy(cur, qmark_at+1/*skip ? itself*/);
348: } else
349: *cur=0;
350:
351: return reconstructed;
352: }
353:
354: return original;
355: }
356: #endif
357:
1.40 paf 358: /**
1.122 parser 359: main workhorse
1.19 paf 360:
1.122 parser 361: @todo
1.40 paf 362: IIS: remove trailing default-document[index.html] from $request.uri.
363: to do that we need to consult metabase,
364: wich is tested but seems slow.
365: */
1.218 paf 366: static void real_parser_handler(const char* filespec_to_process,
1.231 paf 367: const char* request_method, bool header_only)
368: {
1.122 parser 369: // init socks
1.225 paf 370: pa_socks_init();
1.231 paf 371:
1.122 parser 372: // init global variables
1.218 paf 373: pa_globals_init();
1.122 parser 374:
1.186 paf 375: if(!filespec_to_process || !*filespec_to_process)
1.233 paf 376: SAPI::die("Parser/%s"
377: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
378: " with entry/exit tracing"
379: #endif
380: , PARSER_VERSION);
1.122 parser 381:
382: // Request info
1.218 paf 383: Request_info request_info; memset(&request_info, 0, sizeof(request_info));
1.166 paf 384: char document_root_buf[MAX_STRING];
1.122 parser 385: if(cgi) {
1.218 paf 386: if(const char* env_document_root=getenv("DOCUMENT_ROOT"))
1.122 parser 387: request_info.document_root=env_document_root;
1.218 paf 388: else if(const char* path_info=getenv("PATH_INFO")) {
1.122 parser 389: // IIS
1.166 paf 390: size_t len=min(sizeof(document_root_buf)-1, strlen(filespec_to_process)-strlen(path_info));
391: memcpy(document_root_buf, filespec_to_process, len); document_root_buf[len]=0;
392: request_info.document_root=document_root_buf;
1.122 parser 393: } else
1.243 misha 394: throw Exception(PARSER_RUNTIME,
1.165 paf 395: 0,
396: "CGI: no PATH_INFO defined(in reinventing DOCUMENT_ROOT)");
1.122 parser 397: } else {
1.166 paf 398: full_file_spec("", document_root_buf, sizeof(document_root_buf));
399: request_info.document_root=document_root_buf;
1.122 parser 400: }
401: request_info.path_translated=filespec_to_process;
402: request_info.method=request_method ? request_method : "GET";
1.227 paf 403: const char* query_string=
404: #ifdef WIN32
405: maybe_reconstruct_IIS_status_in_qs
406: #endif
407: (getenv("QUERY_STRING"));
1.122 parser 408: request_info.query_string=query_string;
409: if(cgi) {
1.214 paf 410: // few absolute obligatory
1.218 paf 411: const char* path_info=getenv("PATH_INFO");
1.214 paf 412: if(!path_info)
413: SAPI::die("CGI: illegal call (missing PATH_INFO)");
1.218 paf 414: const char* script_name=getenv("SCRIPT_NAME");
1.214 paf 415: if(!script_name)
416: SAPI::die("CGI: illegal call (missing SCRIPT_NAME)");
417:
1.218 paf 418: const char* env_request_uri=getenv("REQUEST_URI");
1.214 paf 419: if(env_request_uri)
1.122 parser 420: request_info.uri=env_request_uri;
1.214 paf 421: else
1.122 parser 422: if(query_string) {
1.218 paf 423: char* reconstructed_uri=new(PointerFreeGC) char[
1.122 parser 424: strlen(path_info)+1/*'?'*/+
1.218 paf 425: strlen(query_string)+1/*0*/];
1.122 parser 426: strcpy(reconstructed_uri, path_info);
427: strcat(reconstructed_uri, "?");
428: strcat(reconstructed_uri, query_string);
429: request_info.uri=reconstructed_uri;
430: } else
431: request_info.uri=path_info;
1.214 paf 432:
433: if(env_request_uri) { // apache & others stuck to standards
434: /*
435: http://parser3/env.html?123 =OK
436: $request:uri=/env.html?123
437: REQUEST_URI='/env.html?123'
438: SCRIPT_NAME='/cgi-bin/parser3'
439: PATH_INFO='/env.html'
440:
441: http://parser3/cgi-bin/parser3/env.html?123 =ERROR
442: $request:uri=/cgi-bin/parser3/env.html?123
443: REQUEST_URI='/cgi-bin/parser3/env.html?123'
444: SCRIPT_NAME='/cgi-bin/parser3'
445: PATH_INFO='/env.html'
446: */
447: size_t script_name_len=strlen(script_name);
448: size_t uri_len=strlen(env_request_uri);
449: if(strncmp(env_request_uri, script_name, script_name_len)==0 &&
450: script_name_len != uri_len) // under IIS they are the same
451: SAPI::die("CGI: illegal call (1)");
452: } else { // seen on IIS5
453: /*
454: http://nestle/env.html?123 =OK
455: $request:uri=/env.html?123
456: REQUEST_URI=''
457: SCRIPT_NAME='/env.html'
458: PATH_INFO='/env.html'
459:
460: http://nestle/cgi-bin/parser3.exe/env.html =ERROR
461: $request:uri=/env.html
462: REQUEST_URI=''
463: SCRIPT_NAME='/cgi-bin/parser3.exe'
464: PATH_INFO='/env.html'
465: */
466: if(strcmp(script_name, path_info)!=0)
467: SAPI::die("CGI: illegal call (2)");
468: }
1.122 parser 469: } else
1.177 paf 470: request_info.uri="";
1.122 parser 471:
1.218 paf 472: request_info.content_type=getenv("CONTENT_TYPE");
473: const char* content_length=getenv("CONTENT_LENGTH");
1.122 parser 474: request_info.content_length=(content_length?atoi(content_length):0);
1.218 paf 475: request_info.cookie=getenv("HTTP_COOKIE");
1.184 paf 476: request_info.mail_received=mail_received;
477:
1.218 paf 478: // get request_info ptr for signal handlers
479: ::request_info=&request_info;
480: if(execution_canceled)
481: SAPI::die("Execution canceled");
1.198 paf 482:
1.233 paf 483: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
484: log("request_info: method=%s, uri=%s, q=%s, dr=%s, pt=%s, cookies=%s, cl=%u",
485: request_info.method,
486: request_info.uri,
487: request_info.query_string,
488: request_info.document_root,
489: request_info.path_translated,
490: request_info.cookie,
491: request_info.content_length);
492: #endif
493:
1.122 parser 494: // prepare to process request
1.221 paf 495: Request request(SAPI_info, request_info,
1.218 paf 496: cgi ? String::Language(String::L_HTML|String::L_OPTIMIZE_BIT) : String::L_AS_IS,
1.130 paf 497: true /* status_allowed */);
1.201 paf 498:
499: // get request ptr for signal handlers
500: ::request=&request;
501:
1.181 paf 502: char config_filespec_buf[MAX_STRING];
1.193 paf 503: if(!config_filespec_cstr) {
1.218 paf 504: const char* config_by_env=getenv(PARSER_CONFIG_ENV_NAME);
1.193 paf 505: if(!config_by_env)
506: config_by_env=getenv(REDIRECT_PREFIX PARSER_CONFIG_ENV_NAME);
507: if(config_by_env)
508: config_filespec_cstr=config_by_env;
509: else {
510: // beside by binary
511: char beside_binary_path[MAX_STRING];
512: strncpy(beside_binary_path, argv0, MAX_STRING-1); beside_binary_path[MAX_STRING-1]=0; // filespec of my binary
513: if(!(
514: rsplit(beside_binary_path, '/') ||
515: rsplit(beside_binary_path, '\\'))) { // strip filename
516: // no path, just filename
517: // @todo full path, not ./!
518: beside_binary_path[0]='.'; beside_binary_path[1]=0;
519: }
520: snprintf(config_filespec_buf, MAX_STRING,
521: "%s/%s",
522: beside_binary_path, AUTO_FILE_NAME);
523: config_filespec_cstr=config_filespec_buf;
1.197 paf 524: fail_on_config_read_problem=entry_exists(config_filespec_cstr);
1.193 paf 525: }
1.122 parser 526: }
527:
528: // process the request
529: request.core(
1.193 paf 530: config_filespec_cstr, fail_on_config_read_problem,
1.122 parser 531: header_only);
1.201 paf 532:
533: // no request [prevent signal handlers from accessing invalid memory]
534: ::request=0;
1.231 paf 535:
1.225 paf 536: // finalize global variables
537: pa_globals_done();
538:
1.122 parser 539: //
1.225 paf 540: pa_socks_done();
1.218 paf 541: }
542:
1.231 paf 543: #ifdef PA_SUPPRESS_SYSTEM_EXCEPTION
544: static const Exception
545: call_real_parser_handler__do_PEH_return_it(
546: const char* filespec_to_process,
547: const char* request_method, bool header_only)
548: {
549: try {
1.122 parser 550: real_parser_handler(
551: filespec_to_process,
552: request_method, header_only);
1.231 paf 553: } catch(const Exception& e) {
554: return e;
1.122 parser 555: }
1.231 paf 556:
557: return Exception();
1.122 parser 558: }
1.231 paf 559: static void call_real_parser_handler__supress_system_exception(
560: const char* filespec_to_process,
561: const char* request_method, bool header_only)
562: {
563: Exception parser_exception;
564: LPEXCEPTION_POINTERS system_exception=0;
1.122 parser 565:
1.231 paf 566: __try {
567: parser_exception=call_real_parser_handler__do_PEH_return_it(
568: filespec_to_process,
1.232 paf 569: request_method, header_only);
1.231 paf 570: } __except (
571: (system_exception=GetExceptionInformation()),
572: EXCEPTION_EXECUTE_HANDLER)
573: {
1.131 paf 574:
1.231 paf 575: if(system_exception)
576: if(_EXCEPTION_RECORD *er=system_exception->ExceptionRecord)
577: throw Exception("system",
1.218 paf 578: 0,
1.231 paf 579: "0x%08X at 0x%08X", er->ExceptionCode, er->ExceptionAddress);
1.218 paf 580: else
1.231 paf 581: throw Exception("system",
1.218 paf 582: 0,
1.231 paf 583: "<no exception record>");
1.218 paf 584: else
1.231 paf 585: throw Exception("system",
1.218 paf 586: 0,
1.231 paf 587: "<no exception information>");
588: }
589:
590: if(parser_exception)
591: throw Exception(parser_exception);
592: }
1.218 paf 593: #endif
1.131 paf 594:
1.218 paf 595: static void usage(const char* program) {
1.188 paf 596: printf(
1.235 paf 597: "Parser/%s\n"
1.240 misha 598: "Copyright(c) 2001-2007 ArtLebedev Group (http://www.artlebedev.com)\n"
1.184 paf 599: "Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)\n"
600: "\n"
601: "Usage: %s [options] file\n"
602: "Options are:\n"
1.185 paf 603: #ifdef WITH_MAILRECEIVE
1.193 paf 604: " -m Parse mail, put received letter to $mail:received\n"
1.184 paf 605: #endif
1.193 paf 606: " -f config_file Use this config file (/path/to/auto.p)\n"
607: " -h Display usage information (this message)\n"
1.184 paf 608: , PARSER_VERSION,
609: program);
610: exit(EINVAL);
611: }
612:
1.218 paf 613: int main(int argc, char *argv[]) {
1.233 paf 614: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
615: log("main: entry");
616: #endif
1.224 paf 617: //_asm int 3;
1.218 paf 618: GC_java_finalization=0;
1.217 paf 619:
1.218 paf 620: #ifndef PA_DEBUG_DISABLE_GC
621: // Dont collect unless explicitly requested
622: // this is quicker (~30% ), but less memory-efficient(~8%)
623: // so deciding for speed
624: GC_dont_gc=1;
625: #endif
626: /*
627:
628: Array<int> test;
629: test+=3;
630: test+=4;
631: // int a=test.count();
632: int i=0;
633: scanf("%d", &i);
634: int b=test.get(i);
635: // int b=test.get(10);
636: printf("%d", b);//test.count());*/
1.217 paf 637:
1.203 paf 638: #ifdef SIGUSR1
1.205 paf 639: if(signal(SIGUSR1, SIGUSR1_handler)==SIG_ERR)
1.203 paf 640: SAPI::die("Can not set handler for SIGUSR1");
641: #endif
642: #ifdef SIGPIPE
1.205 paf 643: if(signal(SIGPIPE, SIGPIPE_handler)==SIG_ERR)
1.203 paf 644: SAPI::die("Can not set handler for SIGPIPE");
645: #endif
646:
647:
1.185 paf 648: #ifdef DEBUG_MAILRECEIVE
649: if(FILE *fake_in=fopen(DEBUG_MAILRECEIVE, "rt")) {
1.184 paf 650: dup2(fake_in->_file, 0/*STDIN_FILENO*/);
651: }
652: #endif
653:
1.178 paf 654: #ifdef _DEBUG
1.220 paf 655: //_crtBreakAlloc=46;
1.178 paf 656: #endif
1.193 paf 657: argv0=argv[0];
1.45 paf 658:
1.32 paf 659: umask(2);
660:
1.3 paf 661: // were we started as CGI?
1.146 paf 662: cgi=
1.109 parser 663: getenv("SERVER_SOFTWARE") ||
664: getenv("SERVER_NAME") ||
665: getenv("GATEWAY_INTERFACE") ||
666: getenv("REQUEST_METHOD");
1.5 paf 667:
1.184 paf 668: char *raw_filespec_to_process;
1.210 paf 669: if(cgi) {
1.184 paf 670: raw_filespec_to_process=getenv("PATH_TRANSLATED");
1.210 paf 671: if(raw_filespec_to_process && !*raw_filespec_to_process)
672: raw_filespec_to_process=0;
673: } else {
1.184 paf 674: optind = 1;
675: opterr = 0;
676: int c;
1.193 paf 677: while((c = getopt(argc, argv, "hf:"
1.185 paf 678: #ifdef WITH_MAILRECEIVE
1.184 paf 679: "m"
680: #endif
681: )) > 0) {
682: switch (c) {
683: case 'h':
684: usage(argv[0]);
1.193 paf 685: break;
686: case 'f':
687: config_filespec_cstr=optarg;
1.184 paf 688: break;
1.185 paf 689: #ifdef WITH_MAILRECEIVE
1.184 paf 690: case 'm':
691: mail_received=true;
692: break;
693: #endif
694: default:
695: fprintf(stderr, "%s: invalid option '%c'\n", argv[0], optopt);
696: usage(argv[0]);
697: break;
698: }
699: }
700: if (optind != argc - 1) {
701: fprintf(stderr, "%s: file not specified\n", argv[0]);
702: usage(argv[0]);
1.10 paf 703: }
1.184 paf 704:
705: raw_filespec_to_process=argv[optind++];
1.10 paf 706: }
707:
1.100 parser 708: #ifdef WIN32
709: setmode(fileno(stdin), _O_BINARY);
710: setmode(fileno(stdout), _O_BINARY);
711: setmode(fileno(stderr), _O_BINARY);
712: #endif
713:
1.218 paf 714: #if defined(_MSC_VER) && defined(_DEBUG)
1.148 paf 715: // Get current flag
716: int tmpFlag = _CrtSetDbgFlag( _CRTDBG_REPORT_FLAG );
717:
718: // Turn on leak-checking bit
719: tmpFlag |= _CRTDBG_LEAK_CHECK_DF;
720:
721: // Set flag to the new value
722: _CrtSetDbgFlag( tmpFlag );
1.218 paf 723: // _CrtSetBreakAlloc(61);
1.138 paf 724:
1.218 paf 725: _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_FILE );
726: _CrtSetReportFile( _CRT_WARN, _CRTDBG_FILE_STDERR );
1.138 paf 727: #endif
728:
1.166 paf 729: char filespec_to_process[MAX_STRING];
730: full_file_spec(raw_filespec_to_process, filespec_to_process, sizeof(filespec_to_process));
1.10 paf 731:
1.218 paf 732: const char* request_method=getenv("REQUEST_METHOD");
1.35 paf 733: bool header_only=request_method && strcasecmp(request_method, "HEAD")==0;
1.131 paf 734:
1.122 parser 735: try { // global try
1.231 paf 736: #ifdef PA_SUPPRESS_SYSTEM_EXCEPTION
737: call_real_parser_handler__supress_system_exception(
738: #else
739: real_parser_handler(
740: #endif
1.122 parser 741: filespec_to_process,
742: request_method, header_only);
743: } catch(const Exception& e) { // global problem
1.44 paf 744: // don't allocate anything on pool here:
745: // possible pool' exception not catch-ed now
746: // and there could be out-of-memory exception
1.218 paf 747: char buf[MAX_STRING];
1.232 paf 748: snprintf(buf, MAX_STRING, "Unhandled exception %s",
749: e.comment());
1.218 paf 750: // log it
751: SAPI::log(SAPI_info, "%s", buf);
752:
753: //
754: int content_length=strlen(buf);
755:
756: // prepare header
757: SAPI::add_header_attribute(SAPI_info, "content-type", "text/plain");
758: char content_length_cstr[MAX_NUMBER];
759: snprintf(content_length_cstr, MAX_NUMBER, "%u", content_length);
760: SAPI::add_header_attribute(SAPI_info, "content-length", content_length_cstr);
761:
762: // send header
763: SAPI::send_header(SAPI_info);
764:
765: // send body
766: if(!header_only)
767: SAPI::send_body(SAPI_info, buf, content_length);
1.43 paf 768:
1.218 paf 769: // unsuccessful finish
1.16 paf 770: }
1.109 parser 771:
1.233 paf 772: #ifdef PA_DEBUG_CGI_ENTRY_EXIT
773: log("main: successful return");
774: #endif
1.134 paf 775: return 0;
1.1 paf 776: }
E-mail: