Hello, Sorry for the very late reply. I was overwhelmed by other tasks and couldn't keep up. Thank you David for your tenacity.
Please find attached a patch, submitted as the port's maintainer, updating i2pd to the latest version (2.60.0) and incorporating other improvements, mostly suggested by David. As discussed on this list, i2pd now lives in /var/i2pd instead of /var/lib/i2pd. This is required to eventually get rid of /var/lib entirely. But this is a breaking change, for which users should be warned, at least in the next release notes. The local HTTP interface is now disabled by default. I tested this patch quite extensively on amd64. It builds and runs fine, with all tests passing. The README is updated according to David and Arthur's suggestion about log rotation [1]. There are slight differences with David's latest proposal, but I'm being a bit nitpicky here. Unfortunately, a problem remains, that I was not able to solve... I'm probably missing something obvious. When net/i2pd is installed using this patch, the whole /var directory ends up belonging to _i2pd:_i2pd instead of root:wheel (not only the /var/i2pd directory). There's something to fix in PLIST before committing the patch, sorry for that. Best regards. -- [1] https://marc.info/?l=openbsd-ports&m=178007928912403&w=2 On Sunday, June 28th, 2026 at 7:49 PM, David Uhden Collado <[email protected]> wrote: > David Uhden Collado wrote: > > Hello, > > > > Please find attached a patch that updates the net/i2pd port to version > > 2.60.0. > > > > The upstream release notes and full list of changes are available at: > > > > https://github.com/PurpleI2P/i2pd/releases/tag/2.60.0 > > > > In addition to the version bump, I have included several adjustments > > that both the maintainer and I previously discussed in another thread on > > this mailing list. That discussion is available at: > > > > https://marc.info/?t=176780204200003&r=1&w=2 > > > > It also includes a compatibility directory under ${LOCALSTATEDIR}/lib/ > > i2pd so existing _i2pd accounts using the old home directory keep > > working. The directory is created during post-install so that fake/ > > package can see it. > > > > I would also like to ask whether it might be possible to improve > > compatibility with LibreSSL. A new API for ML-KEM was recently > > introduced, and i2pd currently enables this post-quantum encryption > > algorithm only when built against OpenSSL. It seems that adding support > > for LibreSSL may now be feasible. > > > > Additionally, there are several other features in i2pd that are > > currently disabled when building with LibreSSL because it was previously > > assumed that equivalent functionality could not be implemented. It may > > be worth revisiting some of these areas to determine whether support > > could now be added. > > > > Thank you for your time and consideration. > > > > Best regards, > > David. > ping > >
Index: Makefile =================================================================== RCS file: /cvs/ports/net/i2pd/Makefile,v diff -u -p -r1.33 Makefile --- Makefile 21 Feb 2026 14:20:20 -0000 1.33 +++ Makefile 28 Jun 2026 13:51:57 -0000 @@ -2,7 +2,7 @@ COMMENT = client for the I2P anonymous n GH_ACCOUNT = PurpleI2P GH_PROJECT = i2pd -GH_TAGNAME = 2.59.0 +GH_TAGNAME = 2.60.0 CATEGORIES = net HOMEPAGE = https://i2pd.website @@ -14,7 +14,7 @@ PERMIT_PACKAGE = Yes WANTLIB += ${COMPILER_LIBCXX} WANTLIB += boost_filesystem-mt boost_program_options-mt -WANTLIB += boost_atomic-mt c crypto m miniupnpc ssl z +WANTLIB += boost_atomic-mt boost_container-mt c crypto m miniupnpc ssl z COMPILER = base-clang ports-gcc MODULES = devel/cmake Index: distinfo =================================================================== RCS file: /cvs/ports/net/i2pd/distinfo,v diff -u -p -r1.26 distinfo --- distinfo 21 Feb 2026 14:20:20 -0000 1.26 +++ distinfo 28 Jun 2026 13:51:57 -0000 @@ -1,2 +1,2 @@ -SHA256 (i2pd-2.59.0.tar.gz) = Dr6wXk82qzgJRJVhoJXcdnrYIaxqYclWI6tJvk/9OYs= -SIZE (i2pd-2.59.0.tar.gz) = 743516 +SHA256 (i2pd-2.60.0.tar.gz) = 7zIQDF/99NI9/nii9sCPZVdP15+ZLrKsjP6gtkQN6r0= +SIZE (i2pd-2.60.0.tar.gz) = 763177 Index: patches/patch-contrib_i2pd_conf =================================================================== RCS file: patches/patch-contrib_i2pd_conf diff -N patches/patch-contrib_i2pd_conf --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-contrib_i2pd_conf 28 Jun 2026 13:51:57 -0000 @@ -0,0 +1,41 @@ +Index: contrib/i2pd.conf +--- contrib/i2pd.conf.orig ++++ contrib/i2pd.conf +@@ -8,16 +8,16 @@ + + ## Tunnels config file + ## Default: ~/.i2pd/tunnels.conf or /var/lib/i2pd/tunnels.conf +-# tunconf = /var/lib/i2pd/tunnels.conf ++tunconf = /etc/i2pd/tunnels.conf + + ## Tunnels config files path + ## Use that path to store separated tunnels in different config files. + ## Default: ~/.i2pd/tunnels.d or /var/lib/i2pd/tunnels.d +-# tunnelsdir = /var/lib/i2pd/tunnels.d ++tunnelsdir = /etc/i2pd/tunnels.d + + ## Path to certificates used for verifying .su3, families + ## Default: ~/.i2pd/certificates or /var/lib/i2pd/certificates +-# certsdir = /var/lib/i2pd/certificates ++certsdir = /etc/i2pd/certificates + + ## Where to write pidfile (default: /run/i2pd.pid, not used in Windows) + # pidfile = /run/i2pd.pid +@@ -30,7 +30,7 @@ + ## * stdout - print log entries to stdout + ## * file - log entries to a file + ## * syslog - use syslog, see man 3 syslog +-# log = file ++log = syslog + ## Path to logfile (default: autodetect) + # logfile = /var/log/i2pd/i2pd.log + ## Log messages above this level (debug, info, *warn, error, critical, none) +@@ -122,7 +122,7 @@ ipv6 = false + [http] + ## Web Console settings + ## Enable the Web Console (default: true) +-# enabled = true ++enabled = false + ## Address and port service will listen on (default: 127.0.0.1:7070) + # address = 127.0.0.1 + # port = 7070 Index: patches/patch-test_Makefile =================================================================== RCS file: patches/patch-test_Makefile diff -N patches/patch-test_Makefile --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-test_Makefile 28 Jun 2026 13:51:57 -0000 @@ -0,0 +1,11 @@ +Index: tests/Makefile +--- tests/Makefile.orig ++++ tests/Makefile +@@ -18,7 +18,6 @@ ifneq (, $(findstring mingw, $(SYS))$(findstring windo + endif + + LDLIBS = \ +- -lboost_system$(BOOST_SUFFIX) \ + -lboost_program_options$(BOOST_SUFFIX) \ + -lssl \ + -lcrypto \ Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/net/i2pd/pkg/PLIST,v diff -u -p -r1.18 PLIST --- pkg/PLIST 21 Feb 2026 14:20:20 -0000 1.18 +++ pkg/PLIST 28 Jun 2026 13:51:57 -0000 @@ -1,5 +1,5 @@ @newgroup _i2pd:838 -@newuser _i2pd:838:838::i2pd account:${LOCALSTATEDIR}/lib/i2pd:/sbin/nologin +@newuser _i2pd:838:838::i2pd account:${LOCALSTATEDIR}/i2pd:/sbin/nologin @rcscript ${RCDIR}/i2pd @bin bin/i2pd include/i2pd/ @@ -69,14 +69,16 @@ include/i2pd/util.h include/i2pd/version.h @static-lib lib/libi2pd.a @static-lib lib/libi2pdclient.a +@mode 0750 @owner _i2pd @group _i2pd @sample ${SYSCONFDIR}/i2pd/ -@sample ${LOCALSTATEDIR}/lib/i2pd/ -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/ -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/ -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/ -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/router/ +@mode +@sample ${LOCALSTATEDIR}/i2pd/ +@sample ${LOCALSTATEDIR}/i2pd/certificates/ +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/ +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/ +@sample ${LOCALSTATEDIR}/i2pd/certificates/router/ @owner @group @static-lib lib/libi2pdlang.a @@ -87,139 +89,149 @@ share/examples/i2pd/certificates/family/ share/examples/i2pd/certificates/family/gostcoin.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/gostcoin.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/gostcoin.crt @owner @group share/examples/i2pd/certificates/family/i2p-dev.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/i2p-dev.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/i2p-dev.crt @owner @group share/examples/i2pd/certificates/family/i2pd-dev.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/i2pd-dev.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/i2pd-dev.crt @owner @group share/examples/i2pd/certificates/family/mca2-i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/mca2-i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/mca2-i2p.crt @owner @group share/examples/i2pd/certificates/family/stormycloud.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/stormycloud.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/stormycloud.crt @owner @group share/examples/i2pd/certificates/family/volatile.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/family/volatile.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/family/volatile.crt @owner @group share/examples/i2pd/certificates/reseed/ @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/ +@sample ${LOCALSTATEDIR}/ @owner @group share/examples/i2pd/certificates/reseed/acetone_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/acetone_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/acetone_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/admin_at_stormycloud.org.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/admin_at_stormycloud.org.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/admin_at_stormycloud.org.crt @owner @group share/examples/i2pd/certificates/reseed/creativecowpat_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/creativecowpat_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/creativecowpat_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/diyarciftci_at_protonmail.com.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/diyarciftci_at_protonmail.com.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/diyarciftci_at_protonmail.com.crt @owner @group share/examples/i2pd/certificates/reseed/echelon3_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/echelon3_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/echelon3_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/hankhill19580_at_gmail.com.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/hankhill19580_at_gmail.com.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/hankhill19580_at_gmail.com.crt @owner @group share/examples/i2pd/certificates/reseed/i2p-reseed_at_mk16.de.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/i2p-reseed_at_mk16.de.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/i2p-reseed_at_mk16.de.crt @owner @group share/examples/i2pd/certificates/reseed/igor_at_novg.net.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/igor_at_novg.net.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/igor_at_novg.net.crt @owner @group share/examples/i2pd/certificates/reseed/lazygravy_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/lazygravy_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/lazygravy_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/orignal_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/orignal_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/orignal_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/r4sas-reseed_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/r4sas-reseed_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/r4sas-reseed_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/rambler_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/rambler_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/rambler_at_mail.i2p.crt @owner @group share/examples/i2pd/certificates/reseed/reseed_at_diva.exchange.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/reseed_at_diva.exchange.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/reseed_at_diva.exchange.crt @owner @group share/examples/i2pd/certificates/reseed/sahil_at_mail.i2p.crt @owner _i2pd @group _i2pd -@sample ${LOCALSTATEDIR}/lib/i2pd/certificates/reseed/sahil_at_mail.i2p.crt +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/sahil_at_mail.i2p.crt +@owner +@group +share/examples/i2pd/certificates/reseed/vserod1488_at_proton.me.crt +@owner _i2pd +@group _i2pd +@sample ${LOCALSTATEDIR}/i2pd/certificates/reseed/vserod1488_at_proton.me.crt @owner @group share/examples/i2pd/i2pd.conf +@mode 0640 @owner _i2pd @group _i2pd @sample ${SYSCONFDIR}/i2pd/i2pd.conf +@mode @owner @group share/examples/i2pd/tunnels.conf +@mode 0640 @owner _i2pd @group _i2pd @sample ${SYSCONFDIR}/i2pd/tunnels.conf +@mode @owner @group share/examples/login.conf.d/i2pd Index: pkg/README =================================================================== RCS file: /cvs/ports/net/i2pd/pkg/README,v diff -u -p -r1.4 README --- pkg/README 16 Apr 2024 15:22:32 -0000 1.4 +++ pkg/README 28 Jun 2026 13:51:57 -0000 @@ -24,3 +24,56 @@ and also edit /etc/login.conf.d/i2pd: :openfiles-cur=8192:\ :openfiles-max=8192:\ :tc=daemon: + + +The HTTP interface +================== + +On OpenBSD, i2pd's HTTP interface is disabled by default, because it +allows any user on the system to perform actions on the daemon, such +as shutting it down, or access private data, such as the router +identity and the tunnels' B32 addresses. + +If you want to use this interface anyway, you can reenable it in +/etc/i2pd/i2pd.conf under the [http] section. + + +Graceful shutdown +================= + +It is good practice to shutdown the i2pd daemon gracefully, to avoid +immediatly severing all connections, which would disconnect all +your peers and affect the overall operation of the I2P network. + +You can initiate a graceful shutdown without the HTTP interface by +sending a signal to the i2pd daemon like this: + + kill -INT $(cat /var/i2pd/i2pd.pid) + +When it shuts down gracefully, the i2pd daemon waits for all transit +tunnels to expire, which usually takes 10 minutes. + + +Logging +======= + +By default, the OpenBSD port of ${PKGSTEM} sends its log messages to +syslogd(8), which writes them to the /var/log/daemon file. + +The default log level of ${PKGSTEM} ("warn") can be very verbose. You +may want to reduce this log verbosity by changing the "loglevel" +parameter in /etc/i2pd/i2pd.conf. + +If you want log messages to be written to another file, e.g. +/var/i2pd/i2pd.log, you can change the "log" and "logfile" parameters +in /etc/i2pd/i2pd.conf. To have this log file rotated automatically, +you can add an entry to /etc/newsyslog.conf using the i2pd pid +file so that newsyslog(8) can send SIGHUP to the daemon after rotation. + +For example: + + /var/i2pd/i2pd.log _i2pd:_i2pd 644 6 * $D13 Z +/var/i2pd/i2pd.pid + +Sending SIGHUP is enough for log rotation, and also makes i2pd reload +its tunnel configuration and rotate transient keys. Index: pkg/i2pd.rc =================================================================== RCS file: /cvs/ports/net/i2pd/pkg/i2pd.rc,v diff -u -p -r1.4 i2pd.rc --- pkg/i2pd.rc 11 Mar 2022 19:46:04 -0000 1.4 +++ pkg/i2pd.rc 28 Jun 2026 13:51:57 -0000 @@ -2,7 +2,12 @@ daemon="${TRUEPREFIX}/bin/i2pd --daemon" daemon_user="_i2pd" -daemon_flags="--service --datadir=${LOCALSTATEDIR}/lib/i2pd --conf=${SYSCONFDIR}/i2pd/i2pd.conf --tunconf=${SYSCONFDIR}/i2pd/tunnels.conf --tunnelsdir=${SYSCONFDIR}/i2pd/tunnels.d" +daemon_flags="--service \ + --datadir=${LOCALSTATEDIR}/i2pd \ + --conf=${SYSCONFDIR}/i2pd/i2pd.conf \ + --tunconf=${SYSCONFDIR}/i2pd/tunnels.conf \ + --tunnelsdir=${SYSCONFDIR}/i2pd/tunnels.d \ + --certsdir=${LOCALSTATEDIR}/i2pd/certificates" . /etc/rc.d/rc.subr
