Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoș Haiduc
OpenLDAP
Commits
11797cdb
Commit
11797cdb
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Fix initialization, add additional diagnostics
parent
05188203
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
servers/slapd/back-bdb/init.c
+7
-2
7 additions, 2 deletions
servers/slapd/back-bdb/init.c
servers/slapd/back-bdb/tools.c
+27
-0
27 additions, 0 deletions
servers/slapd/back-bdb/tools.c
with
34 additions
and
2 deletions
servers/slapd/back-bdb/init.c
+
7
−
2
View file @
11797cdb
...
...
@@ -124,7 +124,7 @@ bdb_db_open( BackendDB *be )
rc
=
bdb
->
bi_dbenv
->
set_lg_dir
(
bdb
->
bi_dbenv
,
dir
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"b
i_back
_db_open: set_lg_dir(%s) failed: %s (%d)
\n
"
,
"b
db
_db_open: set_lg_dir(%s) failed: %s (%d)
\n
"
,
dir
,
db_strerror
(
rc
),
rc
);
return
rc
;
}
...
...
@@ -142,7 +142,7 @@ bdb_db_open( BackendDB *be )
#endif
Debug
(
LDAP_DEBUG_TRACE
,
"b
i_back
_db_open: dbenv_open(%s)
\n
"
,
"b
db
_db_open: dbenv_open(%s)
\n
"
,
bdb
->
bi_dbenv_home
,
0
,
0
);
rc
=
bdb
->
bi_dbenv
->
open
(
bdb
->
bi_dbenv
,
...
...
@@ -158,6 +158,9 @@ bdb_db_open( BackendDB *be )
flags
=
DB_THREAD
|
DB_CREATE
;
bdb
->
bi_databases
=
(
struct
bdb_db_info
**
)
ch_malloc
(
BDB_INDICES
*
sizeof
(
struct
bdb_db_info
*
)
);
/* open (and create) main database */
for
(
i
=
0
;
i
<
BDB_INDICES
;
i
++
)
{
struct
bdb_db_info
*
db
;
...
...
@@ -185,6 +188,8 @@ bdb_db_open( BackendDB *be )
bdb
->
bi_dbenv_home
,
db_strerror
(
rc
),
rc
);
return
rc
;
}
bdb
->
bi_databases
[
i
]
=
db
;
}
/* <insert> open (and create) index databases */
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/tools.c
+
27
−
0
View file @
11797cdb
...
...
@@ -20,6 +20,9 @@ int bdb_tool_entry_open(
{
int
rc
;
struct
bdb_info
*
bdb
=
(
struct
bdb_info
*
)
be
->
be_private
;
assert
(
be
!=
NULL
);
assert
(
bdb
!=
NULL
);
rc
=
bdb
->
bi_id2entry
->
bdi_db
->
cursor
(
bdb
->
bi_id2entry
->
bdi_db
,
NULL
,
&
cursor
,
0
);
...
...
@@ -41,6 +44,8 @@ int bdb_tool_entry_close(
{
struct
bdb_info
*
bdb
=
(
struct
bdb_info
*
)
be
->
be_private
;
assert
(
be
!=
NULL
);
if
(
key
.
data
)
{
ch_free
(
key
.
data
);
key
.
data
=
NULL
;
...
...
@@ -64,6 +69,7 @@ ID bdb_tool_entry_next(
int
rc
;
ID
id
;
assert
(
be
!=
NULL
);
assert
(
slapMode
&
SLAP_TOOL_MODE
);
assert
(
cursor
!=
NULL
);
...
...
@@ -86,6 +92,8 @@ Entry* bdb_tool_entry_get( BackendDB *be, ID id )
int
rc
;
Entry
*
e
;
struct
berval
bv
;
assert
(
be
!=
NULL
);
assert
(
slapMode
&
SLAP_TOOL_MODE
);
assert
(
data
.
data
!=
NULL
);
...
...
@@ -108,6 +116,7 @@ ID bdb_tool_entry_put(
struct
bdb_info
*
bdb
=
(
struct
bdb_info
*
)
be
->
be_private
;
DB_TXN
*
tid
;
assert
(
be
!=
NULL
);
assert
(
slapMode
&
SLAP_TOOL_MODE
);
Debug
(
LDAP_DEBUG_TRACE
,
"=> bdb_tool_entry_put( %ld,
\"
%s
\"
)
\n
"
,
...
...
@@ -115,23 +124,35 @@ ID bdb_tool_entry_put(
rc
=
txn_begin
(
bdb
->
bi_dbenv
,
NULL
,
&
tid
,
0
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: txn_begin failed: %s (%d)
\n
"
,
db_strerror
(
rc
),
rc
,
0
);
return
NOID
;
}
rc
=
bdb_next_id
(
be
,
tid
,
&
e
->
e_id
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: next_id failed: %s (%d)
\n
"
,
db_strerror
(
rc
),
rc
,
0
);
goto
done
;
}
/* add dn2id indices */
rc
=
bdb_dn2id_add
(
be
,
tid
,
e
->
e_ndn
,
e
->
e_id
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: dn2id_add failed: %s (%d)
\n
"
,
db_strerror
(
rc
),
rc
,
0
);
goto
done
;
}
/* id2entry index */
rc
=
bdb_id2entry_add
(
be
,
tid
,
e
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: id2entry_add failed: %s (%d)
\n
"
,
db_strerror
(
rc
),
rc
,
0
);
goto
done
;
}
...
...
@@ -146,10 +167,16 @@ done:
if
(
rc
==
0
)
{
rc
=
txn_commit
(
tid
,
0
);
if
(
rc
!=
0
)
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: txn_commit failed: %s (%d)
\n
"
,
db_strerror
(
rc
),
rc
,
0
);
e
->
e_id
=
NOID
;
}
}
else
{
Debug
(
LDAP_DEBUG_ANY
,
"=> bdb_tool_entry_put: txn_aborted!
\n
"
,
0
,
0
,
0
);
txn_abort
(
tid
);
e
->
e_id
=
NOID
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment