]> git.saurik.com Git - apt.git/log
apt.git
8 years agoapt-inst: debfile: Pass comp. Name to ExtractTar, not Binary
Julian Andres Klode [Wed, 24 Aug 2016 13:10:08 +0000 (15:10 +0200)] 
apt-inst: debfile: Pass comp. Name to ExtractTar, not Binary

In the old days, apt-inst used to use binaries, but now it
uses the built-in support and matches using Name, and not a
Binary.

8 years agotest: Allow db_dump-5 instead of db_dump
Julian Andres Klode [Wed, 24 Aug 2016 11:36:26 +0000 (13:36 +0200)] 
test: Allow db_dump-5 instead of db_dump

Gbp-Dch: ignore

8 years agoAlways pass a directory to find before an option
Julian Andres Klode [Wed, 24 Aug 2016 00:22:45 +0000 (02:22 +0200)] 
Always pass a directory to find before an option

On BSD systems, we cannot simply use find -name or stuff, we
always have to pass a directory name first.

Gbp-Dch: ignore

8 years agotest: Fix invalid quoting in variable expansion
Julian Andres Klode [Tue, 23 Aug 2016 23:51:50 +0000 (01:51 +0200)] 
test: Fix invalid quoting in variable expansion

This breaks the tests with FreeBSD's shell, and is not needed -
it works fine without it.

Gbp-Dch: ignore

8 years agotest: Use printf "%b\n" instead of echo for strings with '\'
Julian Andres Klode [Tue, 23 Aug 2016 23:40:43 +0000 (01:40 +0200)] 
test: Use printf "%b\n" instead of echo for strings with '\'

Use of echo with special characters is not portable. On a normal
POSIX system, the behavior with backslash escaped strings is
implementation-defined. On an XSI-conformant system, they must
be interpreted.

A way out is the printf command - printf "%b" specifies that
the following argument is to be printed with backslash escapes
interpreted.

Gbp-Dch: ignore

8 years agotest: Make sure we always find a dpkg in status file
Julian Andres Klode [Tue, 23 Aug 2016 22:48:22 +0000 (00:48 +0200)] 
test: Make sure we always find a dpkg in status file

Especially on non-Debian platforms, dpkg might not list itself
on the host system, and thus dpkg --assert-multi-arch fails.

Gbp-Dch: ignore

8 years agotest: Avoid use of /proc/self/fd
Julian Andres Klode [Tue, 23 Aug 2016 22:25:26 +0000 (00:25 +0200)] 
test: Avoid use of /proc/self/fd

Use /dev/fd in test-bug-712116-dpkg-pre-install-pkgs-hook-multiarch,
skip test-no-fds-leaked-to-maintainer-scripts (it is not guaranteed
that /dev/fd contains all file descriptors), and avoid the unneeded
use of /proc/fd in another test case.

Gbp-Dch: ignore

8 years agotest: Explicitly pass --admindir=var/lib/dpkg to dpkg
Julian Andres Klode [Tue, 23 Aug 2016 22:08:39 +0000 (00:08 +0200)] 
test: Explicitly pass --admindir=var/lib/dpkg to dpkg

Our test suite assumes that dpkg's admindir is var/lib/dpkg. This
might not always be true; for example, on FreeBSD, it is located
at /var/db/dpkg.

Gbp-Dch: ignore

8 years agotest: Fix building of noopchroot
Julian Andres Klode [Tue, 23 Aug 2016 21:37:36 +0000 (23:37 +0200)] 
test: Fix building of noopchroot

Gbp-Dch: ignore

8 years agotest: Get rid of debhelper rules.tiny example dep
Julian Andres Klode [Tue, 23 Aug 2016 21:19:14 +0000 (23:19 +0200)] 
test: Get rid of debhelper rules.tiny example dep

Gbp-Dch: ignore

8 years agotest: Allow moreutils-parallel instead of parallel
Julian Andres Klode [Tue, 23 Aug 2016 21:14:05 +0000 (23:14 +0200)] 
test: Allow moreutils-parallel instead of parallel

That's what it's called on FreeBSD.

Gbp-Dch: ignore

8 years agotest: Allow stunnel to be used instead of stunnel4
Julian Andres Klode [Tue, 23 Aug 2016 21:01:18 +0000 (23:01 +0200)] 
test: Allow stunnel to be used instead of stunnel4

This is needed for Fedora and FreeBSD.

Gbp-Dch: ignore

8 years agotest: Substitute GNU commands for other commands where available
Julian Andres Klode [Tue, 23 Aug 2016 19:47:54 +0000 (21:47 +0200)] 
test: Substitute GNU commands for other commands where available

We are simply checking for gnuCMD and gCMD for each command we
are interested in.

Gbp-Dch: ignore

8 years agotest: Use C locale instead of C.UTF-8
Julian Andres Klode [Tue, 23 Aug 2016 19:53:39 +0000 (21:53 +0200)] 
test: Use C locale instead of C.UTF-8

Gbp-Dch: ignore

8 years agoMake directory paths configurable
Julian Andres Klode [Tue, 23 Aug 2016 17:41:58 +0000 (19:41 +0200)] 
Make directory paths configurable

This allows other vendors to use different paths, or to build
your own APT in /opt for testing. Note that this uses + 1 in
some places, as the paths we receive are absolute, but we need
to strip of the initial /.

8 years agoapt-key: Only use readlink -f for existing components
Julian Andres Klode [Tue, 23 Aug 2016 19:01:06 +0000 (21:01 +0200)] 
apt-key: Only use readlink -f for existing components

On FreeBSD, readlink -f requires the last component
to exist.

