1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | Winbind status program.
|
---|
5 |
|
---|
6 | Copyright (C) Tim Potter 2000-2003
|
---|
7 | Copyright (C) Andrew Bartlett 2002
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or modify
|
---|
10 | it under the terms of the GNU General Public License as published by
|
---|
11 | the Free Software Foundation; either version 3 of the License, or
|
---|
12 | (at your option) any later version.
|
---|
13 |
|
---|
14 | This program is distributed in the hope that it will be useful,
|
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | GNU General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU General Public License
|
---|
20 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #include "includes.h"
|
---|
24 | #include "winbind_client.h"
|
---|
25 | #include "libwbclient/wbclient.h"
|
---|
26 |
|
---|
27 | #undef DBGC_CLASS
|
---|
28 | #define DBGC_CLASS DBGC_WINBIND
|
---|
29 |
|
---|
30 | static struct wbcInterfaceDetails *init_interface_details(void)
|
---|
31 | {
|
---|
32 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
33 | static struct wbcInterfaceDetails *details;
|
---|
34 |
|
---|
35 | if (details) {
|
---|
36 | return details;
|
---|
37 | }
|
---|
38 |
|
---|
39 | wbc_status = wbcInterfaceDetails(&details);
|
---|
40 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
41 | d_fprintf(stderr, "could not obtain winbind interface details!\n");
|
---|
42 | }
|
---|
43 |
|
---|
44 | return details;
|
---|
45 | }
|
---|
46 |
|
---|
47 | static char winbind_separator_int(bool strict)
|
---|
48 | {
|
---|
49 | struct wbcInterfaceDetails *details;
|
---|
50 | static bool got_sep;
|
---|
51 | static char sep;
|
---|
52 |
|
---|
53 | if (got_sep)
|
---|
54 | return sep;
|
---|
55 |
|
---|
56 | details = init_interface_details();
|
---|
57 |
|
---|
58 | if (!details) {
|
---|
59 | d_fprintf(stderr, "could not obtain winbind separator!\n");
|
---|
60 | if (strict) {
|
---|
61 | return 0;
|
---|
62 | }
|
---|
63 | /* HACK: (this module should not call lp_ funtions) */
|
---|
64 | return *lp_winbind_separator();
|
---|
65 | }
|
---|
66 |
|
---|
67 | sep = details->winbind_separator;
|
---|
68 | got_sep = true;
|
---|
69 |
|
---|
70 | if (!sep) {
|
---|
71 | d_fprintf(stderr, "winbind separator was NULL!\n");
|
---|
72 | if (strict) {
|
---|
73 | return 0;
|
---|
74 | }
|
---|
75 | /* HACK: (this module should not call lp_ funtions) */
|
---|
76 | sep = *lp_winbind_separator();
|
---|
77 | }
|
---|
78 |
|
---|
79 | return sep;
|
---|
80 | }
|
---|
81 |
|
---|
82 | static char winbind_separator(void)
|
---|
83 | {
|
---|
84 | return winbind_separator_int(false);
|
---|
85 | }
|
---|
86 |
|
---|
87 | static const char *get_winbind_domain(void)
|
---|
88 | {
|
---|
89 | static struct wbcInterfaceDetails *details;
|
---|
90 |
|
---|
91 | details = init_interface_details();
|
---|
92 |
|
---|
93 | if (!details) {
|
---|
94 | d_fprintf(stderr, "could not obtain winbind domain name!\n");
|
---|
95 |
|
---|
96 | /* HACK: (this module should not call lp_ functions) */
|
---|
97 | return lp_workgroup();
|
---|
98 | }
|
---|
99 |
|
---|
100 | return details->netbios_domain;
|
---|
101 | }
|
---|
102 |
|
---|
103 | /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
|
---|
104 | form DOMAIN/user into a domain and a user */
|
---|
105 |
|
---|
106 | static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
|
---|
107 | fstring user)
|
---|
108 | {
|
---|
109 |
|
---|
110 | char *p = strchr(domuser,winbind_separator());
|
---|
111 |
|
---|
112 | if (!p) {
|
---|
113 | /* Maybe it was a UPN? */
|
---|
114 | if ((p = strchr(domuser, '@')) != NULL) {
|
---|
115 | fstrcpy(domain, "");
|
---|
116 | fstrcpy(user, domuser);
|
---|
117 | return true;
|
---|
118 | }
|
---|
119 |
|
---|
120 | fstrcpy(user, domuser);
|
---|
121 | fstrcpy(domain, get_winbind_domain());
|
---|
122 | return true;
|
---|
123 | }
|
---|
124 |
|
---|
125 | fstrcpy(user, p+1);
|
---|
126 | fstrcpy(domain, domuser);
|
---|
127 | domain[PTR_DIFF(p, domuser)] = 0;
|
---|
128 | strupper_m(domain);
|
---|
129 |
|
---|
130 | return true;
|
---|
131 | }
|
---|
132 |
|
---|
133 | /* pull pwent info for a given user */
|
---|
134 |
|
---|
135 | static bool wbinfo_get_userinfo(char *user)
|
---|
136 | {
|
---|
137 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
138 | struct passwd *pwd = NULL;
|
---|
139 |
|
---|
140 | wbc_status = wbcGetpwnam(user, &pwd);
|
---|
141 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
142 | return false;
|
---|
143 | }
|
---|
144 |
|
---|
145 | d_printf("%s:%s:%d:%d:%s:%s:%s\n",
|
---|
146 | pwd->pw_name,
|
---|
147 | pwd->pw_passwd,
|
---|
148 | pwd->pw_uid,
|
---|
149 | pwd->pw_gid,
|
---|
150 | pwd->pw_gecos,
|
---|
151 | pwd->pw_dir,
|
---|
152 | pwd->pw_shell);
|
---|
153 |
|
---|
154 | return true;
|
---|
155 | }
|
---|
156 |
|
---|
157 | /* pull pwent info for a given uid */
|
---|
158 | static bool wbinfo_get_uidinfo(int uid)
|
---|
159 | {
|
---|
160 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
161 | struct passwd *pwd = NULL;
|
---|
162 |
|
---|
163 | wbc_status = wbcGetpwuid(uid, &pwd);
|
---|
164 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
165 | return false;
|
---|
166 | }
|
---|
167 |
|
---|
168 | d_printf("%s:%s:%d:%d:%s:%s:%s\n",
|
---|
169 | pwd->pw_name,
|
---|
170 | pwd->pw_passwd,
|
---|
171 | pwd->pw_uid,
|
---|
172 | pwd->pw_gid,
|
---|
173 | pwd->pw_gecos,
|
---|
174 | pwd->pw_dir,
|
---|
175 | pwd->pw_shell);
|
---|
176 |
|
---|
177 | return true;
|
---|
178 | }
|
---|
179 |
|
---|
180 | /* pull grent for a given group */
|
---|
181 | static bool wbinfo_get_groupinfo(const char *group)
|
---|
182 | {
|
---|
183 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
184 | struct group *grp;
|
---|
185 |
|
---|
186 | wbc_status = wbcGetgrnam(group, &grp);
|
---|
187 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
188 | return false;
|
---|
189 | }
|
---|
190 |
|
---|
191 | d_printf("%s:%s:%d\n",
|
---|
192 | grp->gr_name,
|
---|
193 | grp->gr_passwd,
|
---|
194 | grp->gr_gid);
|
---|
195 |
|
---|
196 | wbcFreeMemory(grp);
|
---|
197 |
|
---|
198 | return true;
|
---|
199 | }
|
---|
200 |
|
---|
201 | /* List groups a user is a member of */
|
---|
202 |
|
---|
203 | static bool wbinfo_get_usergroups(const char *user)
|
---|
204 | {
|
---|
205 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
206 | uint32_t num_groups;
|
---|
207 | uint32_t i;
|
---|
208 | gid_t *groups = NULL;
|
---|
209 |
|
---|
210 | /* Send request */
|
---|
211 |
|
---|
212 | wbc_status = wbcGetGroups(user, &num_groups, &groups);
|
---|
213 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
214 | return false;
|
---|
215 | }
|
---|
216 |
|
---|
217 | for (i = 0; i < num_groups; i++) {
|
---|
218 | d_printf("%d\n", (int)groups[i]);
|
---|
219 | }
|
---|
220 |
|
---|
221 | wbcFreeMemory(groups);
|
---|
222 |
|
---|
223 | return true;
|
---|
224 | }
|
---|
225 |
|
---|
226 |
|
---|
227 | /* List group SIDs a user SID is a member of */
|
---|
228 | static bool wbinfo_get_usersids(const char *user_sid_str)
|
---|
229 | {
|
---|
230 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
231 | uint32_t num_sids;
|
---|
232 | uint32_t i;
|
---|
233 | struct wbcDomainSid user_sid, *sids = NULL;
|
---|
234 |
|
---|
235 | /* Send request */
|
---|
236 |
|
---|
237 | wbc_status = wbcStringToSid(user_sid_str, &user_sid);
|
---|
238 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
239 | return false;
|
---|
240 | }
|
---|
241 |
|
---|
242 | wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
|
---|
243 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
244 | return false;
|
---|
245 | }
|
---|
246 |
|
---|
247 | for (i = 0; i < num_sids; i++) {
|
---|
248 | char *str = NULL;
|
---|
249 | wbc_status = wbcSidToString(&sids[i], &str);
|
---|
250 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
251 | wbcFreeMemory(sids);
|
---|
252 | return false;
|
---|
253 | }
|
---|
254 | d_printf("%s\n", str);
|
---|
255 | wbcFreeMemory(str);
|
---|
256 | }
|
---|
257 |
|
---|
258 | wbcFreeMemory(sids);
|
---|
259 |
|
---|
260 | return true;
|
---|
261 | }
|
---|
262 |
|
---|
263 | static bool wbinfo_get_userdomgroups(const char *user_sid_str)
|
---|
264 | {
|
---|
265 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
266 | uint32_t num_sids;
|
---|
267 | uint32_t i;
|
---|
268 | struct wbcDomainSid user_sid, *sids = NULL;
|
---|
269 |
|
---|
270 | /* Send request */
|
---|
271 |
|
---|
272 | wbc_status = wbcStringToSid(user_sid_str, &user_sid);
|
---|
273 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
274 | return false;
|
---|
275 | }
|
---|
276 |
|
---|
277 | wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
|
---|
278 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
279 | return false;
|
---|
280 | }
|
---|
281 |
|
---|
282 | for (i = 0; i < num_sids; i++) {
|
---|
283 | char *str = NULL;
|
---|
284 | wbc_status = wbcSidToString(&sids[i], &str);
|
---|
285 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
286 | wbcFreeMemory(sids);
|
---|
287 | return false;
|
---|
288 | }
|
---|
289 | d_printf("%s\n", str);
|
---|
290 | wbcFreeMemory(str);
|
---|
291 | }
|
---|
292 |
|
---|
293 | wbcFreeMemory(sids);
|
---|
294 |
|
---|
295 | return true;
|
---|
296 | }
|
---|
297 |
|
---|
298 | /* Convert NetBIOS name to IP */
|
---|
299 |
|
---|
300 | static bool wbinfo_wins_byname(const char *name)
|
---|
301 | {
|
---|
302 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
303 | char *ip = NULL;
|
---|
304 |
|
---|
305 | wbc_status = wbcResolveWinsByName(name, &ip);
|
---|
306 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
307 | return false;
|
---|
308 | }
|
---|
309 |
|
---|
310 | /* Display response */
|
---|
311 |
|
---|
312 | d_printf("%s\n", ip);
|
---|
313 |
|
---|
314 | wbcFreeMemory(ip);
|
---|
315 |
|
---|
316 | return true;
|
---|
317 | }
|
---|
318 |
|
---|
319 | /* Convert IP to NetBIOS name */
|
---|
320 |
|
---|
321 | static bool wbinfo_wins_byip(const char *ip)
|
---|
322 | {
|
---|
323 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
324 | char *name = NULL;
|
---|
325 |
|
---|
326 | wbc_status = wbcResolveWinsByIP(ip, &name);
|
---|
327 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
328 | return false;
|
---|
329 | }
|
---|
330 |
|
---|
331 | /* Display response */
|
---|
332 |
|
---|
333 | d_printf("%s\n", name);
|
---|
334 |
|
---|
335 | wbcFreeMemory(name);
|
---|
336 |
|
---|
337 | return true;
|
---|
338 | }
|
---|
339 |
|
---|
340 | /* List all/trusted domains */
|
---|
341 |
|
---|
342 | static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
|
---|
343 | {
|
---|
344 | struct wbcDomainInfo *domain_list = NULL;
|
---|
345 | size_t num_domains;
|
---|
346 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
347 | bool print_all = !list_all_domains && verbose;
|
---|
348 | int i;
|
---|
349 |
|
---|
350 | wbc_status = wbcListTrusts(&domain_list, &num_domains);
|
---|
351 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
352 | return false;
|
---|
353 | }
|
---|
354 |
|
---|
355 | if (print_all) {
|
---|
356 | d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
|
---|
357 | "Domain Name", "DNS Domain", "Trust Type",
|
---|
358 | "Transitive", "In", "Out");
|
---|
359 | }
|
---|
360 |
|
---|
361 | for (i=0; i<num_domains; i++) {
|
---|
362 | if (print_all) {
|
---|
363 | d_printf("%-16s", domain_list[i].short_name);
|
---|
364 | } else {
|
---|
365 | d_printf("%s", domain_list[i].short_name);
|
---|
366 | d_printf("\n");
|
---|
367 | continue;
|
---|
368 | }
|
---|
369 |
|
---|
370 | d_printf("%-24s", domain_list[i].dns_name);
|
---|
371 |
|
---|
372 | switch(domain_list[i].trust_type) {
|
---|
373 | case WBC_DOMINFO_TRUSTTYPE_NONE:
|
---|
374 | d_printf("None ");
|
---|
375 | break;
|
---|
376 | case WBC_DOMINFO_TRUSTTYPE_FOREST:
|
---|
377 | d_printf("Forest ");
|
---|
378 | break;
|
---|
379 | case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
|
---|
380 | d_printf("External ");
|
---|
381 | break;
|
---|
382 | case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
|
---|
383 | d_printf("In-Forest ");
|
---|
384 | break;
|
---|
385 | }
|
---|
386 |
|
---|
387 | if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
|
---|
388 | d_printf("Yes ");
|
---|
389 | } else {
|
---|
390 | d_printf("No ");
|
---|
391 | }
|
---|
392 |
|
---|
393 | if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
|
---|
394 | d_printf("Yes ");
|
---|
395 | } else {
|
---|
396 | d_printf("No ");
|
---|
397 | }
|
---|
398 |
|
---|
399 | if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
|
---|
400 | d_printf("Yes ");
|
---|
401 | } else {
|
---|
402 | d_printf("No ");
|
---|
403 | }
|
---|
404 |
|
---|
405 | d_printf("\n");
|
---|
406 | }
|
---|
407 |
|
---|
408 | return true;
|
---|
409 | }
|
---|
410 |
|
---|
411 | /* List own domain */
|
---|
412 |
|
---|
413 | static bool wbinfo_list_own_domain(void)
|
---|
414 | {
|
---|
415 | d_printf("%s\n", get_winbind_domain());
|
---|
416 |
|
---|
417 | return true;
|
---|
418 | }
|
---|
419 |
|
---|
420 | /* show sequence numbers */
|
---|
421 | static bool wbinfo_show_sequence(const char *domain)
|
---|
422 | {
|
---|
423 | d_printf("This command has been deprecated. Please use the --online-status option instead.\n");
|
---|
424 | return false;
|
---|
425 | }
|
---|
426 |
|
---|
427 | /* show sequence numbers */
|
---|
428 | static bool wbinfo_show_onlinestatus(const char *domain)
|
---|
429 | {
|
---|
430 | struct wbcDomainInfo *domain_list = NULL;
|
---|
431 | size_t num_domains;
|
---|
432 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
433 | int i;
|
---|
434 |
|
---|
435 | wbc_status = wbcListTrusts(&domain_list, &num_domains);
|
---|
436 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
437 | return false;
|
---|
438 | }
|
---|
439 |
|
---|
440 | for (i=0; i<num_domains; i++) {
|
---|
441 | bool is_offline;
|
---|
442 |
|
---|
443 | if (domain) {
|
---|
444 | if (!strequal(domain_list[i].short_name, domain)) {
|
---|
445 | continue;
|
---|
446 | }
|
---|
447 | }
|
---|
448 |
|
---|
449 | is_offline = (domain_list[i].domain_flags & WBC_DOMINFO_DOMAIN_OFFLINE);
|
---|
450 |
|
---|
451 | d_printf("%s : %s\n",
|
---|
452 | domain_list[i].short_name,
|
---|
453 | is_offline ? "offline" : "online" );
|
---|
454 | }
|
---|
455 |
|
---|
456 | return true;
|
---|
457 | }
|
---|
458 |
|
---|
459 |
|
---|
460 | /* Show domain info */
|
---|
461 |
|
---|
462 | static bool wbinfo_domain_info(const char *domain)
|
---|
463 | {
|
---|
464 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
465 | struct wbcDomainInfo *dinfo = NULL;
|
---|
466 | char *sid_str = NULL;
|
---|
467 |
|
---|
468 | if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
|
---|
469 | domain = get_winbind_domain();
|
---|
470 | }
|
---|
471 |
|
---|
472 | /* Send request */
|
---|
473 |
|
---|
474 | wbc_status = wbcDomainInfo(domain, &dinfo);
|
---|
475 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
476 | return false;
|
---|
477 | }
|
---|
478 |
|
---|
479 | wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
|
---|
480 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
481 | wbcFreeMemory(dinfo);
|
---|
482 | return false;
|
---|
483 | }
|
---|
484 |
|
---|
485 | /* Display response */
|
---|
486 |
|
---|
487 | d_printf("Name : %s\n", dinfo->short_name);
|
---|
488 | d_printf("Alt_Name : %s\n", dinfo->dns_name);
|
---|
489 |
|
---|
490 | d_printf("SID : %s\n", sid_str);
|
---|
491 |
|
---|
492 | d_printf("Active Directory : %s\n",
|
---|
493 | (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
|
---|
494 | d_printf("Native : %s\n",
|
---|
495 | (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ? "Yes" : "No");
|
---|
496 |
|
---|
497 | d_printf("Primary : %s\n",
|
---|
498 | (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ? "Yes" : "No");
|
---|
499 |
|
---|
500 | wbcFreeMemory(sid_str);
|
---|
501 | wbcFreeMemory(dinfo);
|
---|
502 |
|
---|
503 | return true;
|
---|
504 | }
|
---|
505 |
|
---|
506 | /* Get a foreign DC's name */
|
---|
507 | static bool wbinfo_getdcname(const char *domain_name)
|
---|
508 | {
|
---|
509 | struct winbindd_request request;
|
---|
510 | struct winbindd_response response;
|
---|
511 |
|
---|
512 | ZERO_STRUCT(request);
|
---|
513 | ZERO_STRUCT(response);
|
---|
514 |
|
---|
515 | fstrcpy(request.domain_name, domain_name);
|
---|
516 |
|
---|
517 | /* Send request */
|
---|
518 |
|
---|
519 | if (winbindd_request_response(WINBINDD_GETDCNAME, &request, &response) !=
|
---|
520 | NSS_STATUS_SUCCESS) {
|
---|
521 | d_fprintf(stderr, "Could not get dc name for %s\n", domain_name);
|
---|
522 | return false;
|
---|
523 | }
|
---|
524 |
|
---|
525 | /* Display response */
|
---|
526 |
|
---|
527 | d_printf("%s\n", response.data.dc_name);
|
---|
528 |
|
---|
529 | return true;
|
---|
530 | }
|
---|
531 |
|
---|
532 | /* Find a DC */
|
---|
533 | static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
|
---|
534 | {
|
---|
535 | struct winbindd_request request;
|
---|
536 | struct winbindd_response response;
|
---|
537 |
|
---|
538 | ZERO_STRUCT(request);
|
---|
539 | ZERO_STRUCT(response);
|
---|
540 |
|
---|
541 | fstrcpy(request.domain_name, domain_name);
|
---|
542 | request.flags = flags;
|
---|
543 |
|
---|
544 | request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
|
---|
545 |
|
---|
546 | /* Send request */
|
---|
547 |
|
---|
548 | if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request, &response) !=
|
---|
549 | NSS_STATUS_SUCCESS) {
|
---|
550 | d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
|
---|
551 | return false;
|
---|
552 | }
|
---|
553 |
|
---|
554 | /* Display response */
|
---|
555 |
|
---|
556 | d_printf("%s\n", response.data.dc_name);
|
---|
557 |
|
---|
558 | return true;
|
---|
559 | }
|
---|
560 |
|
---|
561 | /* Check trust account password */
|
---|
562 |
|
---|
563 | static bool wbinfo_check_secret(void)
|
---|
564 | {
|
---|
565 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
566 | struct wbcAuthErrorInfo *error = NULL;
|
---|
567 |
|
---|
568 | wbc_status = wbcCheckTrustCredentials(NULL, &error);
|
---|
569 |
|
---|
570 | d_printf("checking the trust secret via RPC calls %s\n",
|
---|
571 | WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
|
---|
572 |
|
---|
573 | if (wbc_status == WBC_ERR_AUTH_ERROR) {
|
---|
574 | d_fprintf(stderr, "error code was %s (0x%x)\n",
|
---|
575 | error->nt_string, error->nt_status);
|
---|
576 | wbcFreeMemory(error);
|
---|
577 | }
|
---|
578 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
579 | return false;
|
---|
580 | }
|
---|
581 |
|
---|
582 | return true;
|
---|
583 | }
|
---|
584 |
|
---|
585 | /* Convert uid to sid */
|
---|
586 |
|
---|
587 | static bool wbinfo_uid_to_sid(uid_t uid)
|
---|
588 | {
|
---|
589 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
590 | struct wbcDomainSid sid;
|
---|
591 | char *sid_str = NULL;
|
---|
592 |
|
---|
593 | /* Send request */
|
---|
594 |
|
---|
595 | wbc_status = wbcUidToSid(uid, &sid);
|
---|
596 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
597 | return false;
|
---|
598 | }
|
---|
599 |
|
---|
600 | wbc_status = wbcSidToString(&sid, &sid_str);
|
---|
601 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
602 | return false;
|
---|
603 | }
|
---|
604 |
|
---|
605 | /* Display response */
|
---|
606 |
|
---|
607 | d_printf("%s\n", sid_str);
|
---|
608 |
|
---|
609 | wbcFreeMemory(sid_str);
|
---|
610 |
|
---|
611 | return true;
|
---|
612 | }
|
---|
613 |
|
---|
614 | /* Convert gid to sid */
|
---|
615 |
|
---|
616 | static bool wbinfo_gid_to_sid(gid_t gid)
|
---|
617 | {
|
---|
618 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
619 | struct wbcDomainSid sid;
|
---|
620 | char *sid_str = NULL;
|
---|
621 |
|
---|
622 | /* Send request */
|
---|
623 |
|
---|
624 | wbc_status = wbcGidToSid(gid, &sid);
|
---|
625 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
626 | return false;
|
---|
627 | }
|
---|
628 |
|
---|
629 | wbc_status = wbcSidToString(&sid, &sid_str);
|
---|
630 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
631 | return false;
|
---|
632 | }
|
---|
633 |
|
---|
634 | /* Display response */
|
---|
635 |
|
---|
636 | d_printf("%s\n", sid_str);
|
---|
637 |
|
---|
638 | wbcFreeMemory(sid_str);
|
---|
639 |
|
---|
640 | return true;
|
---|
641 | }
|
---|
642 |
|
---|
643 | /* Convert sid to uid */
|
---|
644 |
|
---|
645 | static bool wbinfo_sid_to_uid(const char *sid_str)
|
---|
646 | {
|
---|
647 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
648 | struct wbcDomainSid sid;
|
---|
649 | uid_t uid;
|
---|
650 |
|
---|
651 | /* Send request */
|
---|
652 |
|
---|
653 | wbc_status = wbcStringToSid(sid_str, &sid);
|
---|
654 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
655 | return false;
|
---|
656 | }
|
---|
657 |
|
---|
658 | wbc_status = wbcSidToUid(&sid, &uid);
|
---|
659 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
660 | return false;
|
---|
661 | }
|
---|
662 |
|
---|
663 | /* Display response */
|
---|
664 |
|
---|
665 | d_printf("%d\n", (int)uid);
|
---|
666 |
|
---|
667 | return true;
|
---|
668 | }
|
---|
669 |
|
---|
670 | static bool wbinfo_sid_to_gid(const char *sid_str)
|
---|
671 | {
|
---|
672 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
673 | struct wbcDomainSid sid;
|
---|
674 | gid_t gid;
|
---|
675 |
|
---|
676 | /* Send request */
|
---|
677 |
|
---|
678 | wbc_status = wbcStringToSid(sid_str, &sid);
|
---|
679 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
680 | return false;
|
---|
681 | }
|
---|
682 |
|
---|
683 | wbc_status = wbcSidToGid(&sid, &gid);
|
---|
684 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
685 | return false;
|
---|
686 | }
|
---|
687 |
|
---|
688 | /* Display response */
|
---|
689 |
|
---|
690 | d_printf("%d\n", (int)gid);
|
---|
691 |
|
---|
692 | return true;
|
---|
693 | }
|
---|
694 |
|
---|
695 | static bool wbinfo_allocate_uid(void)
|
---|
696 | {
|
---|
697 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
698 | uid_t uid;
|
---|
699 |
|
---|
700 | /* Send request */
|
---|
701 |
|
---|
702 | wbc_status = wbcAllocateUid(&uid);
|
---|
703 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
704 | return false;
|
---|
705 | }
|
---|
706 |
|
---|
707 | /* Display response */
|
---|
708 |
|
---|
709 | d_printf("New uid: %d\n", uid);
|
---|
710 |
|
---|
711 | return true;
|
---|
712 | }
|
---|
713 |
|
---|
714 | static bool wbinfo_allocate_gid(void)
|
---|
715 | {
|
---|
716 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
717 | gid_t gid;
|
---|
718 |
|
---|
719 | /* Send request */
|
---|
720 |
|
---|
721 | wbc_status = wbcAllocateGid(&gid);
|
---|
722 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
723 | return false;
|
---|
724 | }
|
---|
725 |
|
---|
726 | /* Display response */
|
---|
727 |
|
---|
728 | d_printf("New gid: %d\n", gid);
|
---|
729 |
|
---|
730 | return true;
|
---|
731 | }
|
---|
732 |
|
---|
733 | /* Convert sid to string */
|
---|
734 |
|
---|
735 | static bool wbinfo_lookupsid(const char *sid_str)
|
---|
736 | {
|
---|
737 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
738 | struct wbcDomainSid sid;
|
---|
739 | char *domain;
|
---|
740 | char *name;
|
---|
741 | enum wbcSidType type;
|
---|
742 |
|
---|
743 | /* Send off request */
|
---|
744 |
|
---|
745 | wbc_status = wbcStringToSid(sid_str, &sid);
|
---|
746 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
747 | return false;
|
---|
748 | }
|
---|
749 |
|
---|
750 | wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
|
---|
751 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
752 | return false;
|
---|
753 | }
|
---|
754 |
|
---|
755 | /* Display response */
|
---|
756 |
|
---|
757 | d_printf("%s%c%s %d\n",
|
---|
758 | domain, winbind_separator(), name, type);
|
---|
759 |
|
---|
760 | return true;
|
---|
761 | }
|
---|
762 |
|
---|
763 | /* Lookup a list of RIDs */
|
---|
764 |
|
---|
765 | static bool wbinfo_lookuprids(const char *domain, const char *arg)
|
---|
766 | {
|
---|
767 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
768 | struct wbcDomainInfo *dinfo = NULL;
|
---|
769 | char *domain_name = NULL;
|
---|
770 | const char **names = NULL;
|
---|
771 | enum wbcSidType *types = NULL;
|
---|
772 | size_t i;
|
---|
773 | int num_rids;
|
---|
774 | uint32 *rids = NULL;
|
---|
775 | const char *p;
|
---|
776 | char *ridstr;
|
---|
777 | TALLOC_CTX *mem_ctx = NULL;
|
---|
778 | bool ret = false;
|
---|
779 |
|
---|
780 | if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
|
---|
781 | domain = get_winbind_domain();
|
---|
782 | }
|
---|
783 |
|
---|
784 | /* Send request */
|
---|
785 |
|
---|
786 | wbc_status = wbcDomainInfo(domain, &dinfo);
|
---|
787 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
788 | d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
|
---|
789 | wbcErrorString(wbc_status));
|
---|
790 | goto done;
|
---|
791 | }
|
---|
792 |
|
---|
793 | mem_ctx = talloc_new(NULL);
|
---|
794 | if (mem_ctx == NULL) {
|
---|
795 | d_printf("talloc_new failed\n");
|
---|
796 | goto done;
|
---|
797 | }
|
---|
798 |
|
---|
799 | num_rids = 0;
|
---|
800 | rids = NULL;
|
---|
801 | p = arg;
|
---|
802 |
|
---|
803 | while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
|
---|
804 | uint32 rid = strtoul(ridstr, NULL, 10);
|
---|
805 | ADD_TO_ARRAY(mem_ctx, uint32, rid, &rids, &num_rids);
|
---|
806 | }
|
---|
807 |
|
---|
808 | if (rids == NULL) {
|
---|
809 | d_printf("no rids\n");
|
---|
810 | goto done;
|
---|
811 | }
|
---|
812 |
|
---|
813 | wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
|
---|
814 | (const char **)&domain_name, &names, &types);
|
---|
815 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
816 | d_printf("winbind_lookup_rids failed: %s\n",
|
---|
817 | wbcErrorString(wbc_status));
|
---|
818 | goto done;
|
---|
819 | }
|
---|
820 |
|
---|
821 | d_printf("Domain: %s\n", domain_name);
|
---|
822 |
|
---|
823 | for (i=0; i<num_rids; i++) {
|
---|
824 | d_printf("%8d: %s (%s)\n", rids[i], names[i],
|
---|
825 | sid_type_lookup(types[i]));
|
---|
826 | }
|
---|
827 |
|
---|
828 | ret = true;
|
---|
829 | done:
|
---|
830 | if (dinfo) {
|
---|
831 | wbcFreeMemory(dinfo);
|
---|
832 | }
|
---|
833 | if (domain_name) {
|
---|
834 | wbcFreeMemory(domain_name);
|
---|
835 | }
|
---|
836 | if (names) {
|
---|
837 | wbcFreeMemory(names);
|
---|
838 | }
|
---|
839 | if (types) {
|
---|
840 | wbcFreeMemory(types);
|
---|
841 | }
|
---|
842 | TALLOC_FREE(mem_ctx);
|
---|
843 | return ret;
|
---|
844 | }
|
---|
845 |
|
---|
846 | /* Convert string to sid */
|
---|
847 |
|
---|
848 | static bool wbinfo_lookupname(const char *full_name)
|
---|
849 | {
|
---|
850 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
851 | struct wbcDomainSid sid;
|
---|
852 | char *sid_str;
|
---|
853 | enum wbcSidType type;
|
---|
854 | fstring domain_name;
|
---|
855 | fstring account_name;
|
---|
856 |
|
---|
857 | /* Send off request */
|
---|
858 |
|
---|
859 | parse_wbinfo_domain_user(full_name, domain_name,
|
---|
860 | account_name);
|
---|
861 |
|
---|
862 | wbc_status = wbcLookupName(domain_name, account_name,
|
---|
863 | &sid, &type);
|
---|
864 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
865 | return false;
|
---|
866 | }
|
---|
867 |
|
---|
868 | wbc_status = wbcSidToString(&sid, &sid_str);
|
---|
869 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
870 | return false;
|
---|
871 | }
|
---|
872 |
|
---|
873 | /* Display response */
|
---|
874 |
|
---|
875 | d_printf("%s %s (%d)\n", sid_str, sid_type_lookup(type), type);
|
---|
876 |
|
---|
877 | wbcFreeMemory(sid_str);
|
---|
878 |
|
---|
879 | return true;
|
---|
880 | }
|
---|
881 |
|
---|
882 | /* Authenticate a user with a plaintext password */
|
---|
883 |
|
---|
884 | static bool wbinfo_auth_krb5(char *username, const char *pass, const char *cctype, uint32 flags)
|
---|
885 | {
|
---|
886 | struct winbindd_request request;
|
---|
887 | struct winbindd_response response;
|
---|
888 | NSS_STATUS result;
|
---|
889 |
|
---|
890 | /* Send off request */
|
---|
891 |
|
---|
892 | ZERO_STRUCT(request);
|
---|
893 | ZERO_STRUCT(response);
|
---|
894 |
|
---|
895 | fstrcpy(request.data.auth.user, username);
|
---|
896 | fstrcpy(request.data.auth.pass, pass);
|
---|
897 |
|
---|
898 | request.flags = flags;
|
---|
899 |
|
---|
900 | fstrcpy(request.data.auth.krb5_cc_type, cctype);
|
---|
901 |
|
---|
902 | request.data.auth.uid = geteuid();
|
---|
903 |
|
---|
904 | result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
|
---|
905 |
|
---|
906 | /* Display response */
|
---|
907 |
|
---|
908 | d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
|
---|
909 | username, (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", cctype);
|
---|
910 |
|
---|
911 | if (response.data.auth.nt_status)
|
---|
912 | d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
|
---|
913 | response.data.auth.nt_status_string,
|
---|
914 | response.data.auth.nt_status,
|
---|
915 | response.data.auth.error_string);
|
---|
916 |
|
---|
917 | if (result == NSS_STATUS_SUCCESS) {
|
---|
918 |
|
---|
919 | if (request.flags & WBFLAG_PAM_INFO3_TEXT) {
|
---|
920 | if (response.data.auth.info3.user_flgs & NETLOGON_CACHED_ACCOUNT) {
|
---|
921 | d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
|
---|
922 | }
|
---|
923 | }
|
---|
924 |
|
---|
925 | if (response.data.auth.krb5ccname[0] != '\0') {
|
---|
926 | d_printf("credentials were put in: %s\n", response.data.auth.krb5ccname);
|
---|
927 | } else {
|
---|
928 | d_printf("no credentials cached\n");
|
---|
929 | }
|
---|
930 | }
|
---|
931 |
|
---|
932 | return result == NSS_STATUS_SUCCESS;
|
---|
933 | }
|
---|
934 |
|
---|
935 | /* Authenticate a user with a plaintext password */
|
---|
936 |
|
---|
937 | static bool wbinfo_auth(char *username, const char *pass)
|
---|
938 | {
|
---|
939 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
940 |
|
---|
941 | wbc_status = wbcAuthenticateUser(username, pass);
|
---|
942 |
|
---|
943 | d_printf("plaintext password authentication %s\n",
|
---|
944 | WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
|
---|
945 |
|
---|
946 | #if 0
|
---|
947 | if (response.data.auth.nt_status)
|
---|
948 | d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
|
---|
949 | response.data.auth.nt_status_string,
|
---|
950 | response.data.auth.nt_status,
|
---|
951 | response.data.auth.error_string);
|
---|
952 | #endif
|
---|
953 |
|
---|
954 | return WBC_ERROR_IS_OK(wbc_status);
|
---|
955 | }
|
---|
956 |
|
---|
957 | /* Authenticate a user with a challenge/response */
|
---|
958 |
|
---|
959 | static bool wbinfo_auth_crap(char *username, const char *pass)
|
---|
960 | {
|
---|
961 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
962 | struct wbcAuthUserParams params;
|
---|
963 | struct wbcAuthUserInfo *info = NULL;
|
---|
964 | struct wbcAuthErrorInfo *err = NULL;
|
---|
965 | DATA_BLOB lm = data_blob_null;
|
---|
966 | DATA_BLOB nt = data_blob_null;
|
---|
967 | fstring name_user;
|
---|
968 | fstring name_domain;
|
---|
969 |
|
---|
970 | parse_wbinfo_domain_user(username, name_domain, name_user);
|
---|
971 |
|
---|
972 | params.account_name = name_user;
|
---|
973 | params.domain_name = name_domain;
|
---|
974 | params.workstation_name = NULL;
|
---|
975 |
|
---|
976 | params.flags = 0;
|
---|
977 | params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
|
---|
978 | WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
|
---|
979 |
|
---|
980 | params.level = WBC_AUTH_USER_LEVEL_RESPONSE;
|
---|
981 |
|
---|
982 | generate_random_buffer(params.password.response.challenge, 8);
|
---|
983 |
|
---|
984 | if (lp_client_ntlmv2_auth()) {
|
---|
985 | DATA_BLOB server_chal;
|
---|
986 | DATA_BLOB names_blob;
|
---|
987 |
|
---|
988 | server_chal = data_blob(params.password.response.challenge, 8);
|
---|
989 |
|
---|
990 | /* Pretend this is a login to 'us', for blob purposes */
|
---|
991 | names_blob = NTLMv2_generate_names_blob(global_myname(), lp_workgroup());
|
---|
992 |
|
---|
993 | if (!SMBNTLMv2encrypt(name_user, name_domain, pass, &server_chal,
|
---|
994 | &names_blob,
|
---|
995 | &lm, &nt, NULL)) {
|
---|
996 | data_blob_free(&names_blob);
|
---|
997 | data_blob_free(&server_chal);
|
---|
998 | return false;
|
---|
999 | }
|
---|
1000 | data_blob_free(&names_blob);
|
---|
1001 | data_blob_free(&server_chal);
|
---|
1002 |
|
---|
1003 | } else {
|
---|
1004 | if (lp_client_lanman_auth()) {
|
---|
1005 | bool ok;
|
---|
1006 | lm = data_blob(NULL, 24);
|
---|
1007 | ok = SMBencrypt(pass, params.password.response.challenge,
|
---|
1008 | lm.data);
|
---|
1009 | if (!ok) {
|
---|
1010 | data_blob_free(&lm);
|
---|
1011 | }
|
---|
1012 | }
|
---|
1013 | nt = data_blob(NULL, 24);
|
---|
1014 | SMBNTencrypt(pass, params.password.response.challenge,
|
---|
1015 | nt.data);
|
---|
1016 | }
|
---|
1017 |
|
---|
1018 | params.password.response.nt_length = nt.length;
|
---|
1019 | params.password.response.nt_data = nt.data;
|
---|
1020 | params.password.response.lm_length = lm.length;
|
---|
1021 | params.password.response.lm_data = lm.data;
|
---|
1022 |
|
---|
1023 | wbc_status = wbcAuthenticateUserEx(¶ms, &info, &err);
|
---|
1024 |
|
---|
1025 | /* Display response */
|
---|
1026 |
|
---|
1027 | d_printf("challenge/response password authentication %s\n",
|
---|
1028 | WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
|
---|
1029 |
|
---|
1030 | if (wbc_status == WBC_ERR_AUTH_ERROR) {
|
---|
1031 | d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
|
---|
1032 | err->nt_string,
|
---|
1033 | err->nt_status,
|
---|
1034 | err->display_string);
|
---|
1035 | wbcFreeMemory(err);
|
---|
1036 | } else if (WBC_ERROR_IS_OK(wbc_status)) {
|
---|
1037 | wbcFreeMemory(info);
|
---|
1038 | }
|
---|
1039 |
|
---|
1040 | data_blob_free(&nt);
|
---|
1041 | data_blob_free(&lm);
|
---|
1042 |
|
---|
1043 | return WBC_ERROR_IS_OK(wbc_status);
|
---|
1044 | }
|
---|
1045 |
|
---|
1046 | /* Authenticate a user with a plaintext password and set a token */
|
---|
1047 |
|
---|
1048 | static bool wbinfo_klog(char *username)
|
---|
1049 | {
|
---|
1050 | struct winbindd_request request;
|
---|
1051 | struct winbindd_response response;
|
---|
1052 | NSS_STATUS result;
|
---|
1053 | char *p;
|
---|
1054 |
|
---|
1055 | /* Send off request */
|
---|
1056 |
|
---|
1057 | ZERO_STRUCT(request);
|
---|
1058 | ZERO_STRUCT(response);
|
---|
1059 |
|
---|
1060 | p = strchr(username, '%');
|
---|
1061 |
|
---|
1062 | if (p) {
|
---|
1063 | *p = 0;
|
---|
1064 | fstrcpy(request.data.auth.user, username);
|
---|
1065 | fstrcpy(request.data.auth.pass, p + 1);
|
---|
1066 | *p = '%';
|
---|
1067 | } else {
|
---|
1068 | fstrcpy(request.data.auth.user, username);
|
---|
1069 | fstrcpy(request.data.auth.pass, getpass("Password: "));
|
---|
1070 | }
|
---|
1071 |
|
---|
1072 | request.flags |= WBFLAG_PAM_AFS_TOKEN;
|
---|
1073 |
|
---|
1074 | result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
|
---|
1075 |
|
---|
1076 | /* Display response */
|
---|
1077 |
|
---|
1078 | d_printf("plaintext password authentication %s\n",
|
---|
1079 | (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
|
---|
1080 |
|
---|
1081 | if (response.data.auth.nt_status)
|
---|
1082 | d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
|
---|
1083 | response.data.auth.nt_status_string,
|
---|
1084 | response.data.auth.nt_status,
|
---|
1085 | response.data.auth.error_string);
|
---|
1086 |
|
---|
1087 | if (result != NSS_STATUS_SUCCESS)
|
---|
1088 | return false;
|
---|
1089 |
|
---|
1090 | if (response.extra_data.data == NULL) {
|
---|
1091 | d_fprintf(stderr, "Did not get token data\n");
|
---|
1092 | return false;
|
---|
1093 | }
|
---|
1094 |
|
---|
1095 | if (!afs_settoken_str((char *)response.extra_data.data)) {
|
---|
1096 | d_fprintf(stderr, "Could not set token\n");
|
---|
1097 | return false;
|
---|
1098 | }
|
---|
1099 |
|
---|
1100 | d_printf("Successfully created AFS token\n");
|
---|
1101 | return true;
|
---|
1102 | }
|
---|
1103 |
|
---|
1104 | /* Print domain users */
|
---|
1105 |
|
---|
1106 | static bool print_domain_users(const char *domain)
|
---|
1107 | {
|
---|
1108 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
1109 | uint32_t i;
|
---|
1110 | uint32_t num_users = 0;
|
---|
1111 | const char **users = NULL;
|
---|
1112 |
|
---|
1113 | /* Send request to winbind daemon */
|
---|
1114 |
|
---|
1115 | /* '.' is the special sign for our own domain */
|
---|
1116 | if (domain && strcmp(domain, ".") == 0) {
|
---|
1117 | domain = get_winbind_domain();
|
---|
1118 | }
|
---|
1119 |
|
---|
1120 | wbc_status = wbcListUsers(domain, &num_users, &users);
|
---|
1121 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
1122 | return false;
|
---|
1123 | }
|
---|
1124 |
|
---|
1125 | for (i=0; i < num_users; i++) {
|
---|
1126 | d_printf("%s\n", users[i]);
|
---|
1127 | }
|
---|
1128 |
|
---|
1129 | wbcFreeMemory(users);
|
---|
1130 |
|
---|
1131 | return true;
|
---|
1132 | }
|
---|
1133 |
|
---|
1134 | /* Print domain groups */
|
---|
1135 |
|
---|
1136 | static bool print_domain_groups(const char *domain)
|
---|
1137 | {
|
---|
1138 | wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
|
---|
1139 | uint32_t i;
|
---|
1140 | uint32_t num_groups = 0;
|
---|
1141 | const char **groups = NULL;
|
---|
1142 |
|
---|
1143 | /* Send request to winbind daemon */
|
---|
1144 |
|
---|
1145 | /* '.' is the special sign for our own domain */
|
---|
1146 | if (domain && strcmp(domain, ".") == 0) {
|
---|
1147 | domain = get_winbind_domain();
|
---|
1148 | }
|
---|
1149 |
|
---|
1150 | wbc_status = wbcListGroups(domain, &num_groups, &groups);
|
---|
1151 | if (!WBC_ERROR_IS_OK(wbc_status)) {
|
---|
1152 | return false;
|
---|
1153 | }
|
---|
1154 |
|
---|
1155 | for (i=0; i < num_groups; i++) {
|
---|
1156 | d_printf("%s\n", groups[i]);
|
---|
1157 | }
|
---|
1158 |
|
---|
1159 | wbcFreeMemory(groups);
|
---|
1160 |
|
---|
1161 | return true;
|
---|
1162 | }
|
---|
1163 |
|
---|
1164 | /* Set the authorised user for winbindd access in secrets.tdb */
|
---|
1165 |
|
---|
1166 | static bool wbinfo_set_auth_user(char *username)
|
---|
1167 | {
|
---|
1168 | const char *password;
|
---|
1169 | char *p;
|
---|
1170 | fstring user, domain;
|
---|
1171 |
|
---|
1172 | /* Separate into user and password */
|
---|
1173 |
|
---|
1174 | parse_wbinfo_domain_user(username, domain, user);
|
---|
1175 |
|
---|
1176 | p = strchr(user, '%');
|
---|
1177 |
|
---|
1178 | if (p != NULL) {
|
---|
1179 | *p = 0;
|
---|
1180 | password = p+1;
|
---|
1181 | } else {
|
---|
1182 | char *thepass = getpass("Password: ");
|
---|
1183 | if (thepass) {
|
---|
1184 | password = thepass;
|
---|
1185 | } else
|
---|
1186 | password = "";
|
---|
1187 | }
|
---|
1188 |
|
---|
1189 | /* Store or remove DOMAIN\username%password in secrets.tdb */
|
---|
1190 |
|
---|
1191 | secrets_init();
|
---|
1192 |
|
---|
1193 | if (user[0]) {
|
---|
1194 |
|
---|
1195 | if (!secrets_store(SECRETS_AUTH_USER, user,
|
---|
1196 | strlen(user) + 1)) {
|
---|
1197 | d_fprintf(stderr, "error storing username\n");
|
---|
1198 | return false;
|
---|
1199 | }
|
---|
1200 |
|
---|
1201 | /* We always have a domain name added by the
|
---|
1202 | parse_wbinfo_domain_user() function. */
|
---|
1203 |
|
---|
1204 | if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
|
---|
1205 | strlen(domain) + 1)) {
|
---|
1206 | d_fprintf(stderr, "error storing domain name\n");
|
---|
1207 | return false;
|
---|
1208 | }
|
---|
1209 |
|
---|
1210 | } else {
|
---|
1211 | secrets_delete(SECRETS_AUTH_USER);
|
---|
1212 | secrets_delete(SECRETS_AUTH_DOMAIN);
|
---|
1213 | }
|
---|
1214 |
|
---|
1215 | if (password[0]) {
|
---|
1216 |
|
---|
1217 | if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
|
---|
1218 | strlen(password) + 1)) {
|
---|
1219 | d_fprintf(stderr, "error storing password\n");
|
---|
1220 | return false;
|
---|
1221 | }
|
---|
1222 |
|
---|
1223 | } else
|
---|
1224 | secrets_delete(SECRETS_AUTH_PASSWORD);
|
---|
1225 |
|
---|
1226 | return true;
|
---|
1227 | }
|
---|
1228 |
|
---|
1229 | static void wbinfo_get_auth_user(void)
|
---|
1230 | {
|
---|
1231 | char *user, *domain, *password;
|
---|
1232 |
|
---|
1233 | /* Lift data from secrets file */
|
---|
1234 |
|
---|
1235 | secrets_fetch_ipc_userpass(&user, &domain, &password);
|
---|
1236 |
|
---|
1237 | if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
|
---|
1238 |
|
---|
1239 | SAFE_FREE(user);
|
---|
1240 | SAFE_FREE(domain);
|
---|
1241 | SAFE_FREE(password);
|
---|
1242 | d_printf("No authorised user configured\n");
|
---|
1243 | return;
|
---|
1244 | }
|
---|
1245 |
|
---|
1246 | /* Pretty print authorised user info */
|
---|
1247 |
|
---|
1248 | d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
|
---|
1249 | user, password ? "%" : "", password ? password : "");
|
---|
1250 |
|
---|
1251 | SAFE_FREE(user);
|
---|
1252 | SAFE_FREE(domain);
|
---|
1253 | SAFE_FREE(password);
|
---|
1254 | }
|
---|
1255 |
|
---|
1256 | static bool wbinfo_ping(void)
|
---|
1257 | {
|
---|
1258 | wbcErr wbc_status;
|
---|
1259 |
|
---|
1260 | wbc_status = wbcPing();
|
---|
1261 |
|
---|
1262 | /* Display response */
|
---|
1263 |
|
---|
1264 | d_printf("Ping to winbindd %s\n",
|
---|
1265 | WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
|
---|
1266 |
|
---|
1267 | return WBC_ERROR_IS_OK(wbc_status);
|
---|
1268 | }
|
---|
1269 |
|
---|
1270 | /* Main program */
|
---|
1271 |
|
---|
1272 | enum {
|
---|
1273 | OPT_SET_AUTH_USER = 1000,
|
---|
1274 | OPT_GET_AUTH_USER,
|
---|
1275 | OPT_DOMAIN_NAME,
|
---|
1276 | OPT_SEQUENCE,
|
---|
1277 | OPT_GETDCNAME,
|
---|
1278 | OPT_DSGETDCNAME,
|
---|
1279 | OPT_USERDOMGROUPS,
|
---|
1280 | OPT_USERSIDS,
|
---|
1281 | OPT_ALLOCATE_UID,
|
---|
1282 | OPT_ALLOCATE_GID,
|
---|
1283 | OPT_SEPARATOR,
|
---|
1284 | OPT_LIST_ALL_DOMAINS,
|
---|
1285 | OPT_LIST_OWN_DOMAIN,
|
---|
1286 | OPT_UID_INFO,
|
---|
1287 | OPT_GROUP_INFO,
|
---|
1288 | OPT_VERBOSE,
|
---|
1289 | OPT_ONLINESTATUS
|
---|
1290 | };
|
---|
1291 |
|
---|
1292 | int main(int argc, char **argv, char **envp)
|
---|
1293 | {
|
---|
1294 | int opt;
|
---|
1295 | TALLOC_CTX *frame = talloc_stackframe();
|
---|
1296 | poptContext pc;
|
---|
1297 | static char *string_arg;
|
---|
1298 | static char *opt_domain_name;
|
---|
1299 | static int int_arg;
|
---|
1300 | int result = 1;
|
---|
1301 | bool verbose = false;
|
---|
1302 |
|
---|
1303 | struct poptOption long_options[] = {
|
---|
1304 | POPT_AUTOHELP
|
---|
1305 |
|
---|
1306 | /* longName, shortName, argInfo, argPtr, value, descrip,
|
---|
1307 | argDesc */
|
---|
1308 |
|
---|
1309 | { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
|
---|
1310 | { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
|
---|
1311 | { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
|
---|
1312 | { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
|
---|
1313 | { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
|
---|
1314 | { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
|
---|
1315 | { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
|
---|
1316 | { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
|
---|
1317 | { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
|
---|
1318 | { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
|
---|
1319 | { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
|
---|
1320 | { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
|
---|
1321 | "Get a new UID out of idmap" },
|
---|
1322 | { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
|
---|
1323 | "Get a new GID out of idmap" },
|
---|
1324 | { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
|
---|
1325 | { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
|
---|
1326 | { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
|
---|
1327 | { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
|
---|
1328 | { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
|
---|
1329 | { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
|
---|
1330 | { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
|
---|
1331 | { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
|
---|
1332 | { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
|
---|
1333 | { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
|
---|
1334 | { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
|
---|
1335 | { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
|
---|
1336 | OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
|
---|
1337 | { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
|
---|
1338 | { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
|
---|
1339 | { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
|
---|
1340 | { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
|
---|
1341 | "Get a DC name for a foreign domain", "domainname" },
|
---|
1342 | { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
|
---|
1343 | { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
|
---|
1344 | { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
|
---|
1345 | { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
|
---|
1346 | #ifdef WITH_FAKE_KASERVER
|
---|
1347 | { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
|
---|
1348 | #endif
|
---|
1349 | #ifdef HAVE_KRB5
|
---|
1350 | { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
|
---|
1351 | /* destroys wbinfo --help output */
|
---|
1352 | /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
|
---|
1353 | #endif
|
---|
1354 | { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
|
---|
1355 | { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
|
---|
1356 | POPT_COMMON_CONFIGFILE
|
---|
1357 | POPT_COMMON_VERSION
|
---|
1358 | POPT_TABLEEND
|
---|
1359 | };
|
---|
1360 |
|
---|
1361 | /* Samba client initialisation */
|
---|
1362 | load_case_tables();
|
---|
1363 |
|
---|
1364 |
|
---|
1365 | /* Parse options */
|
---|
1366 |
|
---|
1367 | pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
|
---|
1368 |
|
---|
1369 | /* Parse command line options */
|
---|
1370 |
|
---|
1371 | if (argc == 1) {
|
---|
1372 | poptPrintHelp(pc, stderr, 0);
|
---|
1373 | return 1;
|
---|
1374 | }
|
---|
1375 |
|
---|
1376 | while((opt = poptGetNextOpt(pc)) != -1) {
|
---|
1377 | /* get the generic configuration parameters like --domain */
|
---|
1378 | switch (opt) {
|
---|
1379 | case OPT_VERBOSE:
|
---|
1380 | verbose = True;
|
---|
1381 | break;
|
---|
1382 | }
|
---|
1383 | }
|
---|
1384 |
|
---|
1385 | poptFreeContext(pc);
|
---|
1386 |
|
---|
1387 | if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, true)) {
|
---|
1388 | d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
|
---|
1389 | get_dyn_CONFIGFILE(), strerror(errno));
|
---|
1390 | exit(1);
|
---|
1391 | }
|
---|
1392 |
|
---|
1393 | if (!init_names())
|
---|
1394 | return 1;
|
---|
1395 |
|
---|
1396 | load_interfaces();
|
---|
1397 |
|
---|
1398 | pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
|
---|
1399 | POPT_CONTEXT_KEEP_FIRST);
|
---|
1400 |
|
---|
1401 | while((opt = poptGetNextOpt(pc)) != -1) {
|
---|
1402 | switch (opt) {
|
---|
1403 | case 'u':
|
---|
1404 | if (!print_domain_users(opt_domain_name)) {
|
---|
1405 | d_fprintf(stderr, "Error looking up domain users\n");
|
---|
1406 | goto done;
|
---|
1407 | }
|
---|
1408 | break;
|
---|
1409 | case 'g':
|
---|
1410 | if (!print_domain_groups(opt_domain_name)) {
|
---|
1411 | d_fprintf(stderr, "Error looking up domain groups\n");
|
---|
1412 | goto done;
|
---|
1413 | }
|
---|
1414 | break;
|
---|
1415 | case 's':
|
---|
1416 | if (!wbinfo_lookupsid(string_arg)) {
|
---|
1417 | d_fprintf(stderr, "Could not lookup sid %s\n", string_arg);
|
---|
1418 | goto done;
|
---|
1419 | }
|
---|
1420 | break;
|
---|
1421 | case 'R':
|
---|
1422 | if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
|
---|
1423 | d_fprintf(stderr, "Could not lookup RIDs %s\n", string_arg);
|
---|
1424 | goto done;
|
---|
1425 | }
|
---|
1426 | break;
|
---|
1427 | case 'n':
|
---|
1428 | if (!wbinfo_lookupname(string_arg)) {
|
---|
1429 | d_fprintf(stderr, "Could not lookup name %s\n", string_arg);
|
---|
1430 | goto done;
|
---|
1431 | }
|
---|
1432 | break;
|
---|
1433 | case 'N':
|
---|
1434 | if (!wbinfo_wins_byname(string_arg)) {
|
---|
1435 | d_fprintf(stderr, "Could not lookup WINS by name %s\n", string_arg);
|
---|
1436 | goto done;
|
---|
1437 | }
|
---|
1438 | break;
|
---|
1439 | case 'I':
|
---|
1440 | if (!wbinfo_wins_byip(string_arg)) {
|
---|
1441 | d_fprintf(stderr, "Could not lookup WINS by IP %s\n", string_arg);
|
---|
1442 | goto done;
|
---|
1443 | }
|
---|
1444 | break;
|
---|
1445 | case 'U':
|
---|
1446 | if (!wbinfo_uid_to_sid(int_arg)) {
|
---|
1447 | d_fprintf(stderr, "Could not convert uid %d to sid\n", int_arg);
|
---|
1448 | goto done;
|
---|
1449 | }
|
---|
1450 | break;
|
---|
1451 | case 'G':
|
---|
1452 | if (!wbinfo_gid_to_sid(int_arg)) {
|
---|
1453 | d_fprintf(stderr, "Could not convert gid %d to sid\n",
|
---|
1454 | int_arg);
|
---|
1455 | goto done;
|
---|
1456 | }
|
---|
1457 | break;
|
---|
1458 | case 'S':
|
---|
1459 | if (!wbinfo_sid_to_uid(string_arg)) {
|
---|
1460 | d_fprintf(stderr, "Could not convert sid %s to uid\n",
|
---|
1461 | string_arg);
|
---|
1462 | goto done;
|
---|
1463 | }
|
---|
1464 | break;
|
---|
1465 | case 'Y':
|
---|
1466 | if (!wbinfo_sid_to_gid(string_arg)) {
|
---|
1467 | d_fprintf(stderr, "Could not convert sid %s to gid\n",
|
---|
1468 | string_arg);
|
---|
1469 | goto done;
|
---|
1470 | }
|
---|
1471 | break;
|
---|
1472 | case OPT_ALLOCATE_UID:
|
---|
1473 | if (!wbinfo_allocate_uid()) {
|
---|
1474 | d_fprintf(stderr, "Could not allocate a uid\n");
|
---|
1475 | goto done;
|
---|
1476 | }
|
---|
1477 | break;
|
---|
1478 | case OPT_ALLOCATE_GID:
|
---|
1479 | if (!wbinfo_allocate_gid()) {
|
---|
1480 | d_fprintf(stderr, "Could not allocate a gid\n");
|
---|
1481 | goto done;
|
---|
1482 | }
|
---|
1483 | break;
|
---|
1484 | case 't':
|
---|
1485 | if (!wbinfo_check_secret()) {
|
---|
1486 | d_fprintf(stderr, "Could not check secret\n");
|
---|
1487 | goto done;
|
---|
1488 | }
|
---|
1489 | break;
|
---|
1490 | case 'm':
|
---|
1491 | if (!wbinfo_list_domains(false, verbose)) {
|
---|
1492 | d_fprintf(stderr, "Could not list trusted domains\n");
|
---|
1493 | goto done;
|
---|
1494 | }
|
---|
1495 | break;
|
---|
1496 | case OPT_SEQUENCE:
|
---|
1497 | if (!wbinfo_show_sequence(opt_domain_name)) {
|
---|
1498 | d_fprintf(stderr, "Could not show sequence numbers\n");
|
---|
1499 | goto done;
|
---|
1500 | }
|
---|
1501 | break;
|
---|
1502 | case OPT_ONLINESTATUS:
|
---|
1503 | if (!wbinfo_show_onlinestatus(opt_domain_name)) {
|
---|
1504 | d_fprintf(stderr, "Could not show online-status\n");
|
---|
1505 | goto done;
|
---|
1506 | }
|
---|
1507 | break;
|
---|
1508 | case 'D':
|
---|
1509 | if (!wbinfo_domain_info(string_arg)) {
|
---|
1510 | d_fprintf(stderr, "Could not get domain info\n");
|
---|
1511 | goto done;
|
---|
1512 | }
|
---|
1513 | break;
|
---|
1514 | case 'i':
|
---|
1515 | if (!wbinfo_get_userinfo(string_arg)) {
|
---|
1516 | d_fprintf(stderr, "Could not get info for user %s\n",
|
---|
1517 | string_arg);
|
---|
1518 | goto done;
|
---|
1519 | }
|
---|
1520 | break;
|
---|
1521 | case OPT_UID_INFO:
|
---|
1522 | if ( !wbinfo_get_uidinfo(int_arg)) {
|
---|
1523 | d_fprintf(stderr, "Could not get info for uid "
|
---|
1524 | "%d\n", int_arg);
|
---|
1525 | goto done;
|
---|
1526 | }
|
---|
1527 | break;
|
---|
1528 | case OPT_GROUP_INFO:
|
---|
1529 | if ( !wbinfo_get_groupinfo(string_arg)) {
|
---|
1530 | d_fprintf(stderr, "Could not get info for "
|
---|
1531 | "group %s\n", string_arg);
|
---|
1532 | goto done;
|
---|
1533 | }
|
---|
1534 | break;
|
---|
1535 | case 'r':
|
---|
1536 | if (!wbinfo_get_usergroups(string_arg)) {
|
---|
1537 | d_fprintf(stderr, "Could not get groups for user %s\n",
|
---|
1538 | string_arg);
|
---|
1539 | goto done;
|
---|
1540 | }
|
---|
1541 | break;
|
---|
1542 | case OPT_USERSIDS:
|
---|
1543 | if (!wbinfo_get_usersids(string_arg)) {
|
---|
1544 | d_fprintf(stderr, "Could not get group SIDs for user SID %s\n",
|
---|
1545 | string_arg);
|
---|
1546 | goto done;
|
---|
1547 | }
|
---|
1548 | break;
|
---|
1549 | case OPT_USERDOMGROUPS:
|
---|
1550 | if (!wbinfo_get_userdomgroups(string_arg)) {
|
---|
1551 | d_fprintf(stderr, "Could not get user's domain groups "
|
---|
1552 | "for user SID %s\n", string_arg);
|
---|
1553 | goto done;
|
---|
1554 | }
|
---|
1555 | break;
|
---|
1556 | case 'a': {
|
---|
1557 | bool got_error = false;
|
---|
1558 | char *pass;
|
---|
1559 |
|
---|
1560 | if ((pass = strchr(string_arg, '%')) != NULL) {
|
---|
1561 | *pass = 0;
|
---|
1562 | pass++;
|
---|
1563 | } else {
|
---|
1564 | pass = (char *)"";
|
---|
1565 | }
|
---|
1566 |
|
---|
1567 | if (!wbinfo_auth(string_arg, pass)) {
|
---|
1568 | d_fprintf(stderr, "Could not authenticate user %s with "
|
---|
1569 | "plaintext password\n", string_arg);
|
---|
1570 | got_error = true;
|
---|
1571 | }
|
---|
1572 |
|
---|
1573 | if (!wbinfo_auth_crap(string_arg, pass)) {
|
---|
1574 | d_fprintf(stderr, "Could not authenticate user %s with "
|
---|
1575 | "challenge/response\n", string_arg);
|
---|
1576 | got_error = true;
|
---|
1577 | }
|
---|
1578 |
|
---|
1579 | if (got_error)
|
---|
1580 | goto done;
|
---|
1581 | break;
|
---|
1582 | }
|
---|
1583 | case 'K': {
|
---|
1584 | uint32 flags = WBFLAG_PAM_KRB5 |
|
---|
1585 | WBFLAG_PAM_CACHED_LOGIN |
|
---|
1586 | WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
|
---|
1587 | WBFLAG_PAM_INFO3_TEXT;
|
---|
1588 | char *pass;
|
---|
1589 |
|
---|
1590 | if ((pass = strchr(string_arg, '%')) != NULL) {
|
---|
1591 | *pass = 0;
|
---|
1592 | pass++;
|
---|
1593 | } else {
|
---|
1594 | pass = (char *)"";
|
---|
1595 | }
|
---|
1596 |
|
---|
1597 | if (!wbinfo_auth_krb5(string_arg, pass, "FILE", flags)) {
|
---|
1598 | d_fprintf(stderr, "Could not authenticate user [%s] with "
|
---|
1599 | "Kerberos (ccache: %s)\n", string_arg, "FILE");
|
---|
1600 | goto done;
|
---|
1601 | }
|
---|
1602 | break;
|
---|
1603 | }
|
---|
1604 | case 'k':
|
---|
1605 | if (!wbinfo_klog(string_arg)) {
|
---|
1606 | d_fprintf(stderr, "Could not klog user\n");
|
---|
1607 | goto done;
|
---|
1608 | }
|
---|
1609 | break;
|
---|
1610 | case 'p':
|
---|
1611 | if (!wbinfo_ping()) {
|
---|
1612 | d_fprintf(stderr, "could not ping winbindd!\n");
|
---|
1613 | goto done;
|
---|
1614 | }
|
---|
1615 | break;
|
---|
1616 | case OPT_SET_AUTH_USER:
|
---|
1617 | if (!wbinfo_set_auth_user(string_arg)) {
|
---|
1618 | goto done;
|
---|
1619 | }
|
---|
1620 | break;
|
---|
1621 | case OPT_GET_AUTH_USER:
|
---|
1622 | wbinfo_get_auth_user();
|
---|
1623 | break;
|
---|
1624 | case OPT_GETDCNAME:
|
---|
1625 | if (!wbinfo_getdcname(string_arg)) {
|
---|
1626 | goto done;
|
---|
1627 | }
|
---|
1628 | break;
|
---|
1629 | case OPT_DSGETDCNAME:
|
---|
1630 | if (!wbinfo_dsgetdcname(string_arg, 0)) {
|
---|
1631 | goto done;
|
---|
1632 | }
|
---|
1633 | break;
|
---|
1634 | case OPT_SEPARATOR: {
|
---|
1635 | const char sep = winbind_separator_int(true);
|
---|
1636 | if ( !sep ) {
|
---|
1637 | goto done;
|
---|
1638 | }
|
---|
1639 | d_printf("%c\n", sep);
|
---|
1640 | break;
|
---|
1641 | }
|
---|
1642 | case OPT_LIST_ALL_DOMAINS:
|
---|
1643 | if (!wbinfo_list_domains(true, verbose)) {
|
---|
1644 | goto done;
|
---|
1645 | }
|
---|
1646 | break;
|
---|
1647 | case OPT_LIST_OWN_DOMAIN:
|
---|
1648 | if (!wbinfo_list_own_domain()) {
|
---|
1649 | goto done;
|
---|
1650 | }
|
---|
1651 | break;
|
---|
1652 | /* generic configuration options */
|
---|
1653 | case OPT_DOMAIN_NAME:
|
---|
1654 | break;
|
---|
1655 | case OPT_VERBOSE:
|
---|
1656 | break;
|
---|
1657 | default:
|
---|
1658 | d_fprintf(stderr, "Invalid option\n");
|
---|
1659 | poptPrintHelp(pc, stderr, 0);
|
---|
1660 | goto done;
|
---|
1661 | }
|
---|
1662 | }
|
---|
1663 |
|
---|
1664 | result = 0;
|
---|
1665 |
|
---|
1666 | /* Exit code */
|
---|
1667 |
|
---|
1668 | done:
|
---|
1669 | talloc_destroy(frame);
|
---|
1670 |
|
---|
1671 | poptFreeContext(pc);
|
---|
1672 | return result;
|
---|
1673 | }
|
---|