]> git.sur5r.net Git - openldap/commitdiff
ITS#7200 enforce check for matching serverID URL
authorHoward Chu <hyc@openldap.org>
Fri, 9 Mar 2012 03:24:09 +0000 (19:24 -0800)
committerQuanah Gibson-Mount <quanah@openldap.org>
Fri, 9 Mar 2012 19:13:35 +0000 (11:13 -0800)
servers/slapd/bconfig.c

index b76cd2649713a05a0b4ae6ca74fa808f017fa486..63ef8548abb1078c2b2e187a9854c67f5caa4a59 100644 (file)
@@ -890,6 +890,7 @@ typedef struct ServerID {
 } ServerID;
 
 static ServerID *sid_list;
+static int sid_set;
 
 typedef struct voidList {
        struct voidList *vl_next;
@@ -1903,6 +1904,7 @@ sortval_reject:
                                        Debug( LDAP_DEBUG_CONFIG,
                                                "%s: SID=0x%03x\n",
                                                c->log, slap_serverID, 0 );
+                                       sid_set = 1;
                                }
                                si->si_next = NULL;
                                si->si_num = num;
@@ -1912,11 +1914,20 @@ sortval_reject:
                                if (( slapMode & SLAP_SERVER_MODE ) && c->argc > 2 ) {
                                        Listener *l = config_check_my_url( c->argv[2], lud );
                                        if ( l ) {
+                                               if ( sid_set ) {
+                                                       ldap_free_urldesc( lud );
+                                                       snprintf( c->cr_msg, sizeof( c->cr_msg ),
+                                                               "<%s> multiple server ID URLs matched, only one is allowed", c->argv[0] );
+                                                       Debug(LDAP_DEBUG_ANY, "%s: %s %s\n",
+                                                               c->log, c->cr_msg, c->argv[1] );
+                                                       return 1;
+                                               }
                                                slap_serverID = si->si_num;
                                                Debug( LDAP_DEBUG_CONFIG,
                                                        "%s: SID=0x%03x (listener=%s)\n",
                                                        c->log, slap_serverID,
                                                        l->sl_url.bv_val );
+                                               sid_set = 1;
                                        }
                                }
                                if ( c->argc > 2 )
@@ -4228,6 +4239,13 @@ done:
                        assert( 0 );
                }
        }
+       if ( rc == 0 && ( slapMode & SLAP_SERVER_MODE ) && sid_list ) {
+               if ( !BER_BVISEMPTY( &sid_list->si_url ) && !sid_set ) {
+                       Debug(LDAP_DEBUG_ANY, "read_config: no serverID / URL match found. "
+                               "Check slapd -h arguments.\n", 0,0,0 );
+                       rc = LDAP_OTHER;
+               }
+       }
        return rc;
 }