util_filter.c revision 3d81f57512275ca06a60a9bcbd23c1f8b429fdf2
/* Copyright 2000-2006 The Apache Software Foundation or its licensors, as
* applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "apr_lib.h"
#include "apr_hash.h"
#include "apr_strings.h"
#include "httpd.h"
#include "http_log.h"
#include "util_filter.h"
/* NOTE: Apache's current design doesn't allow a pool to be passed thru,
so we depend on a global to hold the correct pool
*/
#define FILTER_POOL apr_hook_global_pool
#include "apr_hooks.h" /* for apr_hook_global_pool */
/*
** another filter. This will happen when one of: 1) there isn't another
** filter; 2) that filter has a higher filter type (class); 3) that filter
** corresponds to a different request.
*/
|| (before_this)->r != (f)->r)
/* Trie structure to hold the mapping from registered
* filter names to filters
*/
typedef struct filter_trie_node filter_trie_node;
typedef struct {
int c;
/* Each trie node has an array of pointers to its children.
* The array is kept in sorted order so that add_any_filter()
* can do a binary search
*/
struct filter_trie_node {
int nchildren;
int size;
};
#define TRIE_INITIAL_SIZE 4
/* Link a trie node to its parent
*/
filter_trie_node *child, int c)
{
int i, j;
sizeof(filter_trie_child_ptr));
sizeof(filter_trie_child_ptr));
}
return;
}
break;
}
}
}
}
/* Allocate a new node for a trie.
* If parent is non-NULL, link the new node under the parent node with
* key 'c' (or, if an existing child node matches, return that one)
*/
filter_trie_node *parent, char c)
{
if (parent) {
int i;
}
break;
}
}
new_node =
}
else { /* No parent node */
sizeof(filter_trie_node));
}
return new_node;
}
{
return APR_SUCCESS;
}
const filter_trie_node *filter_set)
{
if (filter_set) {
const char *n;
const filter_trie_node *node;
node = filter_set;
for (n = name; *n; n++) {
start = 0;
if (*n == ch) {
break;
}
else if (*n < ch) {
}
else {
}
}
break;
}
}
}
}
return NULL;
}
{
}
{
}
{
char *normalized_name;
const char *n;
if (!*reg_filter_set) {
}
node = *reg_filter_set;
for (n = normalized_name; *n; n++) {
if (apr_isalpha(*n)) {
}
}
}
else {
}
return frec;
}
{
f.in_func = filter_func;
}
{
filter_init, ftype, 0);
}
const char *name,
unsigned int proto_flags)
{
f.out_func = filter_func;
return ret ;
}
request_rec *r, conn_rec *c,
{
ap_filter_t *f = apr_palloc(p, sizeof(*f));
ap_filter_t **outf;
if (r) {
}
else {
return NULL;
}
}
if (r) {
}
else {
return NULL;
}
}
else {
}
f->r = r;
f->c = c;
if (INSERT_BEFORE(f, *outf)) {
if (*outf) {
if (r) {
/* If we are adding our first non-connection filter,
* Then don't try to find the right location, it is
* automatically first.
*/
}
}
}
}
}
*outf = f;
}
else {
}
}
return f;
}
request_rec *r, conn_rec *c,
const filter_trie_node *reg_filter_set,
{
if (reg_filter_set) {
const char *n;
const filter_trie_node *node;
for (n = name; *n; n++) {
start = 0;
if (*n == ch) {
break;
}
else if (*n < ch) {
}
else {
}
}
break;
}
}
}
}
"an unknown filter was not added: %s", name);
return NULL;
}
request_rec *r, conn_rec *c)
{
r ? &r->input_filters : NULL,
}
void *ctx,
request_rec *r,
conn_rec *c)
{
r ? &r->proto_input_filters : NULL,
&c->input_filters);
}
request_rec *r, conn_rec *c)
{
r ? &r->output_filters : NULL,
}
void *ctx,
request_rec *r,
conn_rec *c)
{
r ? &r->proto_output_filters : NULL,
&c->output_filters);
}
{
if (*curr == f) {
return;
}
return;
}
}
}
{
f->r ? &f->r->proto_input_filters : NULL,
&f->c->input_filters);
}
{
f->r ? &f->r->proto_output_filters : NULL,
&f->c->output_filters);
}
/*
* Read data from the next filter in the filter stack. Data should be
* modified in the bucket brigade that is passed in. The core allocates the
* bucket brigade, modules that wish to replace large chunks of data or to
* save data off to the side should probably create their own temporary
* brigade especially for that use.
*/
{
if (next) {
}
return AP_NOBODY_READ;
}
/* Pass the buckets to the next filter in the filter stack. If the
* current filter is a handler, we should get NULL passed in instead of
* the current filter. At that point, we can just call the first filter in
* the stack, or r->output_filters.
*/
{
if (next) {
apr_bucket *e;
/* This is only safe because HTTP_HEADER filter is always in
* the filter stack. This ensures that there is ALWAYS a
* request-based filter that we can attach this to. If the
* HTTP_FILTER is removed, and another filter is not put in its
* place, then handlers like mod_cgi, which attach their own
* EOS bucket to the brigade will be broken, because we will
* get two EOS buckets on the same request.
*/
/* remember the eos for internal redirects, too */
while (prev) {
}
}
}
}
return AP_NOBODY_WROTE;
}
apr_bucket_brigade **b, apr_pool_t *p)
{
apr_bucket *e;
/* If have never stored any data in the filter, then we had better
* create an empty bucket brigade so that we can concat.
*/
if (!(*saveto)) {
}
for (e = APR_BRIGADE_FIRST(*b);
e != APR_BRIGADE_SENTINEL(*b);
e = APR_BUCKET_NEXT(e))
{
rv = apr_bucket_setaside(e, p);
/* If the bucket type does not implement setaside, then
* (hopefully) morph it into a bucket type which does, and set
* *that* aside... */
if (rv == APR_ENOTIMPL) {
const char *s;
apr_size_t n;
if (rv == APR_SUCCESS) {
rv = apr_bucket_setaside(e, p);
}
}
if (rv != APR_SUCCESS) {
/* Return an error but still save the brigade if
* ->setaside() is really not implemented. */
if (rv != APR_ENOTIMPL) {
return rv;
}
}
}
APR_BRIGADE_CONCAT(*saveto, *b);
return srv;
}
void *ctx)
{
ap_filter_t *f = ctx;
return ap_pass_brigade(f, bb);
}
{
apr_bucket *b;
b = apr_bucket_flush_create(f->c->bucket_alloc);
return ap_pass_brigade(f, bb);
}
apr_bucket_brigade *bb, ...)
{
return rv;
}
const char *fmt,
...)
{
return rv;
}
{
}