s3-debug Impove setup_logging() to specify logging to stderr
[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 3 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, see <http://www.gnu.org/licenses/>.
18
19    Revision History:
20
21    12 aug 96: Erik.Devriendt@te6.siemens.be
22    added support for shared memory implementation of share mode locking
23
24    21-Jul-1998: rsharpe@ns.aus.com (Richard Sharpe)
25    Added -L (locks only) -S (shares only) flags and code
26
27 */
28
29 /*
30  * This program reports current SMB connections
31  */
32
33 #include "includes.h"
34 #include "popt_common.h"
35 #include "dbwrap.h"
36 #include "../libcli/security/security.h"
37
38 #define SMB_MAXPIDS             2048
39 static uid_t            Ucrit_uid = 0;               /* added by OH */
40 static struct server_id Ucrit_pid[SMB_MAXPIDS];  /* Ugly !!! */   /* added by OH */
41 static int              Ucrit_MaxPid=0;                    /* added by OH */
42 static unsigned int     Ucrit_IsActive = 0;                /* added by OH */
43
44 static bool verbose, brief;
45 static bool shares_only;            /* Added by RJS */
46 static bool locks_only;            /* Added by RJS */
47 static bool processes_only;
48 static bool show_brl;
49 static bool numeric_only;
50
51 const char *username = NULL;
52
53 extern bool status_profile_dump(bool be_verbose);
54 extern bool status_profile_rates(bool be_verbose);
55
56 /* added by OH */
57 static void Ucrit_addUid(uid_t uid)
58 {
59         Ucrit_uid = uid;
60         Ucrit_IsActive = 1;
61 }
62
63 static unsigned int Ucrit_checkUid(uid_t uid)
64 {
65         if ( !Ucrit_IsActive ) 
66                 return 1;
67
68         if ( uid == Ucrit_uid ) 
69                 return 1;
70
71         return 0;
72 }
73
74 static unsigned int Ucrit_checkPid(struct server_id pid)
75 {
76         int i;
77
78         if ( !Ucrit_IsActive ) 
79                 return 1;
80
81         for (i=0;i<Ucrit_MaxPid;i++) {
82                 if (cluster_id_equal(&pid, &Ucrit_pid[i])) 
83                         return 1;
84         }
85
86         return 0;
87 }
88
89 static bool Ucrit_addPid( struct server_id pid )
90 {
91         if ( !Ucrit_IsActive )
92                 return True;
93
94         if ( Ucrit_MaxPid >= SMB_MAXPIDS ) {
95                 d_printf("ERROR: More than %d pids for user %s!\n",
96                          SMB_MAXPIDS, uidtoname(Ucrit_uid));
97
98                 return False;
99         }
100
101         Ucrit_pid[Ucrit_MaxPid++] = pid;
102
103         return True;
104 }
105
106 static void print_share_mode(const struct share_mode_entry *e,
107                              const char *sharepath,
108                              const char *fname,
109                              void *dummy)
110 {
111         static int count;
112
113         if (!is_valid_share_mode_entry(e)) {
114                 return;
115         }
116
117         if (!process_exists(e->pid)) {
118                 return;
119         }
120
121         if (count==0) {
122                 d_printf("Locked files:\n");
123                 d_printf("Pid          Uid        DenyMode   Access      R/W        Oplock           SharePath   Name   Time\n");
124                 d_printf("--------------------------------------------------------------------------------------------------\n");
125         }
126         count++;
127
128         if (Ucrit_checkPid(e->pid)) {
129                 d_printf("%-11s  ",procid_str_static(&e->pid));
130                 d_printf("%-9u  ", (unsigned int)e->uid);
131                 switch (map_share_mode_to_deny_mode(e->share_access,
132                                                     e->private_options)) {
133                         case DENY_NONE: d_printf("DENY_NONE  "); break;
134                         case DENY_ALL:  d_printf("DENY_ALL   "); break;
135                         case DENY_DOS:  d_printf("DENY_DOS   "); break;
136                         case DENY_READ: d_printf("DENY_READ  "); break;
137                         case DENY_WRITE:printf("DENY_WRITE "); break;
138                         case DENY_FCB:  d_printf("DENY_FCB "); break;
139                         default: {
140                                 d_printf("unknown-please report ! "
141                                          "e->share_access = 0x%x, "
142                                          "e->private_options = 0x%x\n",
143                                          (unsigned int)e->share_access,
144                                          (unsigned int)e->private_options );
145                                 break;
146                         }
147                 }
148                 d_printf("0x%-8x  ",(unsigned int)e->access_mask);
149                 if ((e->access_mask & (FILE_READ_DATA|FILE_WRITE_DATA))==
150                                 (FILE_READ_DATA|FILE_WRITE_DATA)) {
151                         d_printf("RDWR       ");
152                 } else if (e->access_mask & FILE_WRITE_DATA) {
153                         d_printf("WRONLY     ");
154                 } else {
155                         d_printf("RDONLY     ");
156                 }
157
158                 if((e->op_type & (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) == 
159                                         (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) {
160                         d_printf("EXCLUSIVE+BATCH ");
161                 } else if (e->op_type & EXCLUSIVE_OPLOCK) {
162                         d_printf("EXCLUSIVE       ");
163                 } else if (e->op_type & BATCH_OPLOCK) {
164                         d_printf("BATCH           ");
165                 } else if (e->op_type & LEVEL_II_OPLOCK) {
166                         d_printf("LEVEL_II        ");
167                 } else {
168                         d_printf("NONE            ");
169                 }
170
171                 d_printf(" %s   %s   %s",sharepath, fname, time_to_asc((time_t)e->time.tv_sec));
172         }
173 }
174
175 static void print_brl(struct file_id id,
176                         struct server_id pid, 
177                         enum brl_type lock_type,
178                         enum brl_flavour lock_flav,
179                         br_off start,
180                         br_off size,
181                         void *private_data)
182 {
183         static int count;
184         int i;
185         static const struct {
186                 enum brl_type lock_type;
187                 const char *desc;
188         } lock_types[] = {
189                 { READ_LOCK, "R" },
190                 { WRITE_LOCK, "W" },
191                 { PENDING_READ_LOCK, "PR" },
192                 { PENDING_WRITE_LOCK, "PW" },
193                 { UNLOCK_LOCK, "U" }
194         };
195         const char *desc="X";
196         const char *sharepath = "";
197         char *fname = NULL;
198         struct share_mode_lock *share_mode;
199
200         if (count==0) {
201                 d_printf("Byte range locks:\n");
202                 d_printf("Pid        dev:inode       R/W  start     size      SharePath               Name\n");
203                 d_printf("--------------------------------------------------------------------------------\n");
204         }
205         count++;
206
207         share_mode = fetch_share_mode_unlocked(NULL, id);
208         if (share_mode) {
209                 bool has_stream = share_mode->stream_name != NULL;
210
211                 fname = talloc_asprintf(NULL, "%s%s%s", share_mode->base_name,
212                                         has_stream ? ":" : "",
213                                         has_stream ? share_mode->stream_name :
214                                         "");
215         } else {
216                 fname = talloc_strdup(NULL, "");
217                 if (fname == NULL) {
218                         return;
219                 }
220         }
221
222         for (i=0;i<ARRAY_SIZE(lock_types);i++) {
223                 if (lock_type == lock_types[i].lock_type) {
224                         desc = lock_types[i].desc;
225                 }
226         }
227
228         d_printf("%-10s %-15s %-4s %-9.0f %-9.0f %-24s %-24s\n", 
229                  procid_str_static(&pid), file_id_string_tos(&id),
230                  desc,
231                  (double)start, (double)size,
232                  sharepath, fname);
233
234         TALLOC_FREE(fname);
235         TALLOC_FREE(share_mode);
236 }
237
238 static int traverse_fn1(const struct connections_key *key,
239                         const struct connections_data *crec,
240                         void *state)
241 {
242         if (crec->cnum == -1)
243                 return 0;
244
245         if (!process_exists(crec->pid) || !Ucrit_checkUid(crec->uid)) {
246                 return 0;
247         }
248
249         d_printf("%-10s   %s   %-12s  %s",
250                  crec->servicename,procid_str_static(&crec->pid),
251                  crec->machine,
252                  time_to_asc(crec->start));
253
254         return 0;
255 }
256
257 static int traverse_sessionid(const char *key, struct sessionid *session,
258                               void *private_data)
259 {
260         fstring uid_str, gid_str;
261
262         if (!process_exists(session->pid)
263             || !Ucrit_checkUid(session->uid)) {
264                 return 0;
265         }
266
267         Ucrit_addPid(session->pid);
268
269         fstr_sprintf(uid_str, "%u", (unsigned int)session->uid);
270         fstr_sprintf(gid_str, "%u", (unsigned int)session->gid);
271
272         d_printf("%-7s   %-12s  %-12s  %-12s (%s)\n",
273                  procid_str_static(&session->pid),
274                  numeric_only ? uid_str : uidtoname(session->uid),
275                  numeric_only ? gid_str : gidtoname(session->gid),
276                  session->remote_machine, session->hostname);
277
278         return 0;
279 }
280
281
282
283
284  int main(int argc, char *argv[])
285 {
286         int c;
287         int profile_only = 0;
288         bool show_processes, show_locks, show_shares;
289         poptContext pc;
290         struct poptOption long_options[] = {
291                 POPT_AUTOHELP
292                 {"processes",   'p', POPT_ARG_NONE,     NULL, 'p', "Show processes only" },
293                 {"verbose",     'v', POPT_ARG_NONE,     NULL, 'v', "Be verbose" },
294                 {"locks",       'L', POPT_ARG_NONE,     NULL, 'L', "Show locks only" },
295                 {"shares",      'S', POPT_ARG_NONE,     NULL, 'S', "Show shares only" },
296                 {"user",        'u', POPT_ARG_STRING,   &username, 'u', "Switch to user" },
297                 {"brief",       'b', POPT_ARG_NONE,     NULL, 'b', "Be brief" },
298                 {"profile",     'P', POPT_ARG_NONE, NULL, 'P', "Do profiling" },
299                 {"profile-rates", 'R', POPT_ARG_NONE, NULL, 'R', "Show call rates" },
300                 {"byterange",   'B', POPT_ARG_NONE,     NULL, 'B', "Include byte range locks"},
301                 {"numeric",     'n', POPT_ARG_NONE,     NULL, 'n', "Numeric uid/gid"},
302                 POPT_COMMON_SAMBA
303                 POPT_TABLEEND
304         };
305         TALLOC_CTX *frame = talloc_stackframe();
306         int ret = 0;
307         struct messaging_context *msg_ctx;
308
309         sec_init();
310         load_case_tables();
311
312         setup_logging(argv[0], DEBUG_STDERR);
313
314         if (getuid() != geteuid()) {
315                 d_printf("smbstatus should not be run setuid\n");
316                 ret = 1;
317                 goto done;
318         }
319
320         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
321                             POPT_CONTEXT_KEEP_FIRST);
322
323         while ((c = poptGetNextOpt(pc)) != -1) {
324                 switch (c) {
325                 case 'p':
326                         processes_only = true;
327                         break;
328                 case 'v':
329                         verbose = true;
330                         break;
331                 case 'L':
332                         locks_only = true;
333                         break;
334                 case 'S':
335                         shares_only = true;
336                         break;
337                 case 'b':
338                         brief = true;
339                         break;
340                 case 'u':
341                         Ucrit_addUid(nametouid(poptGetOptArg(pc)));
342                         break;
343                 case 'P':
344                 case 'R':
345                         profile_only = c;
346                         break;
347                 case 'B':
348                         show_brl = true;
349                         break;
350                 case 'n':
351                         numeric_only = true;
352                         break;
353                 }
354         }
355
356         /* setup the flags based on the possible combincations */
357
358         show_processes = !(shares_only || locks_only || profile_only) || processes_only;
359         show_locks     = !(shares_only || processes_only || profile_only) || locks_only;
360         show_shares    = !(processes_only || locks_only || profile_only) || shares_only;
361
362         if ( username )
363                 Ucrit_addUid( nametouid(username) );
364
365         if (verbose) {
366                 d_printf("using configfile = %s\n", get_dyn_CONFIGFILE());
367         }
368
369         if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
370                 fprintf(stderr, "Can't load %s - run testparm to debug it\n",
371                         get_dyn_CONFIGFILE());
372                 ret = -1;
373                 goto done;
374         }
375
376
377         if (lp_clustering()) {
378                 /*
379                  * This implicitly initializes the global ctdbd
380                  * connection, usable by the db_open() calls further
381                  * down.
382                  */
383                 msg_ctx = messaging_init(NULL, procid_self(),
384                                          event_context_init(NULL));
385                 if (msg_ctx == NULL) {
386                         fprintf(stderr, "messaging_init failed\n");
387                         ret = -1;
388                         goto done;
389                 }
390         }
391
392         if (!lp_load(get_dyn_CONFIGFILE(),False,False,False,True)) {
393                 fprintf(stderr, "Can't load %s - run testparm to debug it\n",
394                         get_dyn_CONFIGFILE());
395                 ret = -1;
396                 goto done;
397         }
398
399         switch (profile_only) {
400                 case 'P':
401                         /* Dump profile data */
402                         return status_profile_dump(verbose);
403                 case 'R':
404                         /* Continuously display rate-converted data */
405                         return status_profile_rates(verbose);
406                 default:
407                         break;
408         }
409
410         if ( show_processes ) {
411                 d_printf("\nSamba version %s\n",samba_version_string());
412                 d_printf("PID     Username      Group         Machine                        \n");
413                 d_printf("-------------------------------------------------------------------\n");
414                 if (lp_security() == SEC_SHARE) {
415                         d_printf(" <processes do not show up in "
416                                  "anonymous mode>\n");
417                 }
418
419                 sessionid_traverse_read(traverse_sessionid, NULL);
420
421                 if (processes_only) {
422                         goto done;
423                 }
424         }
425
426         if ( show_shares ) {
427                 if (verbose) {
428                         d_printf("Opened %s\n", lock_path("connections.tdb"));
429                 }
430
431                 if (brief) {
432                         goto done;
433                 }
434
435                 d_printf("\nService      pid     machine       Connected at\n");
436                 d_printf("-------------------------------------------------------\n");
437
438                 connections_forall_read(traverse_fn1, NULL);
439
440                 d_printf("\n");
441
442                 if ( shares_only ) {
443                         goto done;
444                 }
445         }
446
447         if ( show_locks ) {
448                 int result;
449                 struct db_context *db;
450                 db = db_open(NULL, lock_path("locking.tdb"), 0,
451                              TDB_CLEAR_IF_FIRST|TDB_INCOMPATIBLE_HASH, O_RDONLY, 0);
452
453                 if (!db) {
454                         d_printf("%s not initialised\n",
455                                  lock_path("locking.tdb"));
456                         d_printf("This is normal if an SMB client has never "
457                                  "connected to your server.\n");
458                         exit(0);
459                 } else {
460                         TALLOC_FREE(db);
461                 }
462
463                 if (!locking_init_readonly()) {
464                         d_printf("Can't initialise locking module - exiting\n");
465                         ret = 1;
466                         goto done;
467                 }
468
469                 result = share_mode_forall(print_share_mode, NULL);
470
471                 if (result == 0) {
472                         d_printf("No locked files\n");
473                 } else if (result == -1) {
474                         d_printf("locked file list truncated\n");
475                 }
476
477                 d_printf("\n");
478
479                 if (show_brl) {
480                         brl_forall(print_brl, NULL);
481                 }
482
483                 locking_end();
484         }
485
486 done:
487         TALLOC_FREE(frame);
488         return ret;
489 }