]> git.sur5r.net Git - openldap/blob - servers/slapd/starttls.c
410e450733ce0e3473d42cf0de0fe5e6fe309a82
[openldap] / servers / slapd / starttls.c
1 /* $OpenLDAP$ */
2 /* 
3  * Copyright 1999 The OpenLDAP Foundation.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15 #include <ac/socket.h>
16
17 #include "slap.h"
18
19 #ifdef HAVE_TLS
20
21 int
22 starttls_extop (
23         SLAP_EXTOP_CALLBACK_FN cb,
24         Connection *conn,
25         Operation *op,
26         char * oid,
27         struct berval * reqdata,
28         struct berval ** rspdata,
29         LDAPControl ***rspctrls,
30         char ** text )
31 {
32         if ( reqdata != NULL ) {
33                 /* no request data should be provided */
34                 return LDAP_PROTOCOL_ERROR;
35         }
36
37         /* can't start TLS if it is already started */
38         if (conn->c_is_tls != 0)
39                 return(LDAP_OPERATIONS_ERROR);
40
41         /* can't start TLS if there are other op's around */
42         if (conn->c_ops != NULL) {
43                 if (conn->c_ops != op || op->o_next != NULL)
44                         return(LDAP_OPERATIONS_ERROR);
45         }
46         if (conn->c_pending_ops != NULL) {
47                 if (conn->c_pending_ops != op || op->o_next != NULL)
48                         return(LDAP_OPERATIONS_ERROR);
49         }
50
51         /* here's some pseudo-code if HAVE_TLS is defined
52          * but for some reason TLS is not available.
53          */
54         /*
55                 if (tls not really supported) {
56                         if (referral exists) {
57                                 // caller will need to put the referral into the result
58                                 return(LDAP_REFERRAL);
59                         }
60                         return(LDAP_UNAVAILABLE);
61                 }
62         */
63
64     conn->c_is_tls = 1;
65     conn->c_needs_tls_accept = 1;
66
67     return(LDAP_SUCCESS);
68 }
69
70 #endif  /* HAVE_TLS */