8 years agoUse C locale instead of C.UTF-8 for protocol strings
Julian Andres Klode [Tue, 23 Aug 2016 18:19:11 +0000 (20:19 +0200)] 
Use C locale instead of C.UTF-8 for protocol strings

The C.UTF-8 locale is not portable, so we need to use C, otherwise
we crash on other systems. We can use std::locale::classic() for
that, which might also be a bit cheaper than using locale("C").

8 years agoCMake: Add support for libintl
Julian Andres Klode [Tue, 23 Aug 2016 16:48:43 +0000 (18:48 +0200)] 
CMake: Add support for libintl

This basically just links everything to libintl if USE_NLS is
on. It would be better to just link those targets that are
actually translated, but doing so is a huge PITA.

Also move the include_directories() for the build-tree include/
directory to the top of the CMakeLists.txt, otherwise it only
gets passed after Intl_INCLUDE_DIRS, which means we will built
against installed apt-pkg headers (if any) instead of our own.

Gbp-Dch: ignore

8 years agoAccept --autoremove as alias for --auto-remove
Julian Andres Klode [Fri, 26 Aug 2016 14:14:13 +0000 (16:14 +0200)] 
Accept --autoremove as alias for --auto-remove

I probably missed that when I did the usability work. But better
late than never.

8 years agoCMake: Handle Berkeley DB on FreeBSD
Julian Andres Klode [Tue, 23 Aug 2016 10:48:25 +0000 (12:48 +0200)] 
CMake: Handle Berkeley DB on FreeBSD

The BSD systems still ship their own db.h with a historical
BSD implementation, which is preferred by CMake, as it searches
its default path first. We thus have to disable the DEFAULT_PATH
for the search, unfortunately. We also need to pass the correct
include directory to the target.

Furthermore, on FreeBSD the library is called db-<VERSION>, so
let's add db-5 to the list of allowed names.

Gbp-Dch: ignore

8 years agomethods/connect.cc: Only use AI_IDN if defined
Julian Andres Klode [Tue, 23 Aug 2016 12:57:11 +0000 (14:57 +0200)] 
methods/connect.cc: Only use AI_IDN if defined

Gbp-Dch: ignore

8 years agoCMake/private-download: Fix statfs includes on FreeBSD
Julian Andres Klode [Tue, 23 Aug 2016 12:40:46 +0000 (14:40 +0200)] 
CMake/private-download: Fix statfs includes on FreeBSD

On FreeBSD, we have to include sys/params.h and sys/mount.h,
not sys/vfs.h.

Gbp-Dch: ignore

8 years agoCMake: Add FindLZ4 and FindLZMA
Julian Andres Klode [Tue, 23 Aug 2016 12:13:24 +0000 (14:13 +0200)] 
CMake: Add FindLZ4 and FindLZMA

This makes things work with /usr/local on FreeBSD.

Gbp-Dch: ignore

8 years agoCMake: Do not use -lresolv if res_init exists in libc
Julian Andres Klode [Tue, 23 Aug 2016 11:42:54 +0000 (13:42 +0200)] 
CMake: Do not use -lresolv if res_init exists in libc

Gbp-Dch: ignore

8 years agoCMake: Do not hardcode -ldl
Julian Andres Klode [Tue, 23 Aug 2016 11:38:19 +0000 (13:38 +0200)] 
CMake: Do not hardcode -ldl

Does not exist on FreeBSD

Gbp-Dch: ignore

8 years agoCMake: Handle endian.h locations on other platforms
Julian Andres Klode [Mon, 22 Aug 2016 20:54:07 +0000 (22:54 +0200)] 
CMake: Handle endian.h locations on other platforms

Gbp-Dch: ignore

8 years agoCMake: Handle BSD platforms with sig_t instead of sighandler_t
Julian Andres Klode [Mon, 22 Aug 2016 20:45:19 +0000 (22:45 +0200)] 
CMake: Handle BSD platforms with sig_t instead of sighandler_t

Somewhat annoying, but OK. Might want to switch to something more
clever to get rid of the typedef at all.

Gbp-Dch: ignore

8 years agoAdd missing includes and external definitions
Julian Andres Klode [Tue, 23 Aug 2016 11:15:15 +0000 (13:15 +0200)] 
Add missing includes and external definitions

Several modules use std::array without including the
array header. Bad modules.

Some modules use STDOUT_FILENO and friends, or close()
without including unistd.h, where they are defined.

One module also uses WIFEXITED() without including
sys/wait.h.

Finally, environ is not specified to be defined in unistd.h. We
are required to define it ourselves according to POSIX, so let's
do that.

8 years agotreat .ddeb files like .deb, especially for dpkg
David Kalnischkies [Thu, 25 Aug 2016 13:52:30 +0000 (15:52 +0200)] 
treat .ddeb files like .deb, especially for dpkg

Ubuntu uses *.ddeb files for their debug packages, but the interface we
are using since f495992428a396e0f98886c9a761a804aa161c68 to talk to dpkg
isn't supporting *.ddeb files. This used to work previously as apt itself
isn't caring about the filenames at all and if they are explicitly
mentioned dpkg will accept all, too.

It might or might not be a good idea to patch dpkg, too, but regardless
of it happening, we don't want to couple us to closely to dpkg for this
minor feature but testing for this at runtime as it would delay shipping
the fix for the too long commandlines further.

It is also questionable if it is really a good idea to allow any file
extension to be used here (like .foobar in the testcase), but we used to
and we tend to avoid breaking existing usecases if we can help it.

As a bonus, this also allows the installation of ddeb files directly
from the commandline as you can with deb files already. We continue to
ignore udeb through as the user-mistake to useful ratio is too high.

LP: #1616909

