]> granicus.if.org Git - apache/blob - server/core_filters.c
Introduce ap_(get|set)_core_module_config() functions/macros and use them
[apache] / server / core_filters.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 /**
18  * @file  core_filters.c
19  * @brief Core input/output network filters.
20  */
21
22 #include "apr.h"
23 #include "apr_strings.h"
24 #include "apr_lib.h"
25 #include "apr_fnmatch.h"
26 #include "apr_hash.h"
27 #include "apr_thread_proc.h"    /* for RLIMIT stuff */
28
29 #define APR_WANT_IOVEC
30 #define APR_WANT_STRFUNC
31 #define APR_WANT_MEMFUNC
32 #include "apr_want.h"
33
34 #include "ap_config.h"
35 #include "httpd.h"
36 #include "http_config.h"
37 #include "http_core.h"
38 #include "http_protocol.h" /* For index_of_response().  Grump. */
39 #include "http_request.h"
40 #include "http_vhost.h"
41 #include "http_main.h"     /* For the default_handler below... */
42 #include "http_log.h"
43 #include "util_md5.h"
44 #include "http_connection.h"
45 #include "apr_buckets.h"
46 #include "util_filter.h"
47 #include "util_ebcdic.h"
48 #include "mpm_common.h"
49 #include "scoreboard.h"
50 #include "mod_core.h"
51 #include "mod_proxy.h"
52 #include "ap_listen.h"
53
54 #include "mod_so.h" /* for ap_find_loaded_module_symbol */
55
56 #define AP_MIN_SENDFILE_BYTES           (256)
57
58 /**
59  * Remove all zero length buckets from the brigade.
60  */
61 #define BRIGADE_NORMALIZE(b) \
62 do { \
63     apr_bucket *e = APR_BRIGADE_FIRST(b); \
64     do {  \
65         if (e->length == 0 && !APR_BUCKET_IS_METADATA(e)) { \
66             apr_bucket *d; \
67             d = APR_BUCKET_NEXT(e); \
68             apr_bucket_delete(e); \
69             e = d; \
70         } \
71         else { \
72             e = APR_BUCKET_NEXT(e); \
73         } \
74     } while (!APR_BRIGADE_EMPTY(b) && (e != APR_BRIGADE_SENTINEL(b))); \
75 } while (0)
76
77 /* we know core's module_index is 0 */
78 #undef APLOG_MODULE_INDEX
79 #define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX
80
81 int ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b,
82                          ap_input_mode_t mode, apr_read_type_e block,
83                          apr_off_t readbytes)
84 {
85     apr_bucket *e;
86     apr_status_t rv;
87     core_net_rec *net = f->ctx;
88     core_ctx_t *ctx = net->in_ctx;
89     const char *str;
90     apr_size_t len;
91
92     if (mode == AP_MODE_INIT) {
93         /*
94          * this mode is for filters that might need to 'initialize'
95          * a connection before reading request data from a client.
96          * NNTP over SSL for example needs to handshake before the
97          * server sends the welcome message.
98          * such filters would have changed the mode before this point
99          * is reached.  however, protocol modules such as NNTP should
100          * not need to know anything about SSL.  given the example, if
101          * SSL is not in the filter chain, AP_MODE_INIT is a noop.
102          */
103         return APR_SUCCESS;
104     }
105
106     if (!ctx)
107     {
108         ctx = apr_pcalloc(f->c->pool, sizeof(*ctx));
109         ctx->b = apr_brigade_create(f->c->pool, f->c->bucket_alloc);
110         ctx->tmpbb = apr_brigade_create(ctx->b->p, ctx->b->bucket_alloc);
111         /* seed the brigade with the client socket. */
112         e = apr_bucket_socket_create(net->client_socket, f->c->bucket_alloc);
113         APR_BRIGADE_INSERT_TAIL(ctx->b, e);
114         net->in_ctx = ctx;
115     }
116     else if (APR_BRIGADE_EMPTY(ctx->b)) {
117         return APR_EOF;
118     }
119
120     /* ### This is bad. */
121     BRIGADE_NORMALIZE(ctx->b);
122
123     /* check for empty brigade again *AFTER* BRIGADE_NORMALIZE()
124      * If we have lost our socket bucket (see above), we are EOF.
125      *
126      * Ideally, this should be returning SUCCESS with EOS bucket, but
127      * some higher-up APIs (spec. read_request_line via ap_rgetline)
128      * want an error code. */
129     if (APR_BRIGADE_EMPTY(ctx->b)) {
130         return APR_EOF;
131     }
132
133     if (mode == AP_MODE_GETLINE) {
134         /* we are reading a single LF line, e.g. the HTTP headers */
135         rv = apr_brigade_split_line(b, ctx->b, block, HUGE_STRING_LEN);
136         /* We should treat EAGAIN here the same as we do for EOF (brigade is
137          * empty).  We do this by returning whatever we have read.  This may
138          * or may not be bogus, but is consistent (for now) with EOF logic.
139          */
140         if (APR_STATUS_IS_EAGAIN(rv)) {
141             rv = APR_SUCCESS;
142         }
143         return rv;
144     }
145
146     /* ### AP_MODE_PEEK is a horrific name for this mode because we also
147      * eat any CRLFs that we see.  That's not the obvious intention of
148      * this mode.  Determine whether anyone actually uses this or not. */
149     if (mode == AP_MODE_EATCRLF) {
150         apr_bucket *e;
151         const char *c;
152
153         /* The purpose of this loop is to ignore any CRLF (or LF) at the end
154          * of a request.  Many browsers send extra lines at the end of POST
155          * requests.  We use the PEEK method to determine if there is more
156          * data on the socket, so that we know if we should delay sending the
157          * end of one request until we have served the second request in a
158          * pipelined situation.  We don't want to actually delay sending a
159          * response if the server finds a CRLF (or LF), becuause that doesn't
160          * mean that there is another request, just a blank line.
161          */
162         while (1) {
163             if (APR_BRIGADE_EMPTY(ctx->b))
164                 return APR_EOF;
165
166             e = APR_BRIGADE_FIRST(ctx->b);
167
168             rv = apr_bucket_read(e, &str, &len, APR_NONBLOCK_READ);
169
170             if (rv != APR_SUCCESS)
171                 return rv;
172
173             c = str;
174             while (c < str + len) {
175                 if (*c == APR_ASCII_LF)
176                     c++;
177                 else if (*c == APR_ASCII_CR && *(c + 1) == APR_ASCII_LF)
178                     c += 2;
179                 else
180                     return APR_SUCCESS;
181             }
182
183             /* If we reach here, we were a bucket just full of CRLFs, so
184              * just toss the bucket. */
185             /* FIXME: Is this the right thing to do in the core? */
186             apr_bucket_delete(e);
187         }
188         return APR_SUCCESS;
189     }
190
191     /* If mode is EXHAUSTIVE, we want to just read everything until the end
192      * of the brigade, which in this case means the end of the socket.
193      * To do this, we attach the brigade that has currently been setaside to
194      * the brigade that was passed down, and send that brigade back.
195      *
196      * NOTE:  This is VERY dangerous to use, and should only be done with
197      * extreme caution.  FWLIW, this would be needed by an MPM like Perchild;
198      * such an MPM can easily request the socket and all data that has been
199      * read, which means that it can pass it to the correct child process.
200      */
201     if (mode == AP_MODE_EXHAUSTIVE) {
202         apr_bucket *e;
203
204         /* Tack on any buckets that were set aside. */
205         APR_BRIGADE_CONCAT(b, ctx->b);
206
207         /* Since we've just added all potential buckets (which will most
208          * likely simply be the socket bucket) we know this is the end,
209          * so tack on an EOS too. */
210         /* We have read until the brigade was empty, so we know that we
211          * must be EOS. */
212         e = apr_bucket_eos_create(f->c->bucket_alloc);
213         APR_BRIGADE_INSERT_TAIL(b, e);
214         return APR_SUCCESS;
215     }
216
217     /* read up to the amount they specified. */
218     if (mode == AP_MODE_READBYTES || mode == AP_MODE_SPECULATIVE) {
219         apr_bucket *e;
220
221         AP_DEBUG_ASSERT(readbytes > 0);
222
223         e = APR_BRIGADE_FIRST(ctx->b);
224         rv = apr_bucket_read(e, &str, &len, block);
225
226         if (APR_STATUS_IS_EAGAIN(rv)) {
227             return APR_SUCCESS;
228         }
229         else if (rv != APR_SUCCESS) {
230             return rv;
231         }
232         else if (block == APR_BLOCK_READ && len == 0) {
233             /* We wanted to read some bytes in blocking mode.  We read
234              * 0 bytes.  Hence, we now assume we are EOS.
235              *
236              * When we are in normal mode, return an EOS bucket to the
237              * caller.
238              * When we are in speculative mode, leave ctx->b empty, so
239              * that the next call returns an EOS bucket.
240              */
241             apr_bucket_delete(e);
242
243             if (mode == AP_MODE_READBYTES) {
244                 e = apr_bucket_eos_create(f->c->bucket_alloc);
245                 APR_BRIGADE_INSERT_TAIL(b, e);
246             }
247             return APR_SUCCESS;
248         }
249
250         /* Have we read as much data as we wanted (be greedy)? */
251         if (len < readbytes) {
252             apr_size_t bucket_len;
253
254             rv = APR_SUCCESS;
255             /* We already registered the data in e in len */
256             e = APR_BUCKET_NEXT(e);
257             while ((len < readbytes) && (rv == APR_SUCCESS)
258                    && (e != APR_BRIGADE_SENTINEL(ctx->b))) {
259                 /* Check for the availability of buckets with known length */
260                 if (e->length != -1) {
261                     len += e->length;
262                     e = APR_BUCKET_NEXT(e);
263                 }
264                 else {
265                     /*
266                      * Read from bucket, but non blocking. If there isn't any
267                      * more data, well than this is fine as well, we will
268                      * not wait for more since we already got some and we are
269                      * only checking if there isn't more.
270                      */
271                     rv = apr_bucket_read(e, &str, &bucket_len,
272                                          APR_NONBLOCK_READ);
273                     if (rv == APR_SUCCESS) {
274                         len += bucket_len;
275                         e = APR_BUCKET_NEXT(e);
276                     }
277                 }
278             }
279         }
280
281         /* We can only return at most what we read. */
282         if (len < readbytes) {
283             readbytes = len;
284         }
285
286         rv = apr_brigade_partition(ctx->b, readbytes, &e);
287         if (rv != APR_SUCCESS) {
288             return rv;
289         }
290
291         /* Must do move before CONCAT */
292         ctx->tmpbb = apr_brigade_split_ex(ctx->b, e, ctx->tmpbb);
293
294         if (mode == AP_MODE_READBYTES) {
295             APR_BRIGADE_CONCAT(b, ctx->b);
296         }
297         else if (mode == AP_MODE_SPECULATIVE) {
298             apr_bucket *copy_bucket;
299
300             for (e = APR_BRIGADE_FIRST(ctx->b);
301                  e != APR_BRIGADE_SENTINEL(ctx->b);
302                  e = APR_BUCKET_NEXT(e))
303             {
304                 rv = apr_bucket_copy(e, &copy_bucket);
305                 if (rv != APR_SUCCESS) {
306                     return rv;
307                 }
308                 APR_BRIGADE_INSERT_TAIL(b, copy_bucket);
309             }
310         }
311
312         /* Take what was originally there and place it back on ctx->b */
313         APR_BRIGADE_CONCAT(ctx->b, ctx->tmpbb);
314     }
315     return APR_SUCCESS;
316 }
317
318 static void setaside_remaining_output(ap_filter_t *f,
319                                       core_output_filter_ctx_t *ctx,
320                                       apr_bucket_brigade *bb,
321                                       conn_rec *c);
322
323 static apr_status_t send_brigade_nonblocking(apr_socket_t *s,
324                                              apr_bucket_brigade *bb,
325                                              apr_size_t *bytes_written,
326                                              conn_rec *c);
327
328 static void remove_empty_buckets(apr_bucket_brigade *bb);
329
330 static apr_status_t send_brigade_blocking(apr_socket_t *s,
331                                           apr_bucket_brigade *bb,
332                                           apr_size_t *bytes_written,
333                                           conn_rec *c);
334
335 static apr_status_t writev_nonblocking(apr_socket_t *s,
336                                        struct iovec *vec, apr_size_t nvec,
337                                        apr_bucket_brigade *bb,
338                                        apr_size_t *cumulative_bytes_written,
339                                        conn_rec *c);
340
341 #if APR_HAS_SENDFILE
342 static apr_status_t sendfile_nonblocking(apr_socket_t *s,
343                                          apr_bucket *bucket,
344                                          apr_size_t *cumulative_bytes_written,
345                                          conn_rec *c);
346 #endif
347
348 /* XXX: Should these be configurable parameters? */
349 #define THRESHOLD_MIN_WRITE 4096
350 #define THRESHOLD_MAX_BUFFER 65536
351 #define MAX_REQUESTS_IN_PIPELINE 5
352
353 /* Optional function coming from mod_logio, used for logging of output
354  * traffic
355  */
356 extern APR_OPTIONAL_FN_TYPE(ap_logio_add_bytes_out) *ap__logio_add_bytes_out;
357
358 apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *new_bb)
359 {
360     conn_rec *c = f->c;
361     core_net_rec *net = f->ctx;
362     core_output_filter_ctx_t *ctx = net->out_ctx;
363     apr_bucket_brigade *bb = NULL;
364     apr_bucket *bucket, *next, *flush_upto = NULL;
365     apr_size_t bytes_in_brigade, non_file_bytes_in_brigade;
366     int eor_buckets_in_brigade;
367     apr_status_t rv;
368
369     /* Fail quickly if the connection has already been aborted. */
370     if (c->aborted) {
371         if (new_bb != NULL) {
372             apr_brigade_cleanup(new_bb);
373         }
374         return APR_ECONNABORTED;
375     }
376
377     if (ctx == NULL) {
378         ctx = apr_pcalloc(c->pool, sizeof(*ctx));
379         net->out_ctx = (core_output_filter_ctx_t *)ctx;
380         rv = apr_socket_opt_set(net->client_socket, APR_SO_NONBLOCK, 1);
381         if (rv != APR_SUCCESS) {
382             return rv;
383         }
384         /*
385          * Need to create tmp brigade with correct lifetime. Passing
386          * NULL to apr_brigade_split_ex would result in a brigade
387          * allocated from bb->pool which might be wrong.
388          */
389         ctx->tmp_flush_bb = apr_brigade_create(c->pool, c->bucket_alloc);
390         /* same for buffered_bb and ap_save_brigade */
391         ctx->buffered_bb = apr_brigade_create(c->pool, c->bucket_alloc);
392     }
393
394     if (new_bb != NULL) {
395         for (bucket = APR_BRIGADE_FIRST(new_bb); bucket != APR_BRIGADE_SENTINEL(new_bb); bucket = APR_BUCKET_NEXT(bucket)) {
396             if (bucket->length > 0) {
397                 ctx->bytes_in += bucket->length;
398             }
399         }
400         bb = new_bb;
401     }
402
403     if ((ctx->buffered_bb != NULL) &&
404         !APR_BRIGADE_EMPTY(ctx->buffered_bb)) {
405         if (new_bb != NULL) {
406             APR_BRIGADE_PREPEND(bb, ctx->buffered_bb);
407         }
408         else {
409             bb = ctx->buffered_bb;
410         }
411         c->data_in_output_filters = 0;
412     }
413     else if (new_bb == NULL) {
414         return APR_SUCCESS;
415     }
416
417     /* Scan through the brigade and decide whether to attempt a write,
418      * based on the following rules:
419      *
420      *  1) The new_bb is null: Do a nonblocking write of as much as
421      *     possible: do a nonblocking write of as much data as possible,
422      *     then save the rest in ctx->buffered_bb.  (If new_bb == NULL,
423      *     it probably means that the MPM is doing asynchronous write
424      *     completion and has just determined that this connection
425      *     is writable.)
426      *
427      *  2) The brigade contains a flush bucket: Do a blocking write
428      *     of everything up that point.
429      *
430      *  3) The request is in CONN_STATE_HANDLER state, and the brigade
431      *     contains at least THRESHOLD_MAX_BUFFER bytes in non-file
432      *     buckets: Do blocking writes until the amount of data in the
433      *     buffer is less than THRESHOLD_MAX_BUFFER.  (The point of this
434      *     rule is to provide flow control, in case a handler is
435      *     streaming out lots of data faster than the data can be
436      *     sent to the client.)
437      *
438      *  4) The request is in CONN_STATE_HANDLER state, and the brigade
439      *     contains at least MAX_REQUESTS_IN_PIPELINE EOR buckets:
440      *     Do blocking writes until less than MAX_REQUESTS_IN_PIPELINE EOR
441      *     buckets are left. (The point of this rule is to prevent too many
442      *     FDs being kept open by pipelined requests, possibly allowing a
443      *     DoS).
444      *
445      *  5) The brigade contains at least THRESHOLD_MIN_WRITE
446      *     bytes: Do a nonblocking write of as much data as possible,
447      *     then save the rest in ctx->buffered_bb.
448      */
449
450     if (new_bb == NULL) {
451         rv = send_brigade_nonblocking(net->client_socket, bb,
452                                       &(ctx->bytes_written), c);
453         if (APR_STATUS_IS_EAGAIN(rv)) {
454             rv = APR_SUCCESS;
455         }
456         else if (rv != APR_SUCCESS) {
457             /* The client has aborted the connection */
458             c->aborted = 1;
459         }
460         setaside_remaining_output(f, ctx, bb, c);
461         return rv;
462     }
463
464     bytes_in_brigade = 0;
465     non_file_bytes_in_brigade = 0;
466     eor_buckets_in_brigade = 0;
467     for (bucket = APR_BRIGADE_FIRST(bb); bucket != APR_BRIGADE_SENTINEL(bb);
468          bucket = next) {
469         next = APR_BUCKET_NEXT(bucket);
470
471         if (!APR_BUCKET_IS_METADATA(bucket)) {
472             if (bucket->length == (apr_size_t)-1) {
473                 const char *data;
474                 apr_size_t length;
475                 /* XXX support nonblocking read here? */
476                 rv = apr_bucket_read(bucket, &data, &length, APR_BLOCK_READ);
477                 if (rv != APR_SUCCESS) {
478                     return rv;
479                 }
480                 /* reading may have split the bucket, so recompute next: */
481                 next = APR_BUCKET_NEXT(bucket);
482             }
483             bytes_in_brigade += bucket->length;
484             if (!APR_BUCKET_IS_FILE(bucket)) {
485                 non_file_bytes_in_brigade += bucket->length;
486             }
487         }
488         else if (AP_BUCKET_IS_EOR(bucket)) {
489             eor_buckets_in_brigade++;
490         }
491
492         if (APR_BUCKET_IS_FLUSH(bucket)                         ||
493             (non_file_bytes_in_brigade >= THRESHOLD_MAX_BUFFER) ||
494             (eor_buckets_in_brigade > MAX_REQUESTS_IN_PIPELINE) )
495         {
496             if (APLOGctrace6(c)) {
497                 char *reason = APR_BUCKET_IS_FLUSH(bucket) ?
498                                "FLUSH bucket" :
499                                (non_file_bytes_in_brigade >= THRESHOLD_MAX_BUFFER) ?
500                                "THRESHOLD_MAX_BUFFER" :
501                                "MAX_REQUESTS_IN_PIPELINE";
502                 ap_log_cerror(APLOG_MARK, APLOG_TRACE6, 0, c,
503                               "core_output_filter: flushing because of %s",
504                               reason);
505             }
506             /*
507              * Defer the actual blocking write to avoid doing many writes.
508              */
509             flush_upto = next;
510
511             bytes_in_brigade = 0;
512             non_file_bytes_in_brigade = 0;
513             eor_buckets_in_brigade = 0;
514         }
515     }
516
517     if (flush_upto != NULL) {
518         ctx->tmp_flush_bb = apr_brigade_split_ex(bb, flush_upto,
519                                                  ctx->tmp_flush_bb);
520         rv = send_brigade_blocking(net->client_socket, bb,
521                                    &(ctx->bytes_written), c);
522         if (rv != APR_SUCCESS) {
523             /* The client has aborted the connection */
524             c->aborted = 1;
525             return rv;
526         }
527         APR_BRIGADE_CONCAT(bb, ctx->tmp_flush_bb);
528     }
529
530     if (bytes_in_brigade >= THRESHOLD_MIN_WRITE) {
531         rv = send_brigade_nonblocking(net->client_socket, bb,
532                                       &(ctx->bytes_written), c);
533         if ((rv != APR_SUCCESS) && (!APR_STATUS_IS_EAGAIN(rv))) {
534             /* The client has aborted the connection */
535             c->aborted = 1;
536             return rv;
537         }
538     }
539
540     setaside_remaining_output(f, ctx, bb, c);
541     return APR_SUCCESS;
542 }
543
544 /*
545  * This function assumes that either ctx->buffered_bb == NULL, or
546  * ctx->buffered_bb is empty, or ctx->buffered_bb == bb
547  */
548 static void setaside_remaining_output(ap_filter_t *f,
549                                       core_output_filter_ctx_t *ctx,
550                                       apr_bucket_brigade *bb,
551                                       conn_rec *c)
552 {
553     if (bb == NULL) {
554         return;
555     }
556     remove_empty_buckets(bb);
557     if (!APR_BRIGADE_EMPTY(bb)) {
558         c->data_in_output_filters = 1;
559         if (bb != ctx->buffered_bb) {
560             if (!ctx->deferred_write_pool) {
561                 apr_pool_create(&ctx->deferred_write_pool, c->pool);
562                 apr_pool_tag(ctx->deferred_write_pool, "deferred_write");
563             }
564             ap_save_brigade(f, &(ctx->buffered_bb), &bb,
565                             ctx->deferred_write_pool);
566             apr_brigade_cleanup(bb);
567         }
568     }
569     else if (ctx->deferred_write_pool) {
570         /*
571          * There are no more requests in the pipeline. We can just clear the
572          * pool.
573          */
574         apr_pool_clear(ctx->deferred_write_pool);
575     }
576 }
577
578 #ifndef APR_MAX_IOVEC_SIZE
579 #define MAX_IOVEC_TO_WRITE 16
580 #else
581 #if APR_MAX_IOVEC_SIZE > 16
582 #define MAX_IOVEC_TO_WRITE 16
583 #else
584 #define MAX_IOVEC_TO_WRITE APR_MAX_IOVEC_SIZE
585 #endif
586 #endif
587
588 static apr_status_t send_brigade_nonblocking(apr_socket_t *s,
589                                              apr_bucket_brigade *bb,
590                                              apr_size_t *bytes_written,
591                                              conn_rec *c)
592 {
593     apr_bucket *bucket, *next;
594     apr_status_t rv;
595     struct iovec vec[MAX_IOVEC_TO_WRITE];
596     apr_size_t nvec = 0;
597
598     remove_empty_buckets(bb);
599
600     for (bucket = APR_BRIGADE_FIRST(bb);
601          bucket != APR_BRIGADE_SENTINEL(bb);
602          bucket = next) {
603         next = APR_BUCKET_NEXT(bucket);
604 #if APR_HAS_SENDFILE
605         if (APR_BUCKET_IS_FILE(bucket)) {
606             apr_bucket_file *file_bucket = (apr_bucket_file *)(bucket->data);
607             apr_file_t *fd = file_bucket->fd;
608             /* Use sendfile to send this file unless:
609              *   - the platform doesn't support sendfile,
610              *   - the file is too small for sendfile to be useful, or
611              *   - sendfile is disabled in the httpd config via "EnableSendfile off"
612              */
613
614             if ((apr_file_flags_get(fd) & APR_SENDFILE_ENABLED) &&
615                 (bucket->length >= AP_MIN_SENDFILE_BYTES)) {
616                 if (nvec > 0) {
617                     (void)apr_socket_opt_set(s, APR_TCP_NOPUSH, 1);
618                     rv = writev_nonblocking(s, vec, nvec, bb, bytes_written, c);
619                     nvec = 0;
620                     if (rv != APR_SUCCESS) {
621                         (void)apr_socket_opt_set(s, APR_TCP_NOPUSH, 0);
622                         return rv;
623                     }
624                 }
625                 rv = sendfile_nonblocking(s, bucket, bytes_written, c);
626                 if (nvec > 0) {
627                     (void)apr_socket_opt_set(s, APR_TCP_NOPUSH, 0);
628                 }
629                 if (rv != APR_SUCCESS) {
630                     return rv;
631                 }
632                 break;
633             }
634         }
635 #endif /* APR_HAS_SENDFILE */
636         /* didn't sendfile */
637         if (!APR_BUCKET_IS_METADATA(bucket)) {
638             const char *data;
639             apr_size_t length;
640             rv = apr_bucket_read(bucket, &data, &length, APR_BLOCK_READ);
641             if (rv != APR_SUCCESS) {
642                 return rv;
643             }
644             /* reading may have split the bucket, so recompute next: */
645             next = APR_BUCKET_NEXT(bucket);
646             vec[nvec].iov_base = (char *)data;
647             vec[nvec].iov_len = length;
648             nvec++;
649             if (nvec == MAX_IOVEC_TO_WRITE) {
650                 rv = writev_nonblocking(s, vec, nvec, bb, bytes_written, c);
651                 nvec = 0;
652                 if (rv != APR_SUCCESS) {
653                     return rv;
654                 }
655                 break;
656             }
657         }
658     }
659
660     if (nvec > 0) {
661         rv = writev_nonblocking(s, vec, nvec, bb, bytes_written, c);
662         if (rv != APR_SUCCESS) {
663             return rv;
664         }
665     }
666
667     remove_empty_buckets(bb);
668
669     return APR_SUCCESS;
670 }
671
672 static void remove_empty_buckets(apr_bucket_brigade *bb)
673 {
674     apr_bucket *bucket;
675     while (((bucket = APR_BRIGADE_FIRST(bb)) != APR_BRIGADE_SENTINEL(bb)) &&
676            (APR_BUCKET_IS_METADATA(bucket) || (bucket->length == 0))) {
677         APR_BUCKET_REMOVE(bucket);
678         apr_bucket_destroy(bucket);
679     }
680 }
681
682 static apr_status_t send_brigade_blocking(apr_socket_t *s,
683                                           apr_bucket_brigade *bb,
684                                           apr_size_t *bytes_written,
685                                           conn_rec *c)
686 {
687     apr_status_t rv;
688
689     rv = APR_SUCCESS;
690     while (!APR_BRIGADE_EMPTY(bb)) {
691         rv = send_brigade_nonblocking(s, bb, bytes_written, c);
692         if (rv != APR_SUCCESS) {
693             if (APR_STATUS_IS_EAGAIN(rv)) {
694                 /* Wait until we can send more data */
695                 apr_int32_t nsds;
696                 apr_interval_time_t timeout;
697                 apr_pollfd_t pollset;
698
699                 pollset.p = c->pool;
700                 pollset.desc_type = APR_POLL_SOCKET;
701                 pollset.reqevents = APR_POLLOUT;
702                 pollset.desc.s = s;
703                 apr_socket_timeout_get(s, &timeout);
704                 rv = apr_poll(&pollset, 1, &nsds, timeout);
705                 if (rv != APR_SUCCESS) {
706                     break;
707                 }
708             }
709             else {
710                 break;
711             }
712         }
713     }
714     return rv;
715 }
716
717 static apr_status_t writev_nonblocking(apr_socket_t *s,
718                                        struct iovec *vec, apr_size_t nvec,
719                                        apr_bucket_brigade *bb,
720                                        apr_size_t *cumulative_bytes_written,
721                                        conn_rec *c)
722 {
723     apr_status_t rv = APR_SUCCESS, arv;
724     apr_size_t bytes_written = 0, bytes_to_write = 0;
725     apr_size_t i, offset;
726     apr_interval_time_t old_timeout;
727
728     arv = apr_socket_timeout_get(s, &old_timeout);
729     if (arv != APR_SUCCESS) {
730         return arv;
731     }
732     arv = apr_socket_timeout_set(s, 0);
733     if (arv != APR_SUCCESS) {
734         return arv;
735     }
736
737     for (i = 0; i < nvec; i++) {
738         bytes_to_write += vec[i].iov_len;
739     }
740     offset = 0;
741     while (bytes_written < bytes_to_write) {
742         apr_size_t n = 0;
743         rv = apr_socket_sendv(s, vec + offset, nvec - offset, &n);
744         if (n > 0) {
745             bytes_written += n;
746             for (i = offset; i < nvec; ) {
747                 apr_bucket *bucket = APR_BRIGADE_FIRST(bb);
748                 if (APR_BUCKET_IS_METADATA(bucket)) {
749                     APR_BUCKET_REMOVE(bucket);
750                     apr_bucket_destroy(bucket);
751                 }
752                 else if (n >= vec[i].iov_len) {
753                     APR_BUCKET_REMOVE(bucket);
754                     apr_bucket_destroy(bucket);
755                     offset++;
756                     n -= vec[i++].iov_len;
757                 }
758                 else {
759                     apr_bucket_split(bucket, n);
760                     APR_BUCKET_REMOVE(bucket);
761                     apr_bucket_destroy(bucket);
762                     vec[i].iov_len -= n;
763                     vec[i].iov_base = (char *) vec[i].iov_base + n;
764                     break;
765                 }
766             }
767         }
768         if (rv != APR_SUCCESS) {
769             break;
770         }
771     }
772     if ((ap__logio_add_bytes_out != NULL) && (bytes_written > 0)) {
773         ap__logio_add_bytes_out(c, bytes_written);
774     }
775     *cumulative_bytes_written += bytes_written;
776
777     arv = apr_socket_timeout_set(s, old_timeout);
778     if ((arv != APR_SUCCESS) && (rv == APR_SUCCESS)) {
779         return arv;
780     }
781     else {
782         return rv;
783     }
784 }
785
786 #if APR_HAS_SENDFILE
787
788 static apr_status_t sendfile_nonblocking(apr_socket_t *s,
789                                          apr_bucket *bucket,
790                                          apr_size_t *cumulative_bytes_written,
791                                          conn_rec *c)
792 {
793     apr_status_t rv = APR_SUCCESS;
794     apr_bucket_file *file_bucket;
795     apr_file_t *fd;
796     apr_size_t file_length;
797     apr_off_t file_offset;
798     apr_size_t bytes_written = 0;
799
800     if (!APR_BUCKET_IS_FILE(bucket)) {
801         ap_log_error(APLOG_MARK, APLOG_ERR, rv, c->base_server,
802                      "core_filter: sendfile_nonblocking: "
803                      "this should never happen");
804         return APR_EGENERAL;
805     }
806     file_bucket = (apr_bucket_file *)(bucket->data);
807     fd = file_bucket->fd;
808     file_length = bucket->length;
809     file_offset = bucket->start;
810
811     if (bytes_written < file_length) {
812         apr_size_t n = file_length - bytes_written;
813         apr_status_t arv;
814         apr_interval_time_t old_timeout;
815
816         arv = apr_socket_timeout_get(s, &old_timeout);
817         if (arv != APR_SUCCESS) {
818             return arv;
819         }
820         arv = apr_socket_timeout_set(s, 0);
821         if (arv != APR_SUCCESS) {
822             return arv;
823         }
824         rv = apr_socket_sendfile(s, fd, NULL, &file_offset, &n, 0);
825         if (rv == APR_SUCCESS) {
826             bytes_written += n;
827             file_offset += n;
828         }
829         arv = apr_socket_timeout_set(s, old_timeout);
830         if ((arv != APR_SUCCESS) && (rv == APR_SUCCESS)) {
831             rv = arv;
832         }
833     }
834     if ((ap__logio_add_bytes_out != NULL) && (bytes_written > 0)) {
835         ap__logio_add_bytes_out(c, bytes_written);
836     }
837     *cumulative_bytes_written += bytes_written;
838     if ((bytes_written < file_length) && (bytes_written > 0)) {
839         apr_bucket_split(bucket, bytes_written);
840         APR_BUCKET_REMOVE(bucket);
841         apr_bucket_destroy(bucket);
842     }
843     else if (bytes_written == file_length) {
844         APR_BUCKET_REMOVE(bucket);
845         apr_bucket_destroy(bucket);
846     }
847     return rv;
848 }
849
850 #endif