[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / web / startstop.c
blob44945cd5362e0a7ed8d00bc15ed02ebdc639d898
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"
26 /** Startup smbd from web interface. */
27 void start_smbd(void)
29 pstring binfile;
31 if (geteuid() != 0) return;
33 if (fork()) {
34 return;
37 slprintf(binfile, sizeof(pstring) - 1, "%s/smbd", dyn_SBINDIR);
39 become_daemon(True, False);
41 execl(binfile, binfile, "-D", NULL);
43 exit(0);
46 /* startup nmbd */
47 void start_nmbd(void)
49 pstring binfile;
51 if (geteuid() != 0) return;
53 if (fork()) {
54 return;
57 slprintf(binfile, sizeof(pstring) - 1, "%s/nmbd", dyn_SBINDIR);
59 become_daemon(True, False);
61 execl(binfile, binfile, "-D", NULL);
63 exit(0);
66 /** Startup winbindd from web interface. */
67 void start_winbindd(void)
69 pstring binfile;
71 if (geteuid() != 0) return;
73 if (fork()) {
74 return;
77 slprintf(binfile, sizeof(pstring) - 1, "%s/winbindd", dyn_SBINDIR);
79 become_daemon(True, False);
81 execl(binfile, binfile, NULL);
83 exit(0);
87 /* stop smbd */
88 void stop_smbd(void)
90 pid_t pid = pidfile_pid("smbd");
92 if (geteuid() != 0) return;
94 if (pid <= 0) return;
96 kill(pid, SIGTERM);
99 /* stop nmbd */
100 void stop_nmbd(void)
102 pid_t pid = pidfile_pid("nmbd");
104 if (geteuid() != 0) return;
106 if (pid <= 0) return;
108 kill(pid, SIGTERM);
110 #ifdef WITH_WINBIND
111 /* stop winbindd */
112 void stop_winbindd(void)
114 pid_t pid = pidfile_pid("winbindd");
116 if (geteuid() != 0) return;
118 if (pid <= 0) return;
120 kill(pid, SIGTERM);
122 #endif
123 /* kill a specified process */
124 void kill_pid(struct process_id pid)
126 if (geteuid() != 0) return;
128 if (procid_to_pid(&pid) <= 0) return;
130 kill(procid_to_pid(&pid), SIGTERM);