8 years agoshow apt-key warnings in apt update
David Kalnischkies [Thu, 25 Aug 2016 13:22:28 +0000 (15:22 +0200)] 
show apt-key warnings in apt update

In 105503b4b470c124bc0c271bd8a50e25ecbe9133 we got a warning implemented
for unreadable files which greatly improves the behavior of apt update
already as everything will work as long as we don't need the keys
included in these files. The behavior if they are needed is still
strange through as update will fail claiming missing keys and a manual
test (which the user will likely perform as root) will be successful.

Passing the new warning generated by apt-key through to apt is a bit
strange from an interface point of view, but basically duplicating the
warning code in multiple places doesn't feel right either. That means we
have no translation for the message through as apt-key has no i18n yet.

It also means that if the user has a bunch of sources each of them will
generate a warning for each unreadable file which could result in quite
a few duplicated warnings, but "too many" is better than none.

Closes: 834973
8 years agoapt-key: warn instead of fail on unreadable keyrings
David Kalnischkies [Thu, 25 Aug 2016 10:42:36 +0000 (12:42 +0200)] 
apt-key: warn instead of fail on unreadable keyrings

apt-key has inconsistent behaviour if it can't read a keyring file:
Commands like 'list' skipped silently over such keyrings while 'verify'
failed hard resulting in apt to report cconfusing gpg errors (#834973).

As a first step we teach apt-key to be more consistent here skipping in
all commands over unreadable keyrings, but issuing a warning in the
process, which is as usual for apt commands displayed at the end of the
run.

8 years agodo not restore selections for already purged packages
David Kalnischkies [Wed, 24 Aug 2016 19:57:53 +0000 (21:57 +0200)] 
do not restore selections for already purged packages

In most cases apt was already skipping the (re)setting of packages as
to be removed/purged if dpkg had told us that it already did, but we
haven't dealt with it in the most obvious of the cases: Selections set
for packages we touched in this operation which either restores
selections even dpkg would have overridden or e.g. tries to restore a
purge selection for a package which was just purged – does not happen
with apt itself as it isn't using selections in this way, but higher
frontends like aptitude do.

The result in the later case is a warning printed by dpkg that we try to
set selections for an unknown package, which is harmless per se, but can
be confusing for users and we really shouldn't cause warnings in dpkg if
we can help it.

Reported-By: Guillem Jover on IRC
8 years agoimprove code & doc for aquire weak/loop failing
David Kalnischkies [Wed, 24 Aug 2016 19:49:34 +0000 (21:49 +0200)] 
improve code & doc for aquire weak/loop failing

Improve-Upon: 2e2865ae53a65c00dd55a892d5b48458f3110366
Reported-By: Julian Andres Klode
Gbp-Dch: Ignore

8 years agodo fail on weakhash/loop earlier in acquire
David Kalnischkies [Wed, 24 Aug 2016 07:47:48 +0000 (09:47 +0200)] 
do fail on weakhash/loop earlier in acquire

The bugreport shows a segfault caused by the code not doing the correct
magical dance to remove an item from inside a queue in all cases. We
could try hard to fix this, but it is actually better and also easier to
perform these checks (which cause instant failure) earlier so that they
haven't entered queue(s) yet, which in return makes cleanup trivial.

The result is that we actually end up failing "too early" as if we
wouldn't be careful download errors would be logged before that process
was even started. Not a problem for the acquire system, but likely to
confuse users and programs alike if they see the download process
producing errors before apt was technically allowed to do an acquire
(it didn't, so no violation, but it looks like it to the untrained eye).

Closes: 835195
8 years agoCMake: Define _WITH_GETLINE for FreeBSD
Julian Andres Klode [Tue, 23 Aug 2016 10:53:10 +0000 (12:53 +0200)] 
CMake: Define _WITH_GETLINE for FreeBSD

Gbp-Dch: ignore

8 years agoCMake: Do not add po/ if USE_NLS is OFF
Julian Andres Klode [Tue, 23 Aug 2016 16:42:52 +0000 (18:42 +0200)] 
CMake: Do not add po/ if USE_NLS is OFF

Previously, we would have generated all the translations, but not
turn them on in the code. Instead, move the Translation crap into
po/ and disable po/ alltogether if USE_NLS if OFF.

8 years agoCMake: Discover docbook stylesheet in other locations
Julian Andres Klode [Sun, 21 Aug 2016 18:37:14 +0000 (20:37 +0200)] 
CMake: Discover docbook stylesheet in other locations

Distributions seem to install this stuff all over the place, so
let's add a common list of paths we know about.

8 years agoinstall-progress: Call the real ::fork() in our fork() method
Julian Andres Klode [Tue, 23 Aug 2016 11:24:54 +0000 (13:24 +0200)] 
install-progress: Call the real ::fork() in our fork() method

We basically called ourselves before, creating an endless loop.

Reported-By: clang
8 years agoCMake: Add Large File Support
Julian Andres Klode [Sat, 20 Aug 2016 01:22:24 +0000 (03:22 +0200)] 
CMake: Add Large File Support

This module should cover all sorts of large file supports, as long
as they either support the getconf LFS_CFLAGS command; or the
_FILE_OFFSET_BITS=64 or _LARGE_FILES macros.

Closes: #834767
8 years agoprevent C++ locale number formatting in text APIs (try 3)
David Kalnischkies [Tue, 23 Aug 2016 13:11:20 +0000 (15:11 +0200)] 
prevent C++ locale number formatting in text APIs (try 3)

This time it is the formatting of floating numbers in progress
reporting with a radix charater potentially not being dot.

Followup of 7303e11ff28f920a6277c159aa46f80c007350bb. Regression of
b58e2c7c56b1416a343e81f9f80cb1f02c128e25 in so far as it exchanging
very effected with slightly less effected code.

LP: 1611010

8 years agodo dpkg --configure before --remove/--purge --pending
David Kalnischkies [Mon, 22 Aug 2016 19:33:38 +0000 (21:33 +0200)] 
do dpkg --configure before --remove/--purge --pending

Commit 7ec343309b7bc6001b465c870609b3c570026149 got us most of the way,
but the last mile was botched by having the pending calls in the wrong
order as this way we potentially 'force' dpkg to remove/purge a package
it doesn't want to as another package still depends on it and the
replacement isn't fully installed yet.

So what we do now is a configure before remove and purge (all with
--no-triggers) and finishing off with another configure pending call to
take care of the triggers.

Note that in the bugreport example our current planner is forcing dpkg
to remove the package earlier via --force-depends which we could do for
the pending calls as well and could be used as a workaround, but we want
to do less forcing eventually.

Closes: 835094
8 years agozh_CN.po: update simplified Chinese translation
Zhou Mo [Sat, 20 Aug 2016 13:32:17 +0000 (13:32 +0000)] 
zh_CN.po: update simplified Chinese translation

8 years agoCMake: Fix uninitialized variables
Julian Andres Klode [Sat, 20 Aug 2016 12:41:33 +0000 (14:41 +0200)] 
CMake: Fix uninitialized variables

This fixes some actual bugs for PROJECT and BZIP2_INCLUDE_DIR.

Gbp-Dch: ignore

8 years agoCMake: Translations: Build byproduct before output
Julian Andres Klode [Fri, 19 Aug 2016 23:15:27 +0000 (01:15 +0200)] 
CMake: Translations: Build byproduct before output

This can lead to an inconsistent state otherwise, with the
output being updated and the byproduct not; for example,
when the build was manually interrupted.

8 years agodebian: Get rid of dh_movefiles again
Julian Andres Klode [Fri, 19 Aug 2016 22:25:34 +0000 (00:25 +0200)] 
debian: Get rid of dh_movefiles again

This workaround is a bit more ugly, but does not use a
(somewhat) deprecated debhelper command.

Gbp-Dch: ignore

8 years agodebian: Run wrap-and-sort
Julian Andres Klode [Fri, 19 Aug 2016 18:03:36 +0000 (20:03 +0200)] 
debian: Run wrap-and-sort

Manually clean up the apt.maintscript, it moved stuff from
before the comment to after the comment...

8 years agodebian: Drop outdated stuff
Julian Andres Klode [Fri, 19 Aug 2016 17:49:54 +0000 (19:49 +0200)] 
debian: Drop outdated stuff

The README.source is not usable anymore, and the Build-Conflicts
andd Breaks/Replaces are not needed anymore.

8 years agodebian: Add more lintian overrides
Julian Andres Klode [Fri, 19 Aug 2016 17:42:45 +0000 (19:42 +0200)] 
debian: Add more lintian overrides

8 years agodebian: Switch to debhelper 10
Julian Andres Klode [Fri, 19 Aug 2016 17:26:55 +0000 (19:26 +0200)] 
debian: Switch to debhelper 10

debhelper 10 is much nicer with the installation part from
a dirty tree, so you can just fix some stuff breaking the
install step and then continue building with debuild -b -nc
until you have fixed all your stuff.

It also has some other advantages, of course, like some
bug fixes in shell escaping for maintscript, or systemd
helper changes.

8 years agodebian: Make better use of the tree installed by CMake
Julian Andres Klode [Fri, 19 Aug 2016 15:49:29 +0000 (17:49 +0200)] 
debian: Make better use of the tree installed by CMake

This gets rid of the special casing of etc/apt, various
example file installations handled by the upstream build
system, and of course the directory creation for all dirs
created by the upstream build system.

8 years agoCMake: Install config and logging directories
Julian Andres Klode [Fri, 19 Aug 2016 16:21:04 +0000 (18:21 +0200)] 
CMake: Install config and logging directories

These directories are essential for apt to work, so we should
install them in the upstream build system and not just in the
debian packaging...

8 years agotests/control: Handle the gpg1/gpg2 mess a bit better
Julian Andres Klode [Thu, 18 Aug 2016 12:21:16 +0000 (14:21 +0200)] 
tests/control: Handle the gpg1/gpg2 mess a bit better

Hardcoding gpgv1 and gnupg1 breaks Ubuntu, because on Ubuntu,
these packages do not exist yet. Instead allow gnupg (<< 2)
for gnupg1 and gnupg2 for gnupg (>= 2), so we cover all
potential combinations.

8 years agoprepare-release: Use equivs and gdebi-core for travis deps
Julian Andres Klode [Thu, 18 Aug 2016 12:56:36 +0000 (14:56 +0200)] 
prepare-release: Use equivs and gdebi-core for travis deps

Our previous hack did not really support or groups and other
more advanced dependency types. This hack basically removes
build profiles, and the @-type depends for tests, and otherwise
converts the deps to a package which is then installed via
gdebi.

8 years agoIgnore SIGINT and SIGQUIT for Pre-Install hooks
Julian Andres Klode [Fri, 19 Aug 2016 11:00:33 +0000 (13:00 +0200)] 
Ignore SIGINT and SIGQUIT for Pre-Install hooks

Instead of erroring out when receiving a SIGINT, let the
child deal with it - we'll error out anyway if the child
exits with an error or due to the signal. Also ignore
SIGQUIT, as system() ignores it.

This basically fixes Bug #832593, but: we are running
the hooks via sh -c. Some shells exit with a signal
error even if the command they are executing catches
the signal and exits successfully. So far, this has
been noticed on dash, which unfortunately, is our
default shell.

Example:
$ cat trap.sh
trap 'echo int' INT; sleep 10; exit 0
$ if dash -c ./trap.sh; then echo OK: $?; else echo FAIL: $?; fi
^Cint
FAIL: 130
$ if mksh -c ./trap.sh; then echo OK: $?; else echo FAIL: $?; fi
^Cint
OK: 0
$ if bash -c ./trap.sh; then echo OK: $?; else echo FAIL: $?; fi
^Cint
OK: 0

8 years agoCMake: Translations: Pass --previous to msgmerge
Julian Andres Klode [Fri, 19 Aug 2016 14:31:55 +0000 (16:31 +0200)] 
CMake: Translations: Pass --previous to msgmerge

When updating our .po files, pass --previous to msgmerge
to make it easier for translators to translate fuzzy
strings.

Thanks: Guillem Jover for the suggestion.

8 years agoCMake: Translations: Don't rebuild .mo for line number changes
Julian Andres Klode [Fri, 19 Aug 2016 13:52:14 +0000 (15:52 +0200)] 
CMake: Translations: Don't rebuild .mo for line number changes

If only the line numbers changed in a file without any of the
translatable strings changing, the .po and .mo files were
rebuilt, making building simple code changes somewhat annoying.

We can work around this by passing --add-location=file to msgcomm
when we are creating the temporary .pot file used for building
the .mo files.

8 years agodebian: Install etc/apt if present (e.g., on Ubuntu)
Julian Andres Klode [Thu, 11 Aug 2016 23:36:55 +0000 (01:36 +0200)] 
debian: Install etc/apt if present (e.g., on Ubuntu)

On Ubuntu, cmake installs are vendor-specific apt.conf.d
snippet, causing the build to fail.

8 years agoRelease 1.3~rc2 1.3_rc2
Julian Andres Klode [Wed, 17 Aug 2016 21:47:22 +0000 (23:47 +0200)] 
Release 1.3~rc2

8 years agomethods: read config in most to least specific order
David Kalnischkies [Wed, 17 Aug 2016 19:53:05 +0000 (21:53 +0200)] 
methods: read config in most to least specific order

The implementation of the generic config fallback did the fallback in
the wrong order so that the least specific option wasn't the last value
picked but in fact the first one… doh!

So in the bugreports case http -> https -> http::<hostname> ->
https::<hostname> while it should have been the reverse as before.

Regression-In: 30060442025824c491f58887ca7369f3c572fa57
Closes: 834642
8 years agodon't count each Type as an individual deb822-sources stanza
David Kalnischkies [Wed, 17 Aug 2016 18:35:47 +0000 (20:35 +0200)] 
don't count each Type as an individual deb822-sources stanza

Reported-By: Mattia Rizzolo <mattia@debian.org> in #834629
8 years agoadd --with-source option and Packages/Sources support
David Kalnischkies [Tue, 16 Aug 2016 18:08:29 +0000 (20:08 +0200)] 
add --with-source option and Packages/Sources support

We support "./foobar.deb" as a way to install a deb file directly.
Recently .changes files were added. This highlights a problem as you
can't add the changes file without also trying to install all of them.
Now, it could also be handy to add entire Packages/Sources files to
perhaps get a bunch of packages in without installing them all
implicitly.

This commit introduces --with-source which allows to add *.deb, *.changes,
*.dsc, source-dirs, Packages & Sources files (the later can also be
compressed) without also installing them.

8 years agoallow spaces in fingerprints for 'apt-key del'
David Kalnischkies [Wed, 17 Aug 2016 06:10:29 +0000 (08:10 +0200)] 
allow spaces in fingerprints for 'apt-key del'

Fingerprints tend to be displayed in space-separated octet pairs so be
nice and allow delete to remove a key based on such a string rather than
requiring that the user is deleting all the spaces manually.

8 years agoadd the gpg-classic variant to the gpgv/gnupg or-group
David Kalnischkies [Tue, 16 Aug 2016 13:46:19 +0000 (15:46 +0200)] 
add the gpg-classic variant to the gpgv/gnupg or-group

We need to support partial upgrades anyhow, so we have to deal with the
different versions and your tests try to ensure that we do, so we
shouldn't make any explicit higher requirements.

8 years agotests: update self-sigs on our test keys
David Kalnischkies [Tue, 16 Aug 2016 11:42:30 +0000 (13:42 +0200)] 
tests: update self-sigs on our test keys

gpg upstream committed "gpgv: Tweak default options for extra
security." applied on the 1.x and 2.x branches:
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=commit;h=e32c575e0f3704e7563048eea6d26844bdfc494b
This commit includes "[…], but we should validate the key by its self
signature for primary key, and back signature for subkey."

Our testkeys are old and do not really considered best practices in the
last years, so their most recent self-signature is SHA1-only which with
this gpg commit and our testcases defaulting to --weak-digest sha1 are
refused.

So what we do here is just applying some of the recent best practices on
top of our testcase keys.

Gbp-Dch: Ignore

8 years agotests: set source directory for gdb
David Kalnischkies [Tue, 16 Aug 2016 05:38:18 +0000 (07:38 +0200)] 
tests: set source directory for gdb

Helps interactive gdb calls find the source code.

Gbp-Dch: Ignore

8 years agodefault to Dir=/ in dpkg/status file finding magic
David Kalnischkies [Sat, 13 Aug 2016 13:55:52 +0000 (15:55 +0200)] 
default to Dir=/ in dpkg/status file finding magic

Seen in cme #833656 if Dir isn't set (yet) we end up later absoluting a
path which was supposed to be absolute already, so if Dir is empty we
assume it to be '/' instead. In practice this is a bug in the software
using libapt, but for maxium compatibility lets explicitly set the
default value here to be safe.

Reported-By: Paul Wise <pabs@debian.org>
Inspired-By: Brendan O'Dea <bod@debian.org>
Fixes-Regression: 475f75506db48a7fa90711fce4ed129f6a14cc9a
Shadows-Bug: #833656

8 years agosupport compression and by-hash for .diff/Index files
David Kalnischkies [Tue, 16 Aug 2016 05:47:44 +0000 (07:47 +0200)] 
support compression and by-hash for .diff/Index files

In af81ab9030229b4ce6cbe28f0f0831d4896fda01 by-hash got implemented as a
special compression type for our usual index files like Packages.
Missing in this scheme was the special .diff/Index index file containing
the info about individual patches for this index file. Deriving from the
index file class directly we inherent the compression handling
infrastructure and in this way also by-hash nearly for free.

Closes: #824926
8 years agosupport getting only-uncompressed files via by-hash
David Kalnischkies [Mon, 15 Aug 2016 08:51:07 +0000 (10:51 +0200)] 
support getting only-uncompressed files via by-hash

The URI we later want to modify to get the file via by-hash was unset in
case a file was only available uncompressed (which is usually not the
case) causing an acquire error.

8 years agoset the correct item FileSize in by-hash case
David Kalnischkies [Mon, 15 Aug 2016 08:39:53 +0000 (10:39 +0200)] 
set the correct item FileSize in by-hash case

In af81ab9030229b4ce6cbe28f0f0831d4896fda01 we implement by-hash as a
special compression type, which breaks this filesize setting as the code
is looking for a foobar.by-hash file then. Dealing this slightly gets
us the intended value. Note that this has no direct effect as this value
will be set in other ways, too, and could only effect progress reporting.

Gbp-Dch: Ignore

8 years agoretry without same redirection mirror on 404 errors
David Kalnischkies [Sun, 14 Aug 2016 11:12:08 +0000 (13:12 +0200)] 
retry without same redirection mirror on 404 errors

If 9b8034a9fd40b4d05075fda719e61f6eb4c45678 serves the Release files
from a partial mirror we will end up getting 404 for some of the
indexes. Instead of giving up, we will instead ignore our same
redirection mirror constrain and ask the redirection service as a
potential hashsum mismatch is better than keeping the certain 404 error.

8 years agocheck internal redirections for loops, too
David Kalnischkies [Sun, 14 Aug 2016 10:13:59 +0000 (12:13 +0200)] 
check internal redirections for loops, too

Now that we have the redirections loopchecker centrally in our items we
can use it also to prevent internal redirections to loop caused by
bugs as in a few instances we get into the business of rewriting the URI
we will query by ourself as we predict we would see such a redirect
anyway. Our code has no bugs of course, hence no practical difference. ;)

Gbp-Dch: Ignore

8 years agolog with the failed item description, not with next try
David Kalnischkies [Sun, 14 Aug 2016 07:51:56 +0000 (09:51 +0200)] 
log with the failed item description, not with next try

The failure handling frequently changes URI & Description of the failed
item to try a slightly different combination which might work, but the
logging of the failure happens only afterwards as the same failure
handling decides if this is a critical error or not so we need a backup
here instead of potentially new content.

A purely cosmetic issue, but can still be confusing for humans.

8 years agodon't try pipelining if server closes connections
David Kalnischkies [Fri, 12 Aug 2016 09:05:58 +0000 (11:05 +0200)] 
don't try pipelining if server closes connections

If a server closes a connection after sending us a file that tends to
mean that its a type of server who always closes the connection – it is
therefore relatively pointless to try pipelining with it even if it
isn't a problem by itself: apt is just restarting the pipeline each
time after it got served one file and the connection is closed.

The problem starts if one or more proxies are between the server and apt
and they disagree about how the connection should be as in the
bugreporters case where the responses apt gets contain both Keep-Alive
and Proxy-Connection headers (which apt both ignores) indicating a
proxy is trying to keep a connection open while the response also
contains "Connection: close" indicating the opposite which apt
understands and respects as it is required to do.

We avoid stepping into this abyss by not performing pipelining anymore
if we got a respond with the indication to close connection if the
response was otherwise a success – error messages are sent by some
servers via this method as their pages tend to be created dynamically
and hence their size isn't known a priori to them.

Closes: #832113
8 years agodon't sent Range requests if we know its not accepted
David Kalnischkies [Thu, 11 Aug 2016 16:24:35 +0000 (18:24 +0200)] 
don't sent Range requests if we know its not accepted

If the server told us in a previous request that it isn't supporting
Ranges with bytes via an Accept-Ranges header missing bytes, we don't
try to formulate requests using Ranges.

8 years agoreorganize server-states resetting in http/https
David Kalnischkies [Thu, 11 Aug 2016 14:59:13 +0000 (16:59 +0200)] 
reorganize server-states resetting in http/https

We keep various information bits about the server around, some only
effecting the currently handled file (like sizes) while others
should be persistent (like pipeline detections). http used to reset all
file-related manually, which is a bit silly if we already have a Reset()
method – which does reset all through –, so extending it with a
parameter for reuse and calling it from https too (as this was
previously resetting by just creating a new state struct – it uses no
value of the persistent state-keeping yet as it supports no pipelining).

Gbp-Dch: Ignore

8 years agoCMake: Install bash completions via cmake
Julian Andres Klode [Mon, 15 Aug 2016 10:55:51 +0000 (12:55 +0200)] 
CMake: Install bash completions via cmake

Having the completions installed only by the packaging was
an oversight.

Gbp-Dch: ignore

8 years agoChange anonscm.d.o links to /git/apt/apt.git and https
Julian Andres Klode [Sat, 13 Aug 2016 21:54:26 +0000 (23:54 +0200)] 
Change anonscm.d.o links to /git/apt/apt.git and https

This also fixes Debian/apt#20, but is slightly more complete. I
think /git also looks better than /cgit, so let's switch the Vcs
entry in control over too.

8 years agohttp(s): allow empty values for header fields
David Kalnischkies [Fri, 12 Aug 2016 20:13:09 +0000 (22:13 +0200)] 
http(s): allow empty values for header fields

It seems completely pointless from a server-POV to sent empty header
fields, so most of them don't do it (simply proven by this limitation
existing since day one) – but it is technically allowed by the RFC as
the surounding whitespaces are optional and Github seems to like sending
"X-Geo-Block-List:\r\n" since recently (bug reports in other http
clients indicate July) at least sometimes as the reporter claims to have
seen it on https only even through it can happen with both.

