s3:smbstatus: Fix some nonempty blank lines
[Samba/aatanasov.git] / source3 / utils / status.c
blobf7a6155be2a6a5f8dcf794faf659bb7521f5d0d7
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"
35 #define SMB_MAXPIDS 2048
36 static uid_t Ucrit_uid = 0; /* added by OH */
37 static struct server_id Ucrit_pid[SMB_MAXPIDS]; /* Ugly !!! */ /* added by OH */
38 static int Ucrit_MaxPid=0; /* added by OH */
39 static unsigned int Ucrit_IsActive = 0; /* added by OH */
41 static bool verbose, brief;
42 static bool shares_only; /* Added by RJS */
43 static bool locks_only; /* Added by RJS */
44 static bool processes_only;
45 static bool show_brl;
46 static bool numeric_only;
48 const char *username = NULL;
50 extern bool status_profile_dump(bool be_verbose);
51 extern bool status_profile_rates(bool be_verbose);
53 /* added by OH */
54 static void Ucrit_addUid(uid_t uid)
56 Ucrit_uid = uid;
57 Ucrit_IsActive = 1;
60 static unsigned int Ucrit_checkUid(uid_t uid)
62 if ( !Ucrit_IsActive )
63 return 1;
65 if ( uid == Ucrit_uid )
66 return 1;
68 return 0;
71 static unsigned int Ucrit_checkPid(struct server_id pid)
73 int i;
75 if ( !Ucrit_IsActive )
76 return 1;
78 for (i=0;i<Ucrit_MaxPid;i++) {
79 if (cluster_id_equal(&pid, &Ucrit_pid[i]))
80 return 1;
83 return 0;
86 static bool Ucrit_addPid( struct server_id pid )
88 if ( !Ucrit_IsActive )
89 return True;
91 if ( Ucrit_MaxPid >= SMB_MAXPIDS ) {
92 d_printf("ERROR: More than %d pids for user %s!\n",
93 SMB_MAXPIDS, uidtoname(Ucrit_uid));
95 return False;
98 Ucrit_pid[Ucrit_MaxPid++] = pid;
100 return True;
103 static void print_share_mode(const struct share_mode_entry *e,
104 const char *sharepath,
105 const char *fname,
106 void *dummy)
108 static int count;
110 if (!is_valid_share_mode_entry(e)) {
111 return;
114 if (!process_exists(e->pid)) {
115 return;
118 if (count==0) {
119 d_printf("Locked files:\n");
120 d_printf("Pid Uid DenyMode Access R/W Oplock SharePath Name Time\n");
121 d_printf("--------------------------------------------------------------------------------------------------\n");
123 count++;
125 if (Ucrit_checkPid(e->pid)) {
126 d_printf("%-11s ",procid_str_static(&e->pid));
127 d_printf("%-9u ", (unsigned int)e->uid);
128 switch (map_share_mode_to_deny_mode(e->share_access,
129 e->private_options)) {
130 case DENY_NONE: d_printf("DENY_NONE "); break;
131 case DENY_ALL: d_printf("DENY_ALL "); break;
132 case DENY_DOS: d_printf("DENY_DOS "); break;
133 case DENY_READ: d_printf("DENY_READ "); break;
134 case DENY_WRITE:printf("DENY_WRITE "); break;
135 case DENY_FCB: d_printf("DENY_FCB "); break;
136 default: {
137 d_printf("unknown-please report ! "
138 "e->share_access = 0x%x, "
139 "e->private_options = 0x%x\n",
140 (unsigned int)e->share_access,
141 (unsigned int)e->private_options );
142 break;
145 d_printf("0x%-8x ",(unsigned int)e->access_mask);
146 if ((e->access_mask & (FILE_READ_DATA|FILE_WRITE_DATA))==
147 (FILE_READ_DATA|FILE_WRITE_DATA)) {
148 d_printf("RDWR ");
149 } else if (e->access_mask & FILE_WRITE_DATA) {
150 d_printf("WRONLY ");
151 } else {
152 d_printf("RDONLY ");
155 if((e->op_type & (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) ==
156 (EXCLUSIVE_OPLOCK|BATCH_OPLOCK)) {
157 d_printf("EXCLUSIVE+BATCH ");
158 } else if (e->op_type & EXCLUSIVE_OPLOCK) {
159 d_printf("EXCLUSIVE ");
160 } else if (e->op_type & BATCH_OPLOCK) {
161 d_printf("BATCH ");
162 } else if (e->op_type & LEVEL_II_OPLOCK) {
163 d_printf("LEVEL_II ");
164 } else {
165 d_printf("NONE ");
168 d_printf(" %s %s %s",sharepath, fname, time_to_asc((time_t)e->time.tv_sec));
172 static void print_brl(struct file_id id,
173 struct server_id pid,
174 enum brl_type lock_type,
175 enum brl_flavour lock_flav,
176 br_off start,
177 br_off size,
178 void *private_data)
180 static int count;
181 int i;
182 static const struct {
183 enum brl_type lock_type;
184 const char *desc;
185 } lock_types[] = {
186 { READ_LOCK, "R" },
187 { WRITE_LOCK, "W" },
188 { PENDING_READ_LOCK, "PR" },
189 { PENDING_WRITE_LOCK, "PW" },
190 { UNLOCK_LOCK, "U" }
192 const char *desc="X";
193 const char *sharepath = "";
194 char *fname = NULL;
195 struct share_mode_lock *share_mode;
197 if (count==0) {
198 d_printf("Byte range locks:\n");
199 d_printf("Pid dev:inode R/W start size SharePath Name\n");
200 d_printf("--------------------------------------------------------------------------------\n");
202 count++;
204 share_mode = fetch_share_mode_unlocked(NULL, id);
205 if (share_mode) {
206 bool has_stream = share_mode->stream_name != NULL;
208 fname = talloc_asprintf(NULL, "%s%s%s", share_mode->base_name,
209 has_stream ? ":" : "",
210 has_stream ? share_mode->stream_name :
211 "");
212 } else {
213 fname = talloc_strdup(NULL, "");
214 if (fname == NULL) {
215 return;
219 for (i=0;i<ARRAY_SIZE(lock_types);i++) {
220 if (lock_type == lock_types[i].lock_type) {
221 desc = lock_types[i].desc;
225 d_printf("%-10s %-15s %-4s %-9.0f %-9.0f %-24s %-24s\n",
226 procid_str_static(&pid), file_id_string_tos(&id),
227 desc,
228 (double)start, (double)size,
229 sharepath, fname);
231 TALLOC_FREE(fname);
232 TALLOC_FREE(share_mode);
235 static int traverse_fn1(struct db_record *rec,
236 const struct connections_key *key,
237 const struct connections_data *crec,
238 void *state)
240 if (crec->cnum == -1)
241 return 0;
243 if (!process_exists(crec->pid) || !Ucrit_checkUid(crec->uid)) {
244 return 0;
247 d_printf("%-10s %s %-12s %s",
248 crec->servicename,procid_str_static(&crec->pid),
249 crec->machine,
250 time_to_asc(crec->start));
252 return 0;
255 static int traverse_sessionid(struct db_record *db, void *state)
257 struct sessionid sessionid;
258 fstring uid_str, gid_str;
260 if (db->value.dsize != sizeof(sessionid))
261 return 0;
263 memcpy(&sessionid, db->value.dptr, sizeof(sessionid));
265 if (!process_exists(sessionid.pid) || !Ucrit_checkUid(sessionid.uid)) {
266 return 0;
269 Ucrit_addPid( sessionid.pid );
271 fstr_sprintf(uid_str, "%u", (unsigned int)sessionid.uid);
272 fstr_sprintf(gid_str, "%u", (unsigned int)sessionid.gid);
274 d_printf("%-7s %-12s %-12s %-12s (%s)\n",
275 procid_str_static(&sessionid.pid),
276 numeric_only ? uid_str : uidtoname(sessionid.uid),
277 numeric_only ? gid_str : gidtoname(sessionid.gid),
278 sessionid.remote_machine, sessionid.hostname);
280 return 0;
286 int main(int argc, char *argv[])
288 int c;
289 int profile_only = 0;
290 bool show_processes, show_locks, show_shares;
291 poptContext pc;
292 struct poptOption long_options[] = {
293 POPT_AUTOHELP
294 {"processes", 'p', POPT_ARG_NONE, NULL, 'p', "Show processes only" },
295 {"verbose", 'v', POPT_ARG_NONE, NULL, 'v', "Be verbose" },
296 {"locks", 'L', POPT_ARG_NONE, NULL, 'L', "Show locks only" },
297 {"shares", 'S', POPT_ARG_NONE, NULL, 'S', "Show shares only" },
298 {"user", 'u', POPT_ARG_STRING, &username, 'u', "Switch to user" },
299 {"brief", 'b', POPT_ARG_NONE, NULL, 'b', "Be brief" },
300 {"profile", 'P', POPT_ARG_NONE, NULL, 'P', "Do profiling" },
301 {"profile-rates", 'R', POPT_ARG_NONE, NULL, 'R', "Show call rates" },
302 {"byterange", 'B', POPT_ARG_NONE, NULL, 'B', "Include byte range locks"},
303 {"numeric", 'n', POPT_ARG_NONE, NULL, 'n', "Numeric uid/gid"},
304 POPT_COMMON_SAMBA
305 POPT_TABLEEND
307 TALLOC_CTX *frame = talloc_stackframe();
308 int ret = 0;
309 struct messaging_context *msg_ctx;
311 sec_init();
312 load_case_tables();
314 setup_logging(argv[0],True);
316 dbf = x_stderr;
318 if (getuid() != geteuid()) {
319 d_printf("smbstatus should not be run setuid\n");
320 ret = 1;
321 goto done;
324 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
325 POPT_CONTEXT_KEEP_FIRST);
327 while ((c = poptGetNextOpt(pc)) != -1) {
328 switch (c) {
329 case 'p':
330 processes_only = true;
331 break;
332 case 'v':
333 verbose = true;
334 break;
335 case 'L':
336 locks_only = true;
337 break;
338 case 'S':
339 shares_only = true;
340 break;
341 case 'b':
342 brief = true;
343 break;
344 case 'u':
345 Ucrit_addUid(nametouid(poptGetOptArg(pc)));
346 break;
347 case 'P':
348 case 'R':
349 profile_only = c;
350 break;
351 case 'B':
352 show_brl = true;
353 break;
354 case 'n':
355 numeric_only = true;
356 break;
360 /* setup the flags based on the possible combincations */
362 show_processes = !(shares_only || locks_only || profile_only) || processes_only;
363 show_locks = !(shares_only || processes_only || profile_only) || locks_only;
364 show_shares = !(processes_only || locks_only || profile_only) || shares_only;
366 if ( username )
367 Ucrit_addUid( nametouid(username) );
369 if (verbose) {
370 d_printf("using configfile = %s\n", get_dyn_CONFIGFILE());
373 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
374 fprintf(stderr, "Can't load %s - run testparm to debug it\n",
375 get_dyn_CONFIGFILE());
376 ret = -1;
377 goto done;
381 * This implicitly initializes the global ctdbd connection, usable by
382 * the db_open() calls further down.
385 msg_ctx = messaging_init(NULL, procid_self(),
386 event_context_init(NULL));
388 if (msg_ctx == NULL) {
389 fprintf(stderr, "messaging_init failed\n");
390 ret = -1;
391 goto done;
394 if (!lp_load(get_dyn_CONFIGFILE(),False,False,False,True)) {
395 fprintf(stderr, "Can't load %s - run testparm to debug it\n",
396 get_dyn_CONFIGFILE());
397 ret = -1;
398 goto done;
401 switch (profile_only) {
402 case 'P':
403 /* Dump profile data */
404 return status_profile_dump(verbose);
405 case 'R':
406 /* Continuously display rate-converted data */
407 return status_profile_rates(verbose);
408 default:
409 break;
412 if ( show_processes ) {
413 struct db_context *db;
414 db = db_open(NULL, lock_path("sessionid.tdb"), 0,
415 TDB_CLEAR_IF_FIRST, O_RDONLY, 0644);
416 if (!db) {
417 d_printf("sessionid.tdb not initialised\n");
418 } else {
419 d_printf("\nSamba version %s\n",samba_version_string());
420 d_printf("PID Username Group Machine \n");
421 d_printf("-------------------------------------------------------------------\n");
422 if (lp_security() == SEC_SHARE) {
423 d_printf(" <processes do not show up in "
424 "anonymous mode>\n");
427 db->traverse_read(db, traverse_sessionid, NULL);
428 TALLOC_FREE(db);
431 if (processes_only) {
432 goto done;
436 if ( show_shares ) {
437 if (verbose) {
438 d_printf("Opened %s\n", lock_path("connections.tdb"));
441 if (brief) {
442 goto done;
445 d_printf("\nService pid machine Connected at\n");
446 d_printf("-------------------------------------------------------\n");
448 connections_forall(traverse_fn1, NULL);
450 d_printf("\n");
452 if ( shares_only ) {
453 goto done;
457 if ( show_locks ) {
458 int result;
459 struct db_context *db;
460 db = db_open(NULL, lock_path("locking.tdb"), 0,
461 TDB_CLEAR_IF_FIRST, O_RDONLY, 0);
463 if (!db) {
464 d_printf("%s not initialised\n",
465 lock_path("locking.tdb"));
466 d_printf("This is normal if an SMB client has never "
467 "connected to your server.\n");
468 exit(0);
469 } else {
470 TALLOC_FREE(db);
473 if (!locking_init_readonly()) {
474 d_printf("Can't initialise locking module - exiting\n");
475 ret = 1;
476 goto done;
479 result = share_mode_forall(print_share_mode, NULL);
481 if (result == 0) {
482 d_printf("No locked files\n");
483 } else if (result == -1) {
484 d_printf("locked file list truncated\n");
487 d_printf("\n");
489 if (show_brl) {
490 brl_forall(print_brl, NULL);
493 locking_end();
496 done:
497 TALLOC_FREE(frame);
498 return ret;