Apache HTTPD
apr_buckets_pipe.c
Go to the documentation of this file.
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 "apr_buckets.h"
18
21{
22 apr_file_t *p = a->data;
23 char *buf;
24 apr_status_t rv;
26
27 if (block == APR_NONBLOCK_READ) {
30 }
31
32 *str = NULL;
34 buf = apr_bucket_alloc(*len, a->list); /* XXX: check for failure? */
35
36 rv = apr_file_read(p, buf, len);
37
38 if (block == APR_NONBLOCK_READ) {
40 }
41
42 if (rv != APR_SUCCESS && rv != APR_EOF) {
44 return rv;
45 }
46 /*
47 * If there's more to read we have to keep the rest of the pipe
48 * for later. Otherwise, we'll close the pipe.
49 * XXX: Note that more complicated bucket types that
50 * refer to data not in memory and must therefore have a read()
51 * function similar to this one should be wary of copying this
52 * code because if they have a destroy function they probably
53 * want to migrate the bucket's subordinate structure from the
54 * old bucket to a raw new one and adjust it as appropriate,
55 * rather than destroying the old one and creating a completely
56 * new bucket.
57 */
58 if (*len > 0) {
60 /* Change the current bucket to refer to what we read */
62 h = a->data;
63 h->alloc_len = APR_BUCKET_BUFF_SIZE; /* note the real buffer size */
64 *str = buf;
66 }
67 else {
70 *str = a->data;
71 if (rv == APR_EOF) {
73 }
74 }
75 return APR_SUCCESS;
76}
77
79{
80 /*
81 * A pipe is closed when the end is reached in pipe_bucket_read(). If
82 * the pipe isn't read to the end (e.g., error path), the pipe will be
83 * closed when its pool goes away.
84 *
85 * Note that typically the pipe is allocated from the request pool
86 * so it will disappear when the request is finished. However the
87 * core filter may decide to set aside the tail end of a CGI
88 * response if the connection is pipelined. This turns out not to
89 * be a problem because the core will have read to the end of the
90 * stream so the bucket(s) that it sets aside will be the heap
91 * buckets created by pipe_bucket_read() above.
92 */
93 b->type = &apr_bucket_type_pipe;
94 b->length = (apr_size_t)(-1);
95 b->start = -1;
96 b->data = p;
97
98 return b;
99}
100
103{
104 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
105
107 b->free = apr_bucket_free;
108 b->list = list;
109 return apr_bucket_pipe_make(b, p);
110}
111
const char apr_size_t len
Definition ap_regex.h:187
APR-UTIL Buckets/Bucket Brigades.
static apr_status_t pipe_bucket_read(apr_bucket *a, const char **str, apr_size_t *len, apr_read_type_e block)
APU_DECLARE(void)
Computes SipHash-2-4, producing a 64bit (APR_SIPHASH_DSIZE) hash from a message and a 128bit (APR_SIP...
Definition apr_sha1.c:206
const unsigned char * buf
Definition util_md5.h:50
#define APR_EOF
Definition apr_errno.h:461
#define APR_BUCKET_INIT(e)
APU_DECLARE_DATA const apr_bucket_type_t apr_bucket_type_pipe
#define APR_BUCKET_INSERT_AFTER(a, b)
apr_read_type_e
Definition apr_buckets.h:57
#define APR_BUCKET_BUFF_SIZE
Definition apr_buckets.h:54
apr_bucket apr_bucket_brigade * a
@ APR_NONBLOCK_READ
Definition apr_buckets.h:59
apr_size_t size
const apr_array_header_t * list
Definition apr_cstr.h:105
#define APR_SUCCESS
Definition apr_errno.h:225
int apr_status_t
Definition apr_errno.h:44
const apr_hash_t * h
Definition apr_hash.h:97
apr_pool_t * b
Definition apr_pools.h:529
apr_int64_t apr_interval_time_t
Definition apr_time.h:55
apr_pool_t * p
Definition md_event.c:32
return NULL
Definition mod_so.c:359
apr_bucket_alloc_t * list
void * data
#define str
IN ULONG IN INT timeout