Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
3c1b07b7
Commit
3c1b07b7
authored
Mar 08, 2012
by
Howard Chu
Committed by
Quanah Gibson-Mount
Mar 09, 2012
Browse files
ITS#7200 enforce check for matching serverID URL
parent
48dcd915
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bconfig.c
View file @
3c1b07b7
...
...
@@ -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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment