|
|
| version 1.48.2.13, 2003/02/17 07:18:58 | version 1.48.2.18.2.7, 2003/03/21 15:00:36 |
|---|---|
| Line 111 error: | Line 111 error: |
| return result; | return result; |
| } | } |
| static StringPtr read_pipe(Pool& pool, HANDLE hOutRead, const char* file_spec, | static void read_pipe(String& result, HANDLE hOutRead, String::Language lang){ |
| String::Untaint_lang lang){ | |
| StringPtr result(new String); | |
| while(true) { | while(true) { |
| char *buf=new(pool) char[MAX_STRING]; | char *buf=new(PointerFreeGC) char[MAX_STRING]; |
| unsigned long size; | unsigned long size; |
| if(!ReadFile(hOutRead, buf, MAX_STRING, &size, NULL) || !size) | if(!ReadFile(hOutRead, buf, MAX_STRING, &size, NULL) || !size) |
| break; | break; |
| result->APPEND(buf, size, lang, file_spec, 0); | result.append(buf, size, lang); |
| } | } |
| return result; | |
| } | } |
| static CharPtr buildCommand(CharPtr file_spec_cstr, const ArrayString& argv) { | static const char* buildCommand(const char* file_spec_cstr, const ArrayString& argv) { |
| CharPtr result=file_spec_cstr; | const char* result=file_spec_cstr; |
| if(FILE *f=fopen(file_spec_cstr, "r")) { | if(FILE *f=fopen(file_spec_cstr, "r")) { |
| try { | try { |
| char buf[MAX_STRING]; | char buf[MAX_STRING]; |
| Line 279 static int get_exit_status(int pid) { | Line 276 static int get_exit_status(int pid) { |
| WEXITSTATUS(status) : -2; | WEXITSTATUS(status) : -2; |
| } | } |
| static StringPtr read_pipe(Pool& pool, int file, const char* file_spec, String::Untaint_lang lang){ | static void read_pipe(String& result, int file, String::Language lang){ |
| StringPtr result(new String); | |
| while(true) { | while(true) { |
| char *buf=new(pool) char[MAX_STRING]; | char *buf=new(PointerFreeGC) char[MAX_STRING]; |
| ssize_t size=read(file, buf, MAX_STRING); | ssize_t size=read(file, buf, MAX_STRING); |
| if(size<=0) | if(size<=0) |
| break; | break; |
| result->APPEND(buf, size, lang, file_spec, 0); | result.append(buf, size, lang); |
| } | } |
| return result; | |
| } | } |
| #endif | #endif |
| Line 296 static StringPtr read_pipe(Pool& pool, i | Line 291 static StringPtr read_pipe(Pool& pool, i |
| #ifndef DOXYGEN | #ifndef DOXYGEN |
| struct Append_env_pair_info { | struct Append_env_pair_info { |
| #ifdef WIN32 | #ifdef WIN32 |
| String* string; | String& string; |
| Append_env_pair_info(String& astring): string(astring) {} | |
| #else | #else |
| Pool *pool; | |
| char **env_ref; | char **env_ref; |
| #endif | #endif |
| }; | }; |
| #endif | #endif |
| ///@test maybe here and at argv construction --- cstr(String::UL_UNSPECIFIED | ///@test maybe here and at argv construction --- cstr(String::L_UNSPECIFIED |
| static void append_env_pair(HashStringString::key_type key, HashStringString::value_type value, | static void append_env_pair(HashStringString::key_type key, HashStringString::value_type value, |
| Append_env_pair_info *info) { | Append_env_pair_info *info) { |
| #ifdef WIN32 | #ifdef WIN32 |
| *info->string << key << "=" << value; | info->string << key << "=" << *value; |
| info->string->APPEND_AS_IS("", 1, 0, 0); // zero byte | info->string.append("", 1, String::L_AS_IS); // zero byte |
| #else | #else |
| String string; | String string; |
| string << key << "=" << value; | string << key << "=" << *value; |
| *(info->env_ref++)=string.cstr(*info->pool, String::UL_UNSPECIFIED); | *(info->env_ref++)=string.cstr(*info->String::L_UNSPECIFIED); |
| #endif | #endif |
| } | } |
| /// @todonow unix part to smart_ptr | /// @todonow unix part to smart_ptr |
| PA_exec_result pa_exec(Pool& pool, | PA_exec_result pa_exec( |
| bool forced_allow, | bool forced_allow, |
| StringPtr file_spec, | const String& file_spec, |
| const HashStringString& env, | const HashStringString* env, |
| const ArrayString& argv, | const ArrayString& argv, |
| String& in) { | String& in) { |
| PA_exec_result result; | PA_exec_result result; |
| Line 329 PA_exec_result pa_exec(Pool& pool, | Line 324 PA_exec_result pa_exec(Pool& pool, |
| #ifdef NO_PA_EXECS | #ifdef NO_PA_EXECS |
| if(!forced_allow) | if(!forced_allow) |
| throw Exception("parser.runtime", | throw Exception("parser.runtime", |
| file_spec, | &file_spec, |
| "parser execs are disabled [recompile parser without --disable-execs configure option]"); | "parser execs are disabled [recompile parser without --disable-execs configure option]"); |
| #endif | #endif |
| char* file_spec_cstr=file_spec->cstr(pool, String::UL_FILE_SPEC); | const char* file_spec_cstr=file_spec.cstr(String::L_FILE_SPEC); |
| #ifdef WIN32 | #ifdef WIN32 |
| PROCESS_INFORMATION pi; | PROCESS_INFORMATION pi; |
| HANDLE hInWrite, hOutRead, hErrRead; | HANDLE hInWrite, hOutRead, hErrRead; |
| CharPtr cmd=buildCommand(file_spec->cstr(String::UL_FILE_SPEC), argv); | const char* cmd=buildCommand(file_spec.cstr(String::L_FILE_SPEC), argv); |
| CharPtr env_cstr(0); | char* env_cstr; |
| { // env | if(env) { |
| String string; | String string; |
| Append_env_pair_info info={&string}; | Append_env_pair_info info(string); |
| env.for_each(append_env_pair, &info); | env->for_each(append_env_pair, &info); |
| env_cstr=info.string->cstr(String::UL_UNSPECIFIED); | env_cstr=info.string.cstrm(String::L_UNSPECIFIED); |
| } | } |
| if(DWORD error=CreateHiddenConsoleProcess(cmd, env_cstr, &pi, &hInWrite, &hOutRead, &hErrRead)) { | if(DWORD error=CreateHiddenConsoleProcess(cmd, env_cstr, &pi, &hInWrite, &hOutRead, &hErrRead)) { |
| char szErrorDesc[MAX_STRING]; | char szErrorDesc[MAX_STRING]; |
| const char *param="the file you tried to run"; | const char* param="the file you tried to run"; |
| size_t error_size=FormatMessage( | size_t error_size=FormatMessage( |
| FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_ARGUMENT_ARRAY , NULL, error, | FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_ARGUMENT_ARRAY , NULL, error, |
| MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), | MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), |
| Line 357 PA_exec_result pa_exec(Pool& pool, | Line 352 PA_exec_result pa_exec(Pool& pool, |
| szErrorDesc[error_size-3]=0; | szErrorDesc[error_size-3]=0; |
| throw Exception(0, | throw Exception(0, |
| file_spec, | &file_spec, |
| "exec failed - %s (%ld). Consider adding shbang line (#!x:\\interpreter\\command line)", | "exec failed - %s (%ld). Consider adding shbang line (#!x:\\interpreter\\command line)", |
| error_size?szErrorDesc:"<unknown>", (long)error); | error_size?szErrorDesc:"<unknown>", (long)error); |
| } else { | } else { |
| CharPtr in_cstr=in.cstr(); | const char* in_cstr=in.cstr(); |
| DWORD written_size; | DWORD written_size; |
| WriteFile(hInWrite, in_cstr, in.size(), &written_size, NULL); | WriteFile(hInWrite, in_cstr, in.length(), &written_size, NULL); |
| // EOF for stupid text reads | // EOF for stupid text reads |
| // normally they should read CONTENT_LENGTH bytes, | // normally they should read CONTENT_LENGTH bytes, |
| // without this char | // without this char |
| WriteFile(hInWrite, "\x1A", 1, &written_size, NULL); | WriteFile(hInWrite, "\x1A", 1, &written_size, NULL); |
| CloseHandle(hInWrite); | CloseHandle(hInWrite); |
| result.out=read_pipe(pool, hOutRead, file_spec_cstr, String::UL_AS_IS); | read_pipe(result.out, hOutRead, String::L_AS_IS); |
| CloseHandle(hOutRead); | CloseHandle(hOutRead); |
| result.err=read_pipe(pool, hErrRead, file_spec_cstr, String::UL_TAINTED); | read_pipe(result.err, hErrRead, String::L_TAINTED); |
| CloseHandle(hErrRead); | CloseHandle(hErrRead); |
| /* | /* |
| from http://www.apache.org/websrc/cvsweb.cgi/apache-1.3/src/main/util_script.c?rev=1.151&content-type=text/vnd.viewcvs-markup | from http://www.apache.org/websrc/cvsweb.cgi/apache-1.3/src/main/util_script.c?rev=1.151&content-type=text/vnd.viewcvs-markup |
| Line 413 from http://www.apache.org/websrc/cvsweb | Line 408 from http://www.apache.org/websrc/cvsweb |
| file_spec, | file_spec, |
| "too many arguments (%d > max %d)", argv_size, argv_max); | "too many arguments (%d > max %d)", argv_size, argv_max); |
| for(int i=0; i<argv_size; i++) | for(int i=0; i<argv_size; i++) |
| argv_cstrs[1+i]=argv[i]->cstr(pool); | argv_cstrs[1+i]=argv[i]->cstr(); |
| argv_cstrs[1+argv_size]=0; | argv_cstrs[1+argv_size]=0; |
| char **env_cstrs=new(pool) char *[env.count()+1/*0*/]; | char **env_cstrs; |
| { | if(env) { |
| Append_env_pair_info info={&pool, env_cstrs}; | env_cstrs=new char *[env->count()+1/*0*/]; |
| env.for_each(append_env_pair, &info); | Append_env_pair_info info={&env_cstrs}; |
| env->for_each(append_env_pair, &info); | |
| *info.env_ref=0; | *info.env_ref=0; |
| } | } else |
| env_cstrs=0; | |
| pid_t pid=execve_piped( | pid_t pid=execve_piped( |
| file_spec_cstr, | file_spec_cstr, |
| Line 429 from http://www.apache.org/websrc/cvsweb | Line 426 from http://www.apache.org/websrc/cvsweb |
| &pipe_write, &pipe_read, &pipe_err); | &pipe_write, &pipe_read, &pipe_err); |
| if(pid>0) { | if(pid>0) { |
| // in child | // in child |
| if(in && in->size()) {// there is some in data | if(in.length()) {// there is some in data |
| CharPtr in_cstr=in->cstr(); | const char* in_cstr=in.cstr(); |
| write(pipe_write, in_cstr, in->size()); | write(pipe_write, in_cstr, in.length()); |
| } | } |
| close(pipe_write); | close(pipe_write); |
| result.out=read_pipe(pool, pipe_read, file_spec_cstr, String::UL_AS_IS); | result.out=read_pipe(pipe_read, file_spec_cstr, String::L_AS_IS); |
| close(pipe_read); | close(pipe_read); |
| result.err=read_pipe(pool, pipe_err, file_spec_cstr, String::UL_TAINTED); | result.err=read_pipe(pipe_err, file_spec_cstr, String::L_TAINTED); |
| close(pipe_err); | close(pipe_err); |
| result.status=get_exit_status(pid); // negative may mean "-errno[execl()]" | result.status=get_exit_status(pid); // negative may mean "-errno[execl()]" |