Closes: 834048
8 years agodrop incorrect const attribute from DirectoryExists
David Kalnischkies [Fri, 12 Aug 2016 17:11:01 +0000 (19:11 +0200)] 
drop incorrect const attribute from DirectoryExists

Since its existence in 2010 DirectoryExists was always marked with this
attribute, but for no real reason. Arguably a check for the existence of
the file is not modifying global state, so theoretically this shouldn't
be a problem. It is wrong from a logical point of view through as
between two calls the directory could be created so the promise we made
to the compiler that it could remove the second call would be wrong, so
API wise it is wrong.

It's a bit mysterious that this is only observeable on ppc64el and can be
fixed by reordering code ever so slightly, but in the end its more our
fault for adding this attribute than the compilers fault for doing
something silly based on the attribute.

LP: 1473674

8 years agofileutl: empty file support: Avoid fstat() on -1 fd and check result
Julian Andres Klode [Fri, 12 Aug 2016 11:55:09 +0000 (13:55 +0200)] 
fileutl: empty file support: Avoid fstat() on -1 fd and check result

When checking if a file is empty, we forget to check that
fstat() actually worked.

8 years agotests: don't do boundless string compares with data()
David Kalnischkies [Fri, 12 Aug 2016 09:27:19 +0000 (11:27 +0200)] 
tests: don't do boundless string compares with data()

