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