Insufficient locking in log() / kvprintf() / somewhere?
- From: Romain Tartière <romain@xxxxxxxxxxxx>
- Date: Fri, 20 Jul 2007 20:50:09 +0200
Hello FreeBSD hackers!
I recently got some apache problems (maybe just forgetting to restart it
after an update, but it is not the interest of this e-mail) and each
httpd process was segfaulting as soon as created. I got surprising
things like that in my systems log:
=== begin snippet ===
pid 85055 (httpd), uid 80: exited on signal 11=== end snippet ===
pid 85063 (httpd), uid 80: exited on signal 11
pid 85064 (httpd), uid 80: exited on signal 11
pid 85066 (httpd), uid 80: exited on signal 11
pid 85065 (httpd), uid 80: exited on signal 11
<<66>>ppiidd 8580506678 ((hhtttptdp)d,), uuid id8 0: 8ex0: eixteidt eod no ns isginganla l 111
1
pid 85070 (httpd), uid 80: exited on signal 11
pid 85069 (httpd), uid 80: exited on signal 11
(uname: FreeBSD 6.2-STABLE #4: Thu Jun 7 00:56:26 CEST 2007 i386)
Obviously, having two processes on a dual core machine crashing
simultaneously produce weird stuff. I poked a bit around in
/usr/src/sys/kern:
% grep -n 'exited on signal' *
kern_sig.c:2452: "pid %d (%s), uid %d: exited on signal %d%s\n",
The code in void sigexit(td, sig) is as follow:
if (kern_logsigexit)
log(LOG_INFO,
"pid %d (%s), uid %d: exited on signal %d%s\n",
p->p_pid, p->p_comm,
td->td_ucred ? td->td_ucred->cr_uid : -1,
sig &~ WCOREFLAG,
sig & WCOREFLAG ? " (core dumped)" : "");
The log() function is declared in /usr/src/sys/kern/subr_prf.c:229 as this:
void... so basically is calls kvprintf witch actually writes the message
log(int level, const char *fmt, ...)
{
va_list ap;
struct putchar_arg pca;
pca.tty = NULL;
pca.pri = level;
pca.flags = log_open ? TOLOG : TOCONS;
va_start(ap, fmt);
kvprintf(fmt, putchar, &pca, 10, ap);
va_end(ap);
msgbuftrigger = 1;
}
AFAIK.
The issue is maybe a weird case-corner, but maybe some kind of locking
may have sense to avoid this?
Kind regards,
Romain
--
Romain Tartière <romain@xxxxxxxxxxxx> http://romain.blogreen.org/
pgp: 8DAB A124 0DA4 7024 F82A E748 D8E9 A33F FF56 FF43 (ID: 0xFF56FF43)
(plain text =non-HTML= PGP/GPG encrypted/signed e-mail much appreciated)
Attachment:
pgpO1sUqVE618.pgp
Description: PGP signature
- Follow-Ups:
- Re: Insufficient locking in log() / kvprintf() / somewhere?
- From: Tom Judge
- Re: Insufficient locking in log() / kvprintf() / somewhere?
- Prev by Date: Re: tunefs.8 oddity
- Next by Date: Re: Insufficient locking in log() / kvprintf() / somewhere?
- Previous by thread: tunefs.8 oddity
- Next by thread: Re: Insufficient locking in log() / kvprintf() / somewhere?
- Index(es):