Git-Dch: Ignore

8 years agoensure a good clock() value for usage and tests
David Kalnischkies [Fri, 12 Aug 2016 08:02:28 +0000 (10:02 +0200)] 
ensure a good clock() value for usage and tests

We use clock() as a very cheap way of getting a "random" value, but the
manpage warns that this could return -1, so we should be dealing with
this. Additionally, e.g. on hurd-i386 the value increases only slowly –
to slow for our fast running tests for randomness hence producing the
same range in both samples, so we introduce a simple busy-wait loop (as
clock is counting processor time used by the program) in the test which
delays the second sample just enough making our randomness a bit more
predictable.

8 years agodon't perform int<float in progress bar drawing
David Kalnischkies [Fri, 12 Aug 2016 07:07:59 +0000 (09:07 +0200)] 
don't perform int<float in progress bar drawing

Comparing floating numbers is always fun and in this instance a 9 < 9.0
is "somehow" true on hurd-i386 letting the tests fail by reporting that
too much progress achieved. A bit mysterious, but with some rework we
can use code which avoids dealing with the floats in this way entirely
and make our testcases happy.

8 years agoctest: show test output in case of failures
David Kalnischkies [Fri, 12 Aug 2016 08:45:45 +0000 (10:45 +0200)] 
ctest: show test output in case of failures

