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.
22 #include "../web/swat_proto.h"
23 #include "dynconfig.h"
26 /** Startup smbd from web interface. */
31 if (geteuid() != 0) return;
37 slprintf(binfile
, sizeof(pstring
) - 1, "%s/smbd", dyn_SBINDIR
);
41 execl(binfile
, binfile
, "-D", NULL
);
51 if (geteuid() != 0) return;
57 slprintf(binfile
, sizeof(pstring
) - 1, "%s/nmbd", dyn_SBINDIR
);
61 execl(binfile
, binfile
, "-D", NULL
);
66 /** Startup winbindd from web interface. */
67 void start_winbindd(void)
71 if (geteuid() != 0) return;
77 slprintf(binfile
, sizeof(pstring
) - 1, "%s/winbindd", dyn_SBINDIR
);
81 execl(binfile
, binfile
, NULL
);
90 pid_t pid
= pidfile_pid("smbd");
92 if (geteuid() != 0) return;
102 pid_t pid
= pidfile_pid("nmbd");
104 if (geteuid() != 0) return;
106 if (pid
<= 0) return;
112 void stop_winbindd(void)
114 pid_t pid
= pidfile_pid("winbindd");
116 if (geteuid() != 0) return;
118 if (pid
<= 0) return;
123 /* kill a specified process */
124 void kill_pid(pid_t pid
)
126 if (geteuid() != 0) return;
128 if (pid
<= 0) return;