2 Samba Unix/Linux SMB client library
3 net status command -- possible replacement for smbstatus
4 Copyright (C) 2003 Volker Lendecke (vl@samba.org)
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/>. */
20 #include "utils/net.h"
22 static int show_session(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
,
25 bool *parseable
= (bool *)state
;
26 struct sessionid sessionid
;
28 if (dbuf
.dsize
!= sizeof(sessionid
))
31 memcpy(&sessionid
, dbuf
.dptr
, sizeof(sessionid
));
33 if (!process_exists(sessionid
.pid
)) {
38 d_printf("%s\\%s\\%s\\%s\\%s\n",
39 procid_str_static(&sessionid
.pid
), uidtoname(sessionid
.uid
),
40 gidtoname(sessionid
.gid
),
41 sessionid
.remote_machine
, sessionid
.hostname
);
43 d_printf("%7s %-12s %-12s %-12s (%s)\n",
44 procid_str_static(&sessionid
.pid
), uidtoname(sessionid
.uid
),
45 gidtoname(sessionid
.gid
),
46 sessionid
.remote_machine
, sessionid
.hostname
);
52 static int net_status_sessions(int argc
, const char **argv
)
59 } else if ((argc
== 1) && strequal(argv
[0], "parseable")) {
62 return net_help_status(argc
, argv
);
66 d_printf("PID Username Group Machine"
68 d_printf("-------------------------------------------"
69 "------------------------\n");
72 tdb
= tdb_open_log(lock_path("sessionid.tdb"), 0,
73 TDB_DEFAULT
, O_RDONLY
, 0);
76 d_fprintf(stderr
, "%s not initialised\n", lock_path("sessionid.tdb"));
80 tdb_traverse(tdb
, show_session
, &parseable
);
86 static int show_share(struct db_record
*rec
,
87 const struct connections_key
*key
,
88 const struct connections_data
*crec
,
94 if (!process_exists(crec
->pid
)) {
98 d_printf("%-10.10s %s %-12s %s",
99 crec
->servicename
, procid_str_static(&crec
->pid
),
101 time_to_asc(crec
->start
));
108 struct sessionid
*entries
;
111 static int collect_pid(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
,
114 struct sessionids
*ids
= (struct sessionids
*)state
;
115 struct sessionid sessionid
;
117 if (dbuf
.dsize
!= sizeof(sessionid
))
120 memcpy(&sessionid
, dbuf
.dptr
, sizeof(sessionid
));
122 if (!process_exists(sessionid
.pid
))
125 ids
->num_entries
+= 1;
126 ids
->entries
= SMB_REALLOC_ARRAY(ids
->entries
, struct sessionid
, ids
->num_entries
);
128 ids
->num_entries
= 0;
131 ids
->entries
[ids
->num_entries
-1] = sessionid
;
136 static int show_share_parseable(struct db_record
*rec
,
137 const struct connections_key
*key
,
138 const struct connections_data
*crec
,
141 struct sessionids
*ids
= (struct sessionids
*)state
;
145 if (crec
->cnum
== -1)
148 if (!process_exists(crec
->pid
)) {
152 for (i
=0; i
<ids
->num_entries
; i
++) {
153 struct server_id id
= ids
->entries
[i
].pid
;
154 if (procid_equal(&id
, &crec
->pid
)) {
160 d_printf("%s\\%s\\%s\\%s\\%s\\%s\\%s",
161 crec
->servicename
,procid_str_static(&crec
->pid
),
162 guest
? "" : uidtoname(ids
->entries
[i
].uid
),
163 guest
? "" : gidtoname(ids
->entries
[i
].gid
),
165 guest
? "" : ids
->entries
[i
].hostname
,
166 time_to_asc(crec
->start
));
171 static int net_status_shares_parseable(int argc
, const char **argv
)
173 struct sessionids ids
;
179 tdb
= tdb_open_log(lock_path("sessionid.tdb"), 0,
180 TDB_DEFAULT
, O_RDONLY
, 0);
183 d_fprintf(stderr
, "%s not initialised\n", lock_path("sessionid.tdb"));
187 tdb_traverse(tdb
, collect_pid
, &ids
);
190 connections_forall(show_share_parseable
, &ids
);
192 SAFE_FREE(ids
.entries
);
197 static int net_status_shares(int argc
, const char **argv
)
201 d_printf("\nService pid machine "
203 d_printf("-------------------------------------"
204 "------------------\n");
206 connections_forall(show_share
, NULL
);
211 if ((argc
!= 1) || !strequal(argv
[0], "parseable")) {
212 return net_help_status(argc
, argv
);
215 return net_status_shares_parseable(argc
, argv
);
218 int net_status(int argc
, const char **argv
)
220 struct functable func
[] = {
221 {"sessions", net_status_sessions
},
222 {"shares", net_status_shares
},
225 return net_run_function(argc
, argv
, func
, net_help_status
);