2 Samba Unix/Linux SMB client library
4 Copyright (C) 2001 Andrew Tridgell (tridge@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"
21 #include "libsmb/namequery.h"
22 #include "libads/sitename_cache.h"
23 #include "../lib/addns/dnsquery.h"
24 #include "../librpc/gen_ndr/ndr_netlogon.h"
26 #include "../libcli/security/security.h"
27 #include "passdb/lookup_sid.h"
28 #include "libsmb/dsgetdcname.h"
30 int net_lookup_usage(struct net_context
*c
, int argc
, const char **argv
)
33 " net lookup [host] HOSTNAME[#<type>]\n\tgives IP for a hostname\n\n"
34 " net lookup ldap [domain]\n\tgives IP of domain's ldap server\n\n"
35 " net lookup kdc [realm]\n\tgives IP of realm's kerberos KDC\n\n"
36 " net lookup pdc [domain|realm]\n\tgives IP of realm's kerberos KDC\n\n"
37 " net lookup dc [domain]\n\tgives IP of domains Domain Controllers\n\n"
38 " net lookup master [domain|wg]\n\tgive IP of master browser\n\n"
39 " net lookup name [name]\n\tLookup name's sid and type\n\n"
40 " net lookup sid [sid]\n\tGive sid's name and type\n\n"
41 " net lookup dsgetdcname [name] [flags] [sitename]\n\n"
46 /* lookup a hostname giving an IP */
47 static int net_lookup_host(struct net_context
*c
, int argc
, const char **argv
)
49 struct sockaddr_storage ss
;
51 char addr
[INET6_ADDRSTRLEN
];
52 const char *name
= argv
[0];
56 return net_lookup_usage(c
, argc
, argv
);
58 p
= strchr_m(name
,'#');
61 sscanf(++p
,"%x",&name_type
);
64 if (!resolve_name(name
, &ss
, name_type
, false)) {
65 /* we deliberately use DEBUG() here to send it to stderr
66 so scripts aren't mucked up */
67 DEBUG(0,("Didn't find %s#%02x\n", name
, name_type
));
71 print_sockaddr(addr
, sizeof(addr
), &ss
);
72 d_printf("%s\n", addr
);
77 static void print_ldap_srvlist(struct dns_rr_srv
*dclist
, int numdcs
)
79 struct sockaddr_storage ss
;
82 for ( i
=0; i
<numdcs
; i
++ ) {
83 if (resolve_name(dclist
[i
].hostname
, &ss
, 0x20, true) ) {
84 char addr
[INET6_ADDRSTRLEN
];
85 print_sockaddr(addr
, sizeof(addr
), &ss
);
87 if (ss
.ss_family
== AF_INET6
) {
88 d_printf("[%s]:%d\n", addr
, dclist
[i
].port
);
91 if (ss
.ss_family
== AF_INET
) {
92 d_printf("%s:%d\n", addr
, dclist
[i
].port
);
99 static int net_lookup_ldap(struct net_context
*c
, int argc
, const char **argv
)
103 struct sockaddr_storage ss
;
104 struct dns_rr_srv
*dcs
= NULL
;
110 char h_name
[MAX_DNS_NAME_LENGTH
];
115 domain
= c
->opt_target_workgroup
;
117 if ( (ctx
= talloc_init("net_lookup_ldap")) == NULL
) {
118 d_fprintf(stderr
,"net_lookup_ldap: talloc_init() %s!\n",
123 sitename
= sitename_fetch(ctx
, domain
);
125 DEBUG(9, ("Lookup up ldap for domain %s\n", domain
));
127 status
= ads_dns_query_dcs(ctx
,
132 if ( NT_STATUS_IS_OK(status
) && numdcs
) {
133 print_ldap_srvlist(dcs
, numdcs
);
138 DEBUG(9, ("Looking up PDC for domain %s\n", domain
));
139 if (!get_pdc_ip(domain
, &ss
)) {
144 ret
= sys_getnameinfo((struct sockaddr
*)&ss
,
145 sizeof(struct sockaddr_storage
),
146 h_name
, sizeof(h_name
),
155 DEBUG(9, ("Found PDC with DNS name %s\n", h_name
));
156 domain
= strchr(h_name
, '.');
163 DEBUG(9, ("Looking up ldap for domain %s\n", domain
));
165 status
= ads_dns_query_dcs(ctx
,
170 if ( NT_STATUS_IS_OK(status
) && numdcs
) {
171 print_ldap_srvlist(dcs
, numdcs
);
180 DEBUG(1,("No ADS support\n"));
184 static int net_lookup_dc(struct net_context
*c
, int argc
, const char **argv
)
186 struct samba_sockaddr
*sa_list
= NULL
;
187 struct sockaddr_storage ss
;
188 char *pdc_str
= NULL
;
189 const char *domain
= NULL
;
190 char *sitename
= NULL
;
193 char addr
[INET6_ADDRSTRLEN
];
194 bool sec_ads
= (lp_security() == SEC_ADS
);
200 domain
= c
->opt_target_workgroup
;
207 if (!get_pdc_ip(domain
, &ss
))
210 print_sockaddr(addr
, sizeof(addr
), &ss
);
211 if (asprintf(&pdc_str
, "%s", addr
) == -1) {
214 d_printf("%s\n", pdc_str
);
216 sitename
= sitename_fetch(talloc_tos(), domain
);
217 status
= get_sorted_dc_list(talloc_tos(),
223 if (!NT_STATUS_IS_OK(status
)) {
225 TALLOC_FREE(sitename
);
228 TALLOC_FREE(sitename
);
229 for (i
=0;i
<count
;i
++) {
230 print_sockaddr(addr
, sizeof(addr
), &sa_list
[i
].u
.ss
);
231 if (!strequal(pdc_str
, addr
))
232 d_printf("%s\n", addr
);
234 TALLOC_FREE(sa_list
);
239 static int net_lookup_pdc(struct net_context
*c
, int argc
, const char **argv
)
241 struct sockaddr_storage ss
;
242 char *pdc_str
= NULL
;
244 char addr
[INET6_ADDRSTRLEN
];
246 if (lp_security() == SEC_ADS
) {
249 domain
= c
->opt_target_workgroup
;
256 if (!get_pdc_ip(domain
, &ss
))
259 print_sockaddr(addr
, sizeof(addr
), &ss
);
260 if (asprintf(&pdc_str
, "%s", addr
) == -1) {
263 d_printf("%s\n", pdc_str
);
269 static int net_lookup_master(struct net_context
*c
, int argc
, const char **argv
)
271 struct sockaddr_storage master_ss
;
272 const char *domain
= c
->opt_target_workgroup
;
273 char addr
[INET6_ADDRSTRLEN
];
278 if (!find_master_ip(domain
, &master_ss
))
280 print_sockaddr(addr
, sizeof(addr
), &master_ss
);
281 d_printf("%s\n", addr
);
285 static int net_lookup_kdc(struct net_context
*c
, int argc
, const char **argv
)
290 struct samba_sockaddr
*kdcs
= NULL
;
292 char **get_host_realms
= NULL
;
297 rc
= smb_krb5_init_context_common(&ctx
);
299 DBG_ERR("kerberos init context failed (%s)\n",
306 } else if (lp_realm() && *lp_realm()) {
309 rc
= krb5_get_host_realm(ctx
, NULL
, &get_host_realms
);
311 DEBUG(1,("krb5_gethost_realm failed (%s)\n",
313 krb5_free_context(ctx
);
316 realm
= (const char *) *get_host_realms
;
319 status
= get_kdc_list(talloc_tos(),
324 if (!NT_STATUS_IS_OK(status
)) {
325 DBG_WARNING("get_kdc_list failed (%s)\n",
327 krb5_free_host_realm(ctx
, get_host_realms
);
328 krb5_free_context(ctx
);
332 for (i
= 0; i
< num_kdcs
; i
++) {
333 char addr
[INET6_ADDRSTRLEN
];
335 print_sockaddr(addr
, sizeof(addr
), &kdcs
[i
].u
.ss
);
337 d_printf("%s:88\n", addr
);
340 krb5_free_host_realm(ctx
, get_host_realms
);
341 krb5_free_context(ctx
);
345 DEBUG(1, ("No kerberos support\n"));
349 static int net_lookup_name(struct net_context
*c
, int argc
, const char **argv
)
351 const char *dom
, *name
;
353 struct dom_sid_buf buf
;
354 enum lsa_SidType type
;
359 _(" net lookup name <name>\n"));
363 if (!lookup_name(talloc_tos(), argv
[0], LOOKUP_NAME_ALL
,
364 &dom
, &name
, &sid
, &type
)) {
365 d_printf(_("Could not lookup name %s\n"), argv
[0]);
369 d_printf("%s %d (%s) %s\\%s\n", dom_sid_str_buf(&sid
, &buf
),
370 type
, sid_type_lookup(type
), dom
, name
);
374 static int net_lookup_sid(struct net_context
*c
, int argc
, const char **argv
)
376 const char *dom
, *name
;
378 struct dom_sid_buf buf
;
379 enum lsa_SidType type
;
384 _(" net lookup sid <sid>\n"));
388 if (!string_to_sid(&sid
, argv
[0])) {
389 d_printf(_("Could not convert %s to SID\n"), argv
[0]);
393 if (!lookup_sid(talloc_tos(), &sid
,
394 &dom
, &name
, &type
)) {
395 d_printf(_("Could not lookup name %s\n"), argv
[0]);
399 d_printf("%s %d (%s) %s\\%s\n", dom_sid_str_buf(&sid
, &buf
),
400 type
, sid_type_lookup(type
), dom
, name
);
404 static int net_lookup_dsgetdcname(struct net_context
*c
, int argc
, const char **argv
)
407 const char *domain_name
= NULL
;
408 const char *site_name
= NULL
;
410 struct netr_DsRGetDCNameInfo
*info
= NULL
;
414 if (argc
< 1 || argc
> 3) {
417 _(" net lookup dsgetdcname "
418 "<name> <flags> <sitename>\n"));
422 mem_ctx
= talloc_init("net_lookup_dsgetdcname");
427 domain_name
= argv
[0];
430 sscanf(argv
[1], "%x", &flags
);
434 flags
= DS_DIRECTORY_SERVICE_REQUIRED
;
442 d_fprintf(stderr
, _("Could not initialise message context. "
443 "Try running as root\n"));
447 status
= dsgetdcname(mem_ctx
, c
->msg_ctx
, domain_name
, NULL
, site_name
,
449 if (!NT_STATUS_IS_OK(status
)) {
450 d_printf(_("failed with: %s\n"), nt_errstr(status
));
451 TALLOC_FREE(mem_ctx
);
455 s
= NDR_PRINT_STRUCT_STRING(mem_ctx
, netr_DsRGetDCNameInfo
, info
);
459 TALLOC_FREE(mem_ctx
);
464 /* lookup hosts or IP addresses using internal samba lookup fns */
465 int net_lookup(struct net_context
*c
, int argc
, const char **argv
)
469 struct functable table
[] = {
472 .fn
= net_lookup_host
,
476 .fn
= net_lookup_ldap
,
484 .fn
= net_lookup_pdc
,
487 .funcname
= "MASTER",
488 .fn
= net_lookup_master
,
492 .fn
= net_lookup_kdc
,
496 .fn
= net_lookup_name
,
500 .fn
= net_lookup_sid
,
503 .funcname
= "DSGETDCNAME",
504 .fn
= net_lookup_dsgetdcname
,
512 d_printf(_("\nUsage: \n"));
513 return net_lookup_usage(c
, argc
, argv
);
515 for (i
=0; table
[i
].funcname
; i
++) {
516 if (strcasecmp_m(argv
[0], table
[i
].funcname
) == 0)
517 return table
[i
].fn(c
, argc
-1, argv
+1);
520 /* Default to lookup a hostname so 'net lookup foo#1b' can be
521 used instead of 'net lookup host foo#1b'. The host syntax
522 is a bit confusing as non #00 names can't really be
523 considered hosts as such. */
525 return net_lookup_host(c
, argc
, argv
);