home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277273_mod_proxy.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  9KB  |  254 lines

  1. /* Copyright 1999-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef MOD_PROXY_H
  17. #define MOD_PROXY_H 
  18.  
  19. /*
  20.  * Main include file for the Apache proxy
  21.  */
  22.  
  23. /*
  24.  
  25.    Also note numerous FIXMEs and CHECKMEs which should be eliminated.
  26.  
  27.    This code is once again experimental!
  28.  
  29.    Things to do:
  30.  
  31.    1. Make it completely work (for FTP too)
  32.  
  33.    2. HTTP/1.1
  34.  
  35.    Chuck Murcko <chuck@topsail.org> 02-06-01
  36.  
  37.  */
  38.  
  39. #define CORE_PRIVATE
  40.  
  41. #include "apr_hooks.h"
  42. #include "apr.h"
  43. #include "apr_lib.h"
  44. #include "apr_strings.h"
  45. #include "apr_buckets.h"
  46. #include "apr_md5.h"
  47. #include "apr_network_io.h"
  48. #include "apr_pools.h"
  49. #include "apr_strings.h"
  50. #include "apr_uri.h"
  51. #include "apr_date.h"
  52. #include "apr_fnmatch.h"
  53. #define APR_WANT_STRFUNC
  54. #include "apr_want.h"
  55.  
  56. #include "httpd.h"
  57. #include "http_config.h"
  58. #include "ap_config.h"
  59. #include "http_core.h"
  60. #include "http_protocol.h"
  61. #include "http_request.h"
  62. #include "http_vhost.h"
  63. #include "http_main.h"
  64. #include "http_log.h"
  65. #include "http_connection.h"
  66. #include "util_filter.h"
  67. #include "util_ebcdic.h"
  68.  
  69. #if APR_HAVE_NETINET_IN_H
  70. #include <netinet/in.h>
  71. #endif
  72. #if APR_HAVE_ARPA_INET_H
  73. #include <arpa/inet.h>
  74. #endif
  75.  
  76. /* for proxy_canonenc() */
  77. enum enctype {
  78.     enc_path, enc_search, enc_user, enc_fpath, enc_parm
  79. };
  80.  
  81. #if APR_CHARSET_EBCDIC
  82. #define CRLF   "\r\n"
  83. #else /*APR_CHARSET_EBCDIC*/
  84. #define CRLF   "\015\012"
  85. #endif /*APR_CHARSET_EBCDIC*/
  86.  
  87. /* default Max-Forwards header setting */
  88. #define DEFAULT_MAX_FORWARDS    10
  89.  
  90. /* static information about a remote proxy */
  91. struct proxy_remote {
  92.     const char *scheme;        /* the schemes handled by this proxy, or '*' */
  93.     const char *protocol;    /* the scheme used to talk to this proxy */
  94.     const char *hostname;    /* the hostname of this proxy */
  95.     apr_port_t  port;        /* the port for this proxy */
  96.     regex_t *regexp;        /* compiled regex (if any) for the remote */
  97.     int use_regex;        /* simple boolean. True if we have a regex pattern */
  98. };
  99.  
  100. struct proxy_alias {
  101.     const char *real;
  102.     const char *fake;
  103. };
  104.  
  105. struct dirconn_entry {
  106.     char *name;
  107.     struct in_addr addr, mask;
  108.     struct apr_sockaddr_t *hostaddr;
  109.     int (*matcher) (struct dirconn_entry * This, request_rec *r);
  110. };
  111.  
  112. struct noproxy_entry {
  113.     const char *name;
  114.     struct apr_sockaddr_t *addr;
  115. };
  116.  
  117. typedef struct {
  118.     apr_array_header_t *proxies;
  119.     apr_array_header_t *sec_proxy;
  120.     apr_array_header_t *aliases;
  121.     apr_array_header_t *raliases;
  122.     apr_array_header_t *noproxies;
  123.     apr_array_header_t *dirconn;
  124.     apr_array_header_t *allowed_connect_ports;
  125.     const char *domain;        /* domain name to use in absence of a domain name in the request */
  126.     int req;            /* true if proxy requests are enabled */
  127.     char req_set;
  128.     enum {
  129.       via_off,
  130.       via_on,
  131.       via_block,
  132.       via_full
  133.     } viaopt;                   /* how to deal with proxy Via: headers */
  134.     char viaopt_set;
  135.     apr_size_t recv_buffer_size;
  136.     char recv_buffer_size_set;
  137.     apr_size_t io_buffer_size;
  138.     char io_buffer_size_set;
  139.     long maxfwd;
  140.     char maxfwd_set;
  141.     /** 
  142.      * the following setting masks the error page
  143.      * returned from the 'proxied server' and just 
  144.      * forwards the status code upwards.
  145.      * This allows the main server (us) to generate
  146.      * the error page, (so it will look like a error
  147.      * returned from the rest of the system 
  148.      */
  149.     int error_override;
  150.     int error_override_set;
  151.     int preserve_host;
  152.     int preserve_host_set;
  153.     apr_interval_time_t timeout;
  154.     apr_interval_time_t timeout_set;
  155.     enum {
  156.       bad_error,
  157.       bad_ignore,
  158.       bad_body
  159.     } badopt;                   /* how to deal with bad headers */
  160.     char badopt_set;
  161.  
  162. } proxy_server_conf;
  163.  
  164. typedef struct {
  165.     const char *p;            /* The path */
  166.     int         p_is_fnmatch; /* Is this path an fnmatch candidate? */
  167.     regex_t    *r;            /* Is this a regex? */
  168. } proxy_dir_conf;
  169.  
  170. typedef struct {
  171.     conn_rec *connection;
  172.     char *hostname;
  173.     apr_port_t port;
  174.     int is_ssl;
  175. } proxy_conn_rec;
  176.  
  177. typedef struct {
  178.         float cache_completion; /* completion percentage */
  179.         int content_length; /* length of the content */
  180. } proxy_completion;
  181.  
  182.  
  183. /* hooks */
  184.  
  185. /* Create a set of PROXY_DECLARE(type), PROXY_DECLARE_NONSTD(type) and 
  186.  * PROXY_DECLARE_DATA with appropriate export and import tags for the platform
  187.  */
  188. #if !defined(WIN32)
  189. #define PROXY_DECLARE(type)            type
  190. #define PROXY_DECLARE_NONSTD(type)     type
  191. #define PROXY_DECLARE_DATA
  192. #elif defined(PROXY_DECLARE_STATIC)
  193. #define PROXY_DECLARE(type)            type __stdcall
  194. #define PROXY_DECLARE_NONSTD(type)     type
  195. #define PROXY_DECLARE_DATA
  196. #elif defined(PROXY_DECLARE_EXPORT)
  197. #define PROXY_DECLARE(type)            __declspec(dllexport) type __stdcall
  198. #define PROXY_DECLARE_NONSTD(type)     __declspec(dllexport) type
  199. #define PROXY_DECLARE_DATA             __declspec(dllexport)
  200. #else
  201. #define PROXY_DECLARE(type)            __declspec(dllimport) type __stdcall
  202. #define PROXY_DECLARE_NONSTD(type)     __declspec(dllimport) type
  203. #define PROXY_DECLARE_DATA             __declspec(dllimport)
  204. #endif
  205.  
  206. /**
  207.  * Hook an optional proxy hook.  Unlike static hooks, this uses a macro
  208.  * instead of a function.
  209.  */
  210. #define PROXY_OPTIONAL_HOOK(name,fn,pre,succ,order) \
  211.         APR_OPTIONAL_HOOK(proxy,name,fn,pre,succ,order)
  212.  
  213. APR_DECLARE_EXTERNAL_HOOK(proxy, PROXY, int, scheme_handler, (request_rec *r, 
  214.                           proxy_server_conf *conf, char *url, 
  215.                           const char *proxyhost, apr_port_t proxyport))
  216. APR_DECLARE_EXTERNAL_HOOK(proxy, PROXY, int, canon_handler, (request_rec *r, 
  217.                           char *url))
  218.  
  219. APR_DECLARE_EXTERNAL_HOOK(proxy, PROXY, int, create_req, (request_rec *r, request_rec *pr))
  220. APR_DECLARE_EXTERNAL_HOOK(proxy, PROXY, int, fixups, (request_rec *r)) 
  221.  
  222. /* proxy_util.c */
  223.  
  224. PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r);
  225. PROXY_DECLARE(int) ap_proxy_hex2c(const char *x);
  226. PROXY_DECLARE(void) ap_proxy_c2hex(int ch, char *x);
  227. PROXY_DECLARE(char *)ap_proxy_canonenc(apr_pool_t *p, const char *x, int len, enum enctype t,
  228.             int isenc);
  229. PROXY_DECLARE(char *)ap_proxy_canon_netloc(apr_pool_t *p, char **const urlp, char **userp,
  230.              char **passwordp, char **hostp, apr_port_t *port);
  231. PROXY_DECLARE(const char *)ap_proxy_date_canon(apr_pool_t *p, const char *x);
  232. PROXY_DECLARE(apr_table_t *)ap_proxy_read_headers(request_rec *r, request_rec *rp, char *buffer, int size, conn_rec *c);
  233. PROXY_DECLARE(int) ap_proxy_liststr(const char *list, const char *val);
  234. PROXY_DECLARE(char *)ap_proxy_removestr(apr_pool_t *pool, const char *list, const char *val);
  235. PROXY_DECLARE(int) ap_proxy_hex2sec(const char *x);
  236. PROXY_DECLARE(void) ap_proxy_sec2hex(int t, char *y);
  237. PROXY_DECLARE(int) ap_proxyerror(request_rec *r, int statuscode, const char *message);
  238. PROXY_DECLARE(int) ap_proxy_is_ipaddr(struct dirconn_entry *This, apr_pool_t *p);
  239. PROXY_DECLARE(int) ap_proxy_is_domainname(struct dirconn_entry *This, apr_pool_t *p);
  240. PROXY_DECLARE(int) ap_proxy_is_hostname(struct dirconn_entry *This, apr_pool_t *p);
  241. PROXY_DECLARE(int) ap_proxy_is_word(struct dirconn_entry *This, apr_pool_t *p);
  242. PROXY_DECLARE(int) ap_proxy_checkproxyblock(request_rec *r, proxy_server_conf *conf, apr_sockaddr_t *uri_addr);
  243. PROXY_DECLARE(int) ap_proxy_pre_http_request(conn_rec *c, request_rec *r);
  244. PROXY_DECLARE(apr_status_t) ap_proxy_string_read(conn_rec *c, apr_bucket_brigade *bb, char *buff, size_t bufflen, int *eos);
  245. PROXY_DECLARE(void) ap_proxy_table_unmerge(apr_pool_t *p, apr_table_t *t, char *key);
  246. PROXY_DECLARE(int) ap_proxy_connect_to_backend(apr_socket_t **, const char *, apr_sockaddr_t *, const char *, proxy_server_conf *, server_rec *, apr_pool_t *);
  247. PROXY_DECLARE(int) ap_proxy_ssl_enable(conn_rec *c);
  248. PROXY_DECLARE(int) ap_proxy_ssl_disable(conn_rec *c);
  249.  
  250. /* For proxy_util */
  251. extern module AP_MODULE_DECLARE_DATA proxy_module;
  252.  
  253. #endif /*MOD_PROXY_H*/
  254.