2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1997-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"
24 #define PIDMAP struct PidMap
26 /* how long to wait for start/stops to take effect */
35 static PIDMAP
*pidmap
;
36 static int PID_or_Machine
; /* 0 = show PID, else show Machine name */
38 static pid_t smbd_pid
;
40 /* from 2nd call on, remove old list */
41 static void initPid2Machine (void)
43 /* show machine name rather PID on table "Open Files"? */
47 for (p
= pidmap
; p
!= NULL
; ) {
48 DLIST_REMOVE(pidmap
, p
);
49 SAFE_FREE(p
->machine
);
57 /* add new PID <-> Machine name mapping */
58 static void addPid2Machine (pid_t pid
, char *machine
)
60 /* show machine name rather PID on table "Open Files"? */
64 if ((newmap
= (PIDMAP
*) malloc (sizeof (PIDMAP
))) == NULL
) {
65 /* XXX need error message for this?
66 if malloc fails, PID is always shown */
71 newmap
->machine
= strdup (machine
);
73 DLIST_ADD(pidmap
, newmap
);
77 /* lookup PID <-> Machine name mapping */
78 static char *mapPid2Machine (pid_t pid
)
80 static char pidbuf
[64];
83 /* show machine name rather PID on table "Open Files"? */
85 for (map
= pidmap
; map
!= NULL
; map
= map
->next
) {
86 if (pid
== map
->pid
) {
87 if (map
->machine
== NULL
) /* no machine name */
95 /* PID not in list or machine name NULL? return pid as string */
96 snprintf (pidbuf
, sizeof (pidbuf
) - 1, "%lu", (unsigned long)pid
);
100 static char *tstring(time_t t
)
103 pstrcpy(buf
, asctime(LocalTime(&t
)));
104 all_string_sub(buf
," "," ",sizeof(buf
));
108 static void print_share_mode(share_mode_entry
*e
, char *fname
)
110 d_printf("<tr><td>%s</td>",_(mapPid2Machine(e
->pid
)));
112 switch ((e
->share_mode
>>4)&0xF) {
113 case DENY_NONE
: d_printf("DENY_NONE"); break;
114 case DENY_ALL
: d_printf("DENY_ALL "); break;
115 case DENY_DOS
: d_printf("DENY_DOS "); break;
116 case DENY_READ
: d_printf("DENY_READ "); break;
117 case DENY_WRITE
:d_printf("DENY_WRITE "); break;
122 switch (e
->share_mode
&0xF) {
123 case 0: d_printf("%s", _("RDONLY ")); break;
124 case 1: d_printf("%s", _("WRONLY ")); break;
125 case 2: d_printf("%s", _("RDWR ")); break;
131 (EXCLUSIVE_OPLOCK
|BATCH_OPLOCK
)) ==
132 (EXCLUSIVE_OPLOCK
|BATCH_OPLOCK
))
133 d_printf("EXCLUSIVE+BATCH ");
134 else if (e
->op_type
& EXCLUSIVE_OPLOCK
)
135 d_printf("EXCLUSIVE ");
136 else if (e
->op_type
& BATCH_OPLOCK
)
138 else if (e
->op_type
& LEVEL_II_OPLOCK
)
139 d_printf("LEVEL_II ");
144 d_printf("<td>%s</td><td>%s</td></tr>\n",
145 fname
,tstring(e
->time
.tv_sec
));
149 /* kill off any connections chosen by the user */
150 static int traverse_fn1(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
, void* state
)
152 struct connections_data crec
;
154 if (dbuf
.dsize
!= sizeof(crec
))
157 memcpy(&crec
, dbuf
.dptr
, sizeof(crec
));
159 if (crec
.cnum
== -1 && process_exists(crec
.pid
)) {
161 slprintf(buf
,sizeof(buf
)-1,"kill_%d", (int)crec
.pid
);
162 if (cgi_variable(buf
)) {
170 /* traversal fn for showing machine connections */
171 static int traverse_fn2(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
, void* state
)
173 struct connections_data crec
;
175 if (dbuf
.dsize
!= sizeof(crec
))
178 memcpy(&crec
, dbuf
.dptr
, sizeof(crec
));
180 if (crec
.cnum
== -1 || !process_exists(crec
.pid
) || (crec
.pid
== smbd_pid
))
183 addPid2Machine (crec
.pid
, crec
.machine
);
185 d_printf("<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td>\n",
187 crec
.machine
,crec
.addr
,
188 tstring(crec
.start
));
189 if (geteuid() == 0) {
190 d_printf("<td><input type=submit value=\"X\" name=\"kill_%d\"></td>\n",
198 /* traversal fn for showing share connections */
199 static int traverse_fn3(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
, void* state
)
201 struct connections_data crec
;
203 if (dbuf
.dsize
!= sizeof(crec
))
206 memcpy(&crec
, dbuf
.dptr
, sizeof(crec
));
208 if (crec
.cnum
== -1 || !process_exists(crec
.pid
))
211 d_printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%d</td><td>%s</td><td>%s</td></tr>\n",
212 crec
.name
,uidtoname(crec
.uid
),
213 gidtoname(crec
.gid
),(int)crec
.pid
,
215 tstring(crec
.start
));
220 /* show the current server status */
221 void status_page(void)
225 int refresh_interval
=30;
230 smbd_pid
= pidfile_pid("smbd");
232 if (cgi_variable("smbd_restart") || cgi_variable("all_restart")) {
238 if (cgi_variable("smbd_start") || cgi_variable("all_start")) {
243 if (cgi_variable("smbd_stop") || cgi_variable("all_stop")) {
248 if (cgi_variable("nmbd_restart") || cgi_variable("all_restart")) {
253 if (cgi_variable("nmbd_start") || cgi_variable("all_start")) {
258 if (cgi_variable("nmbd_stop")|| cgi_variable("all_stop")) {
264 if (cgi_variable("winbindd_restart") || cgi_variable("all_restart")) {
270 if (cgi_variable("winbindd_start") || cgi_variable("all_start")) {
275 if (cgi_variable("winbindd_stop") || cgi_variable("all_stop")) {
280 /* wait for daemons to start/stop */
284 if (cgi_variable("autorefresh")) {
286 } else if (cgi_variable("norefresh")) {
288 } else if (cgi_variable("refresh")) {
292 if ((v
=cgi_variable("refresh_interval"))) {
293 refresh_interval
= atoi(v
);
296 if (cgi_variable("show_client_in_col_1")) {
300 if (cgi_variable("show_pid_in_col_1")) {
304 tdb
= tdb_open_log(lock_path("connections.tdb"), 0, TDB_DEFAULT
, O_RDONLY
, 0);
305 if (tdb
) tdb_traverse(tdb
, traverse_fn1
, NULL
);
309 d_printf("<H2>%s</H2>\n", _("Server Status"));
311 d_printf("<FORM method=post>\n");
314 d_printf("<input type=submit value=\"%s\" name=\"autorefresh\">\n", _("Auto Refresh"));
315 d_printf("<br>%s", _("Refresh Interval: "));
316 d_printf("<input type=text size=2 name=\"refresh_interval\" value=\"%d\">\n",
319 d_printf("<input type=submit value=\"%s\" name=\"norefresh\">\n", _("Stop Refreshing"));
320 d_printf("<br>%s%d\n", _("Refresh Interval: "), refresh_interval
);
321 d_printf("<input type=hidden name=\"refresh\" value=\"1\">\n");
327 /* open failure either means no connections have been
332 d_printf("<table>\n");
334 d_printf("<tr><td>%s</td><td>%s</td></tr>", _("version:"), SAMBA_VERSION_STRING
);
337 d_printf("<tr><td>%s</td><td>%s</td>\n", _("smbd:"), smbd_running()?_("running"):_("not running"));
338 if (geteuid() == 0) {
339 if (smbd_running()) {
341 d_printf("<td><input type=submit name=\"smbd_stop\" value=\"%s\"></td>\n", _("Stop smbd"));
343 d_printf("<td><input type=submit name=\"smbd_start\" value=\"%s\"></td>\n", _("Start smbd"));
345 d_printf("<td><input type=submit name=\"smbd_restart\" value=\"%s\"></td>\n", _("Restart smbd"));
350 d_printf("<tr><td>%s</td><td>%s</td>\n", _("nmbd:"), nmbd_running()?_("running"):_("not running"));
351 if (geteuid() == 0) {
352 if (nmbd_running()) {
354 d_printf("<td><input type=submit name=\"nmbd_stop\" value=\"%s\"></td>\n", _("Stop nmbd"));
356 d_printf("<td><input type=submit name=\"nmbd_start\" value=\"%s\"></td>\n", _("Start nmbd"));
358 d_printf("<td><input type=submit name=\"nmbd_restart\" value=\"%s\"></td>\n", _("Restart nmbd"));
364 d_printf("<tr><td>%s</td><td>%s</td>\n", _("winbindd:"), winbindd_running()?_("running"):_("not running"));
365 if (geteuid() == 0) {
366 if (winbindd_running()) {
368 d_printf("<td><input type=submit name=\"winbindd_stop\" value=\"%s\"></td>\n", _("Stop winbindd"));
370 d_printf("<td><input type=submit name=\"winbindd_start\" value=\"%s\"></td>\n", _("Start winbindd"));
372 d_printf("<td><input type=submit name=\"winbindd_restart\" value=\"%s\"></td>\n", _("Restart winbindd"));
377 if (geteuid() == 0) {
378 d_printf("<tr><td></td><td></td>\n");
379 if (nr_running
>= 1) {
380 /* stop, restart all */
381 d_printf("<td><input type=submit name=\"all_stop\" value=\"%s\"></td>\n", _("Stop All"));
382 d_printf("<td><input type=submit name=\"all_restart\" value=\"%s\"></td>\n", _("Restart All"));
384 else if (nr_running
== 0) {
386 d_printf("<td><input type=submit name=\"all_start\" value=\"%s\"></td>\n", _("Start All"));
390 d_printf("</table>\n");
393 d_printf("<p><h3>%s</h3>\n", _("Active Connections"));
394 d_printf("<table border=1>\n");
395 d_printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th>\n", _("PID"), _("Client"), _("IP address"), _("Date"));
396 if (geteuid() == 0) {
397 d_printf("<th>%s</th>\n", _("Kill"));
401 if (tdb
) tdb_traverse(tdb
, traverse_fn2
, NULL
);
403 d_printf("</table><p>\n");
405 d_printf("<p><h3>%s</h3>\n", _("Active Shares"));
406 d_printf("<table border=1>\n");
407 d_printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n\n",
408 _("Share"), _("User"), _("Group"), _("PID"), _("Client"), _("Date"));
410 if (tdb
) tdb_traverse(tdb
, traverse_fn3
, NULL
);
412 d_printf("</table><p>\n");
414 d_printf("<h3>%s</h3>\n", _("Open Files"));
415 d_printf("<table border=1>\n");
416 d_printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n", _("PID"), _("Sharing"), _("R/W"), _("Oplock"), _("File"), _("Date"));
419 share_mode_forall(print_share_mode
);
421 d_printf("</table>\n");
423 if (tdb
) tdb_close(tdb
);
425 d_printf("<br><input type=submit name=\"show_client_in_col_1\" value=\"%s\">\n", _("Show Client in col 1"));
426 d_printf("<input type=submit name=\"show_pid_in_col_1\" value=\"%s\">\n", _("Show PID in col 1"));
428 d_printf("</FORM>\n");
431 /* this little JavaScript allows for automatic refresh
432 of the page. There are other methods but this seems
433 to be the best alternative */
434 d_printf("<script language=\"JavaScript\">\n");
435 d_printf("<!--\nsetTimeout('window.location.replace(\"%s/status?refresh_interval=%d&refresh=1\")', %d)\n",
438 refresh_interval
*1000);
439 d_printf("//-->\n</script>\n");