1 | /* |
---|
2 | * Copyright 2004-2005 Paul Querna |
---|
3 | * Copyright 2014 Nikos Mavrogiannopoulos |
---|
4 | * Copyright 2015-2016 Thomas Klute |
---|
5 | * |
---|
6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
---|
7 | * you may not use this file except in compliance with the License. |
---|
8 | * You may obtain a copy of the License at |
---|
9 | * |
---|
10 | * http://www.apache.org/licenses/LICENSE-2.0 |
---|
11 | * |
---|
12 | * Unless required by applicable law or agreed to in writing, software |
---|
13 | * distributed under the License is distributed on an "AS IS" BASIS, |
---|
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
---|
15 | * See the License for the specific language governing permissions and |
---|
16 | * limitations under the License. |
---|
17 | */ |
---|
18 | |
---|
19 | /* Apache Runtime Headers */ |
---|
20 | #include "httpd.h" |
---|
21 | #include "http_config.h" |
---|
22 | #include "http_protocol.h" |
---|
23 | #include "http_connection.h" |
---|
24 | #include "http_request.h" |
---|
25 | #include "http_core.h" |
---|
26 | #include "http_log.h" |
---|
27 | #include "apr_buckets.h" |
---|
28 | #include "apr_strings.h" |
---|
29 | #include "apr_tables.h" |
---|
30 | #include "ap_release.h" |
---|
31 | #include "apr_fnmatch.h" |
---|
32 | /* GnuTLS Library Headers */ |
---|
33 | #include <gnutls/gnutls.h> |
---|
34 | #include <gnutls/abstract.h> |
---|
35 | #include <gnutls/openpgp.h> |
---|
36 | #include <gnutls/x509.h> |
---|
37 | |
---|
38 | #ifndef __mod_gnutls_h_inc |
---|
39 | #define __mod_gnutls_h_inc |
---|
40 | |
---|
41 | #define HAVE_APR_MEMCACHE @have_apr_memcache@ |
---|
42 | |
---|
43 | extern module AP_MODULE_DECLARE_DATA gnutls_module; |
---|
44 | |
---|
45 | /* IO Filter names */ |
---|
46 | #define GNUTLS_OUTPUT_FILTER_NAME "gnutls_output_filter" |
---|
47 | #define GNUTLS_INPUT_FILTER_NAME "gnutls_input_filter" |
---|
48 | /* GnuTLS Constants */ |
---|
49 | #define GNUTLS_ENABLED_FALSE 0 |
---|
50 | #define GNUTLS_ENABLED_TRUE 1 |
---|
51 | #define GNUTLS_ENABLED_UNSET 2 |
---|
52 | /* Current module version */ |
---|
53 | #define MOD_GNUTLS_VERSION "@MOD_GNUTLS_VERSION@" |
---|
54 | |
---|
55 | /* Module Debug Mode */ |
---|
56 | #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ |
---|
57 | |
---|
58 | /* mod_gnutls Cache Types */ |
---|
59 | typedef enum { |
---|
60 | /* No Cache */ |
---|
61 | mgs_cache_none, |
---|
62 | /* Use Old Berkley DB */ |
---|
63 | mgs_cache_dbm, |
---|
64 | /* Use Gnu's version of Berkley DB */ |
---|
65 | mgs_cache_gdbm, |
---|
66 | #if HAVE_APR_MEMCACHE |
---|
67 | /* Use Memcache */ |
---|
68 | mgs_cache_memcache, |
---|
69 | #endif |
---|
70 | mgs_cache_unset |
---|
71 | } mgs_cache_e; |
---|
72 | |
---|
73 | /* Internal cache data, defined in gnutls_cache.h */ |
---|
74 | typedef struct mgs_cache* mgs_cache_t; |
---|
75 | |
---|
76 | typedef enum { |
---|
77 | mgs_cvm_unset, |
---|
78 | mgs_cvm_cartel, |
---|
79 | mgs_cvm_msva |
---|
80 | } mgs_client_verification_method_e; |
---|
81 | |
---|
82 | |
---|
83 | /* Directory Configuration Record */ |
---|
84 | typedef struct { |
---|
85 | int client_verify_mode; |
---|
86 | } mgs_dirconf_rec; |
---|
87 | |
---|
88 | |
---|
89 | /* Internal per-vhost config for OCSP, defined in gnutls_ocsp.h */ |
---|
90 | typedef struct mgs_ocsp_data* mgs_ocsp_data_t; |
---|
91 | |
---|
92 | |
---|
93 | /* The maximum number of certificates to send in a chain */ |
---|
94 | #define MAX_CHAIN_SIZE 8 |
---|
95 | /* The maximum number of SANs to read from a x509 certificate */ |
---|
96 | #define MAX_CERT_SAN 5 |
---|
97 | |
---|
98 | /* Server Configuration Record */ |
---|
99 | typedef struct { |
---|
100 | /* --- Configuration values --- */ |
---|
101 | /* Is the module enabled? */ |
---|
102 | int enabled; |
---|
103 | /* Is mod_proxy enabled? */ |
---|
104 | int proxy_enabled; |
---|
105 | /* A Plain HTTP request */ |
---|
106 | int non_ssl_request; |
---|
107 | |
---|
108 | /* List of PKCS #11 provider modules to load, only valid in the |
---|
109 | * base config, ignored in virtual hosts */ |
---|
110 | apr_array_header_t *p11_modules; |
---|
111 | |
---|
112 | /* PIN used for PKCS #11 operations */ |
---|
113 | char *pin; |
---|
114 | |
---|
115 | /* the SRK PIN used in TPM operations */ |
---|
116 | char *srk_pin; |
---|
117 | |
---|
118 | char *x509_cert_file; |
---|
119 | char *x509_key_file; |
---|
120 | char *x509_ca_file; |
---|
121 | |
---|
122 | char *pgp_cert_file; |
---|
123 | char *pgp_key_file; |
---|
124 | char *pgp_ring_file; |
---|
125 | |
---|
126 | char *dh_file; |
---|
127 | |
---|
128 | char *priorities_str; |
---|
129 | char *proxy_priorities_str; |
---|
130 | |
---|
131 | const char* srp_tpasswd_file; |
---|
132 | const char* srp_tpasswd_conf_file; |
---|
133 | |
---|
134 | /* Cache timeout value */ |
---|
135 | int cache_timeout; |
---|
136 | /* Chose Cache Type */ |
---|
137 | mgs_cache_e cache_type; |
---|
138 | const char* cache_config; |
---|
139 | /* Internal cache data */ |
---|
140 | mgs_cache_t cache; |
---|
141 | |
---|
142 | /* GnuTLS uses Session Tickets */ |
---|
143 | int tickets; |
---|
144 | |
---|
145 | /* --- Things initialized at _child_init --- */ |
---|
146 | |
---|
147 | /* x509 Certificate Structure */ |
---|
148 | gnutls_certificate_credentials_t certs; |
---|
149 | /* x509 credentials for proxy connections */ |
---|
150 | gnutls_certificate_credentials_t proxy_x509_creds; |
---|
151 | /* trust list for proxy_x509_creds */ |
---|
152 | gnutls_x509_trust_list_t proxy_x509_tl; |
---|
153 | const char* proxy_x509_key_file; |
---|
154 | const char* proxy_x509_cert_file; |
---|
155 | const char* proxy_x509_ca_file; |
---|
156 | const char* proxy_x509_crl_file; |
---|
157 | /* GnuTLS priorities for proxy connections */ |
---|
158 | gnutls_priority_t proxy_priorities; |
---|
159 | /* SRP Certificate Structure*/ |
---|
160 | gnutls_srp_server_credentials_t srp_creds; |
---|
161 | /* Anonymous Certificate Structure */ |
---|
162 | gnutls_anon_server_credentials_t anon_creds; |
---|
163 | /* Anonymous Client Certificate Structure, used for proxy |
---|
164 | * connections */ |
---|
165 | gnutls_anon_client_credentials_t anon_client_creds; |
---|
166 | /* Current x509 Certificate CN [Common Name] */ |
---|
167 | char* cert_cn; |
---|
168 | /* Current x509 Certificate SAN [Subject Alternate Name]s*/ |
---|
169 | char* cert_san[MAX_CERT_SAN]; |
---|
170 | /* An x509 Certificate Chain */ |
---|
171 | gnutls_pcert_st *certs_x509_chain; |
---|
172 | gnutls_x509_crt_t *certs_x509_crt_chain; |
---|
173 | /* Number of Certificates in Chain */ |
---|
174 | unsigned int certs_x509_chain_num; |
---|
175 | |
---|
176 | /* Current x509 Certificate Private Key */ |
---|
177 | gnutls_privkey_t privkey_x509; |
---|
178 | |
---|
179 | /* OpenPGP Certificate */ |
---|
180 | gnutls_pcert_st *cert_pgp; |
---|
181 | gnutls_openpgp_crt_t *cert_crt_pgp; |
---|
182 | |
---|
183 | /* OpenPGP Certificate Private Key */ |
---|
184 | gnutls_privkey_t privkey_pgp; |
---|
185 | #if GNUTLS_VERSION_NUMBER < 0x030312 |
---|
186 | /* Internal structure for the OpenPGP private key, used in the |
---|
187 | * workaround for a bug in gnutls_privkey_import_openpgp_raw that |
---|
188 | * frees memory that is still needed. DO NOT USE for any other |
---|
189 | * purpose. */ |
---|
190 | gnutls_openpgp_privkey_t privkey_pgp_internal; |
---|
191 | #endif |
---|
192 | |
---|
193 | /* Export full certificates to CGI environment: */ |
---|
194 | int export_certificates_size; |
---|
195 | /* GnuTLS Priorities */ |
---|
196 | gnutls_priority_t priorities; |
---|
197 | /* GnuTLS DH Parameters */ |
---|
198 | gnutls_dh_params_t dh_params; |
---|
199 | /* A list of CA Certificates */ |
---|
200 | gnutls_x509_crt_t *ca_list; |
---|
201 | /* OpenPGP Key Ring */ |
---|
202 | gnutls_openpgp_keyring_t pgp_list; |
---|
203 | /* CA Certificate list size */ |
---|
204 | unsigned int ca_list_size; |
---|
205 | /* Client Certificate Verification Mode */ |
---|
206 | int client_verify_mode; |
---|
207 | /* Client Certificate Verification Method */ |
---|
208 | mgs_client_verification_method_e client_verify_method; |
---|
209 | /* Last Cache timestamp */ |
---|
210 | apr_time_t last_cache_check; |
---|
211 | |
---|
212 | /* Enable OCSP stapling */ |
---|
213 | unsigned char ocsp_staple; |
---|
214 | /* Check nonce in OCSP responses? */ |
---|
215 | unsigned char ocsp_check_nonce; |
---|
216 | /* Read OCSP response for stapling from this file instead of |
---|
217 | * sending a request over HTTP */ |
---|
218 | char *ocsp_response_file; |
---|
219 | /* Internal OCSP data for this server */ |
---|
220 | mgs_ocsp_data_t ocsp; |
---|
221 | /* Mutex to prevent parallel OCSP requests */ |
---|
222 | apr_global_mutex_t *ocsp_mutex; |
---|
223 | /* Cache timeout for OCSP responses. Note that the nextUpdate |
---|
224 | * field of the response takes precedence if shorter. */ |
---|
225 | apr_interval_time_t ocsp_cache_time; |
---|
226 | /* If an OCSP request fails wait this long before trying again. */ |
---|
227 | apr_interval_time_t ocsp_failure_timeout; |
---|
228 | /* Socket timeout for OCSP requests */ |
---|
229 | apr_interval_time_t ocsp_socket_timeout; |
---|
230 | } mgs_srvconf_rec; |
---|
231 | |
---|
232 | /* Character Buffer */ |
---|
233 | typedef struct { |
---|
234 | int length; |
---|
235 | char *value; |
---|
236 | } mgs_char_buffer_t; |
---|
237 | |
---|
238 | /* GnuTLS Handle */ |
---|
239 | typedef struct { |
---|
240 | /* Server configuration record */ |
---|
241 | mgs_srvconf_rec *sc; |
---|
242 | /* Connection record */ |
---|
243 | conn_rec* c; |
---|
244 | /* Is TLS enabled for this connection? */ |
---|
245 | int enabled; |
---|
246 | /* Is this a proxy connection? */ |
---|
247 | int is_proxy; |
---|
248 | /* GnuTLS Session handle */ |
---|
249 | gnutls_session_t session; |
---|
250 | /* module input status */ |
---|
251 | apr_status_t input_rc; |
---|
252 | /* Input filter */ |
---|
253 | ap_filter_t *input_filter; |
---|
254 | /* Input Bucket Brigade */ |
---|
255 | apr_bucket_brigade *input_bb; |
---|
256 | /* Input Read Type */ |
---|
257 | apr_read_type_e input_block; |
---|
258 | /* Input Mode */ |
---|
259 | ap_input_mode_t input_mode; |
---|
260 | /* Input Character Buffer */ |
---|
261 | mgs_char_buffer_t input_cbuf; |
---|
262 | /* Input Character Array */ |
---|
263 | char input_buffer[AP_IOBUFSIZE]; |
---|
264 | /* module Output status */ |
---|
265 | apr_status_t output_rc; |
---|
266 | /* Output filter */ |
---|
267 | ap_filter_t *output_filter; |
---|
268 | /* Output Bucket Brigade */ |
---|
269 | apr_bucket_brigade *output_bb; |
---|
270 | /* Output character array */ |
---|
271 | char output_buffer[AP_IOBUFSIZE]; |
---|
272 | /* Output buffer length */ |
---|
273 | apr_size_t output_blen; |
---|
274 | /* Output length */ |
---|
275 | apr_size_t output_length; |
---|
276 | /* General Status */ |
---|
277 | int status; |
---|
278 | } mgs_handle_t; |
---|
279 | |
---|
280 | |
---|
281 | |
---|
282 | /** Functions in gnutls_io.c **/ |
---|
283 | |
---|
284 | /* apr_signal_block() for blocking SIGPIPE */ |
---|
285 | apr_status_t apr_signal_block(int signum); |
---|
286 | |
---|
287 | /* Proxy Support */ |
---|
288 | /** mod_proxy adds a note with this key to the connection->notes table |
---|
289 | * for client connections */ |
---|
290 | #define PROXY_SNI_NOTE "proxy-request-hostname" |
---|
291 | /* An optional function which returns non-zero if the given connection |
---|
292 | is using SSL/TLS. */ |
---|
293 | APR_DECLARE_OPTIONAL_FN(int, ssl_is_https, (conn_rec *)); |
---|
294 | /* The ssl_proxy_enable() and ssl_engine_disable() optional functions |
---|
295 | * are used by mod_proxy to enable use of SSL for outgoing |
---|
296 | * connections. */ |
---|
297 | APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *)); |
---|
298 | APR_DECLARE_OPTIONAL_FN(int, ssl_engine_disable, (conn_rec *)); |
---|
299 | APR_DECLARE_OPTIONAL_FN(int, ssl_engine_set, (conn_rec *, |
---|
300 | ap_conf_vector_t *, |
---|
301 | int proxy, int enable)); |
---|
302 | int ssl_is_https(conn_rec *c); |
---|
303 | int ssl_proxy_enable(conn_rec *c); |
---|
304 | int ssl_engine_disable(conn_rec *c); |
---|
305 | const char *mgs_set_proxy_engine(cmd_parms * parms, void *dummy, |
---|
306 | const int arg); |
---|
307 | apr_status_t mgs_cleanup_pre_config(void *data); |
---|
308 | |
---|
309 | /** |
---|
310 | * mgs_filter_input will filter the input data |
---|
311 | * by decrypting it using GnuTLS and passes it cleartext. |
---|
312 | * |
---|
313 | * @param f the filter info record |
---|
314 | * @param bb the bucket brigade, where to store the result to |
---|
315 | * @param mode what shall we read? |
---|
316 | * @param block a block index we shall read from? |
---|
317 | * @return result status |
---|
318 | */ |
---|
319 | apr_status_t mgs_filter_input(ap_filter_t * f, |
---|
320 | apr_bucket_brigade * bb, |
---|
321 | ap_input_mode_t mode, |
---|
322 | apr_read_type_e block, |
---|
323 | apr_off_t readbytes); |
---|
324 | |
---|
325 | /** |
---|
326 | * mgs_filter_output will filter the encrypt |
---|
327 | * the incoming bucket using GnuTLS and passes it onto the next filter. |
---|
328 | * |
---|
329 | * @param f the filter info record |
---|
330 | * @param bb the bucket brigade, where to store the result to |
---|
331 | * @return result status |
---|
332 | */ |
---|
333 | apr_status_t mgs_filter_output(ap_filter_t * f, |
---|
334 | apr_bucket_brigade * bb); |
---|
335 | |
---|
336 | |
---|
337 | /** |
---|
338 | * mgs_transport_read is called from GnuTLS to provide encrypted |
---|
339 | * data from the client. |
---|
340 | * |
---|
341 | * @param ptr pointer to the filter context |
---|
342 | * @param buffer place to put data |
---|
343 | * @param len maximum size |
---|
344 | * @return size length of the data stored in buffer |
---|
345 | */ |
---|
346 | ssize_t mgs_transport_read(gnutls_transport_ptr_t ptr, |
---|
347 | void *buffer, size_t len); |
---|
348 | |
---|
349 | /** |
---|
350 | * mgs_transport_write is called from GnuTLS to |
---|
351 | * write data to the client. |
---|
352 | * |
---|
353 | * @param ptr pointer to the filter context |
---|
354 | * @param buffer buffer to write to the client |
---|
355 | * @param len size of the buffer |
---|
356 | * @return size length of the data written |
---|
357 | */ |
---|
358 | ssize_t mgs_transport_write(gnutls_transport_ptr_t ptr, |
---|
359 | const void *buffer, size_t len); |
---|
360 | |
---|
361 | |
---|
362 | int mgs_rehandshake(mgs_handle_t * ctxt); |
---|
363 | |
---|
364 | |
---|
365 | |
---|
366 | /** |
---|
367 | * Perform any reinitialization required in PKCS #11 |
---|
368 | */ |
---|
369 | int mgs_pkcs11_reinit(server_rec * s); |
---|
370 | |
---|
371 | |
---|
372 | |
---|
373 | /* Configuration Functions */ |
---|
374 | |
---|
375 | /* Loads all files set in the configuration */ |
---|
376 | int mgs_load_files(apr_pool_t *pconf, apr_pool_t *ptemp, server_rec *s) |
---|
377 | __attribute__((nonnull)); |
---|
378 | |
---|
379 | const char *mgs_set_srp_tpasswd_conf_file(cmd_parms * parms, void *dummy, |
---|
380 | const char *arg); |
---|
381 | const char *mgs_set_srp_tpasswd_file(cmd_parms * parms, void *dummy, |
---|
382 | const char *arg); |
---|
383 | const char *mgs_set_dh_file(cmd_parms * parms, void *dummy, |
---|
384 | const char *arg); |
---|
385 | const char *mgs_set_cert_file(cmd_parms * parms, void *dummy, |
---|
386 | const char *arg); |
---|
387 | |
---|
388 | const char *mgs_set_key_file(cmd_parms * parms, void *dummy, |
---|
389 | const char *arg); |
---|
390 | |
---|
391 | const char *mgs_set_pgpcert_file(cmd_parms * parms, void *dummy, |
---|
392 | const char *arg); |
---|
393 | |
---|
394 | const char *mgs_set_pgpkey_file(cmd_parms * parms, void *dummy, |
---|
395 | const char *arg); |
---|
396 | |
---|
397 | const char *mgs_set_cache(cmd_parms * parms, void *dummy, |
---|
398 | const char *type, const char* arg); |
---|
399 | |
---|
400 | const char *mgs_set_timeout(cmd_parms *parms, void *dummy, const char *arg); |
---|
401 | |
---|
402 | const char *mgs_set_client_verify(cmd_parms * parms, void *dummy, |
---|
403 | const char *arg); |
---|
404 | |
---|
405 | const char *mgs_set_client_verify_method(cmd_parms * parms, void *dummy, |
---|
406 | const char *arg); |
---|
407 | |
---|
408 | const char *mgs_set_client_ca_file(cmd_parms * parms, void *dummy, |
---|
409 | const char *arg); |
---|
410 | |
---|
411 | const char *mgs_set_p11_module(cmd_parms * parms, void *dummy, |
---|
412 | const char *arg); |
---|
413 | |
---|
414 | const char *mgs_set_pin(cmd_parms * parms, void *dummy, |
---|
415 | const char *arg); |
---|
416 | |
---|
417 | const char *mgs_set_srk_pin(cmd_parms * parms, void *dummy, |
---|
418 | const char *arg); |
---|
419 | |
---|
420 | const char *mgs_set_keyring_file(cmd_parms * parms, void *dummy, |
---|
421 | const char *arg); |
---|
422 | |
---|
423 | const char *mgs_set_enabled(cmd_parms * parms, void *dummy, |
---|
424 | const int arg); |
---|
425 | const char *mgs_set_export_certificates_size(cmd_parms * parms, void *dummy, |
---|
426 | const char *arg); |
---|
427 | const char *mgs_set_priorities(cmd_parms * parms, void *dummy, |
---|
428 | const char *arg); |
---|
429 | const char *mgs_set_tickets(cmd_parms * parms, void *dummy, |
---|
430 | const int arg); |
---|
431 | |
---|
432 | void *mgs_config_server_create(apr_pool_t * p, server_rec * s); |
---|
433 | void *mgs_config_server_merge(apr_pool_t *p, void *BASE, void *ADD); |
---|
434 | |
---|
435 | void *mgs_config_dir_merge(apr_pool_t *p, void *basev, void *addv); |
---|
436 | |
---|
437 | void *mgs_config_dir_create(apr_pool_t *p, char *dir); |
---|
438 | |
---|
439 | mgs_srvconf_rec* mgs_find_sni_server(gnutls_session_t session); |
---|
440 | |
---|
441 | const char *mgs_store_cred_path(cmd_parms * parms, |
---|
442 | void *dummy __attribute__((unused)), |
---|
443 | const char *arg); |
---|
444 | |
---|
445 | /* mod_gnutls Hooks. */ |
---|
446 | |
---|
447 | int mgs_hook_pre_config(apr_pool_t * pconf, |
---|
448 | apr_pool_t * plog, apr_pool_t * ptemp); |
---|
449 | |
---|
450 | int mgs_hook_post_config(apr_pool_t *pconf, |
---|
451 | apr_pool_t *plog, |
---|
452 | apr_pool_t *ptemp, |
---|
453 | server_rec *base_server); |
---|
454 | |
---|
455 | void mgs_hook_child_init(apr_pool_t *p, server_rec *s); |
---|
456 | |
---|
457 | const char *mgs_hook_http_scheme(const request_rec * r); |
---|
458 | |
---|
459 | apr_port_t mgs_hook_default_port(const request_rec * r); |
---|
460 | |
---|
461 | int mgs_hook_pre_connection(conn_rec * c, void *csd); |
---|
462 | |
---|
463 | int mgs_hook_fixups(request_rec *r); |
---|
464 | |
---|
465 | int mgs_hook_authz(request_rec *r); |
---|
466 | |
---|
467 | #endif /* __mod_gnutls_h_inc */ |
---|