]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-apt-update-file
pkgcachegen: Use std::unordered_map instead of std::map
[apt.git] / test / integration / test-apt-update-file
... / ...
CommitLineData
1#!/bin/sh
2#
3# Ensure that we do not modify file:/// uris (regression test for
4# CVE-2014-0487
5#
6set -e
7
8TESTDIR="$(readlink -f "$(dirname "$0")")"
9. "$TESTDIR/framework"
10
11setupenvironment
12configarchitecture "amd64"
13configcompression 'bz2' 'gz'
14confighashes 'SHA512'
15
16insertpackage 'unstable' 'foo' 'all' '1'
17insertpackage 'unstable' 'bar' 'amd64' '1'
18insertsource 'unstable' 'foo' 'all' '1'
19
20setupaptarchive --no-update
21
22# ensure the archive is not writable
23addtrap 'prefix' 'chmod 755 aptarchive/dists/unstable/main/binary-all;'
24if [ "$(id -u)" = '0' ]; then
25 # too deep to notice it, but it also unlikely that files in the same repo have different permissions
26 chmod 500 aptarchive/dists/unstable/main/binary-all
27 testfailure aptget update
28 rm -rf rootdir/var/lib/apt/lists
29 chmod 755 aptarchive/dists/unstable/main/binary-all
30 testsuccess aptget update
31 rm -rf rootdir/var/lib/apt/lists
32 chmod 511 aptarchive/dists/
33 testsuccess aptget update
34 rm -rf rootdir/var/lib/apt/lists
35 chmod 510 aptarchive/dists/
36 testsuccesswithnotice aptget update
37 rm -rf rootdir/var/lib/apt/lists
38 chmod 500 aptarchive/dists/
39 testsuccesswithnotice aptget update
40 exit
41fi
42chmod 555 aptarchive/dists/unstable/main/binary-all
43testsuccess aptget update
44
45# the release files aren't an IMS-hit, but the indexes are
46redatereleasefiles '+1 hour'
47
48# we don't download the index if it isn't updated
49testsuccess aptget update -o Debug::pkgAcquire::Auth=1
50# file:/ isn't shown in the log, so see if it was downloaded anyhow
51cp -a rootdir/tmp/testsuccess.output rootdir/tmp/update.output
52canary="SHA512:$(bzcat aptarchive/dists/unstable/main/binary-all/Packages.bz2 | sha512sum |cut -f1 -d' ')"
53testfailure grep -- "$canary" rootdir/tmp/update.output
54
55testfoo() {
56 # foo is still available
57 testsuccess aptget install -s foo
58 testsuccess aptcache showsrc foo
59 testsuccess aptget source foo --print-uris
60}
61testfoo
62
63# the release file is new again, the index still isn't, but it is somehow gone now from disk
64redatereleasefiles '+2 hour'
65find rootdir/var/lib/apt/lists -name '*_Packages*' -delete
66
67testsuccess aptget update -o Debug::pkgAcquire::Auth=1
68# file:/ isn't shown in the log, so see if it was downloaded anyhow
69cp -a rootdir/tmp/testsuccess.output rootdir/tmp/update.output
70canary="SHA512:$(bzcat aptarchive/dists/unstable/main/binary-all/Packages.bz2 | sha512sum |cut -f1 -d' ')"
71testsuccess grep -- "$canary" rootdir/tmp/update.output
72
73testfoo