ab61a4db89ba7814c3b3ae0e64f749a77bfd7d54
[kai/samba.git] / source3 / utils / status.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    status reporting
5    Copyright (C) Andrew Tridgell 1994-1995
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    Revision History:
22
23    12 aug 96: Erik.Devriendt@te6.siemens.be
24    added support for shared memory implementation of share mode locking
25 */
26
27 /*
28  * This program reports current SMB connections
29  */
30
31 #ifdef SYSLOG
32 #undef SYSLOG
33 #endif
34
35 #include "includes.h"
36
37 struct connect_record crec;
38 extern int DEBUGLEVEL;
39 extern FILE *dbf;
40 extern pstring myhostname;
41
42 static pstring Ucrit_username = "";                   /* added by OH */
43 int            Ucrit_pid[100];  /* Ugly !!! */        /* added by OH */
44 int            Ucrit_MaxPid=0;                        /* added by OH */
45 unsigned int   Ucrit_IsActive = 0;                    /* added by OH */
46
47  int main(int argc, char *argv[])
48 {
49   FILE *f;
50   pstring fname;
51   int uid, c;
52   static pstring servicesf = CONFIGFILE;
53   extern char *optarg;
54   int verbose = 0;
55   BOOL firstopen=True;
56   BOOL processes_only=False;
57   int last_pid=0;
58 #if FAST_SHARE_MODES
59   pstring shmem_file_name;
60   share_mode_record *scanner_p;
61   share_mode_record *prev_p;
62   int bytes_free, bytes_used, bytes_overhead, bytes_total;
63 #else
64   int n;
65   void *dir;
66   char *s;
67 #endif
68
69
70   TimeInit();
71   setup_logging(argv[0],True);
72
73   charset_initialise();
74
75   DEBUGLEVEL = 0;
76   dbf = fopen("/dev/null","w");
77
78   if (getuid() != geteuid()) {
79     printf("smbstatus should not be run setuid\n");
80     return(1);
81   }
82
83   while ((c = getopt(argc, argv, "pds:u:")) != EOF) {
84     switch (c) {
85     case 'd':
86       verbose = 1;
87       break;
88     case 'p':
89       processes_only = 1;
90       break;
91     case 's':
92       strcpy(servicesf, optarg);
93       break;
94     case 'u':                                       /* added by OH */
95       Ucrit_addUsername(optarg);                    /* added by OH */
96       break;
97     default:
98       fprintf(stderr, "Usage: %s [-d] [-p] [-s configfile] [-u username]\n", *argv); /* changed by OH */
99       return (-1);
100     }
101   }
102
103   if (!lp_load(servicesf,False)) {
104     fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
105     return (-1);
106   }
107
108   get_myname(myhostname, NULL);
109
110   if (verbose) {
111     printf("using configfile = %s\n", servicesf);
112     printf("lockdir = %s\n", *lp_lockdir() ? lp_lockdir() : "NULL");
113   }
114
115   strcpy(fname,lp_lockdir());
116   standard_sub_basic(fname);
117   trim_string(fname,"","/");
118   strcat(fname,"/STATUS..LCK");
119
120   f = fopen(fname,"r");
121   if (!f) {
122     printf("Couldn't open status file %s\n",fname);
123     if (!lp_status(-1))
124       printf("You need to have status=yes in your smb config file\n");
125     return(0);
126   }
127   else if (verbose) {
128     printf("Opened status file %s\n", fname);
129   }
130
131   uid = getuid();
132
133   if (!processes_only) {
134     printf("\nSamba version %s\n",VERSION);
135
136     printf("Service      uid      gid      pid     machine\n");
137     printf("----------------------------------------------\n");
138   }
139
140   while (!feof(f))
141     {
142       if (fread(&crec,sizeof(crec),1,f) != 1)
143         break;
144       if ( crec.magic == 0x280267 && process_exists(crec.pid) 
145            && Ucrit_checkUsername(uidtoname(crec.uid))                      /* added by OH */
146          )
147       {
148         Ucrit_addPid(crec.pid);                                             /* added by OH */
149         if (processes_only) {
150           if (last_pid != crec.pid)
151             printf("%d\n",crec.pid);
152           last_pid = crec.pid; /* XXXX we can still get repeats, have to
153                                   add a sort at some time */
154         }
155         else      
156           printf("%-10.10s   %-8s %-8s %5d   %-8s (%s) %s",
157                  crec.name,uidtoname(crec.uid),gidtoname(crec.gid),crec.pid,
158                  crec.machine,crec.addr,
159                  asctime(LocalTime(&crec.start)));
160       }
161     }
162   fclose(f);
163
164   if (processes_only) exit(0);
165
166   printf("\n");
167
168 #if FAST_SHARE_MODES
169   /*******************************************************************
170   initialize the shared memory for share_mode management 
171   ******************************************************************/
172
173    
174   strcpy(shmem_file_name,lp_lockdir());
175   trim_string(shmem_file_name,"","/");
176   if (!*shmem_file_name) exit(-1);
177   strcat(shmem_file_name, "/SHARE_MEM_FILE");
178   if(!shm_open(shmem_file_name, SHMEM_SIZE)) exit(-1);
179   
180   if(!shm_lock())
181   {
182      shm_close();
183      exit (-1);
184   }
185
186   scanner_p = (share_mode_record *)shm_offset2addr(shm_get_userdef_off());
187   prev_p = scanner_p;
188   while(scanner_p)
189   {
190      int pid,mode;
191      time_t t;
192      
193      pid = scanner_p->pid;
194      
195      if ( !Ucrit_checkPid(pid) )
196      {
197         prev_p = scanner_p ;
198         scanner_p = (share_mode_record *)shm_offset2addr(scanner_p->next_offset);
199         continue;
200      }
201      
202      if( (scanner_p->locking_version != LOCKING_VERSION) || !process_exists(pid))
203      {
204         DEBUG(2,("Deleting stale share mode record"));
205         if(prev_p == scanner_p)
206         {
207            shm_set_userdef_off(scanner_p->next_offset);
208            shm_free(shm_addr2offset(scanner_p));
209            scanner_p = (share_mode_record *)shm_offset2addr(shm_get_userdef_off());
210            prev_p = scanner_p;
211         }
212         else
213         {
214            prev_p->next_offset = scanner_p->next_offset;
215            shm_free(shm_addr2offset(scanner_p));
216            scanner_p = (share_mode_record *)shm_offset2addr(prev_p->next_offset);
217         }
218         continue;
219      }
220      t = scanner_p->time;
221      mode = scanner_p->share_mode;
222      strcpy(fname, scanner_p->file_name);
223 #else
224      dir = opendir(lp_lockdir());
225      if (!dir) return(0);
226      while ((s=readdirname(dir))) {
227        char buf[16];
228        int pid,mode;
229        time_t t;
230        int fd;
231        pstring lname;
232        int dev,inode;
233        
234        if (sscanf(s,"share.%d.%d",&dev,&inode)!=2) continue;
235        
236        strcpy(lname,lp_lockdir());
237        trim_string(lname,NULL,"/");
238        strcat(lname,"/");
239        strcat(lname,s);
240        
241        fd = open(lname,O_RDONLY,0);
242        if (fd < 0) continue;
243        if (read(fd,buf,16) != 16) continue;
244        n = read(fd,fname,sizeof(fname));
245        fname[MAX(n,0)]=0;
246        close(fd);
247        
248        t = IVAL(buf,0);
249        mode = IVAL(buf,4);
250        pid = IVAL(buf,8);
251        
252        if ( !Ucrit_checkPid(pid) )             /* added by OH */
253          continue;
254        
255        if (IVAL(buf,12) != LOCKING_VERSION || !process_exists(pid)) {
256          if (unlink(lname)==0)
257            printf("Deleted stale share file %s\n",s);
258          continue;
259        }
260 #endif
261
262     fname[sizeof(fname)-1] = 0;
263
264     if (firstopen) {
265       firstopen=False;
266       printf("Locked files:\n");
267       printf("Pid    DenyMode   R/W     Name\n");
268       printf("------------------------------\n");
269     }
270
271
272     printf("%-5d  ",pid);
273     switch ((mode>>4)&0xF)
274       {
275       case DENY_NONE: printf("DENY_NONE  "); break;
276       case DENY_ALL:  printf("DENY_ALL   "); break;
277       case DENY_DOS:  printf("DENY_DOS   "); break;
278       case DENY_READ: printf("DENY_READ  "); break;
279       case DENY_WRITE:printf("DENY_WRITE "); break;
280       }
281     switch (mode&0xF) 
282       {
283       case 0: printf("RDONLY "); break;
284       case 1: printf("WRONLY "); break;
285       case 2: printf("RDWR   "); break;
286       }
287     printf(" %s   %s",fname,asctime(LocalTime(&t)));
288
289 #if FAST_SHARE_MODES
290      prev_p = scanner_p ;
291      scanner_p = (share_mode_record *)shm_offset2addr(scanner_p->next_offset);
292   } /* end while */
293
294   shm_get_usage(&bytes_free, &bytes_used, &bytes_overhead);
295   bytes_total = bytes_free + bytes_used + bytes_overhead;
296   shm_unlock();
297
298   /*******************************************************************
299   deinitialize the shared memory for share_mode management 
300   ******************************************************************/
301   shm_close();
302
303 #else
304   } /* end while */
305   closedir(dir);
306
307 #endif
308   if (firstopen)
309     printf("No locked files\n");
310 #if FAST_SHARE_MODES
311   printf("\nShare mode memory usage (bytes):\n");
312   printf("   %d(%d%%) free + %d(%d%%) used + %d(%d%%) overhead = %d(100%%) total\n",
313          bytes_free, (bytes_free * 100)/bytes_total,
314          bytes_used, (bytes_used * 100)/bytes_total,
315          bytes_overhead, (bytes_overhead * 100)/bytes_total,
316          bytes_total);
317   
318 #endif
319
320   return (0);
321 }
322
323 /* added by OH */
324 void Ucrit_addUsername(pstring username)
325 {
326   strcpy(Ucrit_username, username);
327   if(strlen(Ucrit_username) > 0)
328     Ucrit_IsActive = 1;
329 }
330
331 unsigned int Ucrit_checkUsername(pstring username)
332 {
333   if ( !Ucrit_IsActive) return 1;
334   if (strcmp(Ucrit_username,username) ==0) return 1;
335   return 0;
336 }
337
338 void Ucrit_addPid(int pid)
339 {
340   int i;
341   if ( !Ucrit_IsActive) return;
342   for (i=0;i<Ucrit_MaxPid;i++)
343     if( pid == Ucrit_pid[i] ) return;
344   Ucrit_pid[Ucrit_MaxPid++] = pid;
345 }
346
347 unsigned int   Ucrit_checkPid(int pid)
348 {
349   int i;
350   if ( !Ucrit_IsActive) return 1;
351   for (i=0;i<Ucrit_MaxPid;i++)
352     if( pid == Ucrit_pid[i] ) return 1;
353   return 0;
354 }
355