Sat, 28 Jan 2017 10:38:34 +0100
improves cgi error handling and allows requests with empty headers
also fixes broken windows porting commit
1 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2008 Sun Microsystems, Inc. All rights reserved. | |
5 | * | |
6 | * THE BSD LICENSE | |
7 | * | |
8 | * Redistribution and use in source and binary forms, with or without | |
9 | * modification, are permitted provided that the following conditions are met: | |
10 | * | |
11 | * Redistributions of source code must retain the above copyright notice, this | |
12 | * list of conditions and the following disclaimer. | |
13 | * Redistributions in binary form must reproduce the above copyright notice, | |
14 | * this list of conditions and the following disclaimer in the documentation | |
15 | * and/or other materials provided with the distribution. | |
16 | * | |
17 | * Neither the name of the nor the names of its contributors may be | |
18 | * used to endorse or promote products derived from this software without | |
19 | * specific prior written permission. | |
20 | * | |
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
22 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
23 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
24 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER | |
25 | * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
26 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
27 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
28 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
29 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
30 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
31 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
32 | */ | |
33 | ||
34 | #ifndef PUBLIC_NSAPI_H | |
35 | #define PUBLIC_NSAPI_H | |
36 | ||
37 | /* | |
38 | * File: nsapi.h | |
39 | * | |
40 | * Description: | |
41 | * | |
42 | * This file defines an interface for extending the server with | |
43 | * in-process plug-ins. | |
44 | */ | |
45 | ||
46 | #ifdef __cplusplus | |
47 | extern "C" { | |
48 | #endif | |
49 | ||
50 | /* NSAPI version defined by this header file */ | |
51 | #define NSAPI_VERSION 303 | |
52 | ||
53 | /* Define USE_NSAPI_VERSION to use a specific NSAPI version at compile time */ | |
54 | #ifdef USE_NSAPI_VERSION | |
55 | #if USE_NSAPI_VERSION < 300 || USE_NSAPI_VERSION > NSAPI_VERSION | |
56 | #error This header file does not support the requested NSAPI version | |
57 | #else | |
58 | #undef NSAPI_VERSION | |
59 | #define NSAPI_VERSION USE_NSAPI_VERSION | |
60 | #endif | |
61 | #endif | |
62 | ||
63 | /* --- Begin native platform configuration definitions --- */ | |
64 | ||
65 | #if !defined(XP_WIN32) && !defined(XP_UNIX) | |
66 | #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) | |
67 | #define XP_WIN32 | |
68 | #else | |
69 | #define XP_UNIX | |
70 | #endif | |
71 | #endif | |
72 | ||
73 | #ifdef XP_UNIX | |
74 | #define NSAPI_PUBLIC | |
75 | #define ZERO(ptr, len) memset(ptr, 0, len) | |
76 | #ifdef AIX | |
77 | #define TCPLEN_T size_t | |
78 | #endif | |
79 | #ifdef HPUX | |
80 | #define TCPLEN_T int | |
81 | #endif | |
82 | #ifndef TCPLEN_T | |
83 | #define TCPLEN_T socklen_t | |
84 | #endif | |
85 | #endif /* XP_UNIX */ | |
86 | ||
87 | #ifdef XP_WIN32 | |
88 | #define NSAPI_PUBLIC __declspec(dllexport) | |
89 | struct iovec { | |
90 | char *iov_base; | |
91 | unsigned iov_len; | |
92 | }; | |
93 | #ifndef S_ISDIR | |
94 | #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR) | |
95 | #endif | |
96 | #ifndef S_ISREG | |
97 | #define S_ISREG(mode) ((mode & S_IFMT) == S_IFREG) | |
98 | #endif | |
99 | #ifndef S_ISLNK | |
100 | #define S_ISLNK(x) (0) | |
101 | #endif | |
102 | #define caddr_t PCHAR | |
103 | #define NEED_STRCASECMP | |
104 | #define NEED_STRNCASECMP | |
105 | #define ZERO(ptr, len) ZeroMemory(ptr, len) | |
106 | #define TCPLEN_T int | |
107 | #endif /* XP_WIN32 */ | |
108 | ||
109 | /* --- End native platform configuration definitions --- */ | |
110 | ||
111 | /* --- Begin miscellaneous definitions --- */ | |
112 | ||
113 | /* Used in some places as a length limit on error messages */ | |
114 | #define MAGNUS_ERROR_LEN 1024 | |
115 | ||
116 | /* Carriage return and line feed */ | |
117 | #define CR 13 | |
118 | #define LF 10 | |
119 | #ifdef XP_WIN32 | |
120 | #define ENDLINE "\r\n" | |
121 | #else | |
122 | #define ENDLINE "\n" | |
123 | #endif | |
124 | ||
125 | /* mime.types file identification line */ | |
126 | #define NCC_MT_MAGIC "#--Netscape Communications Corporation MIME Information" | |
127 | #define NCC_MT_MAGIC_LEN 55 | |
128 | ||
129 | /* The character which separates extensions with cinfo_find */ | |
130 | #define CINFO_SEPARATOR '.' | |
131 | ||
132 | /* The maximum length of a line in a mime.types file */ | |
133 | #define CINFO_MAX_LEN 1024 | |
134 | ||
135 | /* The maximum length of an error message */ | |
136 | #define MAX_ERROR_LEN 4096 | |
137 | ||
138 | /* | |
139 | * A warning is a minor mishap, such as a 404 being issued. | |
140 | */ | |
141 | #define LOG_WARN 0 | |
142 | ||
143 | /* | |
144 | * A misconfig is when there is a syntax error or permission violation in | |
145 | * a config file. | |
146 | */ | |
147 | #define LOG_MISCONFIG 1 | |
148 | ||
149 | /* | |
150 | * Security warnings are issued when authentication fails, or a host is | |
151 | * given a 403 return code. | |
152 | */ | |
153 | #define LOG_SECURITY 2 | |
154 | ||
155 | /* | |
156 | * A failure is when a request could not be fulfilled due to an internal | |
157 | * problem, such as a CGI script exiting prematurely, or a filesystem | |
158 | * permissions problem. | |
159 | */ | |
160 | #define LOG_FAILURE 3 | |
161 | ||
162 | /* | |
163 | * A catastrophe is a fatal server error such as running out of | |
164 | * memory or processes, or a system call failing, or even a server crash. | |
165 | * The server child cannot recover from a catastrophe. | |
166 | */ | |
167 | #define LOG_CATASTROPHE 4 | |
168 | ||
169 | /* | |
170 | * Informational message, of no concern. | |
171 | */ | |
172 | #define LOG_INFORM 5 | |
173 | ||
174 | /* | |
175 | * Internal diagnostic message. | |
176 | */ | |
177 | #define LOG_VERBOSE 6 | |
178 | ||
179 | /* | |
180 | * The time format to use in the error log | |
181 | */ | |
182 | #define ERR_TIMEFMT "[%d/%b/%Y:%H:%M:%S]" | |
183 | ||
184 | ||
185 | /* The fd you will get if you are reporting errors to SYSLOG */ | |
186 | #define ERRORS_TO_SYSLOG NULL | |
187 | ||
188 | /* Return codes from file I/O routines */ | |
189 | #define IO_OKAY 1 | |
190 | #define IO_ERROR -1 | |
191 | #define IO_EOF 0 | |
192 | #define NETBUF_EOF -1 | |
193 | #define NETBUF_ERROR -2 | |
194 | #define NETBUF_FULL -3 | |
195 | ||
196 | /* The disk page size on this machine. */ | |
197 | #define FILE_BUFFERSIZE 4096 | |
198 | ||
199 | #ifdef XP_UNIX | |
200 | ||
201 | #define FILE_PATHSEP '/' | |
202 | #define FILE_PARENT "../" | |
203 | ||
204 | #elif defined(XP_WIN32) | |
205 | ||
206 | #define FILE_PATHSEP '/' | |
207 | #define FILE_PARENT "..\\" | |
208 | ||
209 | #endif /* XP_WIN32 */ | |
210 | ||
211 | #define NET_INFINITE_TIMEOUT 0 | |
212 | #define NET_ZERO_TIMEOUT -1 | |
213 | ||
214 | #ifdef USE_REGEX | |
215 | /* WILDPAT uses regular expressions */ | |
216 | #define WILDPAT_VALID(exp) regexp_valid(exp) | |
217 | #define WILDPAT_MATCH(str, exp) regexp_match(str, exp) | |
218 | #define WILDPAT_CMP(str, exp) regexp_cmp(str, exp) | |
219 | #define WILDPAT_CASECMP(str, exp) regexp_casecmp(str, exp) | |
220 | #define WILDPAT_USES_REGEXP 1 | |
221 | #else | |
222 | /* WILDPAT uses shell expressions */ | |
223 | #define WILDPAT_VALID(exp) shexp_valid(exp) | |
224 | #define WILDPAT_MATCH(str, exp) shexp_match(str, exp) | |
225 | #define WILDPAT_CMP(str, exp) shexp_cmp(str, exp) | |
226 | #define WILDPAT_CASECMP(str, exp) shexp_casecmp(str, exp) | |
227 | #define WILDPAT_USES_SHEXP 1 | |
228 | #endif | |
229 | ||
230 | /* Define return codes from WILDPAT_VALID */ | |
231 | #define NON_WILDPAT -1 /* exp is ordinary string */ | |
232 | #define INVALID_WILDPAT -2 /* exp is an invalid pattern */ | |
233 | #define VALID_WILDPAT 1 /* exp is a valid pattern */ | |
234 | ||
235 | /* Define return codes from regexp_valid and shexp_valid */ | |
236 | #define NON_SXP NON_WILDPAT /* exp is an ordinary string */ | |
237 | #define INVALID_SXP INVALID_WILDPAT /* exp is an invalid shell exp */ | |
238 | #define VALID_SXP VALID_WILDPAT /* exp is a valid shell exp */ | |
239 | ||
240 | #define NON_REGEXP NON_SXP | |
241 | #define INVALID_REGEXP INVALID_SXP | |
242 | #define VALID_REGEXP VALID_SXP | |
243 | ||
244 | #define SYSTHREAD_DEFAULT_PRIORITY 16 | |
245 | ||
246 | /* The longest line in the configuration file */ | |
247 | #define CONF_MAXLEN 16384 | |
248 | ||
249 | #define HTTP_DATE_LEN 30 | |
250 | #define HTTP_DATE_FMT "%a, %d %b %Y %T GMT" | |
251 | ||
252 | /* HTTP status codes */ | |
253 | #define PROTOCOL_CONTINUE 100 | |
254 | #define PROTOCOL_SWITCHING 101 | |
255 | #define PROTOCOL_OK 200 | |
256 | #define PROTOCOL_CREATED 201 | |
257 | #define PROTOCOL_ACCEPTED 202 | |
258 | #define PROTOCOL_NONAUTHORITATIVE 203 | |
259 | #define PROTOCOL_NO_RESPONSE 204 | |
260 | #define PROTOCOL_NO_CONTENT 204 | |
261 | #define PROTOCOL_RESET_CONTENT 205 | |
262 | #define PROTOCOL_PARTIAL_CONTENT 206 | |
263 | #define PROTOCOL_MULTI_STATUS 207 | |
264 | #define PROTOCOL_MULTIPLE_CHOICES 300 | |
265 | #define PROTOCOL_MOVED_PERMANENTLY 301 | |
266 | #define PROTOCOL_REDIRECT 302 | |
267 | #define PROTOCOL_SEE_OTHER 303 | |
268 | #define PROTOCOL_NOT_MODIFIED 304 | |
269 | #define PROTOCOL_USE_PROXY 305 | |
270 | #define PROTOCOL_TEMPORARY_REDIRECT 307 | |
271 | #define PROTOCOL_BAD_REQUEST 400 | |
272 | #define PROTOCOL_UNAUTHORIZED 401 | |
273 | #define PROTOCOL_PAYMENT_REQUIRED 402 | |
274 | #define PROTOCOL_FORBIDDEN 403 | |
275 | #define PROTOCOL_NOT_FOUND 404 | |
276 | #define PROTOCOL_METHOD_NOT_ALLOWED 405 | |
277 | #define PROTOCOL_NOT_ACCEPTABLE 406 | |
278 | #define PROTOCOL_PROXY_UNAUTHORIZED 407 | |
279 | #define PROTOCOL_REQUEST_TIMEOUT 408 | |
280 | #define PROTOCOL_CONFLICT 409 | |
281 | #define PROTOCOL_GONE 410 | |
282 | #define PROTOCOL_LENGTH_REQUIRED 411 | |
283 | #define PROTOCOL_PRECONDITION_FAIL 412 | |
284 | #define PROTOCOL_ENTITY_TOO_LARGE 413 | |
285 | #define PROTOCOL_URI_TOO_LARGE 414 | |
286 | #define PROTOCOL_UNSUPPORTED_MEDIA_TYPE 415 | |
287 | #define PROTOCOL_REQUESTED_RANGE_NOT_SATISFIABLE 416 | |
288 | #define PROTOCOL_EXPECTATION_FAILED 417 | |
289 | #define PROTOCOL_LOCKED 423 | |
290 | #define PROTOCOL_FAILED_DEPENDENCY 424 | |
291 | #define PROTOCOL_SERVER_ERROR 500 | |
292 | #define PROTOCOL_NOT_IMPLEMENTED 501 | |
293 | #define PROTOCOL_BAD_GATEWAY 502 | |
294 | #define PROTOCOL_SERVICE_UNAVAILABLE 503 | |
295 | #define PROTOCOL_GATEWAY_TIMEOUT 504 | |
296 | #define PROTOCOL_VERSION_NOT_SUPPORTED 505 | |
297 | #define PROTOCOL_INSUFFICIENT_STORAGE 507 | |
298 | ||
299 | #define PROTOCOL_VERSION_HTTP09 9 | |
300 | #define PROTOCOL_VERSION_HTTP10 100 | |
301 | #define PROTOCOL_VERSION_HTTP11 101 | |
302 | #define CURRENT_PROTOCOL_VERSION PROTOCOL_VERSION_HTTP11 | |
303 | ||
304 | /* Definitions for HTTP over SSL */ | |
305 | #define HTTPS_PORT 443 | |
306 | #define HTTPS_URL "https" | |
307 | ||
308 | /* Definitions for HTTP over TCP */ | |
309 | #define HTTP_PORT 80 | |
310 | #define HTTP_URL "http" | |
311 | ||
312 | ||
313 | #define REQ_MAX_LINE 4096 | |
314 | ||
315 | /* | |
316 | * The REQ_ return codes. These codes are used to determine what the server | |
317 | * should do after a particular module completes its task. | |
318 | * | |
319 | * Func type functions return these as do many internal functions. | |
320 | */ | |
321 | ||
322 | /* The function performed its task, proceed with the request */ | |
323 | #define REQ_PROCEED 0 | |
324 | /* The entire request should be aborted: An error occurred */ | |
325 | #define REQ_ABORTED -1 | |
326 | /* The function performed no task, but proceed anyway */ | |
327 | #define REQ_NOACTION -2 | |
328 | /* Tear down the session and exit */ | |
329 | #define REQ_EXIT -3 | |
330 | /* Restart the entire request-response process */ | |
331 | #define REQ_RESTART -4 | |
332 | /* Too busy to execute this now */ | |
333 | #define REQ_TOOBUSY -5 | |
334 | ||
3
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
335 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
336 | /**** NSAPI extensions ****/ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
337 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
338 | /* The function is still in progress (async extension) */ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
339 | #define REQ_PROCESSING -8 |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
340 | |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
341 | /**** END NSAPI extensions ****/ |
137197831306
minimal request handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
342 | |
6
ce8fecc9847d
improved request processing
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
343 | |
1 | 344 | /* --- End miscellaneous definitions --- */ |
345 | ||
346 | /* --- Begin native platform includes --- */ | |
347 | ||
348 | #ifdef XP_UNIX | |
349 | #include <unistd.h> | |
350 | #include <sys/file.h> | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
351 | #include <pthread.h> |
1 | 352 | #ifndef HPUX |
353 | #include <sys/select.h> | |
354 | #endif | |
109
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
355 | #ifndef BSD |
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
356 | #include <alloca.h> /* new */ |
8a0a7754f123
experimental BSD support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
104
diff
changeset
|
357 | #endif |
1 | 358 | #include <sys/socket.h> |
359 | #include <sys/time.h> | |
360 | #include <sys/types.h> | |
361 | #include <sys/uio.h> | |
362 | #include <fcntl.h> | |
363 | #include <dirent.h> | |
364 | #include <pwd.h> | |
365 | #include <netinet/in.h> | |
366 | #endif /* XP_UNIX */ | |
367 | ||
368 | #ifdef XP_WIN32 | |
369 | #include <wtypes.h> | |
370 | #include <winbase.h> | |
371 | #include <direct.h> | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
372 | #include <dirent.h> // TODO: works only with mingw |
1 | 373 | #include <winsock.h> |
374 | #endif /* XP_WIN32 */ | |
375 | ||
376 | #include <sys/stat.h> | |
377 | #include <ctype.h> | |
378 | #include <stdio.h> | |
379 | #include <stdarg.h> | |
380 | #include <stdlib.h> | |
381 | #include <string.h> | |
382 | #include <errno.h> | |
383 | #include <time.h> | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
384 | #include <inttypes.h> |
1 | 385 | |
386 | /* --- End native platform includes --- */ | |
387 | ||
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
388 | #ifndef TRUE |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
389 | #define TRUE 1 |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
390 | #endif |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
391 | #ifndef FALSE |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
392 | #define FALSE 0 |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
393 | #endif |
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
394 | |
1 | 395 | /* --- Begin type definitions --- */ |
396 | ||
397 | /* NOTE: both SYS_FILE and SYS_NETFD are actually NSPR PRFileDesc * and can */ | |
398 | /* be used with NSPR API calls (after casting them to PRFileDesc *) */ | |
399 | ||
54 | 400 | // NOTE: no they are not NSPR PRFileDesc* |
401 | // they are VFSFile* | |
402 | // TODO: fix NOTE | |
403 | ||
404 | ||
1 | 405 | #ifndef SYS_FILE_T |
54 | 406 | typedef struct VFSFile *SYS_FILE; |
1 | 407 | #define SYS_FILE_T void * |
408 | #endif /* !SYS_FILE_T */ | |
409 | ||
54 | 410 | #define SYS_ERROR_FD ((SYS_FILE)-1) // TODO: fix |
1 | 411 | |
412 | #ifndef SYS_NETFD_T | |
413 | typedef void *SYS_NETFD; | |
414 | #define SYS_NETFD_T void * | |
415 | #endif /* !SYS_NETFD_T */ | |
416 | ||
417 | /* Error value for a SYS_NETFD */ | |
418 | #ifndef SYS_NET_ERRORFD | |
419 | #define SYS_NET_ERRORFD ((SYS_NETFD)-1) | |
420 | #endif /* !SYS_NET_ERRORFD */ | |
421 | ||
422 | /* | |
423 | * These structures were originally defined in nsapi.h, but those definitions | |
424 | * were removed in iPlanet Web Server 4.0. The contents of these structures | |
425 | * are now private to the server implementation and must not be accessed | |
426 | * directly. Instead, use the objset_*, object_*, directive_table_*, and | |
427 | * directive_* accessor functions. | |
428 | */ | |
429 | typedef struct directive directive; | |
430 | typedef struct dtable dtable; | |
431 | typedef struct httpd_object httpd_object; | |
432 | typedef struct httpd_objset httpd_objset; | |
433 | ||
434 | /* | |
435 | * Type: filebuffer, filebuf_t | |
436 | * | |
437 | * Description: | |
438 | * | |
439 | * This structure is used to represent a buffered file. On some | |
440 | * systems the file may be memory-mapped. A filebuffer is created | |
441 | * by filebuf_open(), and destroyed by filebuf_close(). | |
442 | * | |
443 | * Notes: | |
444 | * | |
445 | * Direct access to the members of this structure, not using | |
446 | * macros defined here, is discouraged. | |
447 | * | |
448 | * The filebuf alias that used to be defined for this type was | |
449 | * found to conflict with a C++ class of the same name, so it | |
450 | * has been renamed to filebuf_t. | |
451 | */ | |
452 | typedef struct filebuffer filebuffer; | |
453 | ||
454 | /* Version of filebuffer when memory-mapped files are supported */ | |
455 | struct filebuffer { | |
456 | SYS_FILE fd; | |
457 | #ifdef XP_WIN32 | |
458 | HANDLE fdmap; | |
459 | #endif | |
460 | caddr_t fp; | |
461 | int len; | |
462 | ||
463 | unsigned char *inbuf; | |
464 | int cursize; | |
465 | ||
466 | int pos; | |
467 | const char *errmsg; | |
468 | }; | |
469 | ||
470 | /* Return next character or IO_EOF */ | |
471 | #define filebuf_getc(b) ((b)->pos == (b)->len ? IO_EOF : (int)((b)->fp)[(b)->pos++]) | |
472 | ||
473 | #define filebuf_iseof(b) ((b)->pos == (b)->len) | |
474 | ||
475 | /* C++ streamio defines a filebuf class. */ | |
476 | typedef filebuffer filebuf_t; | |
477 | ||
478 | #ifdef XP_WIN32 | |
479 | /* Use a filebuffer to read data from a pipe */ | |
480 | #define pipebuf_getc(b) \ | |
481 | ((b)->pos != (b)->cursize ? (int)((b)->inbuf[(b)->pos++]) : pipebuf_next(b,1)) | |
482 | #endif /* XP_WIN32 */ | |
483 | ||
484 | /* | |
485 | * Type: netbuf | |
486 | * | |
487 | * Description: | |
488 | * | |
489 | * This structure is used to represent a buffered network socket. | |
490 | * It is created by netbuf_open(), and destroyed by netbuf_close(). | |
491 | * | |
492 | * Notes: | |
493 | * | |
494 | * Direct access to the members of this structure, not using | |
495 | * macros defined here, is discouraged. | |
496 | * | |
497 | * The inbuf field used to be (unsigned char *), but is now | |
498 | * simply (char *). The value returned by the netbuf_getc() | |
499 | * macro is (int). | |
500 | */ | |
501 | typedef struct netbuf netbuf; | |
502 | struct netbuf { | |
503 | SYS_NETFD sd; | |
504 | ||
505 | int pos, cursize, maxsize, rdtimeout; | |
506 | #ifdef XP_WIN32 | |
507 | CHAR address[64]; | |
508 | #endif /* XP_WIN32 */ | |
509 | unsigned char *inbuf; | |
510 | char *errmsg; | |
511 | #ifndef XP_WIN32 | |
512 | char address[64]; | |
513 | #endif /* !XP_WIN32 */ | |
514 | }; | |
515 | ||
516 | /* | |
517 | * netbuf_getc gets a character from the given network buffer and returns | |
518 | * it (as an integer). | |
519 | * | |
520 | * It will return (int) IO_ERROR for an error and (int) IO_EOF for | |
521 | * an error condition or EOF respectively. | |
522 | */ | |
523 | #define netbuf_getc(b) \ | |
524 | ((b)->pos != (b)->cursize ? (int)((b)->inbuf[(b)->pos++]) : netbuf_next(b,1)) | |
525 | ||
526 | /* | |
527 | * buffer_error returns the last error that occurred with buffer. Don't use | |
528 | * this unless you know an error occurred. Independent of network/file type. | |
529 | */ | |
530 | #define buffer_error(b) ((b)->errmsg) | |
531 | ||
532 | /* | |
533 | * Type: sendfiledata | |
534 | * | |
535 | * Description: | |
536 | * | |
537 | * This structure is used to pass arguments to the net_sendfile() | |
538 | * function. offset and len may be set to 0 to transmit a file in its | |
539 | * entirety. | |
540 | */ | |
541 | typedef struct sendfiledata sendfiledata; | |
542 | struct sendfiledata { | |
543 | SYS_FILE fd; /* file to send */ | |
104
a8acbb12f27c
implemented range requests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
102
diff
changeset
|
544 | off_t offset; /* offset in file to start sending from */ |
1 | 545 | size_t len; /* number of bytes to send from file */ |
546 | const void *header; /* data to send before file */ | |
547 | int hlen; /* number of bytes to send before file */ | |
548 | const void *trailer; /* data to send after file */ | |
549 | int tlen; /* number of bytes to send after file */ | |
550 | }; | |
551 | ||
552 | /* | |
553 | * Type: NSAPIIOVec | |
554 | * | |
555 | * Description: | |
556 | * | |
557 | * This structure is used to pass arguments to the net_writev() | |
558 | * and FilterWritevFunc() functions. | |
559 | */ | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
560 | typedef struct iovec NSAPIIOVec; |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
561 | |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
562 | /* |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
563 | //ifdef _LP64 |
1 | 564 | typedef struct NSAPIIOVec NSAPIIOVec; |
565 | struct NSAPIIOVec { | |
566 | char *iov_base; | |
567 | int iov_len; | |
568 | }; | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
569 | //else |
1 | 570 | typedef struct iovec NSAPIIOVec; |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
571 | //endif |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
572 | */ |
1 | 573 | |
574 | ||
575 | /* | |
576 | * Type: cinfo | |
577 | * | |
578 | * Description: | |
579 | * | |
580 | * This is a structure that captures the information in the name/value | |
581 | * pairs on one line of a mime.types file. A cinfo structure is | |
582 | * stored in the memory-resident database, indexed by each of the | |
583 | * file extensions specified in the "exts" name/value pair. It | |
584 | * defines various attributes of resources with names containing | |
585 | * the specified file extensions. | |
586 | * | |
587 | * Notes: | |
588 | * | |
589 | * Pointers to cinfo structures returned by this API may or may not | |
590 | * need to freed by the caller. See the individual function | |
591 | * descriptions. | |
592 | * | |
593 | * The strings referenced by the fields of cinfo structures returned | |
594 | * by this API should be considered read-only, and do not need to be | |
595 | * freed by the caller, even when the cinfo structure does. | |
596 | */ | |
597 | typedef struct cinfo cinfo; | |
598 | struct cinfo { | |
599 | char *type; | |
600 | char *encoding; | |
601 | char *language; | |
602 | }; | |
603 | ||
604 | ||
605 | typedef void* CONDVAR; | |
606 | typedef void *COUNTING_SEMAPHORE; | |
607 | typedef void* CRITICAL; | |
608 | ||
609 | #ifdef XP_UNIX | |
610 | typedef DIR* SYS_DIR; | |
611 | typedef struct dirent SYS_DIRENT; | |
612 | #endif /* XP_UNIX */ | |
613 | ||
614 | #ifdef XP_WIN32 | |
615 | ||
616 | typedef struct dirent_s dirent_s; | |
617 | struct dirent_s { | |
618 | char *d_name; | |
619 | }; | |
620 | ||
621 | typedef struct dir_s dir_s; | |
622 | struct dir_s { | |
623 | HANDLE dp; | |
624 | WIN32_FIND_DATA fdata; | |
625 | dirent_s de; | |
626 | }; | |
627 | ||
628 | typedef dir_s* SYS_DIR; | |
629 | typedef dirent_s SYS_DIRENT; | |
630 | ||
631 | #endif /* XP_WIN32 */ | |
632 | ||
633 | typedef struct pb_param pb_param; | |
634 | struct pb_param { | |
635 | char *name,*value; | |
636 | }; | |
637 | ||
638 | typedef struct pb_entry pb_entry; | |
639 | struct pb_entry { | |
640 | pb_param *param; | |
641 | struct pb_entry *next; | |
642 | }; | |
643 | ||
644 | typedef struct pblock pblock; | |
645 | struct pblock { | |
646 | int hsize; | |
647 | struct pb_entry **ht; | |
648 | }; | |
649 | ||
650 | #ifndef POOL_HANDLE_T | |
651 | #define POOL_HANDLE_T | |
652 | typedef void *pool_handle_t; | |
653 | #endif | |
654 | ||
655 | #ifndef SEMAPHORE_T | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
656 | // TODO: fix |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
657 | //typedef void *SEMAPHORE; |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
658 | //#define SEMAPHORE_T void * |
1 | 659 | #endif /* !SEMAPHORE_T */ |
660 | ||
661 | #define SESSION_HASHSIZE 5 | |
662 | ||
663 | typedef struct PListStruct_s PListStruct_s; | |
664 | typedef struct ACLListHandle ACLListHandle; | |
54 | 665 | typedef struct VFS VFS; |
666 | typedef struct VFSContext VFSContext; | |
1 | 667 | |
668 | #ifndef PR_AF_INET | |
669 | typedef union PRNetAddr PRNetAddr; | |
670 | #endif | |
671 | ||
672 | typedef struct Session Session; | |
673 | typedef struct Request Request; | |
674 | struct Session { | |
675 | pblock *client; /* client-specific information */ | |
676 | ||
677 | SYS_NETFD csd; /* client file descriptor */ | |
678 | netbuf *inbuf; /* input buffer */ | |
679 | int csd_open; | |
680 | ||
681 | struct in_addr iaddr; | |
682 | ||
683 | pool_handle_t *pool; | |
684 | ||
685 | void *clauth; /* v2 ACL client authentication information */ | |
686 | struct Session *next; | |
687 | int fill; | |
688 | struct sockaddr_in local_addr; /* local addr for this session */ | |
689 | ||
690 | PListStruct_s *subject; | |
691 | int ssl; /* 0 = SSL OFF, 1 = SSL ON */ | |
692 | int clientauth; /* 0 = client auth OFF, 1 = client auth ON */ | |
693 | ||
694 | PRNetAddr *pr_client_addr; | |
695 | PRNetAddr *pr_local_addr; | |
696 | }; | |
697 | ||
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
698 | |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
699 | typedef struct FuncStruct FuncStruct; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
700 | |
1 | 701 | /* |
702 | * FuncPtr is a pointer to an NSAPI SAF function | |
703 | */ | |
704 | ||
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
705 | // TODO: fix typedefs |
1 | 706 | #ifdef XP_UNIX |
707 | typedef int Func(pblock *, Session *, Request *); | |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
708 | // new func executor |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
709 | typedef int FuncExec(FuncStruct *, pblock *, Session *, Request *); |
1 | 710 | #else /* XP_WIN32 */ |
711 | typedef int _cdecl Func(pblock *, Session *, Request *); | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
712 | typedef int _cdecl FuncExec(FuncStruct *, pblock *, Session *, Request *); |
1 | 713 | #endif /* XP_WIN32 */ |
714 | ||
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
715 | typedef Func *FuncPtr; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
716 | typedef FuncExec *FuncExecPtr; |
1 | 717 | |
718 | /* | |
719 | * FuncStruct is a structure used in the static declaration of the | |
720 | * functions. This static declaration is parsed into a hash table at | |
721 | * startup. | |
722 | */ | |
723 | ||
724 | struct FuncStruct { | |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
725 | const char *name; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
726 | FuncPtr func; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
727 | //struct FuncStruct *next; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
728 | FuncExecPtr func_exec; |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
729 | void *exec_data; |
1 | 730 | unsigned flags; |
731 | unsigned poolID; | |
732 | unsigned pool_resolved; | |
733 | }; | |
734 | ||
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
735 | ////// new |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
736 | |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
737 | typedef struct _http_listener HttpListener; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
738 | |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
739 | ////// |
1 | 740 | /* |
741 | * VSInitFunc, VSDestroyFunc, VSDirectiveInitFunc and VSDirectiveDestroyFunc | |
742 | */ | |
743 | typedef struct VirtualServer VirtualServer; | |
744 | typedef int VSInitFunc(VirtualServer *incoming, const VirtualServer *current); | |
745 | typedef void VSDestroyFunc(VirtualServer *outgoing); | |
746 | typedef VSInitFunc *VSInitFuncPtr; | |
747 | typedef VSDestroyFunc *VSDestroyFuncPtr; | |
748 | typedef int VSDirectiveInitFunc(const directive *dir, VirtualServer *incoming, const VirtualServer *current); | |
749 | typedef void VSDirectiveDestroyFunc(const directive *dir, VirtualServer *outgoing); | |
750 | typedef VSDirectiveInitFunc *VSDirectiveInitFuncPtr; | |
751 | typedef VSDirectiveDestroyFunc *VSDirectiveDestroyFuncPtr; | |
752 | ||
753 | /* | |
754 | * Filter is an opaque filter identifier | |
755 | */ | |
756 | typedef struct Filter Filter; | |
757 | ||
758 | /* | |
759 | * FilterContext stores context associated with a particular filter layer | |
760 | */ | |
761 | ||
762 | typedef struct FilterContext FilterContext; | |
763 | ||
764 | struct FilterContext { | |
765 | pool_handle_t *pool; /* pool context was allocated from */ | |
766 | Session *sn; /* session being processed */ | |
767 | Request *rq; /* request being processed */ | |
768 | void *data; /* filter-defined private data */ | |
769 | }; | |
770 | ||
771 | /* | |
772 | * FilterLayer represents one layer of a filter stack | |
773 | */ | |
774 | ||
775 | typedef struct FilterLayer FilterLayer; | |
776 | ||
777 | struct FilterLayer { | |
778 | Filter *filter; /* the filter at this layer in the filter stack */ | |
779 | FilterContext *context; /* context for the filter */ | |
780 | SYS_NETFD lower; /* access to the next filter layer in the stack */ | |
781 | }; | |
782 | ||
783 | /* | |
784 | * Function prototypes for filter methods | |
785 | */ | |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
786 | |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
787 | /* |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
788 | * TODO: modified: added * bevor Filter...Func |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
789 | */ |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
790 | typedef int (*FilterInsertFunc)(FilterLayer *layer, pblock *pb); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
791 | typedef void (*FilterRemoveFunc)(FilterLayer *layer); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
792 | typedef int (*FilterFlushFunc)(FilterLayer *layer); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
793 | typedef int (*FilterReadFunc)(FilterLayer *layer, void *buf, int amount, int timeout); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
794 | typedef int (*FilterWriteFunc)(FilterLayer *layer, const void *buf, int amount); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
795 | typedef int (*FilterWritevFunc)(FilterLayer *layer, const NSAPIIOVec *iov, int iov_size); |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
796 | typedef int (*FilterSendfileFunc)(FilterLayer *layer, sendfiledata *sfd); |
1 | 797 | |
798 | /* | |
799 | * FilterMethods is passed to filter_create() to declare the filter methods for | |
800 | * a new filter. Each instance of the FilterMethods structure should be | |
801 | * initialized using the FILTER_METHODS_INITIALIZER macro. | |
802 | */ | |
803 | ||
804 | typedef struct FilterMethods FilterMethods; | |
805 | ||
806 | struct FilterMethods { | |
807 | size_t size; | |
808 | #if NSAPI_VERSION >= 302 | |
809 | FilterInsertFunc *insert; | |
810 | FilterRemoveFunc *remove; | |
811 | FilterFlushFunc *flush; | |
812 | FilterReadFunc *read; | |
813 | FilterWriteFunc *write; | |
814 | FilterWritevFunc *writev; | |
815 | FilterSendfileFunc *sendfile; | |
816 | #else | |
817 | void *reserved1; | |
818 | void *reserved2; | |
819 | void *reserved3; | |
820 | void *reserved4; | |
821 | void *reserved5; | |
822 | void *reserved6; | |
823 | void *reserved7; | |
824 | #endif /* NSAPI_VERSION >= 302 */ | |
825 | }; | |
826 | ||
827 | #define FILTER_METHODS_INITIALIZER \ | |
828 | { \ | |
829 | sizeof(FilterMethods), \ | |
830 | NULL, /* insert */ \ | |
831 | NULL, /* remove */ \ | |
832 | NULL, /* flush */ \ | |
833 | NULL, /* read */ \ | |
834 | NULL, /* write */ \ | |
835 | NULL, /* writev */ \ | |
836 | NULL /* sendfile */ \ | |
837 | } | |
838 | ||
839 | /* | |
840 | * Filter order definitions for filter_create() | |
841 | */ | |
842 | #define FILTER_CONTENT_GENERATION 0xf0000 | |
843 | #define FILTER_CONTENT_TRANSLATION_HIGH 0xa0000 | |
844 | #define FILTER_CONTENT_TRANSLATION 0x90000 | |
845 | #define FILTER_CONTENT_TRANSLATION_LOW 0x80000 | |
846 | #define FILTER_CONTENT_CODING 0x50000 | |
847 | #define FILTER_TRANSFER_CODING 0x40000 | |
848 | #define FILTER_MESSAGE_CODING 0x30000 | |
849 | #define FILTER_TRANSPORT_CODING 0x20000 | |
850 | #define FILTER_NETWORK 0x10000 | |
851 | ||
852 | typedef struct shmem_s shmem_s; | |
853 | struct shmem_s { | |
854 | void *data; /* the data */ | |
855 | #ifdef XP_WIN32 | |
856 | HANDLE fdmap; | |
857 | #endif /* XP_WIN32 */ | |
858 | int size; /* the maximum length of the data */ | |
859 | ||
860 | char *name; /* internal use: filename to unlink if exposed */ | |
861 | SYS_FILE fd; /* internal use: file descriptor for region */ | |
862 | }; | |
863 | ||
864 | /* Define a handle for a thread */ | |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
865 | //typedef void* SYS_THREAD; |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
866 | |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
867 | #ifdef XP_UNIX |
29
e8619defde14
added event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
868 | typedef pthread_t SYS_THREAD; |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
869 | #else |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
870 | typedef void* SYS_THREAD; |
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
871 | #endif |
1 | 872 | |
873 | /* Define an error value for the thread handle */ | |
874 | #define SYS_THREAD_ERROR NULL | |
875 | ||
876 | ||
877 | typedef struct conf_global_vars_s conf_global_vars_s; | |
878 | struct conf_global_vars_s { | |
879 | ||
880 | /* What port we listen to */ | |
881 | int Vport; /* OBSOLETE */ | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
882 | #define server_portnum 80 |
1 | 883 | |
884 | /* What address to bind to */ | |
885 | char *Vaddr; /* OBSOLETE */ | |
886 | ||
887 | /* User to run as */ | |
888 | struct passwd *Vuserpw; | |
889 | ||
890 | /* Directory to chroot to */ | |
891 | char *Vchr; | |
892 | ||
893 | /* Where to log our pid to */ | |
894 | char *Vpidfn; | |
895 | ||
896 | #define pool_max conf_getglobals()->Vpool_max | |
897 | int Vpool_max; | |
898 | #define pool_min conf_getglobals()->Vpool_min | |
899 | int Vpool_min; /* OBSOLETE */ | |
900 | #define pool_life conf_getglobals()->Vpool_life | |
901 | int Vpool_life; /* OBSOLETE */ | |
902 | ||
903 | /* For multiprocess UNIX servers, the maximum threads per process */ | |
904 | #define pool_maxthreads conf_getglobals()->Vpool_maxthreads | |
905 | int Vpool_maxthreads; | |
906 | ||
907 | #define pool_minthreads conf_getglobals()->Vpool_minthreads | |
908 | int Vpool_minthreads; /* OBSOLETE */ | |
909 | ||
910 | char *Vsecure_keyfn; /* OBSOLETE */ | |
911 | char *Vsecure_certfn; /* OBSOLETE */ | |
912 | ||
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
913 | #define security_active 0 |
1 | 914 | int Vsecurity_active; |
915 | int Vssl3_active; /* OBSOLETE */ | |
916 | int Vssl2_active; /* OBSOLETE */ | |
917 | int Vsecure_auth; /* OBSOLETE */ | |
918 | int Vsecurity_session_timeout; | |
919 | long Vssl3_session_timeout; | |
920 | ||
921 | /* The server's hostname as should be reported in self-ref URLs */ | |
47
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
922 | #define server_hostname "x4" // TODO: fix |
1 | 923 | char *Vserver_hostname; |
924 | ||
925 | /* The main object from which all are derived */ | |
926 | #define root_object conf_getglobals()->Vroot_object | |
927 | char *Vroot_object; | |
928 | ||
929 | /* The object set the administrator has asked us to load */ | |
930 | #define std_os conf_getglobals()->Vstd_os | |
931 | httpd_objset *Vstd_os; | |
932 | ||
933 | /* The root of ACL data structures */ | |
934 | void *Vacl_root; | |
935 | ||
936 | /* The main error log, where all errors are logged */ | |
937 | char *Vmaster_error_log; | |
938 | ||
939 | /* The server root directory (contains instance subdirectories) */ | |
940 | #define server_root conf_getglobals()->Vserver_root | |
941 | char *Vserver_root; | |
942 | ||
943 | /* This server's id */ | |
944 | #define server_id conf_getglobals()->Vserver_id | |
945 | char *Vserver_id; | |
946 | ||
947 | /* Admin server users file */ | |
948 | char *Vadmin_users; | |
949 | ||
950 | /* The installation directory (contains bin and lib subdirectories) */ | |
951 | char *Vnetsite_root; | |
952 | ||
953 | /* Digest authentication stale nonce timeout value */ | |
954 | int digest_stale_timeout; | |
955 | ||
956 | int single_accept; /* OBSOLETE */ | |
957 | int num_keep_alives; /* OBSOLETE */ | |
958 | int log_verbose; /* OBSOLETE */ | |
959 | int mmap_flags; /* OBSOLETE */ | |
960 | int mmap_prots; /* OBSOLETE */ | |
961 | int unused1; | |
962 | int unused2; | |
963 | ||
964 | /* Begin Enterprise 3.0 fields */ | |
965 | int accept_language; /* turn accept-language on/off */ | |
966 | ||
967 | char *mtahost; | |
968 | char *nntphost; /* OBSOLETE */ | |
969 | ||
970 | /* The root of ACL data structures */ | |
971 | void *Vacl_root_30; | |
972 | ||
973 | char *agentFilePath; /* OBSOLETE */ | |
974 | ||
975 | int Allowed; /* OBSOLETE */ | |
976 | ||
977 | pblock *genericGlobals; /* OBSOLETE */ | |
978 | ||
979 | char *agentsACLFile; /* OBSOLETE */ | |
980 | ||
981 | int wait_for_cgi; /* OBSOLETE */ | |
982 | int cgiwatch_timeout; /* OBSOLETE */ | |
983 | int started_by_watchdog; | |
984 | int restarted_by_watchdog; | |
985 | int old_accel_cache_enabled; /* OBSOLETE */ | |
986 | int Vssl_cache_entries; | |
987 | int blocking_listen_socket; /* OBSOLETE */ | |
988 | pblock **initfns; | |
989 | char *vs_config_file; /* OBSOLETE */ | |
990 | }; | |
991 | ||
992 | /* Type used for Request rq_attr bit flags */ | |
993 | #ifdef AIX | |
994 | #define RQATTR unsigned | |
995 | #else | |
996 | #define RQATTR unsigned long | |
997 | #endif | |
998 | ||
999 | struct Request { | |
1000 | /* Server working variables */ | |
1001 | pblock *vars; | |
1002 | ||
1003 | /* The method, URI, and protocol revision of this request */ | |
1004 | pblock *reqpb; | |
1005 | /* Protocol specific headers */ | |
1006 | int loadhdrs; | |
1007 | pblock *headers; | |
1008 | ||
1009 | /* Server's response headers */ | |
1010 | int senthdrs; | |
1011 | pblock *srvhdrs; | |
1012 | ||
1013 | /* The object set constructed to fulfill this request */ | |
1014 | httpd_objset *os; | |
1015 | /* Array of objects that were created from .nsconfig files */ | |
1016 | httpd_objset *tmpos; | |
1017 | ||
1018 | /* The stat last returned by request_stat_path */ | |
1019 | char *statpath; | |
1020 | char *staterr; | |
1021 | struct stat *finfo; | |
1022 | ||
1023 | /* access control state */ | |
1024 | int aclstate; /* ACL decision state */ | |
1025 | int acldirno; /* deciding ACL directive number */ | |
1026 | char *aclname; /* name of deciding ACL */ | |
1027 | pblock *aclpb; /* OBSOLETE */ | |
1028 | /* 3.0 ACL list pointer */ | |
1029 | ACLListHandle *acllist; | |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
1030 | uint32_t aclreqaccess; /* new - required access rights */ |
54 | 1031 | |
1032 | VFS *vfs; /* new - virtual file system */ | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1033 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1034 | void *davCollection; |
1 | 1035 | |
1036 | int request_is_cacheable; /* */ | |
1037 | int directive_is_cacheable; /* set by SAFs with no external side effects that make decisions based solely on URI and path */ | |
1038 | ||
1039 | char *cached_headers; /* OBSOLETE */ | |
1040 | int cached_headers_len; /* OBSOLETE */ | |
1041 | char *unused; | |
1042 | ||
1043 | /* HTTP/1.1 features */ | |
1044 | #define REQ_TIME(x) (x)->req_start | |
1045 | time_t req_start; /* time request arrived - used for selecting weak or strong cache validation */ | |
1046 | short protv_num; /* protocol version number */ | |
1047 | short method_num; /* method number */ | |
1048 | struct rq_attr { | |
1049 | RQATTR abs_uri:1; /* set if absolute URI was used */ | |
1050 | RQATTR chunked:1; /* chunked transfer-coding */ | |
1051 | RQATTR keep_alive:1; /* connection keep-alive */ | |
1052 | RQATTR pipelined:1; /* request packet is pipelined */ | |
1053 | RQATTR internal_req:1; /* this was an internal request */ | |
1054 | RQATTR perm_req:1; /* don't FREE() this request */ | |
1055 | RQATTR header_file_present:1; /* OBSOLETE */ | |
1056 | RQATTR footer_file_present:1; /* OBSOLETE */ | |
1057 | RQATTR jvm_attached:1; /* OBSOLETE */ | |
1058 | RQATTR req_restarted:1; /* request was restarted */ | |
1059 | RQATTR jvm_request_locked:1; /* used for first-request serialization on some platforms */ | |
1060 | RQATTR default_type_set:1; /* set if default types were set using set-default-type objecttype function */ | |
1061 | RQATTR is_web_app:1; /* OBSOLETE */ | |
1062 | RQATTR ssl_unclean_shutdown:1; /* set if browser requires unclean SSL shutdown */ | |
1063 | RQATTR vary_accept_language:1; /* set if request was restarted based on an accept-language header */ | |
1064 | RQATTR reserved:17; /* if you add a flag, make sure to subtract from this */ | |
1065 | } rq_attr; | |
1066 | char *hostname; /* hostname used to access server (always non-NULL) */ | |
1067 | int allowed; /* OBSOLETE */ | |
1068 | int byterange; /* OBSOLETE */ | |
1069 | short status_num; /* HTTP status code */ | |
1070 | ||
1071 | int staterrno; /* used for rqstat */ | |
1072 | Request *orig_rq; /* original Request - used for internal redirects */ | |
1073 | }; | |
1074 | ||
1075 | /* Request attribute macros */ | |
1076 | #define ABS_URI(x) (x)->rq_attr.abs_uri | |
1077 | #define CHUNKED(x) (x)->rq_attr.chunked | |
1078 | #define KEEP_ALIVE(x) (x)->rq_attr.keep_alive | |
1079 | #define PIPELINED(x) (x)->rq_attr.pipelined | |
1080 | #define INTERNAL_REQUEST(x) (x)->rq_attr.internal_req | |
1081 | #define RESTARTED_REQUEST(x) (x)->rq_attr.req_restarted | |
1082 | #define PERM_REQUEST(x) (x)->rq_attr.perm_req | |
1083 | #define JVM_REQUEST_LOCKED(x) (x)->rq_attr.jvm_request_locked | |
1084 | #define SSL_UNCLEAN_SHUTDOWN(x) (x)->rq_attr.ssl_unclean_shutdown | |
1085 | #define VARY_ACCEPT_LANGUAGE(x) (x)->rq_attr.vary_accept_language | |
1086 | ||
1087 | /* Define methods for HTTP/1.1 */ | |
1088 | #define METHOD_HEAD 0 | |
1089 | #define METHOD_GET 1 | |
1090 | #define METHOD_PUT 2 | |
1091 | #define METHOD_POST 3 | |
1092 | #define METHOD_DELETE 4 | |
1093 | #define METHOD_TRACE 5 | |
1094 | #define METHOD_OPTIONS 6 | |
1095 | /* The following methods are Netscape method extensions */ | |
1096 | #define METHOD_MOVE 7 | |
1097 | #define METHOD_INDEX 8 | |
1098 | #define METHOD_MKDIR 9 | |
1099 | #define METHOD_RMDIR 10 | |
1100 | #define METHOD_COPY 11 | |
1101 | #define METHOD_MAX 12 /* Number of methods available on this server */ | |
1102 | ||
1103 | #define ISMGET(r) ((r)->method_num == METHOD_GET) | |
1104 | #define ISMHEAD(r) ((r)->method_num == METHOD_HEAD) | |
1105 | #define ISMPUT(r) ((r)->method_num == METHOD_PUT) | |
1106 | #define ISMPOST(r) ((r)->method_num == METHOD_POST) | |
1107 | #define ISMDELETE(r) ((r)->method_num == METHOD_DELETE) | |
1108 | #define ISMMOVE(r) ((r)->method_num == METHOD_MOVE) | |
1109 | #define ISMINDEX(r) ((r)->method_num == METHOD_INDEX) | |
1110 | #define ISMMKDIR(r) ((r)->method_num == METHOD_MKDIR) | |
1111 | #define ISMRMDIR(r) ((r)->method_num == METHOD_RMDIR) | |
1112 | #define ISMCOPY(r) ((r)->method_num == METHOD_COPY) | |
1113 | #define ISMTRACE(r) ((r)->method_num == METHOD_TRACE) | |
1114 | #define ISMOPTIONS(r) ((r)->method_num == METHOD_OPTIONS) | |
1115 | ||
1116 | ||
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1117 | // new type |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1118 | typedef struct _thread_pool threadpool_t; |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1119 | typedef struct _threadpool_job threadpool_job; |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1120 | typedef void*(*job_callback_f)(void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1121 | |
127
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1122 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1123 | typedef struct WebSocket WebSocket; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1124 | typedef struct WSMessage WSMessage; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1125 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1126 | struct WebSocket { |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1127 | int (*on_open)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1128 | int (*on_error)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1129 | int (*on_message)(WebSocket *, WSMessage *msg); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1130 | int (*on_close)(WebSocket *); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1131 | void *userdata; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1132 | }; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1133 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1134 | struct WSMessage { |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1135 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1136 | * message data (text or binary) |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1137 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1138 | char *data; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1139 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1140 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1141 | * data length |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1142 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1143 | size_t length; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1144 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1145 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1146 | * message type (opcode) |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1147 | * 0x0: continuation |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1148 | * 0x1: text |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1149 | * 0x2: binary |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1150 | * 0x3-7: reserved non-control frame |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1151 | * 0x8: close |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1152 | * 0x9: ping |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1153 | * 0xa: pong |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1154 | * 0xb-f: reserved control frame |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1155 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1156 | int type; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1157 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1158 | /* |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1159 | * if the message is incomplete, next points to the continuation message |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1160 | */ |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1161 | WSMessage *next; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1162 | }; |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1163 | |
1 | 1164 | /* --- End type definitions --- */ |
1165 | ||
1166 | /* --- Begin dispatch vector table definition --- */ | |
1167 | /* --- End dispatch vector table definition --- */ | |
1168 | ||
1169 | /* --- Begin API macro definitions --- */ | |
1170 | ||
1171 | #ifndef INTNSAPI | |
1172 | ||
1173 | #if NSAPI_VERSION >= 301 | |
1174 | ||
1175 | /* | |
1176 | * In Sun ONE Web Server 6.1 and higher, http_parse_request("", NULL, NULL) | |
1177 | * returns the NSAPI version. In previous releases, it returns -1. | |
1178 | */ | |
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1179 | //define __NSAPI_RUNTIME_VERSION \ |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1180 | // ((*__nsapi30_table->f_http_parse_request)("", NULL, NULL)) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1181 | |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1182 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1183 | #define __NSAPI_RUNTIME_VERSION nsapi_runtime_version() |
1 | 1184 | |
1185 | /* | |
1186 | * NSAPI_RUNTIME_VERSION returns the NSAPI version the server implements. The | |
1187 | * returned NSAPI version number is reliable only in iPlanet Web Server 6.0, | |
1188 | * Netscape Enterprise Server 6.0, and Sun ONE Web Server 6.0 and higher. | |
1189 | */ | |
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1190 | //define NSAPI_RUNTIME_VERSION \ |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1191 | // (__NSAPI_RUNTIME_VERSION > 0 ? __NSAPI_RUNTIME_VERSION : 301) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1192 | |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1193 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1194 | #define NSAPI_RUNTIME_VERSION nsapi_runtime_version() |
1 | 1195 | |
1196 | #endif /* NSAPI_VERSION >= 301 */ | |
1197 | ||
68
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1198 | //define system_version (*__nsapi30_table->f_system_version) |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1199 | // new: |
f5102a892ed4
some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
67
diff
changeset
|
1200 | NSAPI_PUBLIC char* system_version(); |
1 | 1201 | |
1202 | /* | |
1203 | * Depending on the system, memory allocated via these macros may come from | |
1204 | * an arena. If these functions are called from within an Init function, they | |
1205 | * will be allocated from permanent storage. Otherwise, they will be freed | |
1206 | * when the current request is finished. | |
1207 | */ | |
1208 | ||
1209 | ||
1210 | ||
1211 | #endif /* !INTNSAPI */ | |
1212 | ||
1213 | #ifdef XP_UNIX | |
1214 | #define dir_open opendir | |
1215 | #define dir_read readdir | |
1216 | #define dir_close closedir | |
1217 | #define dir_create(path) mkdir(path, 0755) | |
1218 | #define dir_remove rmdir | |
1219 | #define system_chdir chdir | |
1220 | #define file_unix2local(path,p2) strcpy(p2,path) | |
1221 | #endif /* XP_UNIX */ | |
1222 | ||
1223 | #ifdef XP_WIN32 | |
1224 | #define dir_create _mkdir | |
1225 | #define dir_remove _rmdir | |
1226 | #define system_chdir SetCurrentDirectory | |
1227 | #endif /* XP_WIN32 */ | |
1228 | ||
1229 | /* | |
1230 | * Thread-safe variants of localtime and gmtime | |
1231 | */ | |
1232 | #define system_localtime(curtime, ret) util_localtime(curtime, ret) | |
1233 | #define system_gmtime(curtime, ret) util_gmtime(curtime, ret) | |
1234 | ||
1235 | /* | |
1236 | * pblock_find finds the entry with the given name in pblock pb. | |
1237 | * | |
1238 | * If it is successful, it returns the param block. If not, it returns NULL. | |
1239 | */ | |
1240 | #define pblock_find(name, pb) (pblock_fr(name,pb,0)) | |
1241 | ||
1242 | /* | |
1243 | * pblock_remove behaves exactly like pblock_find, but removes the given | |
1244 | * entry from pb. | |
1245 | */ | |
1246 | #define pblock_remove(name, pb) (pblock_fr(name,pb,1)) | |
1247 | ||
1248 | /* | |
1249 | * session_dns returns the DNS hostname of the client of this session, | |
1250 | * and inserts it into the client pblock. Returns NULL if unavailable. | |
1251 | */ | |
1252 | #define session_dns(sn) session_dns_lookup(sn, 0) | |
1253 | ||
1254 | /* | |
1255 | * session_maxdns looks up a hostname from an IP address, and then verifies | |
1256 | * that the host is really who they claim to be. | |
1257 | */ | |
1258 | #define session_maxdns(sn) session_dns_lookup(sn, 1) | |
1259 | ||
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1260 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1261 | /* nsapi functions */ |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1262 | |
47
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
1263 | NSAPI_PUBLIC conf_global_vars_s* conf_getglobals(); |
ce9790523346
server can change uid
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
29
diff
changeset
|
1264 | |
61
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1265 | /* |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1266 | * Query the VirtualServer* associated with a given Request*. |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1267 | */ |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1268 | const VirtualServer* request_get_vs(Request *rq); |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1269 | #define request_get_vs request_get_vs |
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1270 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1271 | struct stat* request_stat_path(const char *path, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1272 | #define request_stat_path request_stat_path |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1273 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1274 | void request_free(Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1275 | #define request_free request_free |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1276 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1277 | Request* request_restart_internal(const char *uri, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1278 | #define request_restart_internal request_restart_internal |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1279 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1280 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1281 | char* vs_translate_uri(const VirtualServer *vs, const char *uri); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1282 | #define vs_translate_uri vs_translate_uri |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1283 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1284 | char* servact_translate_uri(char *uri, Session *sn); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1285 | #define servact_translate_uri servact_translate_uri |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1286 | #define request_translate_uri servact_translate_uri |
61
c858850f3d3a
improved configuration reloading
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
1287 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1288 | ssize_t net_write(SYS_NETFD fd, void *buf, size_t nbytes); |
64
c7f5b062e622
added net_writev
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
63
diff
changeset
|
1289 | ssize_t net_writev(SYS_NETFD fd, struct iovec *iovec, int iovcnt); |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1290 | ssize_t net_sendfile(SYS_NETFD fd, sendfiledata *sfd); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1291 | ssize_t net_read(SYS_NETFD fd, void *buf, size_t nbytes); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1292 | int net_flush(SYS_NETFD sd); |
110
43a746e905f6
refactored IO system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
109
diff
changeset
|
1293 | void net_close(SYS_NETFD fd); |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1294 | |
64
c7f5b062e622
added net_writev
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
63
diff
changeset
|
1295 | // NSAPI extension |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1296 | ssize_t net_printf(SYS_NETFD fd, char *format, ...); |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1297 | |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1298 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1299 | NSAPI_PUBLIC pb_param *INTparam_create(const char *name, const char *value); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1300 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1301 | NSAPI_PUBLIC int INTparam_free(pb_param *pp); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1302 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1303 | NSAPI_PUBLIC pblock *INTpblock_create(int n); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1304 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1305 | NSAPI_PUBLIC void INTpblock_free(pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1306 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1307 | NSAPI_PUBLIC char *INTpblock_findval(const char *name, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1308 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1309 | NSAPI_PUBLIC pb_param *INTpblock_nvinsert(const char *name, const char *value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1310 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1311 | NSAPI_PUBLIC pb_param *pblock_nvlinsert(const char *name, int namelen, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1312 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1313 | NSAPI_PUBLIC pb_param *INTpblock_nninsert(const char *name, int value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1314 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1315 | NSAPI_PUBLIC void INTpblock_pinsert(pb_param *pp, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1316 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1317 | NSAPI_PUBLIC int INTpblock_str2pblock(const char *str, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1318 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1319 | NSAPI_PUBLIC char *INTpblock_pblock2str(const pblock *pb, char *str); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1320 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1321 | NSAPI_PUBLIC int INTpblock_copy(const pblock *src, pblock *dst); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1322 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1323 | NSAPI_PUBLIC pblock *INTpblock_dup(const pblock *src); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1324 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1325 | NSAPI_PUBLIC char **INTpblock_pb2env(const pblock *pb, char **env); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1326 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1327 | NSAPI_PUBLIC void pblock_nvreplace (const char *name, const char *value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1328 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1329 | NSAPI_PUBLIC pb_param *pblock_param_create(pblock *pb, const char *name, const char *value); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1330 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1331 | NSAPI_PUBLIC pblock *pblock_create_pool(pool_handle_t *pool_handle, int n); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1332 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1333 | NSAPI_PUBLIC pb_param *INTpblock_fr(const char *name, pblock *pb, int remove); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1334 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1335 | NSAPI_PUBLIC char *INTpblock_replace(const char *name,char * new_value,pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1336 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1337 | NSAPI_PUBLIC int INTpblock_str2pblock_lowercasename(const char *str, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1338 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1339 | //NSAPI_PUBLIC pb_param *pblock_removeone(pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1340 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1341 | //NSAPI_PUBLIC const pb_key *pblock_key(const char *name); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1342 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1343 | //NSAPI_PUBLIC pb_param *pblock_key_param_create(pblock *pb, const pb_key *key, const char *value, int valuelen); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1344 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1345 | //NSAPI_PUBLIC char *pblock_findkeyval(const pb_key *key, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1346 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1347 | //NSAPI_PUBLIC pb_param *pblock_findkey(const pb_key *key, const pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1348 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1349 | //NSAPI_PUBLIC pb_param *pblock_removekey(const pb_key *key, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1350 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1351 | //NSAPI_PUBLIC pb_param *pblock_kvinsert(const pb_key *key, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1352 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1353 | //NSAPI_PUBLIC void pblock_kpinsert(const pb_key *key, pb_param *pp, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1354 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1355 | //NSAPI_PUBLIC void pblock_kvreplace(const pb_key *key, const char *value, int valuelen, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1356 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1357 | //NSAPI_PUBLIC pb_param *pblock_kninsert(const pb_key *key, int value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1358 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1359 | //NSAPI_PUBLIC pb_param *pblock_kllinsert(const pb_key *key, PRInt64 value, pblock *pb); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1360 | |
65
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
1361 | #define pblock_remove(name, pb) (pblock_fr(name,pb,1)) |
14722c5f8856
added chunked transfer encoding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
64
diff
changeset
|
1362 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1363 | #define param_create INTparam_create |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1364 | #define param_free INTparam_free |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1365 | #define pblock_create INTpblock_create |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1366 | #define pblock_free INTpblock_free |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1367 | #define pblock_findval INTpblock_findval |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1368 | #define pblock_nvinsert INTpblock_nvinsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1369 | #define pblock_nninsert INTpblock_nninsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1370 | #define pblock_pinsert INTpblock_pinsert |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1371 | #define pblock_str2pblock INTpblock_str2pblock |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1372 | #define pblock_pblock2str INTpblock_pblock2str |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1373 | #define pblock_copy INTpblock_copy |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1374 | #define pblock_dup INTpblock_dup |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1375 | #define pblock_pb2env INTpblock_pb2env |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1376 | #define pblock_fr INTpblock_fr |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1377 | #define pblock_replace INTpblock_replace |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1378 | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1379 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1380 | // pool |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1381 | NSAPI_PUBLIC pool_handle_t *INTpool_create(void); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1382 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1383 | NSAPI_PUBLIC void *INTpool_mark(pool_handle_t *pool_handle); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1384 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1385 | NSAPI_PUBLIC void INTpool_recycle(pool_handle_t *pool_handle, void *mark); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1386 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1387 | NSAPI_PUBLIC void INTpool_destroy(pool_handle_t *pool_handle); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1388 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1389 | NSAPI_PUBLIC int INTpool_enabled(void); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1390 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1391 | NSAPI_PUBLIC void *INTpool_malloc(pool_handle_t *pool_handle, size_t size ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1392 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1393 | NSAPI_PUBLIC void INTpool_free(pool_handle_t *pool_handle, void *ptr ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1394 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1395 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1396 | void *INTpool_calloc(pool_handle_t *pool_handle, size_t nelem, size_t elsize); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1397 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1398 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1399 | void *INTpool_realloc(pool_handle_t *pool_handle, void *ptr, size_t size ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1400 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1401 | NSAPI_PUBLIC |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1402 | char *INTpool_strdup(pool_handle_t *pool_handle, const char *orig_str ); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1403 | |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1404 | #define pool_create INTpool_create |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1405 | #define pool_mark INTpool_mark |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1406 | #define pool_recycle INTpool_recycle |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1407 | #define pool_destroy INTpool_destroy |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1408 | #define pool_enabled INTpool_enabled |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1409 | #define pool_malloc INTpool_malloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1410 | #define pool_free INTpool_free |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1411 | #define pool_calloc INTpool_calloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1412 | #define pool_realloc INTpool_realloc |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1413 | #define pool_strdup INTpool_strdup |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1414 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1415 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1416 | #define MALLOC malloc |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1417 | #define CALLOC(size) calloc(1, size) |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1418 | #define REALLOC realloc |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1419 | #define FREE free |
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
1420 | #define STRDUP strdup |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1421 | |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1422 | // func util functions |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
1423 | FuncStruct* func_resolve(pblock *pb, Session *sn, Request *rq); |
84
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1424 | int func_exec(pblock *pb, Session *sn, Request *rq); |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1425 | struct FuncStruct func_insert(char *name, FuncPtr fn); |
afd57ce39ec9
added initial java plugin code
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
82
diff
changeset
|
1426 | #define func_insert func_insert |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1427 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1428 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1429 | void protocol_status(Session *sn, Request *rq, int n, const char *m); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1430 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1431 | int http_start_response(Session *sn, Request *rq); |
1 | 1432 | #define protocol_start_response http_start_response |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1433 | int request_header(char *name, char **value, Session *sn, Request *rq); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1434 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1435 | char *http_uri2url(const char *prefix, const char *suffix); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1436 | char *http_uri2url_dynamic(const char *prefix, const char *suffix, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1437 | Session *sn, Request *rq); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1438 | #define protocol_uri2url http_uri2url |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1439 | #define protocol_uri2url_dynamic http_uri2url_dynamic |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1440 | |
102
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1441 | |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1442 | NSAPI_PUBLIC void http_format_etag(Session *sn, Request *rq, char *etagp, int etaglen, off_t size, time_t mtime); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1443 | NSAPI_PUBLIC int http_check_preconditions(Session *sn, Request *rq, struct tm *mtm, const char *etag); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1444 | NSAPI_PUBLIC int http_set_finfo(Session *sn, Request *rq, struct stat *finfo); |
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1445 | |
118
38bf6dd8f4e7
adds minimal cgi implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
110
diff
changeset
|
1446 | NSAPI_PUBLIC char **http_hdrs2env(pblock *pb); |
102
136a76e293b5
added etag and conditional request implementation from Open Web Server
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
87
diff
changeset
|
1447 | |
127
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1448 | // new websocket API begin |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1449 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1450 | NSAPI_PUBLIC int http_handle_websocket(Session *sn, Request *rq, WebSocket *websocket); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1451 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1452 | NSAPI_PUBLIC int websocket_send_text(SYS_NETFD csd, char *msg, size_t len); |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1453 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1454 | // websocket API end |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1455 | |
84e206063b64
adds minimal websocket implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
118
diff
changeset
|
1456 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1457 | typedef void (*thrstartfunc)(void *); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1458 | SYS_THREAD INTsysthread_start(int prio, int stksz, thrstartfunc fn, void *arg); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1459 | NSAPI_PUBLIC void INTsysthread_sleep(int milliseconds); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1460 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1461 | #define systhread_start INTsysthread_start |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1462 | #define systhread_sleep INTsysthread_sleep |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1463 | |
1 | 1464 | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1465 | void webserver_atrestart(void (*fn)(void *), void *data); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1466 | #define magnus_atrestart webserver_atrestart |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1467 | #define daemon_atrestart webserver_atrestart |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1468 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1469 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1470 | NSAPI_PUBLIC int INTshexp_match(const char *str, const char *exp); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1471 | #define shexp_match INTshexp_match |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1472 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1473 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1474 | |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1475 | NSAPI_PUBLIC char *session_dns_lookup(Session *s, int verify); |
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
8
diff
changeset
|
1476 | |
1 | 1477 | |
8
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1478 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1479 | /* netbuf functions */ |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1480 | NSAPI_PUBLIC netbuf *netbuf_open(SYS_NETFD sd, int sz); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1481 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1482 | NSAPI_PUBLIC void netbuf_close(netbuf *buf); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1483 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1484 | NSAPI_PUBLIC unsigned char * netbuf_replace(netbuf *buf, |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1485 | unsigned char *inbuf, int pos, int cursize, int maxsize); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1486 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1487 | NSAPI_PUBLIC int netbuf_next(netbuf *buf, int advance); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1488 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1489 | NSAPI_PUBLIC int netbuf_getbytes(netbuf *buf, char *buffer, int size); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1490 | |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1491 | NSAPI_PUBLIC int netbuf_grab(netbuf *buf, int sz); |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1492 | |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1493 | #define netbuf_open netbuf_open |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1494 | #define netbuf_close netbuf_close |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1495 | #define netbuf_replace netbuf_replace |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1496 | #define netbuf_next netbuf_next |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1497 | #define netbuf_getbytes netbuf_getbytes |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1498 | #define netbuf_grab netbuf_grab |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1499 | |
58
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1500 | /* file */ |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1501 | NSAPI_PUBLIC int system_fread(SYS_FILE fd, void *buf, int nbyte); |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1502 | NSAPI_PUBLIC int system_fwrite(SYS_FILE fd, const void *buf, int nbyte); |
66
74babc0082b7
added authentication cache
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
65
diff
changeset
|
1503 | NSAPI_PUBLIC off_t system_lseek(SYS_FILE fd, off_t offset, int whence); |
58
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1504 | NSAPI_PUBLIC int system_fclose(SYS_FILE fd); |
66c22e54aa90
webdav uses the vfs api
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
1505 | |
82
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1506 | |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1507 | int log_ereport(int degree, const char *format, ...); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1508 | int log_ereport_v(int degree, const char *format, va_list args); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1509 | int log_error(int degree, const char *func, Session *sn, Request *rq, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1510 | const char *format, ...); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1511 | int log_error_v(int degree, const char *func, Session *sn, Request *rq, |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1512 | const char *format, va_list args); |
740cfd9dd443
added some nsapi stuff
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
81
diff
changeset
|
1513 | |
67
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1514 | /* new macro and function definitions begin */ |
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1515 | |
63
66442f81f823
supports file system ACLs on Solaris
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
61
diff
changeset
|
1516 | NSAPI_PUBLIC int util_errno2status(int errno_value); // new |
56
c6cf20b09043
added vfs_mkdir and vfs_unlink
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
54
diff
changeset
|
1517 | #define util_errno2status util_errno2status |
81
d25825f37967
preparation for admin interface
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
68
diff
changeset
|
1518 | NSAPI_PUBLIC pblock* util_parse_param(pool_handle_t *pool, char *query); |
d25825f37967
preparation for admin interface
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
68
diff
changeset
|
1519 | #define util_parse_param util_parse_param |
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1520 | |
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
1521 | |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1522 | // threadpool |
67
50505dc3f8a6
dynamic thread pool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
66
diff
changeset
|
1523 | threadpool_t* threadpool_new(int min, int max); |
59
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1524 | void* threadpool_func(void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1525 | threadpool_job* threadpool_get_job(threadpool_t *pool); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1526 | void threadpool_run(threadpool_t *pool, job_callback_f func, void *data); |
ab25c0a231d0
some fixes and new public APIs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
58
diff
changeset
|
1527 | |
87
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1528 | |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1529 | // assert |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1530 | void ws_log_assert(const char *file, const char *func, int line); |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1531 | #ifdef _DEBUG |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1532 | #ifndef __FUNCTION__ |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1533 | #define __FUNCTION__ __func__ |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1534 | #endif |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1535 | #define WS_ASSERT(c) if(!c) ws_log_assert(__FILE__, __FUNCTION__, __LINE__) |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1536 | #else |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1537 | #define WS_ASSERT(c) |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1538 | #endif |
bdec069d2239
fixed pathcheck behavior
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
84
diff
changeset
|
1539 | |
8
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1540 | /* end new macro and function definitions */ |
f4d56bf9de40
Added request body reader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
6
diff
changeset
|
1541 | |
1 | 1542 | #define SYS_STDERR STDERR_FILENO |
1543 | ||
1544 | #ifdef XP_WIN32 | |
1545 | ||
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1546 | //typedef HANDLE pid_t; // TODO |
1 | 1547 | |
1548 | #define ERROR_PIPE \ | |
1549 | (ERROR_BROKEN_PIPE | ERROR_BAD_PIPE | \ | |
1550 | ERROR_PIPE_BUSY | ERROR_PIPE_LISTENING | ERROR_PIPE_NOT_CONNECTED) | |
1551 | #define CONVERT_TO_PRINTABLE_FORMAT(Filename) \ | |
1552 | { \ | |
1553 | register char *s; \ | |
1554 | if (Filename) \ | |
1555 | for (s = Filename; *s; s++) \ | |
1556 | if ( *s == '\\') \ | |
1557 | *s = '/'; \ | |
1558 | } | |
1559 | #define CONVERT_TO_NATIVE_FS(Filename) \ | |
1560 | { \ | |
1561 | register char *s; \ | |
1562 | if (Filename) \ | |
1563 | for (s = Filename; *s; s++) \ | |
1564 | if ( *s == '/') \ | |
1565 | *s = '\\'; \ | |
1566 | } | |
1567 | ||
1568 | #ifdef INTNSAPI | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1569 | //NSAPI_PUBLIC extern nsapi_dispatch_t *__nsapi30_table; |
1 | 1570 | #if NSAPI_VERSION >= 302 |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1571 | //NSAPI_PUBLIC extern nsapi302_dispatch_t *__nsapi302_table; |
1 | 1572 | #endif /* NSAPI_VERSION >= 302 */ |
1573 | #if NSAPI_VERSION >= 303 | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1574 | //NSAPI_PUBLIC extern nsapi303_dispatch_t *__nsapi303_table; |
1 | 1575 | #endif /* NSAPI_VERSION >= 303 */ |
1576 | #else | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1577 | //__declspec(dllimport) nsapi_dispatch_t *__nsapi30_table; |
1 | 1578 | #if NSAPI_VERSION >= 302 |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1579 | //__declspec(dllimport) nsapi302_dispatch_t *__nsapi302_table; |
1 | 1580 | #endif /* NSAPI_VERSION >= 302 */ |
1581 | #if NSAPI_VERSION >= 303 | |
147
d050449c3b9e
ported io.c and some headers to windows
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
127
diff
changeset
|
1582 | //__declspec(dllimport) nsapi303_dispatch_t *__nsapi303_table; |
1 | 1583 | #endif /* NSAPI_VERSION >= 303 */ |
1584 | #endif /* INTNSAPI */ | |
1585 | ||
1586 | #else /* !XP_WIN32 */ | |
1587 | ||
1588 | ||
1589 | #endif /* XP_WIN32 */ | |
1590 | ||
1591 | #ifdef __cplusplus | |
1592 | } | |
1593 | #endif | |
1594 | ||
1595 | #endif /* !PUBLIC_NSAPI_H */ |