fix Ń•ome == to correct shell test in commented stuff
[Samba.git] / source3 / utils / status.c
blob1ad2e9b1094d91e0f5c5326435aa96a066d3765f
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"
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 */
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;
51 const char *username = NULL;
53 extern bool status_profile_dump(bool be_verbose);
54 extern bool status_profile_rates(bool be_verbose);
56 /* added by OH */
57 static void Ucrit_addUid(uid_t uid)
59 Ucrit_uid = uid;
60 Ucrit_IsActive = 1;
63 static unsigned int Ucrit_checkUid(uid_t uid)
65 if ( !Ucrit_IsActive )
66 return 1;
68 if ( uid == Ucrit_uid )
69 return 1;
71 return 0;
74 static unsigned int Ucrit_checkPid(struct server_id pid)
76 int i;
78 if ( !Ucrit_IsActive )
79 return 1;
81 for (i=0;i<Ucrit_MaxPid;i++) {
82 if (cluster_id_equal(&pid, &Ucrit_pid[i]))
83 return 1;
86 return 0;
89 static bool Ucrit_addPid( struct server_id pid )
91 if ( !Ucrit_IsActive )
92 return True;
94 if ( Ucrit_MaxPid >= SMB_MAXPIDS ) {
95 d_printf("ERROR: More than %d pids for user %s!\n",
96 SMB_MAXPIDS, uidtoname(Ucrit_uid));
98 return False;
101 Ucrit_pid[Ucrit_MaxPid++] = pid;
103 return True;
106 static void print_share_mode(const struct share_mode_entry *e,
107 const char *sharepath,
108 const char *fname,
109 void *dummy)
111 static int count;
113 if (!is_valid_share_mode_entry(e)) {
114 return;
117 if (!process_exists(e->pid)) {
118 return;
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");
126 count++;
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;
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 ");
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 ");
171 d_printf(" %s %s %s",sharepath, fname, time_to_asc((time_t)e->time.tv_sec));
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)
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" }
195 const char *desc="X";
196 const char *sharepath = "";
197 char *fname = NULL;
198 struct share_mode_lock *share_mode;
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");
205 count++;
207 share_mode = fetch_share_mode_unlocked(NULL, id);
208 if (share_mode) {
209 bool has_stream = share_mode->stream_name != NULL;
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;
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;
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);
234 TALLOC_FREE(fname);
235 TALLOC_FREE(share_mode);
238 static int traverse_fn1(const struct connections_key *key,
239 const struct connections_data *crec,
240 void *state)
242 if (crec->cnum == -1)
243 return 0;
245 if (!process_exists(crec->pid) || !Ucrit_checkUid(crec->uid)) {
246 return 0;
249 d_printf("%-10s %s %-12s %s",
250 crec->servicename,procid_str_static(&crec->pid),
251 crec->machine,
252 time_to_asc(crec->start));
254 return 0;
257 static int traverse_sessionid(const char *key, struct sessionid *session,
258 void *private_data)
260 fstring uid_str, gid_str;
262 if (!process_exists(session->pid)
263 || !Ucrit_checkUid(session->uid)) {
264 return 0;
267 Ucrit_addPid(session->pid);
269 fstr_sprintf(uid_str, "%u", (unsigned int)session->uid);
270 fstr_sprintf(gid_str, "%u", (unsigned int)session->gid);
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);
278 return 0;
284 int main(int argc, char *argv[])
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
305 TALLOC_CTX *frame = talloc_stackframe();
306 int ret = 0;
307 struct messaging_context *msg_ctx;
309 sec_init();
310 load_case_tables();
312 setup_logging(argv[0], DEBUG_STDERR);
314 if (getuid() != geteuid()) {
315 d_printf("smbstatus should not be run setuid\n");
316 ret = 1;
317 goto done;
320 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
321 POPT_CONTEXT_KEEP_FIRST);
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;
356 /* setup the flags based on the possible combincations */
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;
362 if ( username )
363 Ucrit_addUid( nametouid(username) );
365 if (verbose) {
366 d_printf("using configfile = %s\n", get_dyn_CONFIGFILE());
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;
377 if (lp_clustering()) {
379 * This implicitly initializes the global ctdbd
380 * connection, usable by the db_open() calls further
381 * down.
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;
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;
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;
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");
419 sessionid_traverse_read(traverse_sessionid, NULL);
421 if (processes_only) {
422 goto done;
426 if ( show_shares ) {
427 if (verbose) {
428 d_printf("Opened %s\n", lock_path("connections.tdb"));
431 if (brief) {
432 goto done;
435 d_printf("\nService pid machine Connected at\n");
436 d_printf("-------------------------------------------------------\n");
438 connections_forall_read(traverse_fn1, NULL);
440 d_printf("\n");
442 if ( shares_only ) {
443 goto done;
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);
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);
463 if (!locking_init_readonly()) {
464 d_printf("Can't initialise locking module - exiting\n");
465 ret = 1;
466 goto done;
469 result = share_mode_forall(print_share_mode, NULL);
471 if (result == 0) {
472 d_printf("No locked files\n");
473 } else if (result == -1) {
474 d_printf("locked file list truncated\n");
477 d_printf("\n");
479 if (show_brl) {
480 brl_forall(print_brl, NULL);
483 locking_end();
486 done:
487 TALLOC_FREE(frame);
488 return ret;