1 | /* |
---|
2 | * Copyright 2016-2020 Fiona Klute |
---|
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 | #ifndef __MOD_GNUTLS_OCSP_H__ |
---|
18 | #define __MOD_GNUTLS_OCSP_H__ |
---|
19 | |
---|
20 | #include "mod_gnutls.h" |
---|
21 | |
---|
22 | #include <gnutls/gnutls.h> |
---|
23 | #include <gnutls/x509.h> |
---|
24 | #include <httpd.h> |
---|
25 | #include <http_config.h> |
---|
26 | |
---|
27 | #define MGS_OCSP_MUTEX_NAME "gnutls-ocsp" |
---|
28 | #define MGS_OCSP_CACHE_MUTEX_NAME "gnutls-ocsp-cache" |
---|
29 | #define MGS_OCSP_CACHE_NAME "gnutls_ocsp" |
---|
30 | |
---|
31 | /** Default OCSP response cache timeout in seconds */ |
---|
32 | #define MGS_OCSP_CACHE_TIMEOUT 3600 |
---|
33 | /** Default OCSP failure timeout in seconds */ |
---|
34 | #define MGS_OCSP_FAILURE_TIMEOUT 300 |
---|
35 | /** Default socket timeout for OCSP responder connections, in |
---|
36 | * seconds. Note that the timeout applies to "absolutely no data sent |
---|
37 | * or received", not the whole connection. 10 seconds in mod_ssl. */ |
---|
38 | #define MGS_OCSP_SOCKET_TIMEOUT 6 |
---|
39 | |
---|
40 | /** |
---|
41 | * Vhost specific OCSP data structure |
---|
42 | */ |
---|
43 | struct mgs_ocsp_data { |
---|
44 | /** The certificate the following elements refer to. */ |
---|
45 | gnutls_x509_crt_t cert; |
---|
46 | /** OCSP URI extracted from the certificate. NULL if unset. */ |
---|
47 | apr_uri_t *uri; |
---|
48 | /** OCSP response file for the certificate. NULL if unset. Takes |
---|
49 | * precedence over uri. */ |
---|
50 | char *response_file; |
---|
51 | /** Trust list to verify OCSP responses for stapling. Should |
---|
52 | * usually only contain the CA that signed the certificate. */ |
---|
53 | gnutls_x509_trust_list_t *trust; |
---|
54 | /** Certificate fingerprint, used as cache key for the OCSP |
---|
55 | * response. */ |
---|
56 | gnutls_datum_t fingerprint; |
---|
57 | /** Server (virtual host) that uses the certificate */ |
---|
58 | server_rec *server; |
---|
59 | }; |
---|
60 | |
---|
61 | const char *mgs_ocsp_stapling_enable(cmd_parms *parms, |
---|
62 | void *dummy __attribute__((unused)), |
---|
63 | const int arg); |
---|
64 | |
---|
65 | const char *mgs_set_ocsp_auto_refresh(cmd_parms *parms, |
---|
66 | void *dummy __attribute__((unused)), |
---|
67 | const int arg); |
---|
68 | |
---|
69 | const char *mgs_set_ocsp_check_nonce(cmd_parms *parms, |
---|
70 | void *dummy __attribute__((unused)), |
---|
71 | const int arg); |
---|
72 | |
---|
73 | const char *mgs_store_ocsp_response_path(cmd_parms * parms, |
---|
74 | void *dummy __attribute__((unused)), |
---|
75 | int argc, char *const *argv); |
---|
76 | |
---|
77 | /** |
---|
78 | * Create a trust list from a certificate chain (one or more |
---|
79 | * certificates). |
---|
80 | * |
---|
81 | * @param tl This trust list will be initialized and filled with the |
---|
82 | * specified certificate(s) |
---|
83 | * |
---|
84 | * @param chain certificate chain, must contain at least `num` |
---|
85 | * certifictes |
---|
86 | * |
---|
87 | * @param num number of certificates to load from chain |
---|
88 | * |
---|
89 | * Chain is supposed to be static (the trust chain of the server |
---|
90 | * certificate), so when `gnutls_x509_trust_list_deinit()` is called on |
---|
91 | * tl later, the "all" parameter should be zero. |
---|
92 | * |
---|
93 | * @return `GNUTLS_E_SUCCESS` or a GnuTLS error code. In case of error |
---|
94 | * tl will be uninitialized. |
---|
95 | */ |
---|
96 | int mgs_create_ocsp_trust_list(gnutls_x509_trust_list_t *tl, |
---|
97 | const gnutls_x509_crt_t *chain, |
---|
98 | const int num); |
---|
99 | |
---|
100 | /** |
---|
101 | * Pool cleanup function that deinits the trust list without |
---|
102 | * deinitializing certificates. |
---|
103 | */ |
---|
104 | apr_status_t mgs_cleanup_trust_list(void *data); |
---|
105 | |
---|
106 | /** |
---|
107 | * Try to generate the OCSP stapling configuration for a (virtual) |
---|
108 | * host. This function must be called in the post_config hook after |
---|
109 | * certificates have been loaded. This method does not actually enable |
---|
110 | * stapling, it only prepares the configuration. The reason for |
---|
111 | * splitting these tasks is that configuration failure may be ignored |
---|
112 | * if stapling is not explicitly enabled but only opportunistically. |
---|
113 | * |
---|
114 | * @return `NULL` on success, a string describing why configuration |
---|
115 | * failed otherwise (static or allocated from ptemp) |
---|
116 | */ |
---|
117 | const char* mgs_ocsp_configure_stapling(apr_pool_t *pconf, apr_pool_t *ptemp, |
---|
118 | server_rec *server); |
---|
119 | |
---|
120 | /** |
---|
121 | * Enable OCSP stapling for a (virtual) host. Must be called in the |
---|
122 | * post_config hook after mgs_ocsp_configure_stapling has returned |
---|
123 | * successfully for that host. |
---|
124 | * |
---|
125 | * @return OK or DECLINED on success, any other value on error (like |
---|
126 | * the post_config hook) |
---|
127 | */ |
---|
128 | int mgs_ocsp_enable_stapling(apr_pool_t *pconf, apr_pool_t *ptemp, |
---|
129 | server_rec *server); |
---|
130 | |
---|
131 | int mgs_get_ocsp_response(mgs_handle_t *ctxt, |
---|
132 | struct mgs_ocsp_data *req_data, |
---|
133 | gnutls_datum_t *ocsp_response); |
---|
134 | |
---|
135 | #endif /* __MOD_GNUTLS_OCSP_H__ */ |
---|