sync'ing up for 3.0alpha20 release
[samba.git] / source3 / utils / status.c
1 /* 
2    Unix SMB/CIFS implementation.
3    status reporting
4    Copyright (C) Andrew Tridgell 1994-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    Revision History:
21
22    12 aug 96: Erik.Devriendt@te6.siemens.be
23    added support for shared memory implementation of share mode locking
24
25    21-Jul-1998: rsharpe@ns.aus.com (Richard Sharpe)
26    Added -L (locks only) -S (shares only) flags and code
27
28 */
29
30 /*
31  * This program reports current SMB connections
32  */
33
34 #define NO_SYSLOG
35
36 #include "includes.h"
37
38 extern BOOL AllowDebugChange;
39
40 static pstring Ucrit_username = "";                   /* added by OH */
41 static pid_t    Ucrit_pid[100];  /* Ugly !!! */        /* added by OH */
42 static int            Ucrit_MaxPid=0;                        /* added by OH */
43 static unsigned int   Ucrit_IsActive = 0;                    /* added by OH */
44 static int verbose, brief;
45 static int            shares_only = 0;            /* Added by RJS */
46 static int            locks_only  = 0;            /* Added by RJS */
47 static BOOL processes_only=False;
48 static int show_brl;
49
50 /* we need these because we link to locking*.o */
51  void become_root(void) {}
52  void unbecome_root(void) {}
53
54
55 /* added by OH */
56 static void Ucrit_addUsername(const char *username)
57 {
58         pstrcpy(Ucrit_username, username);
59         if(strlen(Ucrit_username) > 0)
60                 Ucrit_IsActive = 1;
61 }
62
63 static unsigned int Ucrit_checkUsername(const char *username)
64 {
65         if ( !Ucrit_IsActive) return 1;
66         if (strcmp(Ucrit_username,username) ==0) return 1;
67         return 0;
68 }
69
70 static unsigned int Ucrit_checkPid(pid_t pid)
71 {
72         int i;
73         if ( !Ucrit_IsActive) return 1;
74         for (i=0;i<Ucrit_MaxPid;i++)
75                 if( pid == Ucrit_pid[i] ) return 1;
76         return 0;
77 }
78
79
80 static void print_share_mode(share_mode_entry *e, char *fname)
81 {
82         static int count;
83         if (count==0) {
84                 d_printf("Locked files:\n");
85                 d_printf("Pid    DenyMode   Access      R/W        Oplock           Name\n");
86                 d_printf("--------------------------------------------------------------\n");
87         }
88         count++;
89
90         if (Ucrit_checkPid(e->pid)) {
91           d_printf("%-5d  ",(int)e->pid);
92           switch (GET_DENY_MODE(e->share_mode)) {
93           case DENY_NONE: d_printf("DENY_NONE  "); break;
94           case DENY_ALL:  d_printf("DENY_ALL   "); break;
95           case DENY_DOS:  d_printf("DENY_DOS   "); break;
96           case DENY_READ: d_printf("DENY_READ  "); break;
97           case DENY_WRITE:printf("DENY_WRITE "); break;
98           case DENY_FCB:  d_printf("DENY_FCB "); break;
99           }
100           d_printf("0x%-8x  ",(unsigned int)e->desired_access);
101           switch (e->share_mode&0xF) {
102           case 0: d_printf("RDONLY     "); break;
103           case 1: d_printf("WRONLY     "); break;
104           case 2: d_printf("RDWR       "); break;
105           }
106
107           if((e->op_type & 
108              (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) == 
109               (EXCLUSIVE_OPLOCK|BATCH_OPLOCK))
110                 d_printf("EXCLUSIVE+BATCH ");
111           else if (e->op_type & EXCLUSIVE_OPLOCK)
112                 d_printf("EXCLUSIVE       ");
113           else if (e->op_type & BATCH_OPLOCK)
114                 d_printf("BATCH           ");
115           else if (e->op_type & LEVEL_II_OPLOCK)
116                 d_printf("LEVEL_II        ");
117           else
118                 d_printf("NONE            ");
119
120           d_printf(" %s   %s",fname,
121              asctime(LocalTime((time_t *)&e->time.tv_sec)));
122         }
123 }
124
125 static void print_brl(SMB_DEV_T dev, SMB_INO_T ino, int pid, 
126                       enum brl_type lock_type,
127                       br_off start, br_off size)
128 {
129         static int count;
130         if (count==0) {
131                 d_printf("Byte range locks:\n");
132                 d_printf("   Pid     dev:inode  R/W      start        size\n");
133                 d_printf("------------------------------------------------\n");
134         }
135         count++;
136
137         d_printf("%6d   %05x:%05x    %s  %9.0f   %9.0f\n", 
138                (int)pid, (int)dev, (int)ino, 
139                lock_type==READ_LOCK?"R":"W",
140                (double)start, (double)size);
141 }
142
143
144 /*******************************************************************
145  dump the elements of the profile structure
146   ******************************************************************/
147 static int profile_dump(void)
148 {
149 #ifdef WITH_PROFILE
150         if (!profile_setup(True)) {
151                 fprintf(stderr,"Failed to initialise profile memory\n");
152                 return -1;
153         }
154
155         d_printf("smb_count:                      %u\n", profile_p->smb_count);
156         d_printf("uid_changes:                    %u\n", profile_p->uid_changes);
157         d_printf("************************ System Calls ****************************\n");
158         d_printf("opendir_count:                  %u\n", profile_p->syscall_opendir_count);
159         d_printf("opendir_time:                   %u\n", profile_p->syscall_opendir_time);
160         d_printf("readdir_count:                  %u\n", profile_p->syscall_readdir_count);
161         d_printf("readdir_time:                   %u\n", profile_p->syscall_readdir_time);
162         d_printf("mkdir_count:                    %u\n", profile_p->syscall_mkdir_count);
163         d_printf("mkdir_time:                     %u\n", profile_p->syscall_mkdir_time);
164         d_printf("rmdir_count:                    %u\n", profile_p->syscall_rmdir_count);
165         d_printf("rmdir_time:                     %u\n", profile_p->syscall_rmdir_time);
166         d_printf("closedir_count:                 %u\n", profile_p->syscall_closedir_count);
167         d_printf("closedir_time:                  %u\n", profile_p->syscall_closedir_time);
168         d_printf("open_count:                     %u\n", profile_p->syscall_open_count);
169         d_printf("open_time:                      %u\n", profile_p->syscall_open_time);
170         d_printf("close_count:                    %u\n", profile_p->syscall_close_count);
171         d_printf("close_time:                     %u\n", profile_p->syscall_close_time);
172         d_printf("read_count:                     %u\n", profile_p->syscall_read_count);
173         d_printf("read_time:                      %u\n", profile_p->syscall_read_time);
174         d_printf("read_bytes:                     %u\n", profile_p->syscall_read_bytes);
175         d_printf("write_count:                    %u\n", profile_p->syscall_write_count);
176         d_printf("write_time:                     %u\n", profile_p->syscall_write_time);
177         d_printf("write_bytes:                    %u\n", profile_p->syscall_write_bytes);
178         d_printf("lseek_count:                    %u\n", profile_p->syscall_lseek_count);
179         d_printf("lseek_time:                     %u\n", profile_p->syscall_lseek_time);
180         d_printf("rename_count:                   %u\n", profile_p->syscall_rename_count);
181         d_printf("rename_time:                    %u\n", profile_p->syscall_rename_time);
182         d_printf("fsync_count:                    %u\n", profile_p->syscall_fsync_count);
183         d_printf("fsync_time:                     %u\n", profile_p->syscall_fsync_time);
184         d_printf("stat_count:                     %u\n", profile_p->syscall_stat_count);
185         d_printf("stat_time:                      %u\n", profile_p->syscall_stat_time);
186         d_printf("fstat_count:                    %u\n", profile_p->syscall_fstat_count);
187         d_printf("fstat_time:                     %u\n", profile_p->syscall_fstat_time);
188         d_printf("lstat_count:                    %u\n", profile_p->syscall_lstat_count);
189         d_printf("lstat_time:                     %u\n", profile_p->syscall_lstat_time);
190         d_printf("unlink_count:                   %u\n", profile_p->syscall_unlink_count);
191         d_printf("unlink_time:                    %u\n", profile_p->syscall_unlink_time);
192         d_printf("chmod_count:                    %u\n", profile_p->syscall_chmod_count);
193         d_printf("chmod_time:                     %u\n", profile_p->syscall_chmod_time);
194         d_printf("fchmod_count:                   %u\n", profile_p->syscall_fchmod_count);
195         d_printf("fchmod_time:                    %u\n", profile_p->syscall_fchmod_time);
196         d_printf("chown_count:                    %u\n", profile_p->syscall_chown_count);
197         d_printf("chown_time:                     %u\n", profile_p->syscall_chown_time);
198         d_printf("fchown_count:                   %u\n", profile_p->syscall_fchown_count);
199         d_printf("fchown_time:                    %u\n", profile_p->syscall_fchown_time);
200         d_printf("chdir_count:                    %u\n", profile_p->syscall_chdir_count);
201         d_printf("chdir_time:                     %u\n", profile_p->syscall_chdir_time);
202         d_printf("getwd_count:                    %u\n", profile_p->syscall_getwd_count);
203         d_printf("getwd_time:                     %u\n", profile_p->syscall_getwd_time);
204         d_printf("utime_count:                    %u\n", profile_p->syscall_utime_count);
205         d_printf("utime_time:                     %u\n", profile_p->syscall_utime_time);
206         d_printf("ftruncate_count:                %u\n", profile_p->syscall_ftruncate_count);
207         d_printf("ftruncate_time:                 %u\n", profile_p->syscall_ftruncate_time);
208         d_printf("fcntl_lock_count:               %u\n", profile_p->syscall_fcntl_lock_count);
209         d_printf("fcntl_lock_time:                %u\n", profile_p->syscall_fcntl_lock_time);
210         d_printf("readlink_count:                 %u\n", profile_p->syscall_readlink_count);
211         d_printf("readlink_time:                  %u\n", profile_p->syscall_readlink_time);
212         d_printf("symlink_count:                  %u\n", profile_p->syscall_symlink_count);
213         d_printf("symlink_time:                   %u\n", profile_p->syscall_symlink_time);
214         d_printf("************************ Statcache *******************************\n");
215         d_printf("lookups:                        %u\n", profile_p->statcache_lookups);
216         d_printf("misses:                         %u\n", profile_p->statcache_misses);
217         d_printf("hits:                           %u\n", profile_p->statcache_hits);
218         d_printf("************************ Writecache ******************************\n");
219         d_printf("read_hits:                      %u\n", profile_p->writecache_read_hits);
220         d_printf("abutted_writes:                 %u\n", profile_p->writecache_abutted_writes);
221         d_printf("total_writes:                   %u\n", profile_p->writecache_total_writes);
222         d_printf("non_oplock_writes:              %u\n", profile_p->writecache_non_oplock_writes);
223         d_printf("direct_writes:                  %u\n", profile_p->writecache_direct_writes);
224         d_printf("init_writes:                    %u\n", profile_p->writecache_init_writes);
225         d_printf("flushed_writes[SEEK]:           %u\n", profile_p->writecache_flushed_writes[SEEK_FLUSH]);
226         d_printf("flushed_writes[READ]:           %u\n", profile_p->writecache_flushed_writes[READ_FLUSH]);
227         d_printf("flushed_writes[WRITE]:          %u\n", profile_p->writecache_flushed_writes[WRITE_FLUSH]);
228         d_printf("flushed_writes[READRAW]:        %u\n", profile_p->writecache_flushed_writes[READRAW_FLUSH]);
229         d_printf("flushed_writes[OPLOCK_RELEASE]: %u\n", profile_p->writecache_flushed_writes[OPLOCK_RELEASE_FLUSH]);
230         d_printf("flushed_writes[CLOSE]:          %u\n", profile_p->writecache_flushed_writes[CLOSE_FLUSH]);
231         d_printf("flushed_writes[SYNC]:           %u\n", profile_p->writecache_flushed_writes[SYNC_FLUSH]);
232         d_printf("flushed_writes[SIZECHANGE]:     %u\n", profile_p->writecache_flushed_writes[SIZECHANGE_FLUSH]);
233         d_printf("num_perfect_writes:             %u\n", profile_p->writecache_num_perfect_writes);
234         d_printf("num_write_caches:               %u\n", profile_p->writecache_num_write_caches);
235         d_printf("allocated_write_caches:         %u\n", profile_p->writecache_allocated_write_caches);
236         d_printf("************************ SMB Calls *******************************\n");
237         d_printf("mkdir_count:                    %u\n", profile_p->SMBmkdir_count);
238         d_printf("mkdir_time:                     %u\n", profile_p->SMBmkdir_time);
239         d_printf("rmdir_count:                    %u\n", profile_p->SMBrmdir_count);
240         d_printf("rmdir_time:                     %u\n", profile_p->SMBrmdir_time);
241         d_printf("open_count:                     %u\n", profile_p->SMBopen_count);
242         d_printf("open_time:                      %u\n", profile_p->SMBopen_time);
243         d_printf("create_count:                   %u\n", profile_p->SMBcreate_count);
244         d_printf("create_time:                    %u\n", profile_p->SMBcreate_time);
245         d_printf("close_count:                    %u\n", profile_p->SMBclose_count);
246         d_printf("close_time:                     %u\n", profile_p->SMBclose_time);
247         d_printf("flush_count:                    %u\n", profile_p->SMBflush_count);
248         d_printf("flush_time:                     %u\n", profile_p->SMBflush_time);
249         d_printf("unlink_count:                   %u\n", profile_p->SMBunlink_count);
250         d_printf("unlink_time:                    %u\n", profile_p->SMBunlink_time);
251         d_printf("mv_count:                       %u\n", profile_p->SMBmv_count);
252         d_printf("mv_time:                        %u\n", profile_p->SMBmv_time);
253         d_printf("getatr_count:                   %u\n", profile_p->SMBgetatr_count);
254         d_printf("getatr_time:                    %u\n", profile_p->SMBgetatr_time);
255         d_printf("setatr_count:                   %u\n", profile_p->SMBsetatr_count);
256         d_printf("setatr_time:                    %u\n", profile_p->SMBsetatr_time);
257         d_printf("read_count:                     %u\n", profile_p->SMBread_count);
258         d_printf("read_time:                      %u\n", profile_p->SMBread_time);
259         d_printf("write_count:                    %u\n", profile_p->SMBwrite_count);
260         d_printf("write_time:                     %u\n", profile_p->SMBwrite_time);
261         d_printf("lock_count:                     %u\n", profile_p->SMBlock_count);
262         d_printf("lock_time:                      %u\n", profile_p->SMBlock_time);
263         d_printf("unlock_count:                   %u\n", profile_p->SMBunlock_count);
264         d_printf("unlock_time:                    %u\n", profile_p->SMBunlock_time);
265         d_printf("ctemp_count:                    %u\n", profile_p->SMBctemp_count);
266         d_printf("ctemp_time:                     %u\n", profile_p->SMBctemp_time);
267         d_printf("mknew_count:                    %u\n", profile_p->SMBmknew_count);
268         d_printf("mknew_time:                     %u\n", profile_p->SMBmknew_time);
269         d_printf("chkpth_count:                   %u\n", profile_p->SMBchkpth_count);
270         d_printf("chkpth_time:                    %u\n", profile_p->SMBchkpth_time);
271         d_printf("exit_count:                     %u\n", profile_p->SMBexit_count);
272         d_printf("exit_time:                      %u\n", profile_p->SMBexit_time);
273         d_printf("lseek_count:                    %u\n", profile_p->SMBlseek_count);
274         d_printf("lseek_time:                     %u\n", profile_p->SMBlseek_time);
275         d_printf("lockread_count:                 %u\n", profile_p->SMBlockread_count);
276         d_printf("lockread_time:                  %u\n", profile_p->SMBlockread_time);
277         d_printf("writeunlock_count:              %u\n", profile_p->SMBwriteunlock_count);
278         d_printf("writeunlock_time:               %u\n", profile_p->SMBwriteunlock_time);
279         d_printf("readbraw_count:                 %u\n", profile_p->SMBreadbraw_count);
280         d_printf("readbraw_time:                  %u\n", profile_p->SMBreadbraw_time);
281         d_printf("readBmpx_count:                 %u\n", profile_p->SMBreadBmpx_count);
282         d_printf("readBmpx_time:                  %u\n", profile_p->SMBreadBmpx_time);
283         d_printf("readBs_count:                   %u\n", profile_p->SMBreadBs_count);
284         d_printf("readBs_time:                    %u\n", profile_p->SMBreadBs_time);
285         d_printf("writebraw_count:                %u\n", profile_p->SMBwritebraw_count);
286         d_printf("writebraw_time:                 %u\n", profile_p->SMBwritebraw_time);
287         d_printf("writeBmpx_count:                %u\n", profile_p->SMBwriteBmpx_count);
288         d_printf("writeBmpx_time:                 %u\n", profile_p->SMBwriteBmpx_time);
289         d_printf("writeBs_count:                  %u\n", profile_p->SMBwriteBs_count);
290         d_printf("writeBs_time:                   %u\n", profile_p->SMBwriteBs_time);
291         d_printf("writec_count:                   %u\n", profile_p->SMBwritec_count);
292         d_printf("writec_time:                    %u\n", profile_p->SMBwritec_time);
293         d_printf("setattrE_count:                 %u\n", profile_p->SMBsetattrE_count);
294         d_printf("setattrE_time:                  %u\n", profile_p->SMBsetattrE_time);
295         d_printf("getattrE_count:                 %u\n", profile_p->SMBgetattrE_count);
296         d_printf("getattrE_time:                  %u\n", profile_p->SMBgetattrE_time);
297         d_printf("lockingX_count:                 %u\n", profile_p->SMBlockingX_count);
298         d_printf("lockingX_time:                  %u\n", profile_p->SMBlockingX_time);
299         d_printf("trans_count:                    %u\n", profile_p->SMBtrans_count);
300         d_printf("trans_time:                     %u\n", profile_p->SMBtrans_time);
301         d_printf("transs_count:                   %u\n", profile_p->SMBtranss_count);
302         d_printf("transs_time:                    %u\n", profile_p->SMBtranss_time);
303         d_printf("ioctl_count:                    %u\n", profile_p->SMBioctl_count);
304         d_printf("ioctl_time:                     %u\n", profile_p->SMBioctl_time);
305         d_printf("ioctls_count:                   %u\n", profile_p->SMBioctls_count);
306         d_printf("ioctls_time:                    %u\n", profile_p->SMBioctls_time);
307         d_printf("copy_count:                     %u\n", profile_p->SMBcopy_count);
308         d_printf("copy_time:                      %u\n", profile_p->SMBcopy_time);
309         d_printf("move_count:                     %u\n", profile_p->SMBmove_count);
310         d_printf("move_time:                      %u\n", profile_p->SMBmove_time);
311         d_printf("echo_count:                     %u\n", profile_p->SMBecho_count);
312         d_printf("echo_time:                      %u\n", profile_p->SMBecho_time);
313         d_printf("writeclose_count:               %u\n", profile_p->SMBwriteclose_count);
314         d_printf("writeclose_time:                %u\n", profile_p->SMBwriteclose_time);
315         d_printf("openX_count:                    %u\n", profile_p->SMBopenX_count);
316         d_printf("openX_time:                     %u\n", profile_p->SMBopenX_time);
317         d_printf("readX_count:                    %u\n", profile_p->SMBreadX_count);
318         d_printf("readX_time:                     %u\n", profile_p->SMBreadX_time);
319         d_printf("writeX_count:                   %u\n", profile_p->SMBwriteX_count);
320         d_printf("writeX_time:                    %u\n", profile_p->SMBwriteX_time);
321         d_printf("trans2_count:                   %u\n", profile_p->SMBtrans2_count);
322         d_printf("trans2_time:                    %u\n", profile_p->SMBtrans2_time);
323         d_printf("transs2_count:                  %u\n", profile_p->SMBtranss2_count);
324         d_printf("transs2_time:                   %u\n", profile_p->SMBtranss2_time);
325         d_printf("findclose_count:                %u\n", profile_p->SMBfindclose_count);
326         d_printf("findclose_time:                 %u\n", profile_p->SMBfindclose_time);
327         d_printf("findnclose_count:               %u\n", profile_p->SMBfindnclose_count);
328         d_printf("findnclose_time:                %u\n", profile_p->SMBfindnclose_time);
329         d_printf("tcon_count:                     %u\n", profile_p->SMBtcon_count);
330         d_printf("tcon_time:                      %u\n", profile_p->SMBtcon_time);
331         d_printf("tdis_count:                     %u\n", profile_p->SMBtdis_count);
332         d_printf("tdis_time:                      %u\n", profile_p->SMBtdis_time);
333         d_printf("negprot_count:                  %u\n", profile_p->SMBnegprot_count);
334         d_printf("negprot_time:                   %u\n", profile_p->SMBnegprot_time);
335         d_printf("sesssetupX_count:               %u\n", profile_p->SMBsesssetupX_count);
336         d_printf("sesssetupX_time:                %u\n", profile_p->SMBsesssetupX_time);
337         d_printf("ulogoffX_count:                 %u\n", profile_p->SMBulogoffX_count);
338         d_printf("ulogoffX_time:                  %u\n", profile_p->SMBulogoffX_time);
339         d_printf("tconX_count:                    %u\n", profile_p->SMBtconX_count);
340         d_printf("tconX_time:                     %u\n", profile_p->SMBtconX_time);
341         d_printf("dskattr_count:                  %u\n", profile_p->SMBdskattr_count);
342         d_printf("dskattr_time:                   %u\n", profile_p->SMBdskattr_time);
343         d_printf("search_count:                   %u\n", profile_p->SMBsearch_count);
344         d_printf("search_time:                    %u\n", profile_p->SMBsearch_time);
345         d_printf("ffirst_count:                   %u\n", profile_p->SMBffirst_count);
346         d_printf("ffirst_time:                    %u\n", profile_p->SMBffirst_time);
347         d_printf("funique_count:                  %u\n", profile_p->SMBfunique_count);
348         d_printf("funique_time:                   %u\n", profile_p->SMBfunique_time);
349         d_printf("fclose_count:                   %u\n", profile_p->SMBfclose_count);
350         d_printf("fclose_time:                    %u\n", profile_p->SMBfclose_time);
351         d_printf("nttrans_count:                  %u\n", profile_p->SMBnttrans_count);
352         d_printf("nttrans_time:                   %u\n", profile_p->SMBnttrans_time);
353         d_printf("nttranss_count:                 %u\n", profile_p->SMBnttranss_count);
354         d_printf("nttranss_time:                  %u\n", profile_p->SMBnttranss_time);
355         d_printf("ntcreateX_count:                %u\n", profile_p->SMBntcreateX_count);
356         d_printf("ntcreateX_time:                 %u\n", profile_p->SMBntcreateX_time);
357         d_printf("ntcancel_count:                 %u\n", profile_p->SMBntcancel_count);
358         d_printf("ntcancel_time:                  %u\n", profile_p->SMBntcancel_time);
359         d_printf("splopen_count:                  %u\n", profile_p->SMBsplopen_count);
360         d_printf("splopen_time:                   %u\n", profile_p->SMBsplopen_time);
361         d_printf("splwr_count:                    %u\n", profile_p->SMBsplwr_count);
362         d_printf("splwr_time:                     %u\n", profile_p->SMBsplwr_time);
363         d_printf("splclose_count:                 %u\n", profile_p->SMBsplclose_count);
364         d_printf("splclose_time:                  %u\n", profile_p->SMBsplclose_time);
365         d_printf("splretq_count:                  %u\n", profile_p->SMBsplretq_count);
366         d_printf("splretq_time:                   %u\n", profile_p->SMBsplretq_time);
367         d_printf("sends_count:                    %u\n", profile_p->SMBsends_count);
368         d_printf("sends_time:                     %u\n", profile_p->SMBsends_time);
369         d_printf("sendb_count:                    %u\n", profile_p->SMBsendb_count);
370         d_printf("sendb_time:                     %u\n", profile_p->SMBsendb_time);
371         d_printf("fwdname_count:                  %u\n", profile_p->SMBfwdname_count);
372         d_printf("fwdname_time:                   %u\n", profile_p->SMBfwdname_time);
373         d_printf("cancelf_count:                  %u\n", profile_p->SMBcancelf_count);
374         d_printf("cancelf_time:                   %u\n", profile_p->SMBcancelf_time);
375         d_printf("getmac_count:                   %u\n", profile_p->SMBgetmac_count);
376         d_printf("getmac_time:                    %u\n", profile_p->SMBgetmac_time);
377         d_printf("sendstrt_count:                 %u\n", profile_p->SMBsendstrt_count);
378         d_printf("sendstrt_time:                  %u\n", profile_p->SMBsendstrt_time);
379         d_printf("sendend_count:                  %u\n", profile_p->SMBsendend_count);
380         d_printf("sendend_time:                   %u\n", profile_p->SMBsendend_time);
381         d_printf("sendtxt_count:                  %u\n", profile_p->SMBsendtxt_count);
382         d_printf("sendtxt_time:                   %u\n", profile_p->SMBsendtxt_time);
383         d_printf("invalid_count:                  %u\n", profile_p->SMBinvalid_count);
384         d_printf("invalid_time:                   %u\n", profile_p->SMBinvalid_time);
385         d_printf("************************ Pathworks Calls *************************\n");
386         d_printf("setdir_count:                   %u\n", profile_p->pathworks_setdir_count);
387         d_printf("setdir_time:                    %u\n", profile_p->pathworks_setdir_time);
388         d_printf("************************ Trans2 Calls ****************************\n");
389         d_printf("open_count:                     %u\n", profile_p->Trans2_open_count);
390         d_printf("open_time:                      %u\n", profile_p->Trans2_open_time);
391         d_printf("findfirst_count:                %u\n", profile_p->Trans2_findfirst_count);
392         d_printf("findfirst_time:                 %u\n", profile_p->Trans2_findfirst_time);
393         d_printf("findnext_count:                 %u\n", profile_p->Trans2_findnext_count);
394         d_printf("findnext_time:                  %u\n", profile_p->Trans2_findnext_time);
395         d_printf("qfsinfo_count:                  %u\n", profile_p->Trans2_qfsinfo_count);
396         d_printf("qfsinfo_time:                   %u\n", profile_p->Trans2_qfsinfo_time);
397         d_printf("setfsinfo_count:                %u\n", profile_p->Trans2_setfsinfo_count);
398         d_printf("setfsinfo_time:                 %u\n", profile_p->Trans2_setfsinfo_time);
399         d_printf("qpathinfo_count:                %u\n", profile_p->Trans2_qpathinfo_count);
400         d_printf("qpathinfo_time:                 %u\n", profile_p->Trans2_qpathinfo_time);
401         d_printf("setpathinfo_count:              %u\n", profile_p->Trans2_setpathinfo_count);
402         d_printf("setpathinfo_time:               %u\n", profile_p->Trans2_setpathinfo_time);
403         d_printf("qfileinfo_count:                %u\n", profile_p->Trans2_qfileinfo_count);
404         d_printf("qfileinfo_time:                 %u\n", profile_p->Trans2_qfileinfo_time);
405         d_printf("setfileinfo_count:              %u\n", profile_p->Trans2_setfileinfo_count);
406         d_printf("setfileinfo_time:               %u\n", profile_p->Trans2_setfileinfo_time);
407         d_printf("fsctl_count:                    %u\n", profile_p->Trans2_fsctl_count);
408         d_printf("fsctl_time:                     %u\n", profile_p->Trans2_fsctl_time);
409         d_printf("ioctl_count:                    %u\n", profile_p->Trans2_ioctl_count);
410         d_printf("ioctl_time:                     %u\n", profile_p->Trans2_ioctl_time);
411         d_printf("findnotifyfirst_count:          %u\n", profile_p->Trans2_findnotifyfirst_count);
412         d_printf("findnotifyfirst_time:           %u\n", profile_p->Trans2_findnotifyfirst_time);
413         d_printf("findnotifynext_count:           %u\n", profile_p->Trans2_findnotifynext_count);
414         d_printf("findnotifynext_time:            %u\n", profile_p->Trans2_findnotifynext_time);
415         d_printf("mkdir_count:                    %u\n", profile_p->Trans2_mkdir_count);
416         d_printf("mkdir_time:                     %u\n", profile_p->Trans2_mkdir_time);
417         d_printf("session_setup_count:            %u\n", profile_p->Trans2_session_setup_count);
418         d_printf("session_setup_time:             %u\n", profile_p->Trans2_session_setup_time);
419         d_printf("get_dfs_referral_count:         %u\n", profile_p->Trans2_get_dfs_referral_count);
420         d_printf("get_dfs_referral_time:          %u\n", profile_p->Trans2_get_dfs_referral_time);
421         d_printf("report_dfs_inconsistancy_count: %u\n", profile_p->Trans2_report_dfs_inconsistancy_count);
422         d_printf("report_dfs_inconsistancy_time:  %u\n", profile_p->Trans2_report_dfs_inconsistancy_time);
423         d_printf("************************ NT Transact Calls ***********************\n");
424         d_printf("create_count:                   %u\n", profile_p->NT_transact_create_count);
425         d_printf("create_time:                    %u\n", profile_p->NT_transact_create_time);
426         d_printf("ioctl_count:                    %u\n", profile_p->NT_transact_ioctl_count);
427         d_printf("ioctl_time:                     %u\n", profile_p->NT_transact_ioctl_time);
428         d_printf("set_security_desc_count:        %u\n", profile_p->NT_transact_set_security_desc_count);
429         d_printf("set_security_desc_time:         %u\n", profile_p->NT_transact_set_security_desc_time);
430         d_printf("notify_change_count:            %u\n", profile_p->NT_transact_notify_change_count);
431         d_printf("notify_change_time:             %u\n", profile_p->NT_transact_notify_change_time);
432         d_printf("rename_count:                   %u\n", profile_p->NT_transact_rename_count);
433         d_printf("rename_time:                    %u\n", profile_p->NT_transact_rename_time);
434         d_printf("query_security_desc_count:      %u\n", profile_p->NT_transact_query_security_desc_count);
435         d_printf("query_security_desc_time:       %u\n", profile_p->NT_transact_query_security_desc_time);
436         d_printf("************************ ACL Calls *******************************\n");
437         d_printf("get_nt_acl_count:               %u\n", profile_p->get_nt_acl_count);
438         d_printf("get_nt_acl_time:                %u\n", profile_p->get_nt_acl_time);
439         d_printf("fget_nt_acl_count:              %u\n", profile_p->fget_nt_acl_count);
440         d_printf("fget_nt_acl_time:               %u\n", profile_p->fget_nt_acl_time);
441         d_printf("set_nt_acl_count:               %u\n", profile_p->set_nt_acl_count);
442         d_printf("set_nt_acl_time:                %u\n", profile_p->set_nt_acl_time);
443         d_printf("fset_nt_acl_count:              %u\n", profile_p->fset_nt_acl_count);
444         d_printf("fset_nt_acl_time:               %u\n", profile_p->fset_nt_acl_time);
445         d_printf("chmod_acl_count:                %u\n", profile_p->chmod_acl_count);
446         d_printf("chmod_acl_time:                 %u\n", profile_p->chmod_acl_time);
447         d_printf("fchmod_acl_count:               %u\n", profile_p->fchmod_acl_count);
448         d_printf("fchmod_acl_time:                %u\n", profile_p->fchmod_acl_time);
449         d_printf("************************ NMBD Calls ****************************\n");
450         d_printf("name_release_count:             %u\n", profile_p->name_release_count);
451         d_printf("name_release_time:              %u\n", profile_p->name_release_time);
452         d_printf("name_refresh_count:             %u\n", profile_p->name_refresh_count);
453         d_printf("name_refresh_time:              %u\n", profile_p->name_refresh_time);
454         d_printf("name_registration_count:        %u\n", profile_p->name_registration_count);
455         d_printf("name_registration_time:         %u\n", profile_p->name_registration_time);
456         d_printf("node_status_count:              %u\n", profile_p->node_status_count);
457         d_printf("node_status_time:               %u\n", profile_p->node_status_time);
458         d_printf("name_query_count:               %u\n", profile_p->name_query_count);
459         d_printf("name_query_time:                %u\n", profile_p->name_query_time);
460         d_printf("host_announce_count:            %u\n", profile_p->host_announce_count);
461         d_printf("host_announce_time:             %u\n", profile_p->host_announce_time);
462         d_printf("workgroup_announce_count:       %u\n", profile_p->workgroup_announce_count);
463         d_printf("workgroup_announce_time:        %u\n", profile_p->workgroup_announce_time);
464         d_printf("local_master_announce_count:    %u\n", profile_p->local_master_announce_count);
465         d_printf("local_master_announce_time:     %u\n", profile_p->local_master_announce_time);
466         d_printf("master_browser_announce_count:  %u\n", profile_p->master_browser_announce_count);
467         d_printf("master_browser_announce_time:   %u\n", profile_p->master_browser_announce_time);
468         d_printf("lm_host_announce_count:         %u\n", profile_p->lm_host_announce_count);
469         d_printf("lm_host_announce_time:          %u\n", profile_p->lm_host_announce_time);
470         d_printf("get_backup_list_count:          %u\n", profile_p->get_backup_list_count);
471         d_printf("get_backup_list_time:           %u\n", profile_p->get_backup_list_time);
472         d_printf("reset_browser_count:            %u\n", profile_p->reset_browser_count);
473         d_printf("reset_browser_time:             %u\n", profile_p->reset_browser_time);
474         d_printf("announce_request_count:         %u\n", profile_p->announce_request_count);
475         d_printf("announce_request_time:          %u\n", profile_p->announce_request_time);
476         d_printf("lm_announce_request_count:      %u\n", profile_p->lm_announce_request_count);
477         d_printf("lm_announce_request_time:       %u\n", profile_p->lm_announce_request_time);
478         d_printf("domain_logon_count:             %u\n", profile_p->domain_logon_count);
479         d_printf("domain_logon_time:              %u\n", profile_p->domain_logon_time);
480         d_printf("sync_browse_lists_count:        %u\n", profile_p->sync_browse_lists_count);
481         d_printf("sync_browse_lists_time:         %u\n", profile_p->sync_browse_lists_time);
482         d_printf("run_elections_count:            %u\n", profile_p->run_elections_count);
483         d_printf("run_elections_time:             %u\n", profile_p->run_elections_time);
484         d_printf("election_count:                 %u\n", profile_p->election_count);
485         d_printf("election_time:                  %u\n", profile_p->election_time);
486 #else /* WITH_PROFILE */
487         fprintf(stderr, "Profile data unavailable\n");
488 #endif /* WITH_PROFILE */
489
490         return 0;
491 }
492
493
494 static int traverse_fn1(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *state)
495 {
496         struct connections_data crec;
497
498         if (dbuf.dsize != sizeof(crec))
499                 return 0;
500
501         memcpy(&crec, dbuf.dptr, sizeof(crec));
502
503         if (crec.cnum == -1)
504                 return 0;
505
506         if (!process_exists(crec.pid) || !Ucrit_checkUsername(uidtoname(crec.uid))) {
507                 return 0;
508         }
509
510         d_printf("%-10.10s   %5d   %-12s  %s",
511                crec.name,(int)crec.pid,
512                crec.machine,
513                asctime(LocalTime(&crec.start)));
514
515         return 0;
516 }
517
518 static int traverse_sessionid(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *state)
519 {
520         struct sessionid sessionid;
521
522         if (dbuf.dsize != sizeof(sessionid))
523                 return 0;
524
525         memcpy(&sessionid, dbuf.dptr, sizeof(sessionid));
526
527         if (!process_exists(sessionid.pid) || !Ucrit_checkUsername(uidtoname(sessionid.uid))) {
528                 return 0;
529         }
530
531         d_printf("%5d   %-12s  %-12s  %-12s (%s)\n",
532                (int)sessionid.pid, uidtoname(sessionid.uid), gidtoname(sessionid.gid), 
533                sessionid.remote_machine, sessionid.hostname);
534         
535         return 0;
536 }
537
538
539
540
541  int main(int argc, char *argv[])
542 {
543         int c;
544         static int profile_only = 0;
545         static char *new_debuglevel = NULL;
546         TDB_CONTEXT *tdb;
547         poptContext pc;
548         struct poptOption long_options[] = {
549                 {"processes",   'p', POPT_ARG_NONE,     &processes_only},
550                 {"verbose",     'v', POPT_ARG_NONE,     &verbose},
551                 {"locks",       'L', POPT_ARG_NONE,     &locks_only},
552                 {"shares",      'S', POPT_ARG_NONE,     &shares_only},
553                 {"conf",        's', POPT_ARG_STRING,   0, 's'},
554                 {"user",        'u', POPT_ARG_STRING,   0, 'u'},
555                 {"brief",       'b', POPT_ARG_NONE,     &brief},
556 #ifdef WITH_PROFILE
557                 {"profile",     'P', POPT_ARG_NONE,     &profile_only},
558 #endif /* WITH_PROFILE */
559                 {"byterange",   'B', POPT_ARG_NONE,     &show_brl},
560                 { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_debug },
561                 { 0, 0, 0, 0}
562         };
563
564
565         setup_logging(argv[0],True);
566         
567         AllowDebugChange = False;
568         DEBUGLEVEL = 0;
569         dbf = x_stderr;
570         
571         if (getuid() != geteuid()) {
572                 d_printf("smbstatus should not be run setuid\n");
573                 return(1);
574         }
575
576         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
577                             POPT_CONTEXT_KEEP_FIRST);
578         
579         while ((c = poptGetNextOpt(pc)) != EOF) {
580                 switch (c) {
581                 case 's':
582                         pstrcpy(dyn_CONFIGFILE, poptGetOptArg(pc));
583                         break;
584                 case 'u':                                      
585                         Ucrit_addUsername(poptGetOptArg(pc));             
586                         break;
587                 default:
588                         fprintf(stderr, "Usage: %s [-P] [-v] [-L] [-p] [-S] [-s configfile] [-u username] [-d debuglevel]\n", *argv);
589                         return (-1);
590                 }
591         }
592         
593         if (!lp_load(dyn_CONFIGFILE,False,False,False)) {
594                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", dyn_CONFIGFILE);
595                 return (-1);
596         }
597         
598         if (new_debuglevel) {
599                 debug_parse_levels(new_debuglevel);
600         }
601
602         if (verbose) {
603                 d_printf("using configfile = %s\n", dyn_CONFIGFILE);
604         }
605         
606         if (profile_only) {
607                 return profile_dump();
608         }
609         
610         tdb = tdb_open_log(lock_path("sessionid.tdb"), 0, TDB_DEFAULT, O_RDONLY, 0);
611         if (!tdb) {
612                 d_printf("sessionid.tdb not initialised\n");
613         } else {
614                 if (locks_only) goto locks;
615
616                 d_printf("\nSamba version %s\n",VERSION);
617                 d_printf("PID     Username      Group         Machine                        \n");
618                 d_printf("-------------------------------------------------------------------\n");
619
620                 tdb_traverse(tdb, traverse_sessionid, NULL);
621                 tdb_close(tdb);
622         }
623   
624         tdb = tdb_open_log(lock_path("connections.tdb"), 0, TDB_DEFAULT, O_RDONLY, 0);
625         if (!tdb) {
626                 d_printf("%s not initialised\n", lock_path("connections.tdb"));
627                 d_printf("This is normal if an SMB client has never connected to your server.\n");
628         }  else  {
629                 if (verbose) {
630                         d_printf("Opened %s\n", lock_path("connections.tdb"));
631                 }
632
633                 if (brief) 
634                         exit(0);
635                 
636                 d_printf("\nService      pid     machine       Connected at\n");
637                 d_printf("-------------------------------------------------------\n");
638
639                 tdb_traverse(tdb, traverse_fn1, NULL);
640                 tdb_close(tdb);
641         }
642
643  locks:
644         if (processes_only) exit(0);
645
646         if (!shares_only) {
647                 int ret;
648
649                 if (!locking_init(1)) {
650                         d_printf("Can't initialise locking module - exiting\n");
651                         exit(1);
652                 }
653                 
654                 ret = share_mode_forall(print_share_mode);
655
656                 if (ret == 0) {
657                         d_printf("No locked files\n");
658                 } else if (ret == -1) {
659                         d_printf("locked file list truncated\n");
660                 }
661                 
662                 d_printf("\n");
663
664                 if (show_brl) {
665                         brl_forall(print_brl);
666                 }
667                 
668                 locking_end();
669         }
670
671         return (0);
672 }