Re: [PATCH 2/2] virstring: Prefer strtoll_l() and strtoull_l() whenever possible

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Jun 19, 2023 at 02:45:57PM +0200, Michal Prívozník wrote:
> On 6/19/23 14:31, Daniel P. Berrangé wrote:
> > On Mon, Jun 19, 2023 at 02:03:48PM +0200, Michal Privoznik wrote:
> >> It's weird that in 2023 there's no reliable and portable way to
> >> parse strings, but okay.
> >>
> >> We started with strtol(). Except, it doesn't work the same on
> >> Linux and Windows. On Windows it behaves a bit different when it
> >> comes to parsing strings with base = 0. So we've switched to
> >> g_ascii_strtoll() which promised to solve this. And it did.
> >> Except, it introduced another problem. I don't really understand
> >> why, but I've seen random test failures and all of them claimed
> >> inability to parse a number (specifically <memory/> from the
> >> hard coded domain XML from test driver, which IMO is just a
> >> coincidence because it's the first number we parse).
> > 
> > What platforms are you seeing the failures on ?  All platforms or just
> > on Windows, or just some other specific one?
> 
> I've tried only Linux so far. Windows is out of question.

snip

> > On the Linux case get_C_locale is
> > 
> > static locale_t
> > get_C_locale (void)
> > {
> >   static gsize initialized = FALSE;
> >   static locale_t C_locale = NULL;
> > 
> >   if (g_once_init_enter (&initialized))
> >     {
> >       C_locale = newlocale (LC_ALL_MASK, "C", NULL);
> >       g_once_init_leave (&initialized, TRUE);
> >     }
> > 
> >   return C_locale;
> > }
> > 
> > and only way that could fail is if  newlocale isn't threadsafe, and
> > we have other code in libvirt calling newlocale at exact same time
> > as the *first* call to get_C_locale.
> 
> Yeah, that's why I don't understand what's going on. Anyway, try running
> tests repeatedly (you can use oneliner from the commit message) and
> you'll run into the problem.

Yes, I've hit the problem with the error message

  error: XML error: Invalid value '8388608' for element or attribute './memory[1]'

interestingly, I've also hit a few other error messages, some failures
without error message (I suspect virsh simply crashed with no output),
and most intriguing is that it 'virshtest' simply hangs when I run it
directly.

The hang shows this stack trace in primary virsh process


Thread 2 (Thread 0x7f6da5c036c0 (LWP 3342182) "vshEventLoop"):
#0  0x00007f6da746a35d in poll () at /lib64/libc.so.6
#1  0x00007f6da75fd3a9 in g_main_context_iterate.isra () at /lib64/libglib-2.0.so.0
#2  0x00007f6da759ca23 in g_main_context_iteration () at /lib64/libglib-2.0.so.0
#3  0x00007f6da78fe8e0 in virEventGLibRunOnce () at ../src/util/vireventglib.c:515
#4  0x00007f6da79619c5 in virEventRunDefaultImpl () at ../src/util/virevent.c:362
#5  0x00005563004442d5 in vshEventLoop (opaque=0x7ffedebdd4f0) at ../tools/vsh.c:2043
#6  0x00007f6da79529c4 in virThreadHelper (data=<optimized out>) at ../src/util/virthread.c:256
#7  0x00007f6da73f1907 in start_thread () at /lib64/libc.so.6
#8  0x00007f6da7477870 in clone3 () at /lib64/libc.so.6

Thread 1 (Thread 0x7f6da5c07140 (LWP 3342175) "virsh"):
#0  0x00007f6da746a35d in poll () at /lib64/libc.so.6
#1  0x00007f6da793dde8 in poll (__timeout=-1, __nfds=1, __fds=0x7ffedebdd3d8) at /usr/include/bits/poll2.h:39
#2  virPolkitAgentCreate () at ../src/util/virpolkit.c:209
#3  0x00005563003f8e5d in virshConnect (ctl=ctl@entry=0x7ffedebdd4f0, uri=0x55630113c190 "test:///default", readonly=false) at ../tools/virsh.c:127
#4  0x00005563003f9093 in virshReconnect (ctl=ctl@entry=0x7ffedebdd4f0, name=name@entry=0x0, readonly=<optimized out>, 
    readonly@entry=false, force=force@entry=false) at ../tools/virsh.c:216
#5  0x00005563003f86cb in virshInit (ctl=0x7ffedebdd4f0) at ../tools/virsh.c:371
#6  main (argc=<optimized out>, argv=<optimized out>) at ../tools/virsh.c:890


and in the spawned child we have:


