👁 Image
OpenBSD release(s):
1.18 (79 78 77 76 75 74 73),
1.17 (72 71 70),
1.16 (69 68 67 66 65 64),
1.15 (63 62 61),
1.13 (60 59),
1.10 (58 57),
1.9 (56 55),
1.8 (54 53 52),
1.6 (51 50 49),
1.5 (48),
Tags:
None
revision
1.18/
(Download) -
annotate -
Wed, 08 Mar 2023 04:43:13 UTC by guenther
OpenBSD release(s): 79 78 77 76 75 74 73
Changes since
1.17:
+1 -2
(diff)
Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
revision
1.17/
(Download) -
annotate -
Tue, 20 Apr 2021 21:11:56 UTC by dv
OpenBSD release(s): 72 71 70
Changes since
1.16:
+2 -2
(diff)
Move TAILQ initialization to files where they are used.
These priv-sep daemons all follow a similar design and use TAILQs
for tracking control process connections. In most cases, the TAILQs
are initialized separate from where they are used. Since the scope
of use is generally confined to a specific control process file,
this commit also removes any extern definitions and exposing the
TAILQ structures to other compilation units.
ok bluhm@, tb@
revision
1.16/
(Download) -
annotate -
Tue, 15 May 2018 11:19:21 UTC by reyk
OpenBSD release(s): 69 68 67 66 65 64
Changes since
1.15:
+2 -2
(diff)
Fix format string errors in log messages and update ldapd to use relayd's log.c
OK benno@ jmatthew@
revision
1.15/
(Download) -
annotate -
Fri, 20 Jan 2017 11:55:08 UTC by benno
OpenBSD release(s): 63 62 61
Changes since
1.14:
+2 -1
(diff)
work on making log.c similar in all daemons:
move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.
ok krw@ jmatthew@
revision
1.14/
(Download) -
annotate -
Mon, 09 Jan 2017 14:04:31 UTC by krw
Changes since
1.13:
+5 -4
(diff)
Replace hand-rolled for(;;) traversal of ctl_conns TAILQ with
TAILQ_FOREACH().
No intentional functional change.
ok reyk@
revision
1.13/
(Download) -
annotate -
Sun, 17 Jan 2016 08:13:34 UTC by landry
OpenBSD release(s): 60 59
Changes since
1.12:
+1 -2
(diff)
Properly remove unix sockets (control & listening) upon exit of the
parent process.
Child process was killed by pledge because it tried to remove the
control socket and didnt have cpath - anyway it couldnt remove it since
it had chrooted..
ok jmatthew@ deraadt@
revision
1.12/
(Download) -
annotate -
Thu, 24 Dec 2015 17:47:57 UTC by mmcc
Changes since
1.11:
+3 -3
(diff)
bzero -> memset. No binary change.
revision
1.11/
(Download) -
annotate -
Mon, 02 Nov 2015 06:32:51 UTC by jmatthew
Changes since
1.10:
+2 -5
(diff)
use SOCK_NONBLOCK instead of fcntl
ok dlg@
revision
1.10/
(Download) -
annotate -
Fri, 16 Jan 2015 16:04:38 UTC by deraadt
OpenBSD release(s): 58 57
Changes since
1.9:
+1 -2
(diff)
change to <limits.h> universe. The only changes in the binary are due
to the heavy use of assert.
ok millert
revision
1.9/
(Download) -
annotate -
Sat, 02 Nov 2013 13:31:51 UTC by deraadt
OpenBSD release(s): 56 55
Changes since
1.8:
+4 -4
(diff)
bunch of format string cleanups, removing %i, signed vs unsigned, and even
a few long long's
ok jmatthew
revision
1.8/
(Download) -
annotate -
Sat, 16 Jun 2012 00:08:32 UTC by jmatthew
OpenBSD release(s): 54 53 52
Changes since
1.7:
+25 -4
(diff)
Protect against fd exhaustion when reopening database files. Only accept
client or control connections when there are at least 8 fds available,
and close a connection before calling imsg_read if it would be unable to
accept an fd from the parent process.
ok gilles@
revision
1.7/
(Download) -
annotate -
Wed, 11 Apr 2012 08:31:37 UTC by deraadt
Changes since
1.6:
+30 -7
(diff)
rate limiting of accept() in various cases. Testing by jmatthew. there
maybe still be a corner case where it needs one more file descriptor
beyond the limit..
revision
1.6/
(Download) -
annotate -
Wed, 01 Sep 2010 17:34:15 UTC by martinh
OpenBSD release(s): 51 50 49
Changes since
1.5:
+37 -84
(diff)
Move generic imsg/libevent glue to a separate file.
with eric@ at c2k10
revision
1.5/
(Download) -
annotate -
Tue, 06 Jul 2010 20:10:57 UTC by martinh
OpenBSD release(s): 48
Changes since
1.4:
+6 -5
(diff)
Send empty statistics rather than segfault if "ldapctl stats" is run when a
database is being reopened due to compaction.
revision
1.4/
(Download) -
annotate -
Wed, 30 Jun 2010 17:16:09 UTC by martinh
Changes since
1.3:
+3 -1
(diff)
Don't send statistics for referral namespaces. This unbreaks ldapctl stats.
Avoid null pointer dereference when reopening a namespace.
revision
1.3/
(Download) -
annotate -
Sun, 27 Jun 2010 16:24:17 UTC by martinh
Changes since
1.2:
+2 -26
(diff)
Remove unused code.
revision
1.2/
(Download) -
annotate -
Wed, 23 Jun 2010 12:40:19 UTC by martinh
Changes since
1.1:
+1 -62
(diff)
Remove compaction and indexing from ldapd. It is better done by a separate
process now that the btree can pick up the changes automatically.
revision
1.1/
(Download) -
annotate -
Mon, 31 May 2010 17:36:31 UTC by martinh
Initial import of ldapd, a small LDAP daemon. Work in progress.
ok deraadt@ jacekm@ gilles@ back@ henning@ blambert@