summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-05-07 03:55:54 +0000
committerAndrew Tridgell <tridge@samba.org>2001-05-07 03:55:54 +0000
commit6056766247fc2e7206d6bb13ad1ac467663ac298 (patch)
treee20ebeed5bb331f747c9d5a0fbf6b07e601ec186 /source3/utils
parentfe6b398a79e6a8efaeef173dc4a41ff4a8ec3b33 (diff)
downloadsamba-6056766247fc2e7206d6bb13ad1ac467663ac298.tar.gz
samba-6056766247fc2e7206d6bb13ad1ac467663ac298.tar.bz2
samba-6056766247fc2e7206d6bb13ad1ac467663ac298.zip
merge some fixes from 2.2
(This used to be commit 7e57adf2a039cb5b6458496f9190c9c642645600)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/smbrun.c74
-rw-r--r--source3/utils/torture.c14
2 files changed, 14 insertions, 74 deletions
diff --git a/source3/utils/smbrun.c b/source3/utils/smbrun.c
deleted file mode 100644
index b7c678411c..0000000000
--- a/source3/utils/smbrun.c
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- Unix SMB/Netbios implementation.
- Version 1.9.
- external program running routine
- Copyright (C) Andrew Tridgell 1992-1998
-
- 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 2 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, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*/
-
-#include "includes.h"
-
-
-/*******************************************************************
-close the low 3 fd's and open dev/null in their place
-********************************************************************/
-static void close_fds(void)
-{
- int fd;
- int i;
- close(0); close(1); close(2);
- /* try and use up these file descriptors, so silly
- library routines writing to stdout etc won't cause havoc */
- for (i=0;i<3;i++) {
- fd = open("/dev/null",O_RDWR,0);
- if (fd < 0) fd = open("/dev/null",O_WRONLY,0);
- if (fd != i) return;
- }
-}
-
-
-/*
-This is a wrapper around the system() call to allow commands to run correctly
-as non root from a program which is switching between root and non-root
-
-It takes 3 arguments as uid,gid,command and runs command after
-becoming a non-root user */
- int main(int argc,char *argv[])
-{
- uid_t uid;
- gid_t gid;
-
- close_fds();
-
- if (argc != 4) exit(2);
-
- uid = (uid_t)atoi(argv[1]);
- gid = (gid_t)atoi(argv[2]);
-
- become_user_permanently( uid, gid);
-
- /* paranoia :-) */
- if (getuid() != uid)
- return(3);
-
- if (geteuid() != getuid())
- return(4);
-
- /* this is to make sure that the system() call doesn't run forever */
- alarm(30);
-
- return(system(argv[3]));
-}
diff --git a/source3/utils/torture.c b/source3/utils/torture.c
index fe22b60a89..4e6789e6ae 100644
--- a/source3/utils/torture.c
+++ b/source3/utils/torture.c
@@ -2538,6 +2538,20 @@ static void run_opentest(int dummy)
cli_unlink(&cli1, fname);
+
+ printf("testing ctemp\n");
+ {
+ char *tmp_path;
+ fnum1 = cli_ctemp(&cli1, "\\", &tmp_path);
+ if (fnum1 == -1) {
+ printf("ctemp failed (%s)\n", cli_errstr(&cli1));
+ return;
+ }
+ printf("ctemp gave path %s\n", tmp_path);
+ cli_close(&cli1, fnum1);
+ cli_unlink(&cli1, tmp_path);
+ }
+
close_connection(&cli1);
}