code cleanup
[mod-proxy-fdpass.git] / mod_proxy_fdpass.c
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "mod_proxy.h"
18
19 #include <sys/types.h>
20 #include <sys/socket.h>
21 #include <sys/un.h>
22
23 #ifndef CMSG_DATA
24 #error This module only works on unix platforms with the correct OS support
25 #endif
26
27 #include "apr_version.h"
28 #if APR_MAJOR_VERSION < 2
29 /* for apr_wait_for_io_or_timeout */
30 #include "apr_support.h"
31 #endif
32
33 #include "mod_proxy_fdpass.h"
34
35 module AP_MODULE_DECLARE_DATA proxy_fdpass_module;
36
37 static int proxy_fdpass_canon(request_rec *r, char *url)
38 {
39     const char *path;
40
41     {
42         int mop_fd;
43         char mop_bf[512];
44
45         mop_fd = open("/tmp/apache_mop.log", O_WRONLY | O_APPEND | O_CREAT);
46         sprintf(mop_bf, "proxy_http_canon: start\n");
47         write(mop_fd, mop_bf, strlen(mop_bf));
48         close(mop_fd);
49
50     }
51
52     if (strncasecmp(url, "fd://", 5) == 0) {
53         url += 5;
54     }
55     else {
56         return DECLINED;
57     }
58     
59     path = ap_server_root_relative(r->pool, url);
60
61     r->filename = apr_pstrcat(r->pool, "proxy:fd://", path, NULL);
62
63     ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
64                   "proxy: FD: set r->filename to %s", r->filename);
65     return OK;
66 }
67
68 /* TODO: In APR 2.x: Extend apr_sockaddr_t to possibly be a path !!! */
69 static apr_status_t socket_connect_un(request_rec *r, apr_socket_t *sock,
70                                       struct sockaddr_un *sa)
71 {
72     apr_status_t rv;
73     apr_os_sock_t rawsock;
74     apr_interval_time_t t;
75
76     rv = apr_os_sock_get(&rawsock, sock);
77     if (rv != APR_SUCCESS) {
78         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
79                       "proxy: FD: apr_os_sock_get failed");
80         return rv;
81     }
82
83     rv = apr_socket_timeout_get(sock, &t);
84     if (rv != APR_SUCCESS) {
85         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
86                       "proxy: FD: apr_socket_timeout_get failed");
87         return rv;
88     }
89
90     do {
91         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
92                       "proxy: FD: pre_connect");
93         rv = connect(rawsock, (struct sockaddr*)sa,
94                      sizeof(*sa) /* + strlen(sa->sun_path)*/ );
95         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
96                       "proxy: FD: post_connect %d", rv);
97     } while (rv == -1 && errno == EINTR);
98
99     if ((rv == -1) && (errno == EINPROGRESS || errno == EALREADY)
100         && (t > 0)) {
101 #if APR_MAJOR_VERSION < 2
102         rv = apr_wait_for_io_or_timeout(NULL, sock, 0);
103 #else
104         rv = apr_socket_wait(sock, APR_WAIT_WRITE);
105 #endif
106
107         if (rv != APR_SUCCESS) {
108             ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, NULL,
109                          "proxy: FD: apr_socket_wait failed");
110             return rv;
111         }
112     }
113     
114     if (rv == -1 && errno != EISCONN) {
115         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
116                       "proxy: FD: socket_connect_un preexit %d", errno);
117         return errno;
118     }
119
120     return APR_SUCCESS;
121 }
122
123 static apr_status_t get_socket_from_path(request_rec *r, apr_pool_t *p,
124                                          const char* path,
125                                          apr_socket_t **out_sock)
126 {
127     struct sockaddr_un sa;
128     apr_socket_t *s;
129     apr_status_t rv;
130     *out_sock = NULL;
131
132     /*
133     ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
134                   "proxy: FD: Failed to connect to '%s' %d xxx",
135                       url, rv);
136     */
137     ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
138                  "proxy: FD: get_socket_from_path::START");
139
140     rv = apr_socket_create(&s, AF_UNIX, SOCK_STREAM, 0, p);
141
142     if (rv != APR_SUCCESS) {
143         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
144                       "proxy: FD: get_socket_from_path::create %d", rv);
145         return rv;
146     }
147
148     sa.sun_family = AF_UNIX;
149     apr_cpystrn(sa.sun_path, path, sizeof(sa.sun_path));
150
151     rv = socket_connect_un(r, s, &sa);
152     if (rv != APR_SUCCESS) {
153         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
154                       "proxy: FD: get_socket_from_path::connect_un %d", rv);
155         return rv;
156     }
157
158     *out_sock = s;
159
160     return APR_SUCCESS;
161 }
162
163 #define ANCIL_FD_BUFFER(n) \
164     struct { \
165         struct cmsghdr h; \
166         int fd[n]; \
167     }
168
169 static apr_status_t send_socket(apr_pool_t *p,
170                                 apr_socket_t *s,
171                                 apr_socket_t *outbound,
172                                 apr_socket_t *ctrlsock)
173 {
174     apr_status_t rv;
175     apr_os_sock_t rawsock;
176     apr_os_sock_t srawsock;
177     apr_os_sock_t sctrlsock;
178     struct msghdr msg;
179     struct cmsghdr *cmsg;
180     struct iovec iov;
181     char b = '\0', *buf;
182     ANCIL_FD_BUFFER(2) ancil_buf;
183
184     {
185         int mop_fd;
186         char mop_bf[512];
187
188         mop_fd = open("/tmp/apache_mop.log", O_WRONLY | O_APPEND | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO);
189         sprintf(mop_bf, "send_socket: start\n");
190         write(mop_fd, mop_bf, strlen(mop_bf));
191         close(mop_fd);
192
193     }
194     
195     rv = apr_os_sock_get(&rawsock, outbound);
196     if (rv != APR_SUCCESS) {
197         return rv;
198     }
199
200     rv = apr_os_sock_get(&srawsock, s);
201     if (rv != APR_SUCCESS) {
202         return rv;
203     }
204
205     rv = apr_os_sock_get(&sctrlsock, ctrlsock);
206     if (rv != APR_SUCCESS) {
207         return rv;
208     }
209     
210     {
211         int mop_fd;
212         char mop_bf[512];
213
214         mop_fd = open("/tmp/apache_mop.log", O_WRONLY | O_APPEND | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO);
215         write(mop_fd, "XX", 2);
216         write(mop_fd, &srawsock, sizeof(apr_os_sock_t));
217         write(mop_fd, "XX", 2);
218         close(mop_fd);
219
220     }
221
222     memset(&msg, 0, sizeof(msg));
223
224     msg.msg_iov = &iov;
225     msg.msg_iovlen = 1;
226
227     iov.iov_base = &b;
228     iov.iov_len = 1;
229
230     msg.msg_control = &ancil_buf;
231     msg.msg_controllen = sizeof(struct cmsghdr) + sizeof(rawsock) * 2;
232
233     // cmsg = apr_palloc(p, sizeof(*cmsg) + sizeof(rawsock));
234     cmsg = CMSG_FIRSTHDR(&msg);
235     cmsg->cmsg_len = sizeof(*cmsg) + sizeof(rawsock) * 2;
236     cmsg->cmsg_level = SOL_SOCKET;
237     cmsg->cmsg_type = SCM_RIGHTS;
238
239     ((int *)CMSG_DATA(cmsg))[0] = rawsock;
240     ((int *)CMSG_DATA(cmsg))[1] = sctrlsock;
241
242     rv = sendmsg(srawsock, &msg, 0);
243
244     {
245         int mop_fd;
246         char mop_bf[512];
247
248         mop_fd = open("/tmp/apache_mop.log", O_WRONLY | O_APPEND | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO);
249         sprintf(mop_bf, "SENT BYTES: %d\n", rv);
250         write(mop_fd, mop_bf, strlen(mop_bf));
251         close(mop_fd);
252
253     }
254
255     if (rv == -1) {
256         return errno;
257     }
258
259     
260     return APR_SUCCESS;
261 }
262
263 static int headers_builder(void *rec, const char *key, const char *value)
264 {
265     char *s;
266
267     s = (char *)rec;
268
269     // TODO: verify length
270     sprintf(s, "%s%s:%s\n", s, key, value);
271 }
272
273 #define CTRL_BUFF_MAX_SZ (8*1024)
274
275 #define DEFAULT_ENCTYPE "application/x-www-form-urlencoded"
276
277 int util_read(request_rec *r, const char **rbuf)
278 {
279     int rc;
280
281     if ((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)) != OK) {
282         return rc;
283     }
284
285     if (ap_should_client_block(r)) {
286         char argsbuffer[HUGE_STRING_LEN];
287         int rsize, len_read, rpos=0;
288         long length = r->remaining;
289         *rbuf = (char *)apr_pcalloc(r->pool, length +1);
290
291         while ((len_read = ap_get_client_block(r, argsbuffer,
292 sizeof(argsbuffer))) > 0) {
293             if ((rpos + len_read) > length) {
294                 rsize = length - rpos;
295             } else {
296                 rsize = len_read;
297             }
298
299             memcpy((char *)*rbuf + rpos, argsbuffer, rsize);
300             rpos += rsize;
301         }
302
303     }
304
305     return rc;
306 }
307
308 int read_post(request_rec *r, const char **data)
309 {
310     const char *type;
311     int rc = OK;
312
313     if (r->method_number != M_POST) {
314         return rc;
315     }
316
317     type = apr_table_get(r->headers_in, "Content-Type");
318     if (strcasecmp(type, DEFAULT_ENCTYPE) != 0) {
319         return DECLINED;
320     }
321
322     if ((rc = util_read(r, data)) != OK) {
323         return rc;
324     }
325
326     return OK;
327 }
328
329
330 // TODO: sanitize calloc
331 static int proxy_fdpass_handler(request_rec *r, proxy_worker *worker,
332                               proxy_server_conf *conf,
333                               char *url, const char *proxyname,
334                               apr_port_t proxyport)
335 {
336     apr_status_t rv;
337     apr_socket_t *sock;
338     apr_socket_t *clientsock;
339     char *buf;
340     char *headers_out = NULL;
341     int ctrlrawsock[2];
342     apr_socket_t *ctrlsock = NULL, *clientctrlsock = NULL;
343     apr_size_t wrlen;
344     const char *post_data = NULL;
345
346     ap_filter_t *f;
347     ap_filter_rec_t *fg;
348
349     fg = ap_get_output_filter_handle("HTTP_HEADER");
350
351
352     ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
353                   "proxy: FD: filter fg: %lx  func %lx", fg, ap_http_header_filter);
354
355
356     for (f = r->output_filters ; f != NULL ; f = f->next) {
357         ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
358                       "proxy: FD: filter loop: %lx", f->frec);
359         if (f->frec == fg) {
360             ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
361                           "proxy: FD: filter found, remove it");
362             ap_remove_output_filter(f);
363             break;
364         }
365     }
366
367     if ((headers_out = calloc(CTRL_BUFF_MAX_SZ, 1)) != NULL) {
368         sprintf(headers_out, "The-Request:%s\n", r->the_request);
369         apr_table_do(headers_builder, headers_out, r->headers_in, NULL);
370     }
371     read_post(r, &post_data);
372
373     {
374         int mop_fd;
375         char mop_bf[512];
376
377         mop_fd = open("/tmp/apache_mop.log", O_WRONLY | O_APPEND | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO);
378         sprintf(mop_bf, "proxy_fdpass_handler: start\n");
379         write(mop_fd, mop_bf, strlen(mop_bf));
380         write(mop_fd, headers_out, strlen(headers_out));
381         close(mop_fd);
382
383     }
384     if (strncasecmp(url, "fd://", 5) == 0) {
385         url += 5;
386     }
387     else {
388         return DECLINED;
389     }
390
391     rv = get_socket_from_path(r, r->pool, url, &sock);
392
393     if (rv != APR_SUCCESS) {
394         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
395                       "proxy: FD: Failed to connect to '%s' %d xxx",
396                       url, rv);
397         return HTTP_INTERNAL_SERVER_ERROR;
398     }
399
400     /* create a couple of sockets and pass one to the client for headers and so on */
401     if (socketpair(AF_UNIX, SOCK_STREAM, 0, ctrlrawsock)) {
402         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
403                       "proxy: FD: Failed create socketpair");
404         return HTTP_INTERNAL_SERVER_ERROR;
405     }
406     rv = apr_os_sock_put(&ctrlsock, &(ctrlrawsock[0]), r->connection->pool);
407     if (rv != APR_SUCCESS) {
408         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
409                       "proxy: FD: apr_os_sock_put failed");
410         return HTTP_INTERNAL_SERVER_ERROR;
411     }
412     rv = apr_os_sock_put(&clientctrlsock, &(ctrlrawsock[1]), r->connection->pool);
413     if (rv != APR_SUCCESS) {
414         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
415                       "proxy: FD: apr_os_sock_put failed");
416         return HTTP_INTERNAL_SERVER_ERROR;
417     }
418
419     {
420         int status;
421         /* const char *flush_method = worker->flusher ? worker->flusher : "flush"; */
422         const char *flush_method = "flush"; 
423
424         proxy_fdpass_flush *flush = ap_lookup_provider(PROXY_FDPASS_FLUSHER,
425                                                        flush_method, "0");
426
427         if (!flush) {
428             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
429                           "proxy: FD: Unable to find configured flush "
430                           "provider '%s'", flush_method);
431             return HTTP_INTERNAL_SERVER_ERROR;
432         }
433
434         status = flush->flusher(r);
435         if (status) {
436             return status;
437         }
438     }
439
440     if ((buf = apr_table_get(r->headers_in, "Host"))) {
441         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
442                       "proxy: FD: Host is: [%s]", buf);
443     }
444
445     /* XXXXX: THIS IS AN EVIL HACK */
446     /* There should really be a (documented) public API for this ! */
447     clientsock = ap_get_module_config(r->connection->conn_config, &core_module);
448
449     rv = send_socket(r->pool, sock, clientsock, clientctrlsock);
450     if (rv != APR_SUCCESS) {
451         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
452                       "proxy: FD: send_socket failed:");
453         return HTTP_INTERNAL_SERVER_ERROR;
454     }
455     strcat(headers_out, "\n");
456     wrlen = strlen(headers_out);
457     rv = apr_socket_send(ctrlsock, headers_out, &wrlen);
458     if (rv != APR_SUCCESS) {
459         ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
460                       "proxy: FD: send headers failed");
461         return HTTP_INTERNAL_SERVER_ERROR;
462     }
463     if (post_data) {
464         wrlen = strlen(post_data);
465         rv = apr_socket_send(ctrlsock, post_data, &wrlen);
466         if (rv != APR_SUCCESS) {
467             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
468                           "proxy: FD: send post failed");
469             return HTTP_INTERNAL_SERVER_ERROR;
470         }
471     }
472     apr_socket_shutdown(ctrlsock, APR_SHUTDOWN_READWRITE);
473     if (headers_out)
474         free(headers_out);
475
476     {
477         apr_socket_t *dummy;
478         /* Create a dummy unconnected socket, and set it as the one we were 
479          * connected to, so that when the core closes it, it doesn't close 
480          * the tcp connection to the client.
481          */
482         rv = apr_socket_create(&dummy, APR_INET, SOCK_STREAM, APR_PROTO_TCP,
483                                r->connection->pool);
484         if (rv != APR_SUCCESS) {
485             ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
486                           "proxy: FD: failed to create dummy socket");
487             return HTTP_INTERNAL_SERVER_ERROR;
488         }
489         ap_set_module_config(r->connection->conn_config, &core_module, dummy);
490     }
491     
492     
493     return OK;
494 }
495
496 static int standard_flush(request_rec *r)
497 {
498     int status;
499     apr_bucket_brigade *bb;
500     apr_bucket *e;
501     apr_pool_t *p = r->pool;
502
503     r->connection->keepalive = AP_CONN_CLOSE;
504     /* MOP NOTE: set here the content type */
505     // ap_set_content_type(r, apr_pstrdup(p, NO_CONTENT_TYPE));
506     bb = apr_brigade_create(r->pool, r->connection->bucket_alloc);
507     e = apr_bucket_flush_create(r->connection->bucket_alloc);
508     
509     APR_BRIGADE_INSERT_TAIL(bb, e);
510
511     status = ap_pass_brigade(r->output_filters, bb);
512
513     if (status != OK) {
514         ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r,
515                       "proxy: FD: ap_pass_brigade failed:");
516         return status;
517     }
518
519     return OK;
520 }
521
522 static const proxy_fdpass_flush builtin_flush =
523 {
524     "flush",
525     &standard_flush,
526     NULL
527 };
528
529 static void ap_proxy_fdpass_register_hooks(apr_pool_t *p)
530 {
531     ap_register_provider(p, PROXY_FDPASS_FLUSHER, "flush", "0", &builtin_flush);
532     proxy_hook_scheme_handler(proxy_fdpass_handler, NULL, NULL, APR_HOOK_FIRST);
533     proxy_hook_canon_handler(proxy_fdpass_canon, NULL, NULL, APR_HOOK_FIRST);
534 }
535
536 module AP_MODULE_DECLARE_DATA proxy_fdpass_module = {
537     STANDARD20_MODULE_STUFF,
538     NULL,              /* create per-directory config structure */
539     NULL,              /* merge per-directory config structures */
540     NULL,              /* create per-server config structure */
541     NULL,              /* merge per-server config structures */
542     NULL,              /* command apr_table_t */
543     ap_proxy_fdpass_register_hooks                /* register hooks */
544 };