changed the method used for auto-reload on the status page to use
[samba.git] / source / web / statuspage.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    web status page
5    Copyright (C) Andrew Tridgell 1997-1998
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24
25 static char *tstring(time_t t)
26 {
27         static pstring buf;
28         pstrcpy(buf, asctime(LocalTime(&t)));
29         string_sub(buf," "," ");
30         return buf;
31 }
32
33 static void print_share_mode(share_mode_entry *e, char *fname)
34 {
35         printf("<tr><td>%d</td>",e->pid);
36         printf("<td>");
37         switch ((e->share_mode>>4)&0xF) {
38         case DENY_NONE: printf("DENY_NONE"); break;
39         case DENY_ALL:  printf("DENY_ALL   "); break;
40         case DENY_DOS:  printf("DENY_DOS   "); break;
41         case DENY_READ: printf("DENY_READ  "); break;
42         case DENY_WRITE:printf("DENY_WRITE "); break;
43         }
44         printf("</td>");
45
46         printf("<td>");
47         switch (e->share_mode&0xF) {
48         case 0: printf("RDONLY     "); break;
49         case 1: printf("WRONLY     "); break;
50         case 2: printf("RDWR       "); break;
51         }
52         printf("</td>");
53
54         printf("<td>");
55         if((e->op_type & 
56             (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) == 
57            (EXCLUSIVE_OPLOCK|BATCH_OPLOCK))
58                 printf("EXCLUSIVE+BATCH ");
59         else if (e->op_type & EXCLUSIVE_OPLOCK)
60                 printf("EXCLUSIVE       ");
61         else if (e->op_type & BATCH_OPLOCK)
62                 printf("BATCH           ");
63         else
64                 printf("NONE            ");
65         printf("</td>");
66
67         printf("<td>%s</td><td>%s</td></tr>\n",
68                fname,tstring(e->time.tv_sec));
69 }
70
71
72 /* show the current server status */
73 void status_page(void)
74 {
75         struct connect_record crec;
76         pstring fname;
77         FILE *f;
78         char *v;
79         int autorefresh=0;
80         int refresh_interval=30;
81
82         if (cgi_variable("smbd_start")) {
83                 start_smbd();
84         }
85
86         if (cgi_variable("smbd_stop")) {
87                 stop_smbd();
88         }
89
90         if (cgi_variable("nmbd_start")) {
91                 start_nmbd();
92         }
93
94         if (cgi_variable("nmbd_stop")) {
95                 stop_nmbd();
96         }
97
98         if (cgi_variable("autorefresh")) {
99                 autorefresh = 1;
100         } else if (cgi_variable("norefresh")) {
101                 autorefresh = 0;
102         } else if (cgi_variable("refresh")) {
103                 autorefresh = 1;
104         }
105
106         if ((v=cgi_variable("refresh_interval"))) {
107                 refresh_interval = atoi(v);
108         }
109
110         pstrcpy(fname,lp_lockdir());
111         standard_sub_basic(fname);
112         trim_string(fname,"","/");
113         strcat(fname,"/STATUS..LCK");
114
115
116         f = fopen(fname,"r");
117         if (f) {
118                 while (!feof(f)) {
119                         if (fread(&crec,sizeof(crec),1,f) != 1) break;
120                         if (crec.magic == 0x280267 && crec.cnum == -1 &&
121                             process_exists(crec.pid)) {
122                                 char buf[30];
123                                 sprintf(buf,"kill_%d", crec.pid);
124                                 if (cgi_variable(buf)) {
125                                         kill_pid(crec.pid);
126                                 }
127                         }
128                 }
129                 fclose(f);
130         }
131
132         printf("<H2>Server Status</H2>\n");
133
134         printf("<FORM method=post>\n");
135
136         if (!autorefresh) {
137                 printf("<input type=submit value=\"Auto Refresh\" name=autorefresh>\n");
138                 printf("<br>Refresh Interval: ");
139                 printf("<input type=text size=2 name=\"refresh_interval\" value=%d>\n", 
140                        refresh_interval);
141         } else {
142                 printf("<input type=submit value=\"Stop Refreshing\" name=norefresh>\n");
143                 printf("<br>Refresh Interval: %d\n", refresh_interval);
144                 printf("<input type=hidden name=refresh value=1>\n");
145                 /* this little JavaScript allows for automatic refresh
146                    of the page. There are other methods but this seems
147                    to be the best alternative */
148                 printf("<script language=\"JavaScript\">\n");
149                 printf("<!--\nsetTimeout('window.location.replace(\"%s/status?refresh_interval=%d&refresh=1\")', %d)\n", 
150                        cgi_baseurl(),
151                        refresh_interval,
152                        refresh_interval*1000);
153                 printf("//-->\n</script>\n");
154         }
155
156         printf("<p>\n");
157
158         f = fopen(fname,"r");
159         if (!f) {
160                 printf("Couldn't open status file %s\n",fname);
161                 if (!lp_status(-1))
162                         printf("You need to have status=yes in your smb config file\n");
163                 return;
164         }
165
166
167         printf("<table>\n");
168
169         printf("<tr><td>version:</td><td>%s</td></tr>",VERSION);
170
171         fflush(stdout);
172         if (smbd_running()) {
173                 printf("<tr><td>smbd:</td><td>running</td><td><input type=submit name=\"smbd_stop\" value=\"Stop smbd\"></td></tr>\n");
174         } else {
175                 printf("<tr><td>smbd:</td><td>not running</td><td><input type=submit name=\"smbd_start\" value=\"Start smbd\"></td></tr>\n");
176         }
177
178         fflush(stdout);
179         if (nmbd_running()) {
180                 printf("<tr><td>nmbd:</td><td>running</td><td><input type=submit name=\"nmbd_stop\" value=\"Stop nmbd\"></td></tr>\n");
181         } else {
182                 printf("<tr><td>nmbd:</td><td>not running</td><td><input type=submit name=\"nmbd_start\" value=\"Start nmbd\"></td></tr>\n");
183         }
184
185         printf("</table>\n");
186         fflush(stdout);
187
188
189         if (geteuid() != 0)
190                 printf("<b>NOTE: You are not logged in as root and won't be able to start/stop the server</b><p>\n");
191
192         printf("<p><h3>Active Connections</h3>\n");
193         printf("<table border=1>\n");
194         printf("<tr><th>PID</th><th>Client</th><th>IP address</th><th>Date</th><th>Kill</th></tr>\n");
195
196         while (!feof(f)) {
197                 if (fread(&crec,sizeof(crec),1,f) != 1)
198                         break;
199                 if (crec.magic == 0x280267 && 
200                     crec.cnum == -1 &&
201                     process_exists(crec.pid)) {
202                         printf("<tr><td>%d</td><td>%s</td><td>%s</td><td>%s</td><td><input type=submit value=\"X\" name=\"kill_%d\"></td></tr>\n",
203                                crec.pid,
204                                crec.machine,crec.addr,
205                                tstring(crec.start),
206                                crec.pid);
207                 }
208         }
209
210         printf("</table><p>\n");
211
212         fseek(f, 0, SEEK_SET);
213         
214         printf("<p><h3>Active Shares</h3>\n");
215         printf("<table border=1>\n");
216         printf("<tr><th>Share</th><th>User</th><th>Group</th><th>PID</th><th>Client</th><th>Date</th></tr>\n\n");
217
218         while (!feof(f)) {
219                 if (fread(&crec,sizeof(crec),1,f) != 1)
220                         break;
221                 if (crec.cnum == -1) continue;
222                 if (crec.magic == 0x280267 && process_exists(crec.pid)) {
223                         printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%d</td><td>%s</td><td>%s</td></tr>\n",
224                                crec.name,uidtoname(crec.uid),
225                                gidtoname(crec.gid),crec.pid,
226                                crec.machine,
227                                tstring(crec.start));
228                 }
229         }
230
231         printf("</table><p>\n");
232
233         printf("<h3>Open Files</h3>\n");
234         printf("<table border=1>\n");
235         printf("<tr><th>PID</th><th>Sharing</th><th>R/W</th><th>Oplock</th><th>File</th><th>Date</th></tr>\n");
236
237         locking_init(1);
238         share_mode_forall(print_share_mode);
239         locking_end();
240         printf("</table>\n");
241
242         fclose(f);
243
244         printf("</FORM>\n");
245 }
246