Просмотр исходного кода

use dpkg --merge-avail only if needed in apt-mark

Only "recent" versions of dpkg support stdin for merge instead of a
file, so as a quick fix we delay calling it until we really need it
which fixes most of the problem already.

Checking for a specific dpkg version here is deemed too much work, just
like using a temporary file here and depends a too high requirement for
this minor usecase. After all, it didn't work at all before, so we break
nobody here and can fix it if someone complains (with a patch).
David Kalnischkies лет назад: 11
Родитель
Сommit
1d838084dc
2 измененных файлов с 64 добавлено и 45 удалено
  1. 55 45
      cmdline/apt-mark.cc
  2. 9 0
      test/integration/test-apt-mark

+ 55 - 45
cmdline/apt-mark.cc

@@ -274,65 +274,75 @@ static bool DoHold(CommandLine &CmdL)
       return true;
       return true;
    }
    }
 
 
-   Args.erase(Args.begin() + BaseArgs, Args.end());
-   Args.push_back("--merge-avail");
-   Args.push_back("-");
-   Args.push_back(NULL);
-
-   int external[2] = {-1, -1};
-   if (pipe(external) != 0)
-      return _error->WarningE("DoHold", "Can't create IPC pipe for dpkg --merge-avail");
-
-   pid_t dpkgMergeAvail = ExecFork();
-   if (dpkgMergeAvail == 0)
-   {
-      close(external[1]);
-      std::string const chrootDir = _config->FindDir("DPkg::Chroot-Directory");
-      if (chrootDir != "/" && chroot(chrootDir.c_str()) != 0 && chdir("/") != 0)
-	 _error->WarningE("getArchitecture", "Couldn't chroot into %s for dpkg --merge-avail", chrootDir.c_str());
-      dup2(external[0], STDIN_FILENO);
-      int const nullfd = open("/dev/null", O_RDONLY);
-      dup2(nullfd, STDOUT_FILENO);
-      execvp(Args[0], (char**) &Args[0]);
-      _error->WarningE("dpkgGo", "Can't get dpkg --merge-avail running!");
-      _exit(2);
-   }
-
-   FILE* dpkg = fdopen(external[1], "w");
+   APT::PackageList keepoffset;
    for (APT::PackageList::iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
    for (APT::PackageList::iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
    {
    {
       if (Pkg->CurrentVer != 0)
       if (Pkg->CurrentVer != 0)
 	 continue;
 	 continue;
-      char const * Arch;
-      if (Pkg->VersionList != 0)
-	 Arch = Pkg.VersionList().Arch();
-      else
-	 Arch = Pkg.Arch();
-      fprintf(dpkg, "Package: %s\nVersion: 0~\nArchitecture: %s\nMaintainer: Dummy Example <dummy@example.org>\n"
-	    "Description: dummy package record\n A record is needed to put a package on hold, so here it is.\n\n", Pkg.Name(), Arch);
+      keepoffset.insert(Pkg);
    }
    }
-   fclose(dpkg);
 
 
-   if (dpkgMergeAvail > 0)
+   if (keepoffset.empty() == false)
    {
    {
-      int Status = 0;
-      while (waitpid(dpkgMergeAvail, &Status, 0) != dpkgMergeAvail)
+      Args.erase(Args.begin() + BaseArgs, Args.end());
+      Args.push_back("--merge-avail");
+      // FIXME: supported only since 1.17.7 in dpkg
+      Args.push_back("-");
+      Args.push_back(NULL);
+
+      int external[2] = {-1, -1};
+      if (pipe(external) != 0)
+	 return _error->WarningE("DoHold", "Can't create IPC pipe for dpkg --merge-avail");
+
+      pid_t dpkgMergeAvail = ExecFork();
+      if (dpkgMergeAvail == 0)
       {
       {
-	 if (errno == EINTR)
-	    continue;
-	 _error->WarningE("dpkgGo", _("Waited for %s but it wasn't there"), "dpkg --merge-avail");
-	 break;
+	 close(external[1]);
+	 std::string const chrootDir = _config->FindDir("DPkg::Chroot-Directory");
+	 if (chrootDir != "/" && chroot(chrootDir.c_str()) != 0 && chdir("/") != 0)
+	    _error->WarningE("getArchitecture", "Couldn't chroot into %s for dpkg --merge-avail", chrootDir.c_str());
+	 dup2(external[0], STDIN_FILENO);
+	 int const nullfd = open("/dev/null", O_RDONLY);
+	 dup2(nullfd, STDOUT_FILENO);
+	 execvp(Args[0], (char**) &Args[0]);
+	 _error->WarningE("dpkgGo", "Can't get dpkg --merge-avail running!");
+	 _exit(2);
+      }
+
+      FILE* dpkg = fdopen(external[1], "w");
+      for (APT::PackageList::iterator Pkg = keepoffset.begin(); Pkg != keepoffset.end(); ++Pkg)
+      {
+	 char const * Arch;
+	 if (Pkg->VersionList != 0)
+	    Arch = Pkg.VersionList().Arch();
+	 else
+	    Arch = Pkg.Arch();
+	 fprintf(dpkg, "Package: %s\nVersion: 0~\nArchitecture: %s\nMaintainer: Dummy Example <dummy@example.org>\n"
+	       "Description: dummy package record\n A record is needed to put a package on hold, so here it is.\n\n", Pkg.Name(), Arch);
+      }
+      fclose(dpkg);
+      keepoffset.clear();
+
+      if (dpkgMergeAvail > 0)
+      {
+	 int Status = 0;
+	 while (waitpid(dpkgMergeAvail, &Status, 0) != dpkgMergeAvail)
+	 {
+	    if (errno == EINTR)
+	       continue;
+	    _error->WarningE("dpkgGo", _("Waited for %s but it wasn't there"), "dpkg --merge-avail");
+	    break;
+	 }
+	 if (WIFEXITED(Status) == false || WEXITSTATUS(Status) != 0)
+	    return _error->Error(_("Executing dpkg failed. Are you root?"));
       }
       }
-      if (WIFEXITED(Status) == false || WEXITSTATUS(Status) != 0)
-	 return _error->Error(_("Executing dpkg failed. Are you root?"));
    }
    }
 
 
    Args.erase(Args.begin() + BaseArgs, Args.end());
    Args.erase(Args.begin() + BaseArgs, Args.end());
    Args.push_back("--set-selections");
    Args.push_back("--set-selections");
    Args.push_back(NULL);
    Args.push_back(NULL);
 
 
-   external[0] = -1;
-   external[1] = -1;
+   int external[2] = {-1, -1};
    if (pipe(external) != 0)
    if (pipe(external) != 0)
       return _error->WarningE("DoHold", "Can't create IPC pipe for dpkg --set-selections");
       return _error->WarningE("DoHold", "Can't create IPC pipe for dpkg --set-selections");
 
 
@@ -349,7 +359,7 @@ static bool DoHold(CommandLine &CmdL)
       _exit(2);
       _exit(2);
    }
    }
 
 
-   dpkg = fdopen(external[1], "w");
+   FILE* dpkg = fdopen(external[1], "w");
    for (APT::PackageList::iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
    for (APT::PackageList::iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
    {
    {
       if (dpkgMultiArch == false)
       if (dpkgMultiArch == false)

+ 9 - 0
test/integration/test-apt-mark

@@ -85,6 +85,15 @@ testequal 'E: No packages found' aptmark unhold
 testnoholdpkg
 testnoholdpkg
 testmarkonepkgashold 'foo'
 testmarkonepkgashold 'foo'
 testmarkonepkgashold 'bar'
 testmarkonepkgashold 'bar'
+
+msgtest 'dpkg supports --merge-avail via' 'stdin'
+if dpkg --merge-avail - < /dev/null >/dev/null 2>&1; then
+	msgpass
+else
+	msgskip 'dpkg version too old'
+	exit 0
+fi
+
 testmarkonepkgashold 'uninstalled'
 testmarkonepkgashold 'uninstalled'
 testmarkonepkgashold 'uninstalled-native'
 testmarkonepkgashold 'uninstalled-native'