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 | |
---|
20 | #ifndef __MOD_GNUTLS_CACHE_H__ |
---|
21 | #define __MOD_GNUTLS_CACHE_H__ |
---|
22 | |
---|
23 | #include "mod_gnutls.h" |
---|
24 | #include <httpd.h> |
---|
25 | |
---|
26 | #define MGS_CACHE_MUTEX_NAME "gnutls-cache" |
---|
27 | |
---|
28 | /** |
---|
29 | * Init the Cache after Configuration is done |
---|
30 | */ |
---|
31 | int mgs_cache_post_config(apr_pool_t *p, server_rec *s, mgs_srvconf_rec *sc); |
---|
32 | |
---|
33 | /** |
---|
34 | * Init the Cache inside each Process |
---|
35 | */ |
---|
36 | int mgs_cache_child_init(apr_pool_t *p, server_rec *s, mgs_srvconf_rec *sc); |
---|
37 | |
---|
38 | /** |
---|
39 | * Setup the Session Caching |
---|
40 | */ |
---|
41 | int mgs_cache_session_init(mgs_handle_t *ctxt); |
---|
42 | |
---|
43 | |
---|
44 | |
---|
45 | /** |
---|
46 | * Convert a time_t into a null terminated string in a format |
---|
47 | * compatible with OpenSSL's ASN1_TIME_print() |
---|
48 | * |
---|
49 | * @param t time_t time |
---|
50 | * @param str Location to store the time string |
---|
51 | * @param strsize The maximum length that can be stored in str |
---|
52 | */ |
---|
53 | char *mgs_time2sz(time_t t, char *str, int strsize); |
---|
54 | |
---|
55 | /* |
---|
56 | * Generic object cache functions, used for OCSP caching |
---|
57 | */ |
---|
58 | typedef int (*cache_store_func)(server_rec *s, gnutls_datum_t key, |
---|
59 | gnutls_datum_t data, apr_time_t expiry); |
---|
60 | typedef gnutls_datum_t (*cache_fetch_func)(mgs_handle_t *ctxt, |
---|
61 | gnutls_datum_t key); |
---|
62 | struct mgs_cache { |
---|
63 | cache_store_func store; |
---|
64 | cache_fetch_func fetch; |
---|
65 | /* Mutex for cache access (used only if the cache type is not |
---|
66 | * thread-safe) */ |
---|
67 | apr_global_mutex_t *mutex; |
---|
68 | }; |
---|
69 | |
---|
70 | #endif /** __MOD_GNUTLS_CACHE_H__ */ |
---|