summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorChristian Kauhaus <kc@flyingcircus.io>2016-06-26 17:13:15 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-07-02 00:09:07 +0200
commit0c0f068f35e5302c07ad32eb5a301ce50b23ddac (patch)
tree6fbb698a0f5cf618ac3267ebf1126f482a9f92c8 /pkgs/tools
parentb5705aa81e6243d92bd7f6ee936b64100639f093 (diff)
downloadnixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar.gz
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar.bz2
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar.lz
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar.xz
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.tar.zst
nixpkgs-0c0f068f35e5302c07ad32eb5a301ce50b23ddac.zip
cron: fix crontab(5) and cron job PATH
Switch off HAVE_SAVED_UIDS since it activates a code path for temporary
privilege dropping which does not work on NixOS.

Vixie-cron's sources ship with two implementations. Unfortunately, the
one activated by HAVE_SAVED_UIDS (using setuid()) does not work on
NixOS. Saved UIDs work only if the program which is using them has the
setuid bit set on its own executable, not if called from a setuid
wrapper (as we do it in NixOS). The other implementation (using
setreuid()) works without problems.

Quote from
<http://stackoverflow.com/questions/8499296/realuid-saved-uid-effective-uid-whats-going-on>:

    If you're euid is root and you change the uid, the privileges gets
    dropped permanently.If effective user id is not root then saved user
    id is never touched and you can regain the root privilege back
    anytime you want in your program.

Also extend the default PATH with NixOS-specific bin directories as
vixie-cron's default is not really usable on NixOS.

Re #16518

Closes #16522
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/cron/default.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/pkgs/tools/system/cron/default.nix b/pkgs/tools/system/cron/default.nix
index 998be45d9c6..2ddea737c8b 100644
--- a/pkgs/tools/system/cron/default.nix
+++ b/pkgs/tools/system/cron/default.nix
@@ -14,9 +14,19 @@ stdenv.mkDerivation {
     makeFlags="DESTROOT=$out"
 
     # We want to ignore the $glibc/include/paths.h definition of
-    # sendmail path
-    echo "#undef _PATH_SENDMAIL" >> pathnames.h
-    echo '#define _PATH_SENDMAIL "${sendmailPath}"' >> pathnames.h
+    # sendmail path.
+    # Also set a usable default PATH (#16518).
+    cat >> pathnames.h <<__EOT__
+    #undef _PATH_SENDMAIL
+    #define _PATH_SENDMAIL "${sendmailPath}"
+
+    #undef _PATH_DEFPATH
+    #define _PATH_DEFPATH "/var/setuid-wrappers:/nix/var/nix/profiles/default/bin:/nix/var/nix/profiles/default/sbin:/run/current-system/sw/bin:/run/current-system/sw/sbin:/usr/bin:/bin"
+    __EOT__
+
+    # Implicit saved uids do not work here due to way NixOS uses setuid wrappers
+    # (#16518).
+    echo "#undef HAVE_SAVED_UIDS" >> externs.h
   '';
 
   preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";