fix tight loop detection and temporary removes
authorDavid Kalnischkies <david@kalnischkies.de>
Sat, 17 May 2014 10:37:13 +0000 (12:37 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Thu, 22 May 2014 15:43:48 +0000 (17:43 +0200)
commit0eb4af9d3d0c524c7afdc684238aa263ac287449
tree61c084289cd12fb924e82af1d1092a2ee00def18
parent71e7a0f3a432828e5bd5498297051aa37e7f0a59
fix tight loop detection and temporary removes

As outlined in #748355 apt segfaulted if it encountered a loop between a
package pre-depending on a package conflicting with the previous as it
ended up in an endless loop trying to unpack 'the other package'.

In this specific case as an essential package is involved a lot of force
needs to be applied, but can also be caused by 'normal' tight loops and
highlights a problem in how we handle breaks which we want to avoid.

The fix comes in multiple entangled changes:
1. All Smart* calls are guarded with loop detection. Some already had it,
   some had parts of it, some did it incorrect, and some didn't even try.
2. temporary removes to avoid a loop (which is done if a loop is
   detected) prevent the unpack of this looping package (we tried to unpack
   it to avoid the conflict/breaks, but due to a loop we couldn't, so we
   remove/deconfigure it instead which means we can't unpack it now)
3. handle conflicts and breaks very similar instead of duplicating most
   of the code. The only remaining difference is, as it should:
   deconfigure is enough for breaks, for conflicts we need the big hammer
apt-pkg/packagemanager.cc
apt-pkg/packagemanager.h
test/integration/test-bug-618288-multiarch-same-lockstep
test/integration/test-bug-673536-pre-depends-breaks-loop
test/integration/test-conflicts-loop
test/integration/test-essential-force-loopbreak [new file with mode: 0755]