ctest as run by cmake by default does not show the output of the tests
even if the tests failed. In terms of our tests it could be handy to set
it always, but unfortunately it seems like cmake doesn't allow it if the
internet is to be believed, so lets enable it at least while building
packages and on travis.

Gbp-Dch: Ignore

8 years agoCMake: Exclude .md5 and .map doxygen files from install
Julian Andres Klode [Thu, 11 Aug 2016 16:09:39 +0000 (18:09 +0200)] 
CMake: Exclude .md5 and .map doxygen files from install

This is much better than removing them in debian/rules.

Gbp-Dch: ignore

8 years agoCMake: Use COPYONLY instead of @ONLY
Julian Andres Klode [Thu, 11 Aug 2016 15:54:19 +0000 (17:54 +0200)] 
CMake: Use COPYONLY instead of @ONLY

I don't know what happened back in 2009 when I wrote this,
but it seems I used the wrong option. These files should
not have any variable substitution done to them.

8 years agoCMake: Mark Doxygen as required and use DOXYGEN_EXECUTABLE
Julian Andres Klode [Thu, 11 Aug 2016 15:34:12 +0000 (17:34 +0200)] 
CMake: Mark Doxygen as required and use DOXYGEN_EXECUTABLE

Seems like I missed that when adding doxygen support.

