]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (djm) [Makefile.in regress/Makefile regress/agent-ptrace.sh]
authorDamien Miller <djm@mindrot.org>
Sun, 8 Dec 2013 04:53:28 +0000 (15:53 +1100)
committerDamien Miller <djm@mindrot.org>
Sun, 8 Dec 2013 04:53:28 +0000 (15:53 +1100)
   [regress/setuid-allowed.c] Check that ssh-agent is not on a no-setuid
   filesystem before running agent-ptrace.sh; ok dtucker

ChangeLog
Makefile.in
regress/Makefile
regress/agent-ptrace.sh
regress/setuid-allowed.c [new file with mode: 0644]

index 3434d6d27d0f8015c4a60769975af2fbc10d44c4..c56f597852df6d67ba0e127af5ba17bc245b528c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 20131208
  - (djm) [openbsd-compat/bsd-setres_id.c] Missing header; from Corinna
    Vinschen
+ - (djm) [Makefile.in regress/Makefile regress/agent-ptrace.sh]
+   [regress/setuid-allowed.c] Check that ssh-agent is not on a no-setuid
+   filesystem before running agent-ptrace.sh; ok dtucker
 
 20131207
  - (djm) OpenBSD CVS Sync
index f45c880980b6d814c11ca4a202c61ad1d30fc158..e789b476a3d77395cf54325661476a1287a27414 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.347 2013/12/07 10:43:47 djm Exp $
+# $Id: Makefile.in,v 1.348 2013/12/08 04:53:28 djm Exp $
 
 # uncomment if you run a non bourne compatable shell. Ie. csh
 #SHELL = @SH@
@@ -401,6 +401,13 @@ regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c
        $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $? \
        $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
 
+regress/setuid-allowed$(EXEEXT): $(srcdir)/regress/setuid-allowed.c
+       [ -d `pwd`/regress ]  ||  mkdir -p `pwd`/regress
+       [ -f `pwd`/regress/Makefile ]  || \
+           ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile
+       $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $? \
+       $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
+
 tests interop-tests:   $(TARGETS) regress/modpipe$(EXEEXT)
        BUILDDIR=`pwd`; \
        TEST_SHELL="@TEST_SHELL@"; \
index 098f2014b34312e978b5116eeb43a5d82390894e..ba8504837013f08c9b90bea46cebb9ea2fc075d7 100644 (file)
@@ -88,7 +88,7 @@ CLEANFILES=   t2.out t3.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
                sshd_proxy.* authorized_keys_${USER}.* modpipe revoked-* krl-* \
                ssh.log failed-ssh.log sshd.log failed-sshd.log \
                regress.log failed-regress.log ssh-log-wrapper.sh \
-               sftp-server.sh sftp-server.log sftp.log
+               sftp-server.sh sftp-server.log sftp.log setuid-allowed
 
 SUDO_CLEAN+=   /var/run/testdata_${USER} /var/run/keycommand_${USER}
 
index 9f29464c59cc0d2cc67c695fe6e67dacf6680d83..6824b8141fe03bfd7c7fb9a39dd5838d1a802246 100644 (file)
@@ -19,6 +19,13 @@ else
        exit 0
 fi
 
+if $OBJ/setuid-allowed ${SSHAGENT} ; then
+       : ok
+else
+       echo "skipped (${SSHAGENT} is mounted on a no-setuid filesystem)"
+       exit 0
+fi
+
 if test -z "$SUDO" ; then
        echo "skipped (SUDO not set)"
        exit 0
diff --git a/regress/setuid-allowed.c b/regress/setuid-allowed.c
new file mode 100644 (file)
index 0000000..37b7dc8
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ * Copyright (c) 2013 Damien Miller <djm@mindrot.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/* $OpenBSD$ */
+
+#include "includes.h"
+
+#include <sys/types.h>
+#ifdef HAVE_SYS_STATVFS_H
+# include <sys/statvfs.h>
+#endif
+#include <stdio.h>
+#include <errno.h>
+
+void
+usage(void)
+{
+       fprintf(stderr, "check-setuid [path]\n");
+       exit(1);
+}
+
+int
+main(int argc, char **argv)
+{
+       const char *path = ".";
+       struct statvfs sb;
+
+       if (argc > 2)
+               usage();
+       else if (argc == 2)
+               path = argv[1];
+
+       if (statvfs(path, &sb) != 0) {
+               /* Don't return an error if the host doesn't support statvfs */
+               if (errno == ENOSYS)
+                       return 0;
+               fprintf(stderr, "statvfs for \"%s\" failed: %s\n",
+                    path, strerror(errno));
+       }
+       return (sb.f_flag & ST_NOSUID) ? 1 : 0;
+}
+
+