]> git.ipfire.org Git - ipfire-2.x.git/blame - src/misc-progs/sambactrl.c
sambactrl: Remove unused reset command
[ipfire-2.x.git] / src / misc-progs / sambactrl.c
CommitLineData
14cc7eac
MT
1#include <stdio.h>
2#include <string.h>
3#include <stdlib.h>
44254afd
MT
4#include <unistd.h>
5#include <sys/types.h>
6#include <fcntl.h>
14cc7eac
MT
7#include "setuid.h"
8
44254afd
MT
9#define BUFFER_SIZE 1024
10
11char command[BUFFER_SIZE];
12
a8e327cd
MT
13int main(int argc, char *argv[]) {
14 if (!(initsetuid()))
15 exit(1);
14cc7eac 16
a8e327cd
MT
17 // Check what command is asked
18 if (argc == 1) {
19 fprintf (stderr, "Missing smbctrl command!\n");
20 return 1;
88932936 21
a8e327cd
MT
22 } else if (strcmp(argv[1], "smbuserdisable") == 0) {
23 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -d %s >/dev/null", argv[2]);
24 safe_system(command);
25
26 } else if (strcmp(argv[1], "smbuserenable") == 0) {
27 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -e %s >/dev/null", argv[2]);
28 safe_system(command);
29
30 } else if (strcmp(argv[1], "smbuserdelete") == 0) {
31 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -x %s >/dev/null", argv[2]);
32 safe_system(command);
33
34 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/userdel %s >/dev/null", argv[2]);
35 safe_system(command);
36
37 } else if (strcmp(argv[1], "smbsafeconf") == 0) {
38 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
39
40 } else if (strcmp(argv[1], "smbsafeconfcups") == 0) {
41 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/shares /var/ipfire/samba/printer > /var/ipfire/samba/smb.conf");
42
43 } else if (strcmp(argv[1], "smbsafeconfpdc") == 0) {
44 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/pdc /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
45
46 } else if (strcmp(argv[1], "smbsafeconfpdccups") == 0) {
47 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/pdc /var/ipfire/samba/shares /var/ipfire/samba/printer > /var/ipfire/samba/smb.conf");
48
49 } else if (strcmp(argv[1], "smbglobalreset") == 0) {
50 safe_system("/bin/cat /var/ipfire/samba/default.global /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
51 safe_system("/bin/cat /var/ipfire/samba/default.settings > /var/ipfire/samba/settings");
52 safe_system("/bin/cat /var/ipfire/samba/default.global > /var/ipfire/samba/global");
53 safe_system("/bin/cat /var/ipfire/samba/default.pdc > /var/ipfire/samba/pdc");
54
55 } else if (strcmp(argv[1], "smbsharesreset") == 0) {
56 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/default.shares > /var/ipfire/samba/smb.conf");
57 safe_system("/bin/cat /var/ipfire/samba/default.shares > /var/ipfire/samba/shares");
58
a8e327cd
MT
59 } else if (strcmp(argv[1], "smbstop") == 0) {
60 safe_system("/etc/rc.d/init.d/samba stop >/dev/null");
61 safe_system("/usr/local/bin/sambactrl disable");
62
63 } else if (strcmp(argv[1], "smbstart") == 0) {
64 safe_system("/etc/rc.d/init.d/samba start >/dev/null");
65 safe_system("/usr/local/bin/sambactrl enable");
66
67 } else if (strcmp(argv[1], "smbrestart") == 0) {
68 safe_system("/etc/rc.d/init.d/samba restart >/dev/null");
69
70 } else if (strcmp(argv[1], "smbreload") == 0) {
71 safe_system("/etc/rc.d/init.d/samba reload >/dev/null");
72
73 } else if (strcmp(argv[1], "smbstatus") == 0) {
74 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbstatus 2>/dev/null");
75 safe_system(command);
76
77 } else if (strcmp(argv[1], "smbuseradd") == 0) {
78 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambauser >/dev/null");
79 safe_system(command);
80
81 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/useradd -c 'Samba User' -m -g %s -s %s %s >/dev/null", argv[4], argv[5], argv[2]);
82 safe_system(command);
83
84 snprintf(command, BUFFER_SIZE-1, "echo %s:%s | chpasswd", argv[2], argv[3]);
85 safe_system(command);
86
87 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s >/dev/null", argv[3], argv[3], argv[2]);
88 safe_system(command);
89
90 } else if (strcmp(argv[1], "smbpcadd") == 0) {
91 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambawks >/dev/null");
92 safe_system(command);
93
94 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/useradd -c 'Samba Workstation' -g %s -s %s %s >/dev/null", argv[3], argv[4], argv[2]);
95 safe_system(command);
96
97 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -a -m %s >/dev/null", argv[2]);
98 safe_system(command);
99
100 } else if (strcmp(argv[1], "smbchangepw") == 0) {
101 snprintf(command, BUFFER_SIZE-1, "echo %s:%s | chpasswd", argv[2], argv[3]);
102 safe_system(command);
103
104 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s >/dev/null", argv[3], argv[3], argv[2]);
105 safe_system(command);
106
107 } else if (strcmp(argv[1], "readsmbpasswd") == 0) {
108 safe_system("/bin/chown root:nobody /var/ipfire/samba/private >/dev/null");
109 safe_system("/bin/chown root:nobody /var/ipfire/samba/private/smbpasswd >/dev/null");
110 safe_system("/bin/chmod 640 /var/ipfire/samba/private/smbpasswd >/dev/null");
111 safe_system("/bin/chmod 650 /var/ipfire/samba/private >/dev/null");
112
113 } else if (strcmp(argv[1], "locksmbpasswd") == 0) {
114 safe_system("/bin/chown root:root /var/ipfire/samba/private >/dev/null");
115 safe_system("/bin/chown root:root /var/ipfire/samba/private/smbpasswd >/dev/null");
116 safe_system("/bin/chmod 600 /var/ipfire/samba/private/smbpasswd >/dev/null");
117 safe_system("/bin/chmod 600 /var/ipfire/samba/private >/dev/null");
118
119 } else if (strcmp(argv[1], "enable") == 0) {
120 safe_system("touch /var/ipfire/samba/enable");
121 safe_system("ln -snf /etc/rc.d/init.d/samba /etc/rc.d/rc3.d/S45samba");
122 safe_system("ln -snf /etc/rc.d/init.d/samba /etc/rc.d/rc0.d/K48samba");
123 safe_system("ln -snf /etc/rc.d/init.d/samba /etc/rc.d/rc6.d/K48samba");
124
125 } else if (strcmp(argv[1], "disable") == 0) {
126 safe_system("unlink /var/ipfire/samba/enable");
127 safe_system("rm -rf /etc/rc.d/rc*.d/*samba");
0ffbb688
MT
128
129 } else if (strcmp(argv[1], "join") == 0) {
130 if (argc == 4) {
131 snprintf(command, BUFFER_SIZE - 1, "/usr/bin/net join -U \"%s%%%s\"",
132 argv[2], argv[3]);
133 return safe_system(command);
134 } else {
135 fprintf(stderr, "Wrong number of arguments. Need username and password.\n");
136 return 1;
137 }
a8e327cd
MT
138 }
139
140 return 0;
c41c2eb4 141}