merge some fixes from 2.2
authorAndrew Tridgell <tridge@samba.org>
Mon, 7 May 2001 03:55:54 +0000 (03:55 +0000)
committerAndrew Tridgell <tridge@samba.org>
Mon, 7 May 2001 03:55:54 +0000 (03:55 +0000)
source/script/installswat.sh
source/utils/smbrun.c [deleted file]
source/utils/torture.c
source/web/statuspage.c

index 8afbc52eba7596f2434988aceea2940bb9397b70..8868d4cbb1f80894567f97983afe204a420696e4 100755 (executable)
@@ -3,7 +3,7 @@
 
 SWATDIR=$1
 SRCDIR=$2/
-BOOKDIR=$3
+BOOKDIR=$SWATDIR/using_samba
 
 echo Installing SWAT in $SWATDIR
 echo Installing the Samba Web Administration Tool
diff --git a/source/utils/smbrun.c b/source/utils/smbrun.c
deleted file mode 100644 (file)
index b7c6784..0000000
+++ /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]));
-}
index fe22b60a89960f74433c3951f55b602c9cbd7af3..4e6789e6ae77ab566968244361932070020444fc 100644 (file)
@@ -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);
 
 }
index 5c800797c0413a8d7166d8d86f98d93570f7197c..27a40d16958bac89f22a9a40148ec546667b6c8c 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "includes.h"
 
+static pid_t smbd_pid;
 
 static char *tstring(time_t t)
 {
@@ -93,7 +94,8 @@ static int traverse_fn2(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void* st
        struct connections_data crec;
        memcpy(&crec, dbuf.dptr, sizeof(crec));
        
-       if (crec.cnum != -1 || !process_exists(crec.pid)) return 0;
+       if (crec.cnum != -1 || !process_exists(crec.pid) ||
+           (crec.pid == smbd_pid)) return 0;
 
        printf("<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td>\n",
               (int)crec.pid,
@@ -133,6 +135,8 @@ void status_page(void)
        int refresh_interval=30;
        TDB_CONTEXT *tdb;
 
+       smbd_pid = pidfile_pid("smbd");
+
        if (cgi_variable("smbd_restart")) {
                stop_smbd();
                start_smbd();