bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] root-uid: new module


From: Paul Eggert
Subject: [PATCH] root-uid: new module
Date: Tue, 26 Jun 2012 16:49:06 -0700
User-agent: Mozilla/5.0 (X11; Linux i686; rv:13.0) Gecko/20120615 Thunderbird/13.0.1

---
 ChangeLog                 |   20 ++++++++++++++++++++
 lib/euidaccess.c          |    7 +++++--
 lib/pt_chown.c            |    6 ++++--
 lib/root-uid.h            |   30 ++++++++++++++++++++++++++++++
 lib/unlinkdir.c           |    3 ++-
 lib/write-any-file.c      |    3 ++-
 m4/mknod.m4               |    9 ++++++++-
 modules/euidaccess        |    1 +
 modules/pt_chown          |    1 +
 modules/root-uid          |   20 ++++++++++++++++++++
 modules/sethostname-tests |    1 +
 modules/unlinkdir         |    1 +
 modules/write-any-file    |    1 +
 tests/test-sethostname2.c |    6 ++++--
 14 files changed, 100 insertions(+), 9 deletions(-)
 create mode 100644 lib/root-uid.h
 create mode 100644 modules/root-uid

diff --git a/ChangeLog b/ChangeLog
index ceb5a55..dfc996e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
 2012-06-26  Paul Eggert  <address@hidden>
 
+       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
diff --git a/lib/euidaccess.c b/lib/euidaccess.c
index a0c2b37..ca2ceca 100644
--- a/lib/euidaccess.c
+++ b/lib/euidaccess.c
@@ -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.  */
diff --git a/lib/pt_chown.c b/lib/pt_chown.c
index c55f43d..466e177 100644
--- a/lib/pt_chown.c
+++ b/lib/pt_chown.c
@@ -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
index 0000000..2379773
--- /dev/null
+++ b/lib/root-uid.h
@@ -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
diff --git a/lib/unlinkdir.c b/lib/unlinkdir.c
index f991a2f..24b84f1 100644
--- a/lib/unlinkdir.c
+++ b/lib/unlinkdir.c
@@ -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;
     }
diff --git a/lib/write-any-file.c b/lib/write-any-file.c
index 742c257..f6b574d 100644
--- a/lib/write-any-file.c
+++ b/lib/write-any-file.c
@@ -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;
diff --git a/m4/mknod.m4 b/m4/mknod.m4
index 79cf6fd..f4162fc 100644
--- a/m4/mknod.m4
+++ b/m4/mknod.m4
@@ -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
diff --git a/modules/euidaccess b/modules/euidaccess
index a339e45..e34b76b 100644
--- a/modules/euidaccess
+++ b/modules/euidaccess
@@ -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]
diff --git a/modules/pt_chown b/modules/pt_chown
index 515df4b..ddde845 100644
--- a/modules/pt_chown
+++ b/modules/pt_chown
@@ -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
index 0000000..8436cff
--- /dev/null
+++ b/modules/root-uid
@@ -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
diff --git a/modules/sethostname-tests b/modules/sethostname-tests
index 3529abb..ea4a81e 100644
--- a/modules/sethostname-tests
+++ b/modules/sethostname-tests
@@ -6,6 +6,7 @@ tests/macros.h
 
 Depends-on:
 gethostname
+root-uid
 
 configure.ac:
 AC_CHECK_FUNCS_ONCE([geteuid])
diff --git a/modules/unlinkdir b/modules/unlinkdir
index b5dfa10..6ebd027 100644
--- a/modules/unlinkdir
+++ b/modules/unlinkdir
@@ -9,6 +9,7 @@ m4/unlinkdir.m4
 Depends-on:
 stdbool
 priv-set
+root-uid
 
 configure.ac:
 gl_UNLINKDIR
diff --git a/modules/write-any-file b/modules/write-any-file
index 8f1a1ec..7e99265 100644
--- a/modules/write-any-file
+++ b/modules/write-any-file
@@ -9,6 +9,7 @@ m4/write-any-file.m4
 Depends-on:
 stdbool
 priv-set
+root-uid
 
 configure.ac:
 gl_WRITE_ANY_FILE
diff --git a/tests/test-sethostname2.c b/tests/test-sethostname2.c
index ca2279f..13e6cf7 100644
--- a/tests/test-sethostname2.c
+++ b/tests/test-sethostname2.c
@@ -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;
-- 
1.7.6.5




reply via email to

[Prev in Thread] Current Thread [Next in Thread]