]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
root-uid: new module
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 26 Jun 2012 23:46:25 +0000 (16:46 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 26 Jun 2012 23:46:51 +0000 (16:46 -0700)
This is for portability to Tandem's NonStop Kernel.
* lib/root-uid.h, modules/root-uid: New files.
* lib/euidaccess.c, lib/pt_chown.c, lib/unlinkdir.c:
* lib/write-any-file.c, tests/test-sethostname2.c:
Include "root-uid.h".
* lib/euidaccess.c (euidaccess):
* lib/pt_chown.c (main):
* lib/unlinkdir.c (cannot_unlink_dir):
* lib/write-any-file.c (can_write_any_file):
* m4/mknod.m4 (gl_FUNC_MKNOD):
* tests/test-sethostname2.c (geteuid, main):
Don't assume ROOT_UID == 0.
* modules/euidaccess (Depends-on):
* modules/pt_chown (Depends-on):
* modules/sethostname-tests (Depends-on):
* modules/unlinkdir (Depends-on):
* modules/write-any-file (Depends-on):
Add root-uid.

14 files changed:
ChangeLog
lib/euidaccess.c
lib/pt_chown.c
lib/root-uid.h [new file with mode: 0644]
lib/unlinkdir.c
lib/write-any-file.c
m4/mknod.m4
modules/euidaccess
modules/pt_chown
modules/root-uid [new file with mode: 0644]
modules/sethostname-tests
modules/unlinkdir
modules/write-any-file
tests/test-sethostname2.c

index ceb5a55d672ffd08574449c7120bdb0ec0a3c248..dfc996e3f2a995be97a6f4576709fd8b3bb91a90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
 
+       root-uid: new module
+       This is for portability to Tandem's NonStop Kernel.
+       * lib/root-uid.h, modules/root-uid: New files.
+       * lib/euidaccess.c, lib/pt_chown.c, lib/unlinkdir.c:
+       * lib/write-any-file.c, tests/test-sethostname2.c:
+       Include "root-uid.h".
+       * lib/euidaccess.c (euidaccess):
+       * lib/pt_chown.c (main):
+       * lib/unlinkdir.c (cannot_unlink_dir):
+       * lib/write-any-file.c (can_write_any_file):
+       * m4/mknod.m4 (gl_FUNC_MKNOD):
+       * tests/test-sethostname2.c (geteuid, main):
+       Don't assume ROOT_UID == 0.
+       * modules/euidaccess (Depends-on):
+       * modules/pt_chown (Depends-on):
+       * modules/sethostname-tests (Depends-on):
+       * modules/unlinkdir (Depends-on):
+       * modules/write-any-file (Depends-on):
+       Add root-uid.
+
        regex: use locale-independent comparison for codeset name
        See Bruno Haible's comment in <http://bugs.gnu.org/10305#120>.
        * lib/regcomp.c (init_dfa): Use just ASCII case comparison
index a0c2b373052bb4abacbcc03d9f41047811276d77..ca2ceca5d229aa831647e507139c3a1272e42e4e 100644 (file)
@@ -30,6 +30,8 @@
 #include <sys/stat.h>
 #include <unistd.h>
 
+#include "root-uid.h"
+
 #if HAVE_LIBGEN_H
 # include <libgen.h>
 #endif
@@ -140,8 +142,9 @@ euidaccess (const char *file, int mode)
 
   /* The super-user can read and write any file, and execute any file
      that anyone can execute.  */
-  if (euid == 0 && ((mode & X_OK) == 0
-                    || (stats.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))))
+  if (euid == ROOT_UID
+      && ((mode & X_OK) == 0
+          || (stats.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))))
     return 0;
 
   /* Convert the mode to traditional form, clearing any bogus bits.  */
index c55f43d2034f8dedbe9fa78911e644f09d3fc897..466e1771e88eca1e3798c311c7edc075ae7fd7cd 100644 (file)
@@ -25,6 +25,8 @@
 #include <sys/stat.h>
 #include <unistd.h>
 
+#include "root-uid.h"
+
 #include "pty-private.h"
 
 /* For security reasons, we try to minimize the dependencies on libraries
@@ -75,7 +77,7 @@ main (int argc, char *argv[])
 {
   uid_t euid = geteuid ();
 
-  if (argc == 1 && euid == 0)
+  if (argc == 1 && euid == ROOT_UID)
     {
       /* Normal invocation of this program is with no arguments and
          with privileges.  */
@@ -152,7 +154,7 @@ main (int argc, char *argv[])
   }
 
   /* Check if we are properly installed.  */
-  if (euid != 0)
+  if (euid != ROOT_UID)
     {
       fprintf (stderr, "pt_chown: needs to be installed setuid 'root'\n");
       return FAIL_EXEC;
diff --git a/lib/root-uid.h b/lib/root-uid.h
new file mode 100644 (file)
index 0000000..2379773
--- /dev/null
@@ -0,0 +1,30 @@
+/* The user ID that always has appropriate privileges in the POSIX sense.
+
+   Copyright 2012 Free Software Foundation, Inc.
+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+   Written by Paul Eggert.  */
+
+#ifndef ROOT_UID_H_
+#define ROOT_UID_H_
+
+/* The user ID that always has appropriate privileges in the POSIX sense.  */
+#ifdef __TANDEM
+# define ROOT_UID 65535
+#else
+# define ROOT_UID 0
+#endif
+
+#endif
index f991a2fc41254de526803329be96b9cd965c8dac..24b84f1c96b0dbc9ff1083040ea7d19dacb91b3e 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "unlinkdir.h"
 #include "priv-set.h"
+#include "root-uid.h"
 #include <unistd.h>
 
 #if ! UNLINK_CANNOT_UNLINK_DIR
@@ -43,7 +44,7 @@ cannot_unlink_dir (void)
       cannot = (priv_set_ismember (PRIV_SYS_LINKDIR) == 0);
 # else
       /* In traditional Unix, only root can unlink directories.  */
-      cannot = (geteuid () != 0);
+      cannot = (geteuid () != ROOT_UID);
 # endif
       initialized = true;
     }