#0  0x00007f6da746fb5d in syscall () at /lib64/libc.so.6
#1  0x00007f6da75f4554 in g_mutex_lock_slowpath () at /lib64/libglib-2.0.so.0
#2  0x00007f6da75c9b51 in g_once_init_enter () at /lib64/libglib-2.0.so.0
#3  0x00007f6da75c1cc0 in get_C_locale () at /lib64/libglib-2.0.so.0
#4  0x00007f6da75c1fff in g_ascii_strtoll () at /lib64/libglib-2.0.so.0
#5  0x00007f6da794b564 in virStrToLong_i (s=0x556301141033 "0", end_ptr=end_ptr@entry=0x0, base=base@entry=10, result=result@entry=0x7ffedebdd34c)
    at ../src/util/virstring.c:52
#6  0x00007f6da78f586b in virCommandMassCloseGetFDsLinux (cmd=0x55630113f340, fds=0x55630113aa50) at ../src/util/vircommand.c:502
#7  virCommandMassClose (childerr=<optimized out>, childout=<optimized out>, childin=0, cmd=0x55630113f340) at ../src/util/vircommand.c:609
#8  virExec (cmd=0x55630113f340) at ../src/util/vircommand.c:741
#9  virCommandRunAsync (cmd=0x55630113f340, pid=pid@entry=0x0) at ../src/util/vircommand.c:2633
#10 0x00007f6da793ddba in virPolkitAgentCreate () at ../src/util/virpolkit.c:203
#11 0x00005563003f8e5d in virshConnect (ctl=ctl@entry=0x7ffedebdd4f0, uri=0x55630113c190 "test:///default", readonly=false) at ../tools/virsh.c:127
#12 0x00005563003f9093 in virshReconnect (ctl=ctl@entry=0x7ffedebdd4f0, name=name@entry=0x0, readonly=<optimized out>, 
    readonly@entry=false, force=force@entry=false) at ../tools/virsh.c:216
#13 0x00005563003f86cb in virshInit (ctl=0x7ffedebdd4f0) at ../tools/virsh.c:371
#14 main (argc=<optimized out>, argv=<optimized out>) at ../tools/virsh.c:890


This problem is sadly all too familiar - the fork()d child is waiting
on a lock that was held by another thread in the parent process at
the time fork() was called. 


So what we have going on is:

 * virsh spawns a thread to run the main event loop.

   This runs the glib main event loop, and some code in there
   uses g_once_init_enter & thus its mutex

 * virsh then spawns polkit

   Inbetween  fork and exec we call g_ascii_strtoll which
   uses g_once_init_enter

So the cause of the hang is exceedingly obvious.

Very few glib APIs are safe to uses in between fork & exec, and we are
(yet again) being burnt.


What I can't explain, however, is why we sometimes get an error message
instead of a hang.

If I modify 'virGlobalInit' to call g_ascii_strtoll("0", NULL, 10); then
neither the hang or error messages occur, but the hang *should* still
occurr as the mutex locking race fundamentally stil exists. I think it
just changes the timing enough to avoid it in our case.

My only thought with the error messages is that somehow the 'locale_t'
is getting its initialization missed somehow.

> I've tried to debug the problem over weekend but was really
> unsuccessful. Firstly, I suspected that glib version of pthread_once()
> was broken. So I've rewritten get_C_locale() to use pthread_once() but
> that didn't help. Which tends to point into direction of glibc,
> supported by the fact that glibc impl of newlocale() does indeed have a
> global RW lock. But I haven't found anything obviously wrong there either.

If glib was actually using pthread_once() we wouldn't have a problem.
Their g_once_init_enter/leave stuff doesn't use pthread_once() and their
impl is not safe due to its mutex usage.


Anyway, I understand why your proposed change here is avoiding problems,
even if I don't understand the full root cause.

Ultimately I think our virExec() impl is verging on broken by design. We
have got too much functionality in it to be safe. Especially since we
switched from gnulib to glib, we're not so concious of what higher level
constructs we're accidentally relying on - eg no one would guess g_ascii_strtol
would acquire locks.

Rather than change our virstring.c impl, I'm inclined to think we need to
be more aggressive and eliminate as much use of glib as possible from the
virExec() and virFork() functions. Limit them to pure POSIX only.

Basically g_new/g_free are the only bits of glib I would entirely
trust in between fork/exec, without analyznig the code of other glib
APIs.

Specifically for this virStrToLong_i problem, I would suggest that we
just directly call strtol from virCommandMassCloseGetFDsLinux(), and
leave the main virStrToLong_i impl unchanged.

Second, we should modify the FreeBSD impl of virCommandMassClose so
that it works on Linux, when close_range() is available. That would
avoid calling the problem code in the first place for modern linux.


Third, we should move virExec and virFork and related helpers into a
standalone file, so that it is very clear which bits of code are running
in between fork+exec and thus need careful design to avoid anything
except async safe POSIX.


With regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|




[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]

  Powered by Linux