UNIXworkcode

1 /* 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 3 * 4 * Copyright 2013 Olaf Wintermann. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are met: 8 * 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26 * POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 #ifndef HTTPREQUEST_H 30 #define HTTPREQUEST_H 31 32 #include <ucx/string.h> 33 34 #include "sessionhandler.h" 35 #include "../public/nsapi.h" 36 #include "../util/pool.h" 37 #include "session.h" 38 #include "request.h" 39 40 #ifdef __cplusplus 41 extern "C" { 42 #endif 43 44 typedef struct _http_request HTTPRequest; 45 typedef struct _header Header; 46 typedef struct _header_array HeaderArray; 47 48 struct _http_request { 49 Connection *connection; 50 sstr_t request_line; 51 sstr_t method; 52 sstr_t uri; 53 sstr_t httpv; 54 HeaderArray *headers; 55 netbuf *netbuf; 56 time_t req_start; 57 }; 58 59 struct _header { 60 sstr_t name; 61 sstr_t value; 62 }; 63 64 struct _header_array { 65 HeaderArray *next; 66 Header *headers; 67 int len; 68 int alloc; 69 }; 70 71 void http_request_init(HTTPRequest *req); 72 void http_request_cleanup(HTTPRequest *req); 73 74 sstr_t http_request_get_abspath(HTTPRequest *req); 75 76 /* 77 * starts request processing after reading the request header 78 * 79 * request: request object 80 * pool: current thread pool or NULL 81 */ 82 int handle_request(HTTPRequest *request, threadpool_t *pool, EventHandler *ev); 83 84 85 86 void header_add(HeaderArray *hd, sstr_t name, sstr_t value); 87 void header_array_free(HeaderArray *hd); 88 89 int nsapi_handle_request(NSAPISession *sn, NSAPIRequest *rq); 90 int nsapi_finish_request(NSAPISession *sn, NSAPIRequest *rq); 91 92 int nsapi_authtrans(NSAPISession *sn, NSAPIRequest *rq); 93 int nsapi_nametrans(NSAPISession *sn, NSAPIRequest *rq); 94 int nsapi_pathcheck(NSAPISession *sn, NSAPIRequest *rq); 95 int nsapi_objecttype(NSAPISession *sn, NSAPIRequest *rq); 96 int nsapi_service(NSAPISession *sn, NSAPIRequest *rq); 97 int nsapi_error(NSAPISession *sn, NSAPIRequest *rq); 98 int nsapi_addlog(NSAPISession *sn, NSAPIRequest *rq); 99 100 int nsapi_exec(directive *d, NSAPISession *sn, NSAPIRequest *rq); 101 102 int nsapi_exec_tp( 103 directive *d, 104 NSAPISession *sn, 105 NSAPIRequest *rq, 106 threadpool_t *pool); 107 108 //void nsapi_function_return(Session *sn, Request *rq, int ret); 109 110 void nsapi_change_threadpool( 111 NSAPISession *sn, 112 NSAPIRequest *rq, 113 threadpool_t *thrpool); 114 115 void* thrpool_exec(void *d); 116 117 void* thrpool_change(void *data); 118 119 120 int add_objects( 121 HTTPObjectConfig *objs, 122 httpd_objset *os, 123 NSAPISession *sn, 124 NSAPIRequest *rq, 125 char *name, 126 char *path); 127 128 int method_match(char *cmp, char *method); 129 int contenttype_match(sstr_t cmp, sstr_t ctype); 130 131 /* request.h functions */ 132 int request_initialize( 133 pool_handle_t *pool, 134 HTTPRequest *hrq, 135 NSAPIRequest *nrq); 136 137 #ifdef __cplusplus 138 } 139 #endif 140 141 #endif /* HTTPREQUEST_H */ 142 143