Guillem Jover <guil...@debian.org> schrieb am Fr., 4. Sept. 2020, 00:28:

> Hi!
>
> On Thu, 2020-08-27 at 09:19:52 +0200, Sven Mueller wrote:
> > Package: dpkg
> > Version: 1.19.7
> > Tags: patch
>
> > When a package contains a symlink that reaches into a filesystem that
> can't
> > be accessed by root (due to missing key, errno=ENOKEY), installation
> works,
> > removal works, but upgrade or reinstallation of the package doesn't work
> > and fails because dpkg fails to stat the link target.
>
> OOC, why is a pathname that is reference by a .deb, within a
> filesystem that currently has a missing key?
>

Think of Kerberos authenticated NFS. Root (especially in cron jobs) doesn't
have a ticket with access to the link target. Most actual users of the
system do have access.

>
> Patch attached, which fixes this issue, though I suspect other locations
> > should possibly use a similar logic.
> >
> > As far as I understand (also mentioned in the header of the patch), this
> is
> > to avoid unpacking a link into a directory the link originally pointed
> to.
> > If that is the case, the patch should be fine, but I wonder if this
> > shouldn't be handled differently. But I would need to dig into the code
> > much more than I am comfortable with, given that this is C and I don't
> > usually use C. _If_ dpkg unpacks the package into some temporary
> directory
> > first and then moves the files into place, then there should be other
> > options to avoid the behavior mentioned.
>
> I'm not sure this is correct for the general case though, as that
> makes the check inert, which seems wrong?
>

No, it is not inert. It covers the case the test wants to protect against:
if the link target is a directory (as far as root is concerned), unpacking
and archive containing anything that is intended to replace the symlink
would instead unpacking into the directory the link points to. However if
the link points to something root had no access to, unpacking behaves the
same way as if the symlink was dangling (target doesn't exist). Which is
also why I named the patch this way: on overwrite of the symlink, the
kennel behaves the same way as if the target didn't even exist, so dpkg
should do the same.

Cheers,
Sven

>

Reply via email to