]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/misc-progs/sambactrl.c
In der Samba.cgi einige Icons ausgetauscht
[people/pmueller/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
13int main(int argc, char *argv[])
14cc7eac 14{
14cc7eac
MT
15
16 if (!(initsetuid()))
17 exit(1);
18
19 // Check what command is asked
20 if (argc==1)
21 {
22 fprintf (stderr, "Missing smbctrl command!\n");
23 return 1;
24 }
25
44254afd 26 if (strcmp(argv[1], "smbuserdisable")==0)
14cc7eac 27 {
44254afd
MT
28 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -d %s", argv[2]);
29 safe_system(command);
14cc7eac
MT
30 return 0;
31 }
32
44254afd 33 if (strcmp(argv[1], "smbuserenable")==0)
14cc7eac 34 {
44254afd
MT
35 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -e %s", argv[2]);
36 safe_system(command);
14cc7eac
MT
37 return 0;
38 }
39
44254afd 40 if (strcmp(argv[1], "smbuserdelete")==0)
14cc7eac 41 {
44254afd
MT
42 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -x %s", argv[2]);
43 safe_system(command);
44254afd
MT
44 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/userdel %s", argv[2]);
45 safe_system(command);
14cc7eac
MT
46 return 0;
47 }
48
44254afd 49 if (strcmp(argv[1], "smbsafeconf")==0)
14cc7eac
MT
50 {
51 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
52 return 0;
53 }
54
5fd30232
MT
55 if (strcmp(argv[1], "smbsafeconfpdc")==0)
56 {
57 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/pdc /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
58 return 0;
59 }
60
44254afd 61 if (strcmp(argv[1], "smbglobalreset")==0)
14cc7eac 62 {
44254afd
MT
63 safe_system("/bin/cat /var/ipfire/samba/default.global /var/ipfire/samba/shares > /var/ipfire/samba/smb.conf");
64 safe_system("/bin/cat /var/ipfire/samba/default.settings > /var/ipfire/samba/settings");
5fd30232 65 safe_system("/bin/cat /var/ipfire/samba/default.global > /var/ipfire/samba/global");
fa7be659 66 safe_system("/bin/cat /var/ipfire/samba/default.pdc > /var/ipfire/samba/pdc");
14cc7eac
MT
67 return 0;
68 }
69
44254afd 70 if (strcmp(argv[1], "smbsharesreset")==0)
14cc7eac 71 {
44254afd
MT
72 safe_system("/bin/cat /var/ipfire/samba/global /var/ipfire/samba/default.shares > /var/ipfire/samba/smb.conf");
73 safe_system("/bin/cat /var/ipfire/samba/default.shares > /var/ipfire/samba/shares");
14cc7eac
MT
74 return 0;
75 }
76
c9e1c143 77 if (strcmp(argv[1], "smbstop")==0)
14cc7eac 78 {
c9e1c143 79 safe_system("/etc/rc.d/init.d/samba stop");
14cc7eac
MT
80 return 0;
81 }
82
c9e1c143 83 if (strcmp(argv[1], "smbstart")==0)
14cc7eac 84 {
c9e1c143 85 safe_system("/etc/rc.d/init.d/samba start");
14cc7eac
MT
86 return 0;
87 }
88
c9e1c143 89 if (strcmp(argv[1], "smbrestart")==0)
14cc7eac 90 {
c9e1c143 91 safe_system("/etc/rc.d/init.d/samba restart");
c9e1c143
CS
92 return 0;
93 }
94
95 if (strcmp(argv[1], "smbreload")==0)
96 {
97 safe_system("/etc/rc.d/init.d/samba reload");
14cc7eac
MT
98 return 0;
99 }
100
5fd30232
MT
101 if (strcmp(argv[1], "smbstatus")==0)
102 {
60124059 103 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbstatus");
5fd30232 104 safe_system(command);
5fd30232
MT
105 return 0;
106 }
107
44254afd 108 if (strcmp(argv[1], "smbuseradd")==0)
14cc7eac 109 {
5fd30232
MT
110 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambauser");
111 safe_system(command);
112 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/useradd -c 'Samba User' -m -g %s -p %s -s %s %s", argv[4], argv[3], argv[5], argv[2]);
44254afd 113 safe_system(command);
44254afd
MT
114 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s", argv[3], argv[3], argv[2]);
115 safe_system(command);
14cc7eac
MT
116 return 0;
117 }
118
5fd30232
MT
119 if (strcmp(argv[1], "smbpcadd")==0)
120 {
121 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambawks");
122 safe_system(command);
123 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/useradd -c 'Samba Workstation' -g %s -s %s %s", argv[3], argv[4], argv[2]);
124 safe_system(command);
5fd30232
MT
125 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -a -m %s", argv[2]);
126 safe_system(command);
5fd30232
MT
127 return 0;
128 }
129
44254afd 130 if (strcmp(argv[1], "smbchangepw")==0)
14cc7eac 131 {
44254afd
MT
132 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s", argv[3], argv[3], argv[2]);
133 safe_system(command);
14cc7eac
MT
134 return 0;
135 }
136
44254afd 137 if (strcmp(argv[1], "readsmbpasswd")==0)
14cc7eac
MT
138 {
139 safe_system("/bin/chown root:nobody /var/ipfire/samba/private");
140 safe_system("/bin/chown root:nobody /var/ipfire/samba/private/smbpasswd");
141 safe_system("/bin/chmod 640 /var/ipfire/samba/private/smbpasswd");
142 safe_system("/bin/chmod 650 /var/ipfire/samba/private");
143 return 0;
144 }
145
44254afd 146 if (strcmp(argv[1], "locksmbpasswd")==0)
14cc7eac
MT
147 {
148 safe_system("/bin/chown root:root /var/ipfire/samba/private");
149 safe_system("/bin/chown root:root /var/ipfire/samba/private/smbpasswd");
150 safe_system("/bin/chmod 600 /var/ipfire/samba/private/smbpasswd");
151 safe_system("/bin/chmod 600 /var/ipfire/samba/private");
152 return 0;
153 }
44254afd
MT
154
155 if (strcmp(argv[1], "smbechotest")==0)
156 {
157 sprintf(command, BUFFER_SIZE-1, "/usr/bin/printf %s %s", argv[2], argv[3]);
158 printf(command);
159 safe_system(command);
160 return 0;
161 }
14cc7eac 162}