]> git.sur5r.net Git - openldap/commitdiff
ITS#8845 Recognise control-exop compatibility
authorOndřej Kuzník <ondra@openldap.org>
Wed, 9 May 2018 09:13:59 +0000 (10:13 +0100)
committerOndřej Kuzník <ondra@openldap.org>
Mon, 2 Jul 2018 15:18:26 +0000 (16:18 +0100)
servers/slapd/controls.c
servers/slapd/proto-slap.h

index 60b2245734a7c3cf684f7d1d56313232a771e8bd..73f3acf9fddc286404ebaee6c45d6b2eba8a83af 100644 (file)
@@ -330,15 +330,6 @@ register_supported_control2(const char *controloid,
 
        } else {
                if ( sc->sc_extendedopsbv ) {
-                       /* FIXME: in principle, we should rather merge
-                        * existing extops with those supported by the
-                        * new control handling implementation.
-                        * In fact, whether a control is compatible with
-                        * an extop should not be a matter of implementation.
-                        * We likely also need a means for a newly
-                        * registered extop to declare that it is
-                        * comptible with an already registered control.
-                        */
                        ber_bvarray_free( sc->sc_extendedopsbv );
                        sc->sc_extendedopsbv = NULL;
                        sc->sc_extendedops = NULL;
@@ -387,6 +378,60 @@ unregister_supported_control( const char *controloid )
 }
 #endif /* SLAP_CONFIG_DELETE */
 
+int
+register_control_exop( const char *controloid, char *exopoid )
+{
+       struct slap_control *sc = NULL;
+       BerVarray extendedopsbv;
+       char **extendedops;
+       int i;
+
+       if ( controloid == NULL || exopoid == NULL ) {
+               return LDAP_PARAM_ERROR;
+       }
+
+       for ( i = 0; slap_known_controls[ i ]; i++ ) {
+               if ( strcmp( controloid, slap_known_controls[ i ] ) == 0 ) {
+                       sc = find_ctrl( controloid );
+                       assert( sc != NULL );
+                       break;
+               }
+       }
+
+       if ( !sc ) {
+               Debug( LDAP_DEBUG_ANY, "register_control_exop: "
+                       "Control %s not registered.\n",
+                       controloid, 0, 0 );
+               return LDAP_PARAM_ERROR;
+       }
+
+       for ( i = 0; sc->sc_extendedops && sc->sc_extendedops[ i ]; i++ ) {
+               if ( strcmp( exopoid, sc->sc_extendedops[ i ] ) == 0 ) {
+                       return LDAP_SUCCESS;
+               }
+       }
+
+       extendedops = ber_memrealloc( sc->sc_extendedops, (i + 2) * sizeof( char * ) );
+       if ( extendedops == NULL ) {
+               return LDAP_NO_MEMORY;
+       }
+       sc->sc_extendedops = extendedops;
+
+       extendedopsbv = ber_memrealloc( sc->sc_extendedopsbv, (i + 2) * sizeof( struct berval ) );
+       if ( extendedopsbv == NULL ) {
+               return LDAP_NO_MEMORY;
+       }
+       sc->sc_extendedopsbv = extendedopsbv;
+
+       extendedops[ i ] = exopoid;
+       extendedops[ i+1 ] = NULL;
+
+       ber_str2bv( exopoid, 0, 1, &extendedopsbv[ i ] );
+       BER_BVZERO( &extendedopsbv[ i+1 ] );
+
+       return LDAP_SUCCESS;
+}
+
 /*
  * One-time initialization of internal controls.
  */
index ee68b5cd75944492252c53ff4a72a7108e3d7e3a..84b914267558d3fd3a6d5f0cfc709e4204aba6e2 100644 (file)
@@ -679,6 +679,7 @@ LDAP_SLAPD_F (int) register_supported_control2 LDAP_P((
 LDAP_SLAPD_F (int) unregister_supported_control LDAP_P((
        const char* controloid ));
 #endif /* SLAP_CONFIG_DELETE */
+LDAP_SLAPD_F (int) register_control_exop LDAP_P (( const char *controloid, char *exopoid ));
 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));