public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Florian Weimer <fweimer@redhat.com>
To: DJ Delorie <dj@redhat.com>
Cc: libc-alpha@sourceware.org
Subject: Re: [v2] nsswitch: do not reload if "/" changes
Date: Tue, 26 Jan 2021 17:30:23 +0100	[thread overview]
Message-ID: <8735ynacf4.fsf@oldenburg.str.redhat.com> (raw)
In-Reply-To: <xno8hbiscp.fsf@greed.delorie.com> (DJ Delorie's message of "Tue,  26 Jan 2021 11:19:02 -0500")

* DJ Delorie:

> Florian Weimer <fweimer@redhat.com> writes:
>> I still think you should disable (re)loading if __stat64 fails.
>
> Ok.
>
>> Maybe call __nss_module_disable_loading after releasing local->lock?
>
> Er, I already do?
>
> +      __libc_lock_unlock (local->lock);
> +      __nss_module_disable_loading ();

Ah, right.  I was confused.

> +  /* Before we reload, verify that "/" hasn't changed.  We assume that
> +     errors here are very unlikely, but the chance that we're entering
> +     a container is also very unlikely, so we err on the side of both
> +     very unlikely things not happening at the same time.  */
> +  if (__stat64 ("/", &str) != 0
> +      || (local->root_ino != 0
> +	  && (str.st_ino != local->root_ino
> +	      ||  str.st_dev != local->root_dev)))
> +    {
> +      /* Change detected; disable reloading.  */
> +      atomic_store_release (&local->data.reload_disabled, 1);
> +      __libc_lock_unlock (local->lock);
> +      __nss_module_disable_loading ();
> +      return true;
> +    }

0 used to be a valid inode number for XFS, but I suspect a lot will break if /
uses it.

There are some style issues:

+   GRP(4), /* match */
+  
+  pw = getpwnam("test1");
+  gr = getgrnam("name4");
+  chdir("/");
+  pw = getpwnam("test2");
+  gr = getgrnam("test3");
+  pw = getpwnam("test1");

Comment formatting, trailing whitespace, missing space before '('.

Rest looks okay.  I assume the test fails in the expected way without
the patch. 8-)

Thanks,
Florian
-- 
Red Hat GmbH, https://de.redhat.com/ , Registered seat: Grasbrunn,
Commercial register: Amtsgericht Muenchen, HRB 153243,
Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael O'Neill


  reply	other threads:[~2021-01-26 16:30 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-16  0:59 DJ Delorie
2021-01-16 10:52 ` Florian Weimer
2021-01-18  1:13   ` DJ Delorie
2021-01-18 10:47     ` Florian Weimer
2021-01-18 18:20       ` DJ Delorie
2021-01-19 16:37         ` Florian Weimer
2021-01-22 19:10           ` [v2] " DJ Delorie
2021-01-26  9:58             ` Florian Weimer
2021-01-26 16:19               ` DJ Delorie
2021-01-26 16:30                 ` Florian Weimer [this message]
2021-01-26 16:47                   ` DJ Delorie
2021-01-27 17:28                     ` Carlos O'Donell
2021-01-27 18:44                       ` DJ Delorie
2021-01-28  0:31                         ` Joseph Myers
2021-01-28  0:34                           ` DJ Delorie
2021-01-28  0:39                             ` Joseph Myers
2021-01-28  1:15                               ` DJ Delorie
2021-01-18 12:42 ` Andreas Schwab
2021-01-18 12:53   ` Florian Weimer
2021-01-18 18:27   ` DJ Delorie
2021-01-18 15:59 ` Carlos O'Donell
2021-01-18 16:53   ` Florian Weimer
2021-01-19 14:30     ` Carlos O'Donell
2021-01-19 14:40       ` Florian Weimer
2021-01-18 18:35   ` DJ Delorie

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8735ynacf4.fsf@oldenburg.str.redhat.com \
    --to=fweimer@redhat.com \
    --cc=dj@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).