updated the 3.0 branch from the head branch - ready for alpha18
[ira/wip.git] / source3 / web / statuspage.c
1 /* 
2    Unix SMB/CIFS implementation.
3    web status page
4    Copyright (C) Andrew Tridgell 1997-1998
5    
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.
10    
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.
15    
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.
19 */
20
21 #include "includes.h"
22 #include "../web/swat_proto.h"
23
24 #define PIDMAP          struct PidMap
25
26 PIDMAP {
27         PIDMAP  *next, *prev;
28         pid_t   pid;
29         char    *machine;
30 };
31
32 static PIDMAP   *pidmap;
33 static int      PID_or_Machine;         /* 0 = show PID, else show Machine name */
34
35 static pid_t smbd_pid;
36
37 /* from 2nd call on, remove old list */
38 static void initPid2Machine (void)
39 {
40         /* show machine name rather PID on table "Open Files"? */
41         if (PID_or_Machine) {
42                 PIDMAP *p;
43
44                 for (p = pidmap; p != NULL; ) {
45                         DLIST_REMOVE(pidmap, p);
46                         SAFE_FREE(p->machine);
47                         SAFE_FREE(p);
48                 }
49
50                 pidmap = NULL;
51         }
52 }
53
54 /* add new PID <-> Machine name mapping */
55 static void addPid2Machine (pid_t pid, char *machine)
56 {
57         /* show machine name rather PID on table "Open Files"? */
58         if (PID_or_Machine) {
59                 PIDMAP *newmap;
60
61                 if ((newmap = (PIDMAP *) malloc (sizeof (PIDMAP))) == NULL) {
62                         /* XXX need error message for this?
63                            if malloc fails, PID is always shown */
64                         return;
65                 }
66
67                 newmap->pid = pid;
68                 newmap->machine = strdup (machine);
69
70                 DLIST_ADD(pidmap, newmap);
71         }
72 }
73
74 /* lookup PID <-> Machine name mapping */
75 static char *mapPid2Machine (pid_t pid)
76 {
77         static char pidbuf [64];
78         PIDMAP *map;
79
80         /* show machine name rather PID on table "Open Files"? */
81         if (PID_or_Machine) {
82                 for (map = pidmap; map != NULL; map = map->next) {
83                         if (pid == map->pid) {
84                                 if (map->machine == NULL)       /* no machine name */
85                                         break;                  /* show PID */
86
87                                 return map->machine;
88                         }
89                 }
90         }
91
92         /* PID not in list or machine name NULL? return pid as string */
93         snprintf (pidbuf, sizeof (pidbuf) - 1, "%d", pid);
94         return pidbuf;
95 }
96
97 static char *tstring(time_t t)
98 {
99         static pstring buf;
100         pstrcpy(buf, asctime(LocalTime(&t)));
101         all_string_sub(buf," ","&nbsp;",sizeof(buf));
102         return buf;
103 }
104
105 static void print_share_mode(share_mode_entry *e, char *fname)
106 {
107         d_printf("<tr><td>%s</td>",_(mapPid2Machine(e->pid)));
108         d_printf("<td>");
109         switch ((e->share_mode>>4)&0xF) {
110         case DENY_NONE: d_printf("DENY_NONE"); break;
111         case DENY_ALL:  d_printf("DENY_ALL   "); break;
112         case DENY_DOS:  d_printf("DENY_DOS   "); break;
113         case DENY_READ: d_printf("DENY_READ  "); break;
114         case DENY_WRITE:d_printf("DENY_WRITE "); break;
115         }
116         d_printf("</td>");
117
118         d_printf("<td>");
119         switch (e->share_mode&0xF) {
120         case 0: d_printf("RDONLY     "); break;
121         case 1: d_printf("WRONLY     "); break;
122         case 2: d_printf("RDWR       "); break;
123         }
124         d_printf("</td>");
125
126         d_printf("<td>");
127         if((e->op_type & 
128             (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) == 
129            (EXCLUSIVE_OPLOCK|BATCH_OPLOCK))
130                 d_printf("EXCLUSIVE+BATCH ");
131         else if (e->op_type & EXCLUSIVE_OPLOCK)
132                 d_printf("EXCLUSIVE       ");
133         else if (e->op_type & BATCH_OPLOCK)
134                 d_printf("BATCH           ");
135         else if (e->op_type & LEVEL_II_OPLOCK)
136                 d_printf("LEVEL_II        ");
137         else
138                 d_printf("NONE            ");
139         d_printf("</td>");
140
141         d_printf("<td>%s</td><td>%s</td></tr>\n",
142                fname,tstring(e->time.tv_sec));
143 }
144
145
146 /* kill off any connections chosen by the user */
147 static int traverse_fn1(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void* state)
148 {
149         struct connections_data crec;
150
151         if (dbuf.dsize != sizeof(crec))
152                 return 0;
153
154         memcpy(&crec, dbuf.dptr, sizeof(crec));
155
156         if (crec.cnum == -1 && process_exists(crec.pid)) {
157                 char buf[30];
158                 slprintf(buf,sizeof(buf)-1,"kill_%d", (int)crec.pid);
159                 if (cgi_variable(buf)) {
160                         kill_pid(crec.pid);
161                 }
162         }
163         return 0;
164 }
165
166 /* traversal fn for showing machine connections */
167 static int traverse_fn2(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void* state)
168 {
169         struct connections_data crec;
170
171         if (dbuf.dsize != sizeof(crec))
172                 return 0;
173
174         memcpy(&crec, dbuf.dptr, sizeof(crec));
175         
176         if (crec.cnum != -1 || !process_exists(crec.pid) || (crec.pid == smbd_pid))
177                 return 0;
178
179         addPid2Machine (crec.pid, crec.machine);
180
181         d_printf("<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td>\n",
182                (int)crec.pid,
183                crec.machine,crec.addr,
184                tstring(crec.start));
185         if (geteuid() == 0) {
186                 d_printf("<td><input type=submit value=\"X\" name=\"kill_%d\"></td>\n",
187                        (int)crec.pid);
188         }
189         d_printf("</tr>\n");
190
191         return 0;
192 }
193
194 /* traversal fn for showing share connections */
195 static int traverse_fn3(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void* state)
196 {
197         struct connections_data crec;
198
199         if (dbuf.dsize != sizeof(crec))
200                 return 0;
201
202         memcpy(&crec, dbuf.dptr, sizeof(crec));
203
204         if (crec.cnum == -1 || !process_exists(crec.pid))
205                 return 0;
206
207         d_printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%d</td><td>%s</td><td>%s</td></tr>\n",
208                crec.name,uidtoname(crec.uid),
209                gidtoname(crec.gid),(int)crec.pid,
210                crec.machine,
211                tstring(crec.start));
212         return 0;
213 }
214
215
216 /* show the current server status */
217 void status_page(void)
218 {
219         char *v;
220         int autorefresh=0;
221         int refresh_interval=30;
222         TDB_CONTEXT *tdb;
223
224         smbd_pid = pidfile_pid("smbd");
225
226         if (cgi_variable("smbd_restart")) {
227                 stop_smbd();
228                 start_smbd();
229         }
230
231         if (cgi_variable("smbd_start")) {
232                 start_smbd();
233         }
234
235         if (cgi_variable("smbd_stop")) {
236                 stop_smbd();
237         }
238
239         if (cgi_variable("nmbd_restart")) {
240                 stop_nmbd();
241                 start_nmbd();
242         }
243         if (cgi_variable("nmbd_start")) {
244                 start_nmbd();
245         }
246
247         if (cgi_variable("nmbd_stop")) {
248                 stop_nmbd();
249         }
250
251         if (cgi_variable("autorefresh")) {
252                 autorefresh = 1;
253         } else if (cgi_variable("norefresh")) {
254                 autorefresh = 0;
255         } else if (cgi_variable("refresh")) {
256                 autorefresh = 1;
257         }
258
259         if ((v=cgi_variable("refresh_interval"))) {
260                 refresh_interval = atoi(v);
261         }
262
263         if (cgi_variable("show_client_in_col_1")) {
264                 PID_or_Machine = 1;
265         }
266
267         tdb = tdb_open_log(lock_path("connections.tdb"), 0, TDB_DEFAULT, O_RDONLY, 0);
268         if (tdb) tdb_traverse(tdb, traverse_fn1, NULL);
269  
270         initPid2Machine ();
271
272         d_printf("<H2>%s</H2>\n", _("Server Status"));
273
274         d_printf("<FORM method=post>\n");
275
276         if (!autorefresh) {
277                 d_printf("<input type=submit value=\"%s\" name=autorefresh>\n", _("Auto Refresh"));
278                 d_printf("<br>%s", _("Refresh Interval: "));
279                 d_printf("<input type=text size=2 name=\"refresh_interval\" value=%d>\n", 
280                        refresh_interval);
281         } else {
282                 d_printf("<input type=submit value=\"%s\" name=norefresh>\n", _("Stop Refreshing"));
283                 d_printf("<br>%s%d\n", _("Refresh Interval: "), refresh_interval);
284                 d_printf("<input type=hidden name=refresh value=1>\n");
285         }
286
287         d_printf("<p>\n");
288
289         if (!tdb) {
290                 /* open failure either means no connections have been
291                    made */
292         }
293
294
295         d_printf("<table>\n");
296
297         d_printf("<tr><td>%s</td><td>%s</td></tr>", _("version:"), VERSION);
298
299         fflush(stdout);
300         d_printf("<tr><td>%s</td><td>%s</td>\n", _("smbd:"), smbd_running()?_("running"):_("not running"));
301         if (geteuid() == 0) {
302             if (smbd_running()) {
303                 d_printf("<td><input type=submit name=\"smbd_stop\" value=\"%s\"></td>\n", _("Stop smbd"));
304             } else {
305                 d_printf("<td><input type=submit name=\"smbd_start\" value=\"%s\"></td>\n", _("Start smbd"));
306             }
307             d_printf("<td><input type=submit name=\"smbd_restart\" value=\"%s\"></td>\n", _("Restart smbd"));
308         }
309         d_printf("</tr>\n");
310
311         fflush(stdout);
312         d_printf("<tr><td>%s</td><td>%s</td>\n", _("nmbd:"), nmbd_running()?_("running"):_("not running"));
313         if (geteuid() == 0) {
314             if (nmbd_running()) {
315                 d_printf("<td><input type=submit name=\"nmbd_stop\" value=\"%s\"></td>\n", _("Stop nmbd"));
316             } else {
317                 d_printf("<td><input type=submit name=\"nmbd_start\" value=\"%s\"></td>\n", _("Start nmbd"));
318             }
319             d_printf("<td><input type=submit name=\"nmbd_restart\" value=\"%s\"></td>\n", _("Restart nmbd"));
320         }
321         d_printf("</tr>\n");
322
323         d_printf("</table>\n");
324         fflush(stdout);
325
326         d_printf("<p><h3>%s</h3>\n", _("Active Connections"));
327         d_printf("<table border=1>\n");
328         d_printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th>\n", _("PID"), _("Client"), _("IP address"), _("Date"));
329         if (geteuid() == 0) {
330                 d_printf("<th>%s</th>\n", _("Kill"));
331         }
332         d_printf("</tr>\n");
333
334         if (tdb) tdb_traverse(tdb, traverse_fn2, NULL);
335
336         d_printf("</table><p>\n");
337
338         d_printf("<p><h3>%s</h3>\n", _("Active Shares"));
339         d_printf("<table border=1>\n");
340         d_printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n\n",
341                 _("Share"), _("User"), _("Group"), _("PID"), _("Client"), _("Date"));
342
343         if (tdb) tdb_traverse(tdb, traverse_fn3, NULL);
344
345         d_printf("</table><p>\n");
346
347         d_printf("<h3>%s</h3>\n", _("Open Files"));
348         d_printf("<table border=1>\n");
349         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"));
350
351         locking_init(1);
352         share_mode_forall(print_share_mode);
353         locking_end();
354         d_printf("</table>\n");
355
356         if (tdb) tdb_close(tdb);
357
358         d_printf("<br><input type=submit name=\"show_client_in_col_1\" value=\"Show Client in col 1\">\n");
359         d_printf("<input type=submit name=\"show_pid_in_col_1\" value=\"Show PID in col 1\">\n");
360
361         d_printf("</FORM>\n");
362
363         if (autorefresh) {
364                 /* this little JavaScript allows for automatic refresh
365                    of the page. There are other methods but this seems
366                    to be the best alternative */
367                 d_printf("<script language=\"JavaScript\">\n");
368                 d_printf("<!--\nsetTimeout('window.location.replace(\"%s/status?refresh_interval=%d&refresh=1\")', %d)\n", 
369                        cgi_baseurl(),
370                        refresh_interval,
371                        refresh_interval*1000);
372                 d_printf("//-->\n</script>\n");
373         }
374 }