]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/misc-progs/sambactrl.c
Samba CGI 2sprachig DE und ENG
[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
CS
79 safe_system("/etc/rc.d/init.d/samba stop");
80 printf(command);
14cc7eac
MT
81 return 0;
82 }
83
c9e1c143 84 if (strcmp(argv[1], "smbstart")==0)
14cc7eac 85 {
c9e1c143
CS
86 safe_system("/etc/rc.d/init.d/samba start");
87 printf(command);
14cc7eac
MT
88 return 0;
89 }
90
c9e1c143 91 if (strcmp(argv[1], "smbrestart")==0)
14cc7eac 92 {
c9e1c143
CS
93 safe_system("/etc/rc.d/init.d/samba restart");
94 printf(command);
95 return 0;
96 }
97
98 if (strcmp(argv[1], "smbreload")==0)
99 {
100 safe_system("/etc/rc.d/init.d/samba reload");
101 printf(command);
14cc7eac
MT
102 return 0;
103 }
104
5fd30232
MT
105 if (strcmp(argv[1], "smbstatus")==0)
106 {
107 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/smbstatus");
108 safe_system(command);
5fd30232
MT
109 return 0;
110 }
111
44254afd 112 if (strcmp(argv[1], "smbuseradd")==0)
14cc7eac 113 {
5fd30232
MT
114 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambauser");
115 safe_system(command);
116 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
MT
117 safe_system(command);
118 printf(command);
119 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s", argv[3], argv[3], argv[2]);
120 safe_system(command);
121 printf(command);
14cc7eac
MT
122 return 0;
123 }
124
5fd30232
MT
125 if (strcmp(argv[1], "smbpcadd")==0)
126 {
127 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/groupadd sambawks");
128 safe_system(command);
129 snprintf(command, BUFFER_SIZE-1, "/usr/sbin/useradd -c 'Samba Workstation' -g %s -s %s %s", argv[3], argv[4], argv[2]);
130 safe_system(command);
131 printf(command);
132 snprintf(command, BUFFER_SIZE-1, "/usr/bin/smbpasswd -a -m %s", argv[2]);
133 safe_system(command);
134 printf(command);
135 return 0;
136 }
137
44254afd 138 if (strcmp(argv[1], "smbchangepw")==0)
14cc7eac 139 {
44254afd
MT
140 snprintf(command, BUFFER_SIZE-1, "/usr/bin/printf '%s\n%s\n' | /usr/bin/smbpasswd -as %s", argv[3], argv[3], argv[2]);
141 safe_system(command);
142 printf(command);
14cc7eac
MT
143 return 0;
144 }
145
44254afd 146 if (strcmp(argv[1], "readsmbpasswd")==0)
14cc7eac
MT
147 {
148 safe_system("/bin/chown root:nobody /var/ipfire/samba/private");
149 safe_system("/bin/chown root:nobody /var/ipfire/samba/private/smbpasswd");
150 safe_system("/bin/chmod 640 /var/ipfire/samba/private/smbpasswd");
151 safe_system("/bin/chmod 650 /var/ipfire/samba/private");
152 return 0;
153 }
154
44254afd 155 if (strcmp(argv[1], "locksmbpasswd")==0)
14cc7eac
MT
156 {
157 safe_system("/bin/chown root:root /var/ipfire/samba/private");
158 safe_system("/bin/chown root:root /var/ipfire/samba/private/smbpasswd");
159 safe_system("/bin/chmod 600 /var/ipfire/samba/private/smbpasswd");
160 safe_system("/bin/chmod 600 /var/ipfire/samba/private");
161 return 0;
162 }
44254afd
MT
163
164 if (strcmp(argv[1], "smbechotest")==0)
165 {
166 sprintf(command, BUFFER_SIZE-1, "/usr/bin/printf %s %s", argv[2], argv[3]);
167 printf(command);
168 safe_system(command);
169 return 0;
170 }
14cc7eac 171}