preparing for release of 2.2.3a
[Samba.git] / source / web / startstop.c
blob9eeac96cc0c795b73b7ad52a2405d42a0bf3de92
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 start/stop nmbd and smbd
5 Copyright (C) Andrew Tridgell 1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
23 #include "smb.h"
25 /* need to wait for daemons to startup */
26 #define SLEEP_TIME 3
28 /* startup smbd */
29 void start_smbd(void)
31 pstring binfile;
33 if (geteuid() != 0) return;
35 if (fork()) {
36 sleep(SLEEP_TIME);
37 return;
40 slprintf(binfile, sizeof(pstring) - 1, "%s/smbd", SBINDIR);
42 become_daemon();
44 execl(binfile, binfile, "-D", NULL);
46 exit(0);
49 /* startup nmbd */
50 void start_nmbd(void)
52 pstring binfile;
54 if (geteuid() != 0) return;
56 if (fork()) {
57 sleep(SLEEP_TIME);
58 return;
61 slprintf(binfile, sizeof(pstring) - 1, "%s/nmbd", SBINDIR);
63 become_daemon();
65 execl(binfile, binfile, "-D", NULL);
67 exit(0);
71 /* stop smbd */
72 void stop_smbd(void)
74 pid_t pid = pidfile_pid("smbd");
76 if (geteuid() != 0) return;
78 if (pid == 0) return;
80 kill(pid, SIGTERM);
83 /* stop nmbd */
84 void stop_nmbd(void)
86 pid_t pid = pidfile_pid("nmbd");
88 if (geteuid() != 0) return;
90 if (pid == 0) return;
92 kill(pid, SIGTERM);
95 /* kill a specified process */
96 void kill_pid(pid_t pid)
98 if (geteuid() != 0) return;
100 if (pid <= 0) return;
102 kill(pid, SIGTERM);
103 sleep(SLEEP_TIME);