Gbp-Dch: ignore

8 years agodebian/NEWS: Get rid of 1.3~pre3+cmake1 entry
Julian Andres Klode [Thu, 11 Aug 2016 17:48:54 +0000 (19:48 +0200)] 
debian/NEWS: Get rid of 1.3~pre3+cmake1 entry

This was only needed temporarily

Thanks: Axel Beckert for reporting

8 years agoRelease 1.3~rc1 1.3_rc1
Julian Andres Klode [Thu, 11 Aug 2016 12:05:04 +0000 (14:05 +0200)] 
Release 1.3~rc1

This commit looks heavy. Most of that comes from the fact that the
ordering of files in the translations changed with the switch to
CMake. I could have gone the extra mile to figure out the original
ordering and replicate it, but I have chosen to re-order everything
by file and line number, as that's easier.

8 years agodoc/po: Adjust translations for programmatic typo fix
Julian Andres Klode [Thu, 11 Aug 2016 12:00:20 +0000 (14:00 +0200)] 
doc/po: Adjust translations for programmatic typo fix

This enhances commit b9e6db821a6ddbc5bf6a90c80c296d4e91283a63.

Gbp-Dch: ignore

8 years agotests: copy 01autoremove from the right place
David Kalnischkies [Thu, 11 Aug 2016 00:19:31 +0000 (02:19 +0200)] 
tests: copy 01autoremove from the right place

