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