From: Ian Jackson Date: Sun, 13 Jan 2019 18:35:53 +0000 (+0000) Subject: dgit: import-dsc: Handle relative symlinks correctly X-Git-Tag: archive/debian/8.4~25 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=7adb1a2ff884501c97fbb92b4b91337929c047fd dgit: import-dsc: Handle relative symlinks correctly The logic here was correct only with bpd = `..'. Closes: #913259 Signed-off-by: Ian Jackson squash!! dgit: import-dsc: Handle relative symlinks correctly --- diff --git a/dgit b/dgit index ce7fdaef..3032c56d 100755 --- a/dgit +++ b/dgit @@ -32,6 +32,7 @@ use Data::Dumper; use LWP::UserAgent; use Dpkg::Control::Hash; use File::Path; +use File::Spec; use File::Temp qw(tempdir); use File::Basename; use Dpkg::Version; @@ -7011,28 +7012,37 @@ END # or something. my $here = "$buildproductsdir/$f"; if (lstat $here) { - next if stat $here; + if (stat $here) { + next; + } fail f_ "lstat %s works but stat gives %s !", $here, $!; } fail f_ "stat %s: %s", $here, $! unless $! == ENOENT; # $f does not exist in bpd, we need to transfer it my $there = $dscfn; - if ($dscfn =~ m#^(?:\./+)?\.\./+#) { - $there = $'; - } elsif ($dscfn =~ m#^/#) { - $there = $dscfn; + $there =~ s{[^/]+$}{$f} or confess "$there ?"; + # $there is file we want, relative to user's cwd, or abs + printdebug "not in bpd, $f, test $there ...\n"; + stat $there or fail f_ + "import %s requires %s, but: %s", $dscfn, $there, $!; + if ($there =~ m#^(?:\./+)?\.\./+#) { + # $there is relative to user's cwd + my $there_from_parent = $'; + if ($buildproductsdir !~ m{^/}) { + # abs2rel, despite its name, can take two relative paths + $there = File::Spec->abs2rel($there,$buildproductsdir); + # now $there is relative to bpd, great + } else { + $there = (dirname $maindir)."/$there_from_parent"; + # now $there is absoute + } + } elsif ($there =~ m#^/#) { + # $there is absolute already } else { fail f_ "cannot import %s which seems to be inside working tree!", $dscfn; } - $there =~ s#/+[^/]+$## or fail f_ - "import %s requires .../%s, but it does not exist", - $dscfn, $f; - $there .= "/$f"; - my $test = $there =~ m{^/} ? $there : "../$there"; - stat $test or fail f_ - "import %s requires %s, but: %s", $dscfn, $test, $!; symlink $there, $here or fail f_ "symlink %s to %s: %s", $there, $here, $!; progress f_ "made symlink %s -> %s", $here, $there; diff --git a/tests/tests/import-dsc b/tests/tests/import-dsc index bdd849ca..4a8d8766 100755 --- a/tests/tests/import-dsc +++ b/tests/tests/import-dsc @@ -79,7 +79,7 @@ dsc=$troot/pkg-srcs/${p}_${v}.dsc cd $p.2 cp $dsc .. -t-expect-fail 'it does not exist' \ +t-expect-fail 'No such file or directory' \ check-import .. $v mkdir ../enoents