With cmake using BUILDDIRECTORY at this place is not only as wrong as it
was before, but it might not even work always copying the system
provided one which might or might not be current and hence fails tests
needing it to be current like ./test-apt-move-and-forget-manual-sections

We don't want to always use the one from the source directory through
either like in autopkgtests.

Gbp-Dch: Ignore

8 years agoMerge branch 'feature/apt-dpkg-comm'
David Kalnischkies [Wed, 10 Aug 2016 23:36:23 +0000 (01:36 +0200)] 
Merge branch 'feature/apt-dpkg-comm'

8 years agoMerge branch 'feature/methods'
David Kalnischkies [Wed, 10 Aug 2016 23:36:18 +0000 (01:36 +0200)] 
Merge branch 'feature/methods'

8 years agohttp: auto-configure for local Tor proxy if called as 'tor'
David Kalnischkies [Sat, 6 Aug 2016 20:54:31 +0000 (22:54 +0200)] 
http: auto-configure for local Tor proxy if called as 'tor'

With apts http transport supporting socks5h proxies and all the work
in terms of configuration of methods based on the name it is called with
it becomes surprisingly easy to implement Tor support equally (and
perhaps even a bit exceeding) what is available currently in
apt-transport-tor.

How this will turn out to be handled packaging wise we will see in
https://lists.debian.org/deity/2016/08/msg00012.html , but until this is
resolved we can add the needed support without actively enabling it for
now, so that this can be tested better.

8 years agoblock direct connections to .onion domains (RFC7687)
David Kalnischkies [Sat, 6 Aug 2016 11:53:05 +0000 (13:53 +0200)] 
block direct connections to .onion domains (RFC7687)

Doing a direct connect to an .onion address (if you don't happen to use
it as a local domain, which you shouldn't) is bound to fail and does
leak the information that you do use Tor and which hidden service you
wanted to connect to to a DNS server. Worse, if the DNS is poisoned and
actually resolves tricking a user into believing the setup would work
correctly…

This does block also the usage of wrappers like torsocks with apt, but
with native support available and advertised in the error message this
shouldn't really be an issue.

Inspired-by: https://bugzilla.mozilla.org/show_bug.cgi?id=1228457
8 years agodisable explicit configuration of all packages at the end
David Kalnischkies [Thu, 28 Jul 2016 07:13:24 +0000 (09:13 +0200)] 
disable explicit configuration of all packages at the end

With b4450f1dd6bca537e60406b2383ab154a3e1485f we dropped what we
calculated here later on and now that we don't need it in the meantime
either we can just skip the busy work by default and expect dpkg to do
the right thing dropping also our little "last explicit configures"
removal trick introduced in b4450f1dd6bca537e60406b2383ab154a3e1485f.

This enables the last of a bunch of previously experimental options,
some of them existing still, but are very special and hence not really
worth documenting anymore (especially as it would need to be rewritten
now entirely) which is why the documentation is nearly completely
dropped.

The order of configuration stanzas in the simulation code changes
slightly as it isn't concerning itself with finding the 'right' order,
but any order is valid anyhow as long as the entire set happens in the
same call.

8 years agosimulate all package manager actions explicitly
David Kalnischkies [Thu, 28 Jul 2016 09:43:36 +0000 (11:43 +0200)] 
simulate all package manager actions explicitly

If a planner lets actions to be figured out by dpkg in pending calls
these actions aren't mentioned in a simulation. While that might be
a good thing for debugging, it would be a change in behavior and
especially if a planner avoids explicit removals could be confusing for
users. As such we perform the same 'trick' as in the dpkg implementation
by performing explicitly what would be done by the pending calls.

To save us some work and avoid desyncs we perform a layer violation by
using deb/ code in the generic simulation – and further we perform ugly
dynamic_cast to avoid breaking the ABI for nothing; aptitude is the only
other user of the simulation class according to codesearch.d.n and for
that our little trick works. It just isn't working if you happen to
extend pkgSimulate or otherwise manage to call the protected Go methods
directly – which isn't very realistic/practical.

8 years agotry to avoid removal of crossgraded packages
David Kalnischkies [Mon, 25 Jul 2016 14:36:53 +0000 (16:36 +0200)] 
try to avoid removal of crossgraded packages

The user has to approve the removal of a crossgraded package as it might
be needed to remove it (temporarily) in the process, but in most cases
we can happily avoid it and let dpkg unpack over it skipping the
remove. This has some effects on progress reporting and how deal with
selections through which makes this a tiny bit complicated.

8 years agoallow user@host (aka: no password) in URI parsing
David Kalnischkies [Mon, 1 Aug 2016 19:45:29 +0000 (21:45 +0200)] 
allow user@host (aka: no password) in URI parsing

If the URI had no password the username was ignored

8 years agofix programmatic typo in apt-key manpage
David Kalnischkies [Mon, 1 Aug 2016 13:13:14 +0000 (15:13 +0200)] 
fix programmatic typo in apt-key manpage

Reported-By: Johannes 'josch' Schauer on IRC
Gbp-Dch: Ignore