First public contribution.
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
60 #include <openssl/lhash.h>
61 #include <openssl/rand.h>
64 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s);
65 static void SSL_SESSION_list_add(SSL_CTX *ctx,SSL_SESSION *s);
66 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck);
68 EXPORT_C SSL_SESSION *SSL_get_session(const SSL *ssl)
69 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
74 EXPORT_C SSL_SESSION *SSL_get1_session(SSL *ssl)
75 /* variant of SSL_get_session: caller really gets something */
78 /* Need to lock this all up rather than just use CRYPTO_add so that
79 * somebody doesn't free ssl->session between when we check it's
80 * non-null and when we up the reference count. */
81 CRYPTO_w_lock(CRYPTO_LOCK_SSL_SESSION);
85 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_SESSION);
89 EXPORT_C int SSL_SESSION_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
90 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
92 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_SESSION, argl, argp,
93 new_func, dup_func, free_func);
96 EXPORT_C int SSL_SESSION_set_ex_data(SSL_SESSION *s, int idx, void *arg)
98 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
101 EXPORT_C void *SSL_SESSION_get_ex_data(const SSL_SESSION *s, int idx)
103 return(CRYPTO_get_ex_data(&s->ex_data,idx));
106 EXPORT_C SSL_SESSION *SSL_SESSION_new(void)
110 ss=(SSL_SESSION *)OPENSSL_malloc(sizeof(SSL_SESSION));
113 SSLerr(SSL_F_SSL_SESSION_NEW,ERR_R_MALLOC_FAILURE);
116 memset(ss,0,sizeof(SSL_SESSION));
118 ss->verify_result = 1; /* avoid 0 (= X509_V_OK) just in case */
120 ss->timeout=60*5+4; /* 5 minute timeout by default */
121 ss->time=(unsigned long)time(NULL);
125 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
129 EXPORT_C const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s, unsigned int *len)
132 *len = s->session_id_length;
133 return s->session_id;
136 /* Even with SSLv2, we have 16 bytes (128 bits) of session ID space. SSLv3/TLSv1
137 * has 32 bytes (256 bits). As such, filling the ID with random gunk repeatedly
138 * until we have no conflict is going to complete in one iteration pretty much
139 * "most" of the time (btw: understatement). So, if it takes us 10 iterations
140 * and we still can't avoid a conflict - well that's a reasonable point to call
141 * it quits. Either the RAND code is broken or someone is trying to open roughly
142 * very close to 2^128 (or 2^256) SSL sessions to our server. How you might
143 * store that many sessions is perhaps a more interesting question ... */
145 #define MAX_SESS_ID_ATTEMPTS 10
146 static int def_generate_session_id(const SSL *ssl, unsigned char *id,
147 unsigned int *id_len)
149 unsigned int retry = 0;
151 if (RAND_pseudo_bytes(id, *id_len) <= 0)
153 while(SSL_has_matching_session_id(ssl, id, *id_len) &&
154 (++retry < MAX_SESS_ID_ATTEMPTS));
155 if(retry < MAX_SESS_ID_ATTEMPTS)
157 /* else - woops a session_id match */
158 /* XXX We should also check the external cache --
159 * but the probability of a collision is negligible, and
160 * we could not prevent the concurrent creation of sessions
161 * with identical IDs since we currently don't have means
162 * to atomically check whether a session ID already exists
163 * and make a reservation for it if it does not
164 * (this problem applies to the internal cache as well).
169 int ssl_get_new_session(SSL *s, int session)
171 /* This gets used by clients and servers. */
174 SSL_SESSION *ss=NULL;
175 GEN_SESSION_CB cb = def_generate_session_id;
177 if ((ss=SSL_SESSION_new()) == NULL) return(0);
179 /* If the context has a default timeout, use it */
180 if (s->ctx->session_timeout == 0)
181 ss->timeout=SSL_get_default_timeout(s);
183 ss->timeout=s->ctx->session_timeout;
185 if (s->session != NULL)
187 SSL_SESSION_free(s->session);
193 if (s->version == SSL2_VERSION)
195 ss->ssl_version=SSL2_VERSION;
196 ss->session_id_length=SSL2_SSL_SESSION_ID_LENGTH;
198 else if (s->version == SSL3_VERSION)
200 ss->ssl_version=SSL3_VERSION;
201 ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
203 else if (s->version == TLS1_VERSION)
205 ss->ssl_version=TLS1_VERSION;
206 ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
208 else if (s->version == DTLS1_VERSION)
210 ss->ssl_version=DTLS1_VERSION;
211 ss->session_id_length=SSL3_SSL_SESSION_ID_LENGTH;
215 SSLerr(SSL_F_SSL_GET_NEW_SESSION,SSL_R_UNSUPPORTED_SSL_VERSION);
216 SSL_SESSION_free(ss);
219 /* Choose which callback will set the session ID */
220 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
221 if(s->generate_session_id)
222 cb = s->generate_session_id;
223 else if(s->ctx->generate_session_id)
224 cb = s->ctx->generate_session_id;
225 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
226 /* Choose a session ID */
227 tmp = ss->session_id_length;
228 if(!cb(s, ss->session_id, &tmp))
230 /* The callback failed */
231 SSLerr(SSL_F_SSL_GET_NEW_SESSION,
232 SSL_R_SSL_SESSION_ID_CALLBACK_FAILED);
233 SSL_SESSION_free(ss);
236 /* Don't allow the callback to set the session length to zero.
237 * nor set it higher than it was. */
238 if(!tmp || (tmp > ss->session_id_length))
240 /* The callback set an illegal length */
241 SSLerr(SSL_F_SSL_GET_NEW_SESSION,
242 SSL_R_SSL_SESSION_ID_HAS_BAD_LENGTH);
243 SSL_SESSION_free(ss);
246 /* If the session length was shrunk and we're SSLv2, pad it */
247 if((tmp < ss->session_id_length) && (s->version == SSL2_VERSION))
248 memset(ss->session_id + tmp, 0, ss->session_id_length - tmp);
250 ss->session_id_length = tmp;
251 /* Finally, check for a conflict */
252 if(SSL_has_matching_session_id(s, ss->session_id,
253 ss->session_id_length))
255 SSLerr(SSL_F_SSL_GET_NEW_SESSION,
256 SSL_R_SSL_SESSION_ID_CONFLICT);
257 SSL_SESSION_free(ss);
263 ss->session_id_length=0;
266 if (s->sid_ctx_length > sizeof ss->sid_ctx)
268 SSLerr(SSL_F_SSL_GET_NEW_SESSION, ERR_R_INTERNAL_ERROR);
269 SSL_SESSION_free(ss);
272 memcpy(ss->sid_ctx,s->sid_ctx,s->sid_ctx_length);
273 ss->sid_ctx_length=s->sid_ctx_length;
275 ss->ssl_version=s->version;
276 ss->verify_result = X509_V_OK;
281 int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len,
282 const unsigned char *limit)
284 /* This is used only by servers. */
286 SSL_SESSION *ret=NULL;
289 if (len > SSL_MAX_SSL_SESSION_ID_LENGTH)
292 if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
296 data.ssl_version=s->version;
297 data.session_id_length=len;
300 memcpy(data.session_id,session_id,len);
301 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
302 ret=(SSL_SESSION *)lh_retrieve(s->ctx->sessions,&data);
304 /* don't allow other threads to steal it: */
305 CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
306 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
313 s->ctx->stats.sess_miss++;
315 if (s->ctx->get_session_cb != NULL
316 && (ret=s->ctx->get_session_cb(s,session_id,len,©))
319 s->ctx->stats.sess_cb_hit++;
321 /* Increment reference count now if the session callback
322 * asks us to do so (note that if the session structures
323 * returned by the callback are shared between threads,
324 * it must handle the reference count itself [i.e. copy == 0],
325 * or things won't be thread-safe). */
327 CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
329 /* Add the externally cached session to the internal
330 * cache as well if and only if we are supposed to. */
331 if(!(s->ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_STORE))
332 /* The following should not return 1, otherwise,
333 * things are very strange */
334 SSL_CTX_add_session(s->ctx,ret);
340 /* Now ret is non-NULL, and we own one of its reference counts. */
342 if (ret->sid_ctx_length != s->sid_ctx_length
343 || memcmp(ret->sid_ctx,s->sid_ctx,ret->sid_ctx_length))
345 /* We've found the session named by the client, but we don't
346 * want to use it in this context. */
348 #if 0 /* The client cannot always know when a session is not appropriate,
349 * so we shouldn't generate an error message. */
351 SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
353 goto err; /* treat like cache miss */
356 if((s->verify_mode & SSL_VERIFY_PEER) && s->sid_ctx_length == 0)
358 /* We can't be sure if this session is being used out of
359 * context, which is especially important for SSL_VERIFY_PEER.
360 * The application should have used SSL[_CTX]_set_session_id_context.
362 * For this error case, we generate an error instead of treating
363 * the event like a cache miss (otherwise it would be easy for
364 * applications to effectively disable the session cache by
365 * accident without anyone noticing).
368 SSLerr(SSL_F_SSL_GET_PREV_SESSION,SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED);
373 if (ret->cipher == NULL)
375 unsigned char buf[5],*p;
381 if ((ret->ssl_version>>8) == SSL3_VERSION_MAJOR)
382 ret->cipher=ssl_get_cipher_by_char(s,&(buf[2]));
384 ret->cipher=ssl_get_cipher_by_char(s,&(buf[1]));
385 if (ret->cipher == NULL)
390 #if 0 /* This is way too late. */
392 /* If a thread got the session, then 'swaped', and another got
393 * it and then due to a time-out decided to 'OPENSSL_free' it we could
394 * be in trouble. So I'll increment it now, then double decrement
395 * later - am I speaking rubbish?. */
396 CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
399 if (ret->timeout < (long)(time(NULL) - ret->time)) /* timeout */
401 s->ctx->stats.sess_timeout++;
402 /* remove it from the cache */
403 SSL_CTX_remove_session(s->ctx,ret);
407 s->ctx->stats.sess_hit++;
409 /* ret->time=time(NULL); */ /* rezero timeout? */
410 /* again, just leave the session
411 * if it is the same session, we have just incremented and
412 * then decremented the reference count :-) */
413 if (s->session != NULL)
414 SSL_SESSION_free(s->session);
416 s->verify_result = s->session->verify_result;
421 SSL_SESSION_free(ret);
428 EXPORT_C int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c)
433 /* add just 1 reference count for the SSL_CTX's session cache
434 * even though it has two ways of access: each session is in a
435 * doubly linked list and an lhash */
436 CRYPTO_add(&c->references,1,CRYPTO_LOCK_SSL_SESSION);
437 /* if session c is in already in cache, we take back the increment later */
439 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
440 s=(SSL_SESSION *)lh_insert(ctx->sessions,c);
442 /* s != NULL iff we already had a session with the given PID.
443 * In this case, s == c should hold (then we did not really modify
444 * ctx->sessions), or we're in trouble. */
445 if (s != NULL && s != c)
447 /* We *are* in trouble ... */
448 SSL_SESSION_list_remove(ctx,s);
450 /* ... so pretend the other session did not exist in cache
451 * (we cannot handle two SSL_SESSION structures with identical
452 * session ID in the same cache, which could happen e.g. when
453 * two threads concurrently obtain the same session from an external
458 /* Put at the head of the queue unless it is already in the cache */
460 SSL_SESSION_list_add(ctx,c);
464 /* existing cache entry -- decrement previously incremented reference
465 * count because it already takes into account the cache */
467 SSL_SESSION_free(s); /* s == c */
472 /* new cache entry -- remove old ones if cache has become too large */
476 if (SSL_CTX_sess_get_cache_size(ctx) > 0)
478 while (SSL_CTX_sess_number(ctx) >
479 SSL_CTX_sess_get_cache_size(ctx))
481 if (!remove_session_lock(ctx,
482 ctx->session_cache_tail, 0))
485 ctx->stats.sess_cache_full++;
489 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
493 EXPORT_C int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c)
495 return remove_session_lock(ctx, c, 1);
498 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *c, int lck)
503 if ((c != NULL) && (c->session_id_length != 0))
505 if(lck) CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
506 if ((r = (SSL_SESSION *)lh_retrieve(ctx->sessions,c)) == c)
509 r=(SSL_SESSION *)lh_delete(ctx->sessions,c);
510 SSL_SESSION_list_remove(ctx,c);
513 if(lck) CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
518 if (ctx->remove_session_cb != NULL)
519 ctx->remove_session_cb(ctx,r);
528 EXPORT_C void SSL_SESSION_free(SSL_SESSION *ss)
535 i=CRYPTO_add(&ss->references,-1,CRYPTO_LOCK_SSL_SESSION);
537 REF_PRINT("SSL_SESSION",ss);
543 fprintf(stderr,"SSL_SESSION_free, bad reference count\n");
548 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_SESSION, ss, &ss->ex_data);
550 OPENSSL_cleanse(ss->key_arg,sizeof ss->key_arg);
551 OPENSSL_cleanse(ss->master_key,sizeof ss->master_key);
552 OPENSSL_cleanse(ss->session_id,sizeof ss->session_id);
553 if (ss->sess_cert != NULL) ssl_sess_cert_free(ss->sess_cert);
554 if (ss->peer != NULL) X509_free(ss->peer);
555 if (ss->ciphers != NULL) sk_SSL_CIPHER_free(ss->ciphers);
557 OPENSSL_cleanse(ss,sizeof(*ss));
561 EXPORT_C int SSL_set_session(SSL *s, SSL_SESSION *session)
568 meth=s->ctx->method->get_ssl_method(session->ssl_version);
570 meth=s->method->get_ssl_method(session->ssl_version);
573 SSLerr(SSL_F_SSL_SET_SESSION,SSL_R_UNABLE_TO_FIND_SSL_METHOD);
577 if (meth != s->method)
579 if (!SSL_set_ssl_method(s,meth))
581 if (s->ctx->session_timeout == 0)
582 session->timeout=SSL_get_default_timeout(s);
584 session->timeout=s->ctx->session_timeout;
587 #ifndef OPENSSL_NO_KRB5
588 if (s->kssl_ctx && !s->kssl_ctx->client_princ &&
589 session->krb5_client_princ_len > 0)
591 s->kssl_ctx->client_princ = (char *)OPENSSL_malloc(session->krb5_client_princ_len + 1);
592 memcpy(s->kssl_ctx->client_princ,session->krb5_client_princ,
593 session->krb5_client_princ_len);
594 s->kssl_ctx->client_princ[session->krb5_client_princ_len] = '\0';
596 #endif /* OPENSSL_NO_KRB5 */
598 /* CRYPTO_w_lock(CRYPTO_LOCK_SSL);*/
599 CRYPTO_add(&session->references,1,CRYPTO_LOCK_SSL_SESSION);
600 if (s->session != NULL)
601 SSL_SESSION_free(s->session);
603 s->verify_result = s->session->verify_result;
604 /* CRYPTO_w_unlock(CRYPTO_LOCK_SSL);*/
609 if (s->session != NULL)
611 SSL_SESSION_free(s->session);
616 if (meth != s->method)
618 if (!SSL_set_ssl_method(s,meth))
626 EXPORT_C long SSL_SESSION_set_timeout(SSL_SESSION *s, long t)
628 if (s == NULL) return(0);
633 EXPORT_C long SSL_SESSION_get_timeout(const SSL_SESSION *s)
635 if (s == NULL) return(0);
639 EXPORT_C long SSL_SESSION_get_time(const SSL_SESSION *s)
641 if (s == NULL) return(0);
645 EXPORT_C long SSL_SESSION_set_time(SSL_SESSION *s, long t)
647 if (s == NULL) return(0);
652 EXPORT_C long SSL_CTX_set_timeout(SSL_CTX *s, long t)
655 if (s == NULL) return(0);
656 l=s->session_timeout;
657 s->session_timeout=t;
661 EXPORT_C long SSL_CTX_get_timeout(const SSL_CTX *s)
663 if (s == NULL) return(0);
664 return(s->session_timeout);
667 typedef struct timeout_param_st
674 static void timeout(SSL_SESSION *s, TIMEOUT_PARAM *p)
676 if ((p->time == 0) || (p->time > (s->time+s->timeout))) /* timeout */
678 /* The reason we don't call SSL_CTX_remove_session() is to
679 * save on locking overhead */
680 lh_delete(p->cache,s);
681 SSL_SESSION_list_remove(p->ctx,s);
683 if (p->ctx->remove_session_cb != NULL)
684 p->ctx->remove_session_cb(p->ctx,s);
689 static IMPLEMENT_LHASH_DOALL_ARG_FN(timeout, SSL_SESSION *, TIMEOUT_PARAM *)
691 EXPORT_C void SSL_CTX_flush_sessions(SSL_CTX *s, long t)
697 tp.cache=s->sessions;
698 if (tp.cache == NULL) return;
700 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
701 i=tp.cache->down_load;
702 tp.cache->down_load=0;
703 lh_doall_arg(tp.cache, LHASH_DOALL_ARG_FN(timeout), &tp);
704 tp.cache->down_load=i;
705 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
708 int ssl_clear_bad_session(SSL *s)
710 if ( (s->session != NULL) &&
711 !(s->shutdown & SSL_SENT_SHUTDOWN) &&
712 !(SSL_in_init(s) || SSL_in_before(s)))
714 SSL_CTX_remove_session(s->ctx,s->session);
721 /* locked by SSL_CTX in the calling function */
722 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *s)
724 if ((s->next == NULL) || (s->prev == NULL)) return;
726 if (s->next == (SSL_SESSION *)&(ctx->session_cache_tail))
727 { /* last element in list */
728 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
729 { /* only one element in list */
730 ctx->session_cache_head=NULL;
731 ctx->session_cache_tail=NULL;
735 ctx->session_cache_tail=s->prev;
736 s->prev->next=(SSL_SESSION *)&(ctx->session_cache_tail);
741 if (s->prev == (SSL_SESSION *)&(ctx->session_cache_head))
742 { /* first element in list */
743 ctx->session_cache_head=s->next;
744 s->next->prev=(SSL_SESSION *)&(ctx->session_cache_head);
747 { /* middle of list */
748 s->next->prev=s->prev;
749 s->prev->next=s->next;
752 s->prev=s->next=NULL;
755 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *s)
757 if ((s->next != NULL) && (s->prev != NULL))
758 SSL_SESSION_list_remove(ctx,s);
760 if (ctx->session_cache_head == NULL)
762 ctx->session_cache_head=s;
763 ctx->session_cache_tail=s;
764 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
765 s->next=(SSL_SESSION *)&(ctx->session_cache_tail);
769 s->next=ctx->session_cache_head;
771 s->prev=(SSL_SESSION *)&(ctx->session_cache_head);
772 ctx->session_cache_head=s;
776 EXPORT_C void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
777 int (*cb)(struct ssl_st *ssl,SSL_SESSION *sess))
779 ctx->new_session_cb=cb;
782 EXPORT_C int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(SSL *ssl, SSL_SESSION *sess)
784 return ctx->new_session_cb;
787 EXPORT_C void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
788 void (*cb)(SSL_CTX *ctx,SSL_SESSION *sess))
790 ctx->remove_session_cb=cb;
793 EXPORT_C void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(SSL_CTX * ctx,SSL_SESSION *sess)
795 return ctx->remove_session_cb;
798 EXPORT_C void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
799 SSL_SESSION *(*cb)(struct ssl_st *ssl,
800 unsigned char *data,int len,int *copy))
802 ctx->get_session_cb=cb;
805 EXPORT_C SSL_SESSION * (*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(SSL *ssl,
806 unsigned char *data,int len,int *copy)
808 return ctx->get_session_cb;
811 EXPORT_C void SSL_CTX_set_info_callback(SSL_CTX *ctx,
812 void (*cb)(const SSL *ssl,int type,int val))
814 ctx->info_callback=cb;
817 EXPORT_C void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl,int type,int val)
819 return ctx->info_callback;
822 EXPORT_C void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
823 int (*cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey))
825 ctx->client_cert_cb=cb;
828 EXPORT_C int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx))(SSL * ssl, X509 ** x509 , EVP_PKEY **pkey)
830 return ctx->client_cert_cb;
833 EXPORT_C void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
834 int (*cb)(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len))
836 ctx->app_gen_cookie_cb=cb;
839 EXPORT_C void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
840 int (*cb)(SSL *ssl, unsigned char *cookie, unsigned int cookie_len))
842 ctx->app_verify_cookie_cb=cb;