2 Unix SMB/CIFS implementation.
3 Network neighbourhood browser.
5 Copyright (C) Tim Potter 2000
6 Copyright (C) Jelmer Vernooij 2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /* How low can we go? */
28 enum tree_level
{LEV_WORKGROUP
, LEV_SERVER
, LEV_SHARE
};
29 static enum tree_level level
= LEV_SHARE
;
31 /* Holds a list of workgroups or servers */
34 struct name_list
*prev
, *next
;
39 static struct name_list
*workgroups
, *servers
, *shares
;
41 static void free_name_list(struct name_list
*list
)
44 DLIST_REMOVE(list
, list
);
47 static void add_name(const char *machine_name
, uint32 server_type
,
48 const char *comment
, void *state
)
50 struct name_list
**name_list
= (struct name_list
**)state
;
51 struct name_list
*new_name
;
53 new_name
= SMB_MALLOC_P(struct name_list
);
58 ZERO_STRUCTP(new_name
);
60 new_name
->name
= SMB_STRDUP(machine_name
);
61 new_name
->comment
= SMB_STRDUP(comment
);
62 new_name
->server_type
= server_type
;
64 if (!new_name
->name
|| !new_name
->comment
) {
65 SAFE_FREE(new_name
->name
);
66 SAFE_FREE(new_name
->comment
);
71 DLIST_ADD(*name_list
, new_name
);
74 /****************************************************************************
75 display tree of smb workgroups, servers and shares
76 ****************************************************************************/
77 static bool get_workgroups(struct user_auth_info
*user_info
)
79 struct cli_state
*cli
;
80 struct sockaddr_storage server_ss
;
81 TALLOC_CTX
*ctx
= talloc_tos();
82 char *master_workgroup
= NULL
;
84 /* Try to connect to a #1d name of our current workgroup. If that
85 doesn't work broadcast for a master browser and then jump off
88 master_workgroup
= talloc_strdup(ctx
, lp_workgroup());
89 if (!master_workgroup
) {
93 if (!use_bcast
&& !find_master_ip(lp_workgroup(), &server_ss
)) {
94 DEBUG(4, ("Unable to find master browser for workgroup %s, falling back to broadcast\n",
97 } else if(!use_bcast
) {
98 char addr
[INET6_ADDRSTRLEN
];
99 print_sockaddr(addr
, sizeof(addr
), &server_ss
);
100 if (!(cli
= get_ipc_connect(addr
, &server_ss
, user_info
)))
104 if (!(cli
= get_ipc_connect_master_ip_bcast(talloc_tos(),
106 &master_workgroup
))) {
107 DEBUG(4, ("Unable to find master browser by "
112 if (!cli_NetServerEnum(cli
, master_workgroup
,
113 SV_TYPE_DOMAIN_ENUM
, add_name
, &workgroups
))
119 /* Retrieve the list of servers for a given workgroup */
121 static bool get_servers(char *workgroup
, struct user_auth_info
*user_info
)
123 struct cli_state
*cli
;
124 struct sockaddr_storage server_ss
;
125 char addr
[INET6_ADDRSTRLEN
];
127 /* Open an IPC$ connection to the master browser for the workgroup */
129 if (!find_master_ip(workgroup
, &server_ss
)) {
130 DEBUG(4, ("Cannot find master browser for workgroup %s\n",
135 print_sockaddr(addr
, sizeof(addr
), &server_ss
);
136 if (!(cli
= get_ipc_connect(addr
, &server_ss
, user_info
)))
139 if (!cli_NetServerEnum(cli
, workgroup
, SV_TYPE_ALL
, add_name
,
146 static bool get_rpc_shares(struct cli_state
*cli
,
147 void (*fn
)(const char *, uint32
, const char *, void *),
151 struct rpc_pipe_client
*pipe_hnd
;
154 struct srvsvc_NetShareInfoCtr info_ctr
;
155 struct srvsvc_NetShareCtr1 ctr1
;
157 uint32_t resume_handle
= 0;
158 uint32_t total_entries
= 0;
160 mem_ctx
= talloc_new(NULL
);
161 if (mem_ctx
== NULL
) {
162 DEBUG(0, ("talloc_new failed\n"));
166 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_SRVSVC
, &status
);
168 if (pipe_hnd
== NULL
) {
169 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
171 TALLOC_FREE(mem_ctx
);
175 ZERO_STRUCT(info_ctr
);
179 info_ctr
.ctr
.ctr1
= &ctr1
;
181 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, mem_ctx
,
189 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
190 TALLOC_FREE(mem_ctx
);
191 TALLOC_FREE(pipe_hnd
);
195 for (i
=0; i
<total_entries
; i
++) {
196 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
197 fn(info
.name
, info
.type
, info
.comment
, state
);
200 TALLOC_FREE(mem_ctx
);
201 TALLOC_FREE(pipe_hnd
);
206 static bool get_shares(char *server_name
, struct user_auth_info
*user_info
)
208 struct cli_state
*cli
;
210 if (!(cli
= get_ipc_connect(server_name
, NULL
, user_info
)))
213 if (get_rpc_shares(cli
, add_name
, &shares
))
216 if (!cli_RNetShareEnum(cli
, add_name
, &shares
))
222 static bool print_tree(struct user_auth_info
*user_info
)
224 struct name_list
*wg
, *sv
, *sh
;
226 /* List workgroups */
228 if (!get_workgroups(user_info
))
231 for (wg
= workgroups
; wg
; wg
= wg
->next
) {
233 printf("%s\n", wg
->name
);
237 free_name_list(servers
);
240 if (level
== LEV_WORKGROUP
||
241 !get_servers(wg
->name
, user_info
))
244 for (sv
= servers
; sv
; sv
= sv
->next
) {
246 printf("\t\\\\%-15s\t\t%s\n",
247 sv
->name
, sv
->comment
);
251 free_name_list(shares
);
254 if (level
== LEV_SERVER
||
255 !get_shares(sv
->name
, user_info
))
258 for (sh
= shares
; sh
; sh
= sh
->next
) {
259 printf("\t\t\\\\%s\\%-15s\t%s\n",
260 sv
->name
, sh
->name
, sh
->comment
);
268 /****************************************************************************
270 ****************************************************************************/
271 int main(int argc
,char *argv
[])
273 TALLOC_CTX
*frame
= talloc_stackframe();
274 struct user_auth_info local_auth_info
;
275 struct poptOption long_options
[] = {
277 { "broadcast", 'b', POPT_ARG_VAL
, &use_bcast
, True
, "Use broadcast instead of using the master browser" },
278 { "domains", 'D', POPT_ARG_VAL
, &level
, LEV_WORKGROUP
, "List only domains (workgroups) of tree" },
279 { "servers", 'S', POPT_ARG_VAL
, &level
, LEV_SERVER
, "List domains(workgroups) and servers of tree" },
281 POPT_COMMON_CREDENTIALS
286 /* Initialise samba stuff */
293 setup_logging(argv
[0],True
);
295 pc
= poptGetContext("smbtree", argc
, (const char **)argv
, long_options
,
296 POPT_CONTEXT_KEEP_FIRST
);
297 while(poptGetNextOpt(pc
) != -1);
300 lp_load(get_dyn_CONFIGFILE(),True
,False
,False
,True
);
303 /* Parse command line args */
305 if (!get_cmdline_auth_info_got_pass()) {
306 char *pass
= getpass("Password: ");
308 set_cmdline_auth_info_password(pass
);
312 /* Now do our stuff */
314 if (!get_cmdline_auth_info_copy(&local_auth_info
)) {
318 if (!print_tree(&local_auth_info
)) {