Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jan 2023 07:55:11 +0100
From:      Yuri <yuri@aetern.org>
To:        Kristof Provost <kp@FreeBSD.org>, Eugene Grosbein <eugen@FreeBSD.org>
Cc:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   Re: git: e9ae9fa93745 - main - syslog(3): unbreak log generation using fabricated PID
Message-ID:  <44f28dfb-0399-3ab6-b1f7-b72aeb59d6f3@aetern.org>
In-Reply-To: <CB6BABC4-5E53-448E-A4BB-2B21CB77B018@FreeBSD.org>
References:  <202208082230.278MUYZd078396@gitrepo.freebsd.org> <CB6BABC4-5E53-448E-A4BB-2B21CB77B018@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Kristof Provost wrote:
> On 9 Aug 2022, at 10:30, Eugene Grosbein wrote:
>> The branch main has been updated by eugen:
>>
>> URL: https://cgit.FreeBSD.org/src/commit/?id=e9ae9fa93745669b7dd0341d333257ad6cfe8e37
>>
>> commit e9ae9fa93745669b7dd0341d333257ad6cfe8e37
>> Author:     Eugene Grosbein <eugen@FreeBSD.org>
>> AuthorDate: 2022-08-08 22:21:02 +0000
>> Commit:     Eugene Grosbein <eugen@FreeBSD.org>
>> CommitDate: 2022-08-08 22:21:02 +0000
>>
>>     syslog(3): unbreak log generation using fabricated PID
>>
>>     Recover application ability to supply fabricated PID
>>     embedded into ident that was lost when libc switched
>>     to generation of RFC 5424 log messages, for example:
>>
>>     logger -t "ident[$$]" -p user.notice "test"
>>
>>     It is essential for long running scripts.
>>     Also, this change unbreaks matching resulted entries
>>     by ident in syslog.conf:
>>
>>     !ident
>>     *.* /var/log/ident.log
>>
>>     Without the fix, the log (and matching) was broken:
>>
>>     Aug  1 07:36:58 hostname ident[123][86483]: test
>>
>>     Now it works as expected and worked before breakage:
>>
>>     Aug  1 07:39:40 hostname ident[123]: test
>>
>>     Differential:   https://reviews.freebsd.org/D36005
>>     MFC after:      2 weeks
>> ---
>>  lib/libc/gen/syslog.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++---
>>  1 file changed, 51 insertions(+), 3 deletions(-)
>>
> <snip>
> 
>> -	(void)fprintf(fp, "%d ", getpid());
>> +	if (LogPid == -1)
>> +		LogPid = getpid();
> 
> I believe this introduced unexpected behaviour for syslog(). If we log something prior to fork()ing we’ll keep logging with the old pid. That’s a fairly common pattern for daemonising code, and it’s something openvpn ran into: https://github.com/OpenVPN/openvpn/issues/198

And likely https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268666.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?44f28dfb-0399-3ab6-b1f7-b72aeb59d6f3>