X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fstarttls.c;h=97bbab084ac9dd34cbd9fd11cb3a06b1333133b0;hb=a26612bc00bacbc660fa4a26466f609a29a1d072;hp=bd12f32c73d0be0c140d9c0b4cd10dad23ce2ef5;hpb=563fd083e9c566e356f95862c12448d52aa60e40;p=openldap diff --git a/servers/slapd/starttls.c b/servers/slapd/starttls.c index bd12f32c73..97bbab084a 100644 --- a/servers/slapd/starttls.c +++ b/servers/slapd/starttls.c @@ -59,6 +59,21 @@ starttls_extop ( goto done; } + if ( ( global_disallows & SLAP_DISALLOW_TLS_AUTHC ) && + ( conn->c_dn != NULL ) ) + { + *text = "cannot start TLS after authentication"; + rc = LDAP_OPERATIONS_ERROR; + goto done; + } + + if ( ( global_allows & SLAP_ALLOW_TLS_2_ANON ) && + ( conn->c_dn != NULL ) ) + { + /* force to anonymous */ + connection2anonymous( conn ); + } + /* fail if TLS could not be initialized */ if (ldap_pvt_tls_get_option(NULL, LDAP_OPT_X_TLS_CERT, &ctx) != 0 || ctx == NULL)