index 742c2570389b997f2e35fada9928df96a5180ed6..f6b574df6387701de82110fe962579ef9b66f2f4 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "write-any-file.h"
 #include "priv-set.h"
+#include "root-uid.h"
 
 #include <unistd.h>
 
@@ -40,7 +41,7 @@ can_write_any_file (void)
       can = (priv_set_ismember (PRIV_FILE_DAC_WRITE) == 1);
 #else
       /* In traditional Unix, only root can unlink directories.  */
-      can = (geteuid () == 0);
+      can = (geteuid () == ROOT_UID);
 #endif
       can_write = can;
       initialized = true;
index 79cf6fd58957bfca3e33c5dd1dd411f41a589493..f4162fc47db6bcd620afcdbb75d3475243d7b2b1 100644 (file)
@@ -25,9 +25,16 @@ AC_DEFUN([gl_FUNC_MKNOD],
          [AC_LANG_PROGRAM(
            [[#include <sys/stat.h>
              #include <unistd.h>
+
+             /* Copied from root-uid.h.  FIXME: Just use root-uid.h.  */
+             #ifdef __TANDEM
+             # define ROOT_UID 65535
+             #else
+             # define ROOT_UID 0
+             #endif
 ]], [[/* Indeterminate for super-user, assume no.  Why are you running
          configure as root, anyway?  */
-      if (!geteuid ()) return 99;
+      if (geteuid () == ROOT_UID) return 99;
       if (mknod ("conftest.fifo", S_IFIFO | 0600, 0)) return 2;]])],
          [gl_cv_func_mknod_works=yes],
          [if test $? = 99 && test x"$FORCE_UNSAFE_CONFIGURE" = x; then
index a339e457d80d80eea3307af0a7934f9d0fa8204a..e34b76bc55efd60791be460b7ae6d8fe116d3d74 100644 (file)
@@ -8,6 +8,7 @@ m4/euidaccess.m4
 Depends-on:
 unistd
 extensions
+root-uid
 group-member    [test $HAVE_EUIDACCESS = 0]
 stat            [test $HAVE_EUIDACCESS = 0]
 sys_stat        [test $HAVE_EUIDACCESS = 0]
index 515df4b725258d2c2d31bf47d13aa2849943b953..ddde845a8ed696922b496241bc465865a861ecea 100644 (file)
@@ -7,6 +7,7 @@ lib/pty-private.h
 
 Depends-on:
 ptsname
+root-uid
 stdlib
 configmake
 
diff --git a/modules/root-uid b/modules/root-uid
new file mode 100644 (file)
index 0000000..8436cff
--- /dev/null
@@ -0,0 +1,20 @@
+Description:
+ROOT_UID macro: superuser's user ID
+
+Files:
+lib/root-uid.h
+
+Depends-on:
+
+configure.ac:
+
+Makefile.am:
+
+Include:
+"root-uid.h"
+
+License:
+LGPLv2+
+
+Maintainer:
+all
index 3529abb2c9cb81d6c51a5bd64d2e960aa038a3ae..ea4a81e1e6e4c516af32d28a914d5e9f5630521b 100644 (file)
@@ -6,6 +6,7 @@ tests/macros.h
 
 Depends-on:
 gethostname
+root-uid
 
 configure.ac:
 AC_CHECK_FUNCS_ONCE([geteuid])
index b5dfa100b7013d06192b0f87171c3335b9920906..6ebd027122782771fd64e58e0f287da8553d6e3e 100644 (file)
@@ -9,6 +9,7 @@ m4/unlinkdir.m4
 Depends-on:
 stdbool
 priv-set
+root-uid
 
 configure.ac:
 gl_UNLINKDIR
index 8f1a1ec1685f5cfe17855c2d0ad7e1bb55fb2575..7e99265c09b83f88af58d7b10db4a9706fd479a0 100644 (file)
@@ -9,6 +9,7 @@ m4/write-any-file.m4
 Depends-on:
 stdbool
 priv-set
+root-uid
 
 configure.ac:
 gl_WRITE_ANY_FILE
index ca2279f3b61d6f5a0ca1ad3322e3f305ee2f5806..13e6cf7cd18774173997b8e8edc6f9f2c4a8ce70 100644 (file)
@@ -27,6 +27,8 @@
 #include <errno.h>
 #include <stdio.h>
 
+#include "root-uid.h"
+
 #include "macros.h"
 
 #define TESTHOSTNAME "gnulib-hostname"
@@ -35,7 +37,7 @@
    On Cygwin, geteuid() may return non-zero even for user accounts with
    administrator privileges, so use a dummy value as well.  */
 #if !HAVE_GETEUID || defined __CYGWIN__
-# define geteuid() 0
+# define geteuid() ROOT_UID
 #endif
 
 int
@@ -50,7 +52,7 @@ main (int argc, char *argv[] _GL_UNUSED)
      consider things like CAP_SYS_ADMIN (linux) or PRIV_SYS_ADMIN
      (solaris), etc.  systems without a working geteuid (mingw, MSVC
      9) will always skip this test. */
-  if (geteuid () != 0)
+  if (geteuid () != ROOT_UID)
     {
       fprintf (stderr, "Skipping test: insufficient permissions.\n");
       return 77;