[fcb122d] | 1 | /** |
---|
| 2 | * Copyright 2004-2005 Paul Querna |
---|
[7e2b223] | 3 | * |
---|
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
---|
| 5 | * you may not use this file except in compliance with the License. |
---|
| 6 | * 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 | |
---|
[3b4c0d0] | 18 | /* Apache Runtime Headers */ |
---|
[7e2b223] | 19 | #include "httpd.h" |
---|
| 20 | #include "http_config.h" |
---|
| 21 | #include "http_protocol.h" |
---|
| 22 | #include "http_connection.h" |
---|
[76bd3bf] | 23 | #include "http_request.h" |
---|
[7e2b223] | 24 | #include "http_core.h" |
---|
| 25 | #include "http_log.h" |
---|
| 26 | #include "apr_buckets.h" |
---|
| 27 | #include "apr_strings.h" |
---|
| 28 | #include "apr_tables.h" |
---|
[482f47f] | 29 | #include "ap_release.h" |
---|
[9ddaa29] | 30 | #include "apr_fnmatch.h" |
---|
[3b4c0d0] | 31 | /* GnuTLS Library Headers */ |
---|
[31645b2] | 32 | #include <gnutls/gnutls.h> |
---|
[3596d6a] | 33 | #if GNUTLS_VERSION_MAJOR == 2 |
---|
[e5bbda4] | 34 | #include <gnutls/extra.h> |
---|
[3596d6a] | 35 | #endif |
---|
[e5bbda4] | 36 | #include <gnutls/openpgp.h> |
---|
[31645b2] | 37 | #include <gnutls/x509.h> |
---|
| 38 | |
---|
[05d56ce] | 39 | #ifndef __mod_gnutls_h_inc |
---|
| 40 | #define __mod_gnutls_h_inc |
---|
| 41 | |
---|
[6e0bfd6] | 42 | #define HAVE_APR_MEMCACHE @have_apr_memcache@ |
---|
[a66e147] | 43 | |
---|
[6d4de37] | 44 | extern module AP_MODULE_DECLARE_DATA gnutls_module; |
---|
[7e2b223] | 45 | |
---|
[3b4c0d0] | 46 | /* IO Filter names */ |
---|
[7e2b223] | 47 | #define GNUTLS_OUTPUT_FILTER_NAME "gnutls_output_filter" |
---|
| 48 | #define GNUTLS_INPUT_FILTER_NAME "gnutls_input_filter" |
---|
[3b4c0d0] | 49 | /* GnuTLS Constants */ |
---|
[7e2b223] | 50 | #define GNUTLS_ENABLED_FALSE 0 |
---|
| 51 | #define GNUTLS_ENABLED_TRUE 1 |
---|
[040387c] | 52 | #define GNUTLS_ENABLED_UNSET 2 |
---|
[3b4c0d0] | 53 | /* Current module version */ |
---|
[032ff02] | 54 | #define MOD_GNUTLS_VERSION "@MOD_GNUTLS_VERSION@" |
---|
| 55 | |
---|
[3b4c0d0] | 56 | /* Module Debug Mode */ |
---|
[032ff02] | 57 | #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ |
---|
[3b4c0d0] | 58 | |
---|
[671b64f] | 59 | /* |
---|
| 60 | * Recent Versions of 2.1 renamed several hooks. |
---|
| 61 | * This allows us to compile on 2.0.xx |
---|
[3b4c0d0] | 62 | */ |
---|
[7e67487] | 63 | #if AP_SERVER_MINORVERSION_NUMBER >= 2 || (AP_SERVER_MINORVERSION_NUMBER == 1 && AP_SERVER_PATCHLEVEL_NUMBER >= 3) |
---|
[3b4c0d0] | 64 | #define USING_2_1_RECENT 1 |
---|
[7c05ed1] | 65 | #else |
---|
[3b4c0d0] | 66 | #define USING_2_1_RECENT 0 |
---|
[671b64f] | 67 | #endif |
---|
[482f47f] | 68 | |
---|
[3b4c0d0] | 69 | /* mod_gnutls Cache Types */ |
---|
| 70 | typedef enum { |
---|
| 71 | /* No Cache */ |
---|
[c301152] | 72 | mgs_cache_none, |
---|
[3b4c0d0] | 73 | /* Use Old Berkley DB */ |
---|
[c301152] | 74 | mgs_cache_dbm, |
---|
[3b4c0d0] | 75 | /* Use Gnu's version of Berkley DB */ |
---|
[d8c7cf4] | 76 | mgs_cache_gdbm, |
---|
[fcb122d] | 77 | #if HAVE_APR_MEMCACHE |
---|
[3b4c0d0] | 78 | /* Use Memcache */ |
---|
[040387c] | 79 | mgs_cache_memcache, |
---|
[2e12226] | 80 | #endif |
---|
[040387c] | 81 | mgs_cache_unset |
---|
[c301152] | 82 | } mgs_cache_e; |
---|
[2e12226] | 83 | |
---|
[cf2b905] | 84 | typedef enum { |
---|
| 85 | mgs_cvm_unset, |
---|
| 86 | mgs_cvm_cartel, |
---|
| 87 | mgs_cvm_msva |
---|
| 88 | } mgs_client_verification_method_e; |
---|
| 89 | |
---|
| 90 | |
---|
[3b4c0d0] | 91 | /* Directory Configuration Record */ |
---|
| 92 | typedef struct { |
---|
[e924ddd] | 93 | int client_verify_mode; |
---|
[84cb5b2] | 94 | const char* lua_bytecode; |
---|
| 95 | apr_size_t lua_bytecode_len; |
---|
[c301152] | 96 | } mgs_dirconf_rec; |
---|
[31645b2] | 97 | |
---|
[7bebb42] | 98 | |
---|
[3b4c0d0] | 99 | /* The maximum number of certificates to send in a chain */ |
---|
[5e81262] | 100 | #define MAX_CHAIN_SIZE 8 |
---|
[3b4c0d0] | 101 | /* The maximum number of SANs to read from a x509 certificate */ |
---|
| 102 | #define MAX_CERT_SAN 5 |
---|
[7bebb42] | 103 | |
---|
[3b4c0d0] | 104 | /* Server Configuration Record */ |
---|
| 105 | typedef struct { |
---|
| 106 | /* x509 Certificate Structure */ |
---|
[671b64f] | 107 | gnutls_certificate_credentials_t certs; |
---|
[3b4c0d0] | 108 | /* SRP Certificate Structure*/ |
---|
[7bebb42] | 109 | gnutls_srp_server_credentials_t srp_creds; |
---|
[3b4c0d0] | 110 | /* Annonymous Certificate Structure */ |
---|
[7bebb42] | 111 | gnutls_anon_server_credentials_t anon_creds; |
---|
[3b4c0d0] | 112 | /* Current x509 Certificate CN [Common Name] */ |
---|
[e924ddd] | 113 | char* cert_cn; |
---|
[3b4c0d0] | 114 | /* Current x509 Certificate SAN [Subject Alternate Name]s*/ |
---|
| 115 | char* cert_san[MAX_CERT_SAN]; |
---|
| 116 | /* A x509 Certificate Chain */ |
---|
| 117 | gnutls_x509_crt_t *certs_x509_chain; |
---|
| 118 | /* Current x509 Certificate Private Key */ |
---|
[31645b2] | 119 | gnutls_x509_privkey_t privkey_x509; |
---|
[3b4c0d0] | 120 | /* OpenPGP Certificate */ |
---|
| 121 | gnutls_openpgp_crt_t cert_pgp; |
---|
| 122 | /* OpenPGP Certificate Private Key */ |
---|
[e5bbda4] | 123 | gnutls_openpgp_privkey_t privkey_pgp; |
---|
[3b4c0d0] | 124 | /* Number of Certificates in Chain */ |
---|
| 125 | unsigned int certs_x509_chain_num; |
---|
| 126 | /* Is the module enabled? */ |
---|
[7e2b223] | 127 | int enabled; |
---|
[7d1ab49] | 128 | /* Export full certificates to CGI environment: */ |
---|
| 129 | int export_certificates_enabled; |
---|
[3b4c0d0] | 130 | /* GnuTLS Priorities */ |
---|
[7bebb42] | 131 | gnutls_priority_t priorities; |
---|
[3b4c0d0] | 132 | /* GnuTLS DH Parameters */ |
---|
[a3c97d1] | 133 | gnutls_dh_params_t dh_params; |
---|
[3b4c0d0] | 134 | /* Cache timeout value */ |
---|
[7bebb42] | 135 | int cache_timeout; |
---|
[3b4c0d0] | 136 | /* Chose Cache Type */ |
---|
[c301152] | 137 | mgs_cache_e cache_type; |
---|
[a66e147] | 138 | const char* cache_config; |
---|
[7bebb42] | 139 | const char* srp_tpasswd_file; |
---|
| 140 | const char* srp_tpasswd_conf_file; |
---|
[3b4c0d0] | 141 | /* A list of CA Certificates */ |
---|
[8663ace] | 142 | gnutls_x509_crt_t *ca_list; |
---|
[3b4c0d0] | 143 | /* OpenPGP Key Ring */ |
---|
[e5bbda4] | 144 | gnutls_openpgp_keyring_t pgp_list; |
---|
[3b4c0d0] | 145 | /* CA Certificate list size */ |
---|
[7bebb42] | 146 | unsigned int ca_list_size; |
---|
[3b4c0d0] | 147 | /* Client Certificate Verification Mode */ |
---|
[e924ddd] | 148 | int client_verify_mode; |
---|
[cf2b905] | 149 | /* Client Certificate Verification Method */ |
---|
| 150 | mgs_client_verification_method_e client_verify_method; |
---|
[3b4c0d0] | 151 | /* Last Cache timestamp */ |
---|
[f10ab4f] | 152 | apr_time_t last_cache_check; |
---|
[3b4c0d0] | 153 | /* GnuTLS uses Session Tickets */ |
---|
[671b64f] | 154 | int tickets; |
---|
[3b4c0d0] | 155 | /* Is mod_proxy enabled? */ |
---|
[33826c5] | 156 | int proxy_enabled; |
---|
[3b4c0d0] | 157 | /* A Plain HTTP request */ |
---|
[9ee0464] | 158 | int non_ssl_request; |
---|
[c301152] | 159 | } mgs_srvconf_rec; |
---|
[7e2b223] | 160 | |
---|
[3b4c0d0] | 161 | /* Character Buffer */ |
---|
[dae0aec] | 162 | typedef struct { |
---|
| 163 | int length; |
---|
| 164 | char *value; |
---|
[c301152] | 165 | } mgs_char_buffer_t; |
---|
[dae0aec] | 166 | |
---|
[3b4c0d0] | 167 | /* GnuTLS Handle */ |
---|
| 168 | typedef struct { |
---|
| 169 | /* Server configuration record */ |
---|
[c301152] | 170 | mgs_srvconf_rec *sc; |
---|
[3b4c0d0] | 171 | /* Connection record */ |
---|
[dae0aec] | 172 | conn_rec* c; |
---|
[3b4c0d0] | 173 | /* GnuTLS Session handle */ |
---|
[7e2b223] | 174 | gnutls_session_t session; |
---|
[3b4c0d0] | 175 | /* module input status */ |
---|
[dae0aec] | 176 | apr_status_t input_rc; |
---|
[3b4c0d0] | 177 | /* Input filter */ |
---|
[7e2b223] | 178 | ap_filter_t *input_filter; |
---|
[3b4c0d0] | 179 | /* Input Bucket Brigade */ |
---|
[7e2b223] | 180 | apr_bucket_brigade *input_bb; |
---|
[3b4c0d0] | 181 | /* Input Read Type */ |
---|
[7e2b223] | 182 | apr_read_type_e input_block; |
---|
[3b4c0d0] | 183 | /* Input Mode */ |
---|
[dae0aec] | 184 | ap_input_mode_t input_mode; |
---|
[3b4c0d0] | 185 | /* Input Character Buffer */ |
---|
[c301152] | 186 | mgs_char_buffer_t input_cbuf; |
---|
[3b4c0d0] | 187 | /* Input Character Array */ |
---|
[dae0aec] | 188 | char input_buffer[AP_IOBUFSIZE]; |
---|
[3b4c0d0] | 189 | /* module Output status */ |
---|
[dae0aec] | 190 | apr_status_t output_rc; |
---|
[3b4c0d0] | 191 | /* Output filter */ |
---|
[dae0aec] | 192 | ap_filter_t *output_filter; |
---|
[3b4c0d0] | 193 | /* Output Bucket Brigade */ |
---|
[dae0aec] | 194 | apr_bucket_brigade *output_bb; |
---|
[3b4c0d0] | 195 | /* Output character array */ |
---|
[dae0aec] | 196 | char output_buffer[AP_IOBUFSIZE]; |
---|
[3b4c0d0] | 197 | /* Output buffer length */ |
---|
[dae0aec] | 198 | apr_size_t output_blen; |
---|
[3b4c0d0] | 199 | /* Output length */ |
---|
[dae0aec] | 200 | apr_size_t output_length; |
---|
[3b4c0d0] | 201 | /* General Status */ |
---|
[7e2b223] | 202 | int status; |
---|
[c301152] | 203 | } mgs_handle_t; |
---|
[7e2b223] | 204 | |
---|
[3b4c0d0] | 205 | |
---|
| 206 | |
---|
[7e2b223] | 207 | /** Functions in gnutls_io.c **/ |
---|
| 208 | |
---|
[fb26be5] | 209 | /* apr_signal_block() for blocking SIGPIPE */ |
---|
| 210 | apr_status_t apr_signal_block(int signum); |
---|
| 211 | |
---|
[33826c5] | 212 | /* Proxy Support */ |
---|
[37f8282] | 213 | /* An optional function which returns non-zero if the given connection |
---|
| 214 | is using SSL/TLS. */ |
---|
| 215 | APR_DECLARE_OPTIONAL_FN(int, ssl_is_https, (conn_rec *)); |
---|
| 216 | /* The ssl_proxy_enable() and ssl_engine_disable() optional functions |
---|
| 217 | * are used by mod_proxy to enable use of SSL for outgoing |
---|
| 218 | * connections. */ |
---|
| 219 | APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *)); |
---|
| 220 | APR_DECLARE_OPTIONAL_FN(int, ssl_engine_disable, (conn_rec *)); |
---|
| 221 | int ssl_is_https(conn_rec *c); |
---|
[33826c5] | 222 | int ssl_proxy_enable(conn_rec *c); |
---|
| 223 | int ssl_engine_disable(conn_rec *c); |
---|
[37f8282] | 224 | const char *mgs_set_proxy_engine(cmd_parms * parms, void *dummy, |
---|
| 225 | const char *arg); |
---|
| 226 | apr_status_t mgs_cleanup_pre_config(void *data); |
---|
[33826c5] | 227 | |
---|
[7e2b223] | 228 | /** |
---|
[c301152] | 229 | * mgs_filter_input will filter the input data |
---|
[7e2b223] | 230 | * by decrypting it using GnuTLS and passes it cleartext. |
---|
| 231 | * |
---|
| 232 | * @param f the filter info record |
---|
| 233 | * @param bb the bucket brigade, where to store the result to |
---|
| 234 | * @param mode what shall we read? |
---|
| 235 | * @param block a block index we shall read from? |
---|
| 236 | * @return result status |
---|
| 237 | */ |
---|
[c301152] | 238 | apr_status_t mgs_filter_input(ap_filter_t * f, |
---|
[2e12226] | 239 | apr_bucket_brigade * bb, |
---|
| 240 | ap_input_mode_t mode, |
---|
| 241 | apr_read_type_e block, |
---|
| 242 | apr_off_t readbytes); |
---|
[7e2b223] | 243 | |
---|
| 244 | /** |
---|
[c301152] | 245 | * mgs_filter_output will filter the encrypt |
---|
[7e2b223] | 246 | * the incoming bucket using GnuTLS and passes it onto the next filter. |
---|
| 247 | * |
---|
| 248 | * @param f the filter info record |
---|
| 249 | * @param bb the bucket brigade, where to store the result to |
---|
| 250 | * @return result status |
---|
| 251 | */ |
---|
[c301152] | 252 | apr_status_t mgs_filter_output(ap_filter_t * f, |
---|
[2e12226] | 253 | apr_bucket_brigade * bb); |
---|
[7e2b223] | 254 | |
---|
| 255 | |
---|
| 256 | /** |
---|
[671b64f] | 257 | * mgs_transport_read is called from GnuTLS to provide encrypted |
---|
[7e2b223] | 258 | * data from the client. |
---|
| 259 | * |
---|
| 260 | * @param ptr pointer to the filter context |
---|
| 261 | * @param buffer place to put data |
---|
| 262 | * @param len maximum size |
---|
| 263 | * @return size length of the data stored in buffer |
---|
| 264 | */ |
---|
[c301152] | 265 | ssize_t mgs_transport_read(gnutls_transport_ptr_t ptr, |
---|
[2e12226] | 266 | void *buffer, size_t len); |
---|
[7e2b223] | 267 | |
---|
| 268 | /** |
---|
[671b64f] | 269 | * mgs_transport_write is called from GnuTLS to |
---|
[7e2b223] | 270 | * write data to the client. |
---|
| 271 | * |
---|
| 272 | * @param ptr pointer to the filter context |
---|
| 273 | * @param buffer buffer to write to the client |
---|
| 274 | * @param len size of the buffer |
---|
| 275 | * @return size length of the data written |
---|
| 276 | */ |
---|
[c301152] | 277 | ssize_t mgs_transport_write(gnutls_transport_ptr_t ptr, |
---|
[2e12226] | 278 | const void *buffer, size_t len); |
---|
[7e2b223] | 279 | |
---|
| 280 | |
---|
[c301152] | 281 | int mgs_rehandshake(mgs_handle_t * ctxt); |
---|
[e924ddd] | 282 | |
---|
| 283 | |
---|
| 284 | |
---|
[a66e147] | 285 | /** |
---|
[fcb122d] | 286 | * Init the Cache after Configuration is done |
---|
| 287 | */ |
---|
[671b64f] | 288 | int mgs_cache_post_config(apr_pool_t *p, server_rec *s, |
---|
[c301152] | 289 | mgs_srvconf_rec *sc); |
---|
[fcb122d] | 290 | /** |
---|
[a66e147] | 291 | * Init the Cache inside each Process |
---|
| 292 | */ |
---|
[671b64f] | 293 | int mgs_cache_child_init(apr_pool_t *p, server_rec *s, |
---|
[c301152] | 294 | mgs_srvconf_rec *sc); |
---|
[a66e147] | 295 | /** |
---|
| 296 | * Setup the Session Caching |
---|
| 297 | */ |
---|
[c301152] | 298 | int mgs_cache_session_init(mgs_handle_t *ctxt); |
---|
[05d56ce] | 299 | |
---|
[42307a9] | 300 | #define GNUTLS_SESSION_ID_STRING_LEN \ |
---|
| 301 | ((GNUTLS_MAX_SESSION_ID + 1) * 2) |
---|
[671b64f] | 302 | |
---|
[42307a9] | 303 | /** |
---|
| 304 | * Convert a SSL Session ID into a Null Terminated Hex Encoded String |
---|
| 305 | * @param id raw SSL Session ID |
---|
| 306 | * @param idlen Length of the raw Session ID |
---|
| 307 | * @param str Location to store the Hex Encoded String |
---|
| 308 | * @param strsize The Maximum Length that can be stored in str |
---|
| 309 | */ |
---|
[c301152] | 310 | char *mgs_session_id2sz(unsigned char *id, int idlen, |
---|
[42307a9] | 311 | char *str, int strsize); |
---|
| 312 | |
---|
[7bebb42] | 313 | /** |
---|
| 314 | * Convert a time_t into a Null Terminated String |
---|
| 315 | * @param t time_t time |
---|
| 316 | * @param str Location to store the Hex Encoded String |
---|
| 317 | * @param strsize The Maximum Length that can be stored in str |
---|
| 318 | */ |
---|
| 319 | char *mgs_time2sz(time_t t, char *str, int strsize); |
---|
| 320 | |
---|
[c301152] | 321 | |
---|
[46b85d8] | 322 | /* Configuration Functions */ |
---|
| 323 | |
---|
[7bebb42] | 324 | const char *mgs_set_srp_tpasswd_conf_file(cmd_parms * parms, void *dummy, |
---|
| 325 | const char *arg); |
---|
| 326 | const char *mgs_set_srp_tpasswd_file(cmd_parms * parms, void *dummy, |
---|
| 327 | const char *arg); |
---|
| 328 | const char *mgs_set_dh_file(cmd_parms * parms, void *dummy, |
---|
| 329 | const char *arg); |
---|
[46b85d8] | 330 | const char *mgs_set_cert_file(cmd_parms * parms, void *dummy, |
---|
| 331 | const char *arg); |
---|
| 332 | |
---|
| 333 | const char *mgs_set_key_file(cmd_parms * parms, void *dummy, |
---|
| 334 | const char *arg); |
---|
| 335 | |
---|
[e5bbda4] | 336 | const char *mgs_set_pgpcert_file(cmd_parms * parms, void *dummy, |
---|
| 337 | const char *arg); |
---|
| 338 | |
---|
| 339 | const char *mgs_set_pgpkey_file(cmd_parms * parms, void *dummy, |
---|
| 340 | const char *arg); |
---|
| 341 | |
---|
[46b85d8] | 342 | const char *mgs_set_cache(cmd_parms * parms, void *dummy, |
---|
| 343 | const char *type, const char* arg); |
---|
| 344 | |
---|
| 345 | const char *mgs_set_cache_timeout(cmd_parms * parms, void *dummy, |
---|
| 346 | const char *arg); |
---|
| 347 | |
---|
| 348 | const char *mgs_set_client_verify(cmd_parms * parms, void *dummy, |
---|
| 349 | const char *arg); |
---|
| 350 | |
---|
[cf2b905] | 351 | const char *mgs_set_client_verify_method(cmd_parms * parms, void *dummy, |
---|
| 352 | const char *arg); |
---|
| 353 | |
---|
[46b85d8] | 354 | const char *mgs_set_client_ca_file(cmd_parms * parms, void *dummy, |
---|
| 355 | const char *arg); |
---|
| 356 | |
---|
[e5bbda4] | 357 | const char *mgs_set_keyring_file(cmd_parms * parms, void *dummy, |
---|
| 358 | const char *arg); |
---|
| 359 | |
---|
[46b85d8] | 360 | const char *mgs_set_enabled(cmd_parms * parms, void *dummy, |
---|
| 361 | const char *arg); |
---|
[7bebb42] | 362 | const char *mgs_set_export_certificates_enabled(cmd_parms * parms, void *dummy, |
---|
| 363 | const char *arg); |
---|
| 364 | const char *mgs_set_priorities(cmd_parms * parms, void *dummy, |
---|
| 365 | const char *arg); |
---|
[ae233c2] | 366 | const char *mgs_set_tickets(cmd_parms * parms, void *dummy, |
---|
| 367 | const char *arg); |
---|
[671b64f] | 368 | |
---|
| 369 | const char *mgs_set_require_section(cmd_parms *cmd, |
---|
[84cb5b2] | 370 | void *mconfig, const char *arg); |
---|
[46b85d8] | 371 | void *mgs_config_server_create(apr_pool_t * p, server_rec * s); |
---|
[040387c] | 372 | void *mgs_config_server_merge(apr_pool_t *p, void *BASE, void *ADD); |
---|
[46b85d8] | 373 | |
---|
[84cb5b2] | 374 | void *mgs_config_dir_merge(apr_pool_t *p, void *basev, void *addv); |
---|
| 375 | |
---|
[46b85d8] | 376 | void *mgs_config_dir_create(apr_pool_t *p, char *dir); |
---|
| 377 | |
---|
[671b64f] | 378 | const char *mgs_set_require_bytecode(cmd_parms *cmd, |
---|
[84cb5b2] | 379 | void *mconfig, const char *arg); |
---|
| 380 | |
---|
[836417f] | 381 | mgs_srvconf_rec* mgs_find_sni_server(gnutls_session_t session); |
---|
[c301152] | 382 | |
---|
| 383 | /* mod_gnutls Hooks. */ |
---|
| 384 | |
---|
| 385 | int mgs_hook_pre_config(apr_pool_t * pconf, |
---|
| 386 | apr_pool_t * plog, apr_pool_t * ptemp); |
---|
| 387 | |
---|
| 388 | int mgs_hook_post_config(apr_pool_t * p, apr_pool_t * plog, |
---|
| 389 | apr_pool_t * ptemp, |
---|
| 390 | server_rec * base_server); |
---|
| 391 | |
---|
| 392 | void mgs_hook_child_init(apr_pool_t *p, server_rec *s); |
---|
| 393 | |
---|
| 394 | const char *mgs_hook_http_scheme(const request_rec * r); |
---|
| 395 | |
---|
| 396 | apr_port_t mgs_hook_default_port(const request_rec * r); |
---|
| 397 | |
---|
| 398 | int mgs_hook_pre_connection(conn_rec * c, void *csd); |
---|
| 399 | |
---|
| 400 | int mgs_hook_fixups(request_rec *r); |
---|
| 401 | |
---|
| 402 | int mgs_hook_authz(request_rec *r); |
---|
| 403 | |
---|
[7e2b223] | 404 | #endif /* __mod_gnutls_h_inc */ |
---|