Third part of my fix for usrmgr. Assuming automagic mapping
[Samba/gebeck_regimport.git] / source3 / web / startstop.c
blobe10dff411806cca65136ce30916ebc164eb7e16b
1 /*
2 Unix SMB/CIFS implementation.
3 start/stop nmbd and smbd
4 Copyright (C) Andrew Tridgell 1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
22 #include "../web/swat_proto.h"
23 #include "dynconfig.h"
25 /** Need to wait for daemons to startup */
26 #define SLEEP_TIME 3
28 /** Startup smbd from web interface. */
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", dyn_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", dyn_SBINDIR);
63 become_daemon();
65 execl(binfile, binfile, "-D", NULL);
67 exit(0);
70 /** Startup winbindd from web interface. */
71 void start_winbindd(void)
73 pstring binfile;
75 if (geteuid() != 0) return;
77 if (fork()) {
78 sleep(SLEEP_TIME);
79 return;
82 slprintf(binfile, sizeof(pstring) - 1, "%s/winbindd", dyn_SBINDIR);
84 become_daemon();
86 execl(binfile, binfile, NULL);
88 exit(0);
92 /* stop smbd */
93 void stop_smbd(void)
95 pid_t pid = pidfile_pid("smbd");
97 if (geteuid() != 0) return;
99 if (pid <= 0) return;
101 kill(pid, SIGTERM);
104 /* stop nmbd */
105 void stop_nmbd(void)
107 pid_t pid = pidfile_pid("nmbd");
109 if (geteuid() != 0) return;
111 if (pid <= 0) return;
113 kill(pid, SIGTERM);
115 #ifdef WITH_WINBIND
116 /* stop winbindd */
117 void stop_winbindd(void)
119 pid_t pid = pidfile_pid("winbindd");
121 if (geteuid() != 0) return;
123 if (pid <= 0) return;
125 kill(pid, SIGTERM);
127 #endif
128 /* kill a specified process */
129 void kill_pid(pid_t pid)
131 if (geteuid() != 0) return;
133 if (pid <= 0) return;
135 kill(pid, SIGTERM);
136 sleep(SLEEP_TIME);