s4-dsdb: implement DSDB_REPL_FLAG_PRIORITISE_INCOMING
[nivanova/samba-autobuild/.git] / nsswitch / wbinfo.c
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-2007
8    Copyright (C) Volker Lendecke 2009
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "popt_common.h"
26 #include "winbind_client.h"
27 #include "libwbclient/wbclient.h"
28 #include "lib/popt/popt.h"
29 #include "../libcli/auth/libcli_auth.h"
30 #if (_SAMBA_BUILD_) >= 4
31 #include "lib/cmdline/popt_common.h"
32 #endif
33
34 #ifdef DBGC_CLASS
35 #undef DBGC_CLASS
36 #define DBGC_CLASS DBGC_WINBIND
37 #endif
38
39 static struct wbcInterfaceDetails *init_interface_details(void)
40 {
41         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
42         static struct wbcInterfaceDetails *details;
43
44         if (details) {
45                 return details;
46         }
47
48         wbc_status = wbcInterfaceDetails(&details);
49         if (!WBC_ERROR_IS_OK(wbc_status)) {
50                 d_fprintf(stderr, "could not obtain winbind interface "
51                                   "details: %s\n", wbcErrorString(wbc_status));
52         }
53
54         return details;
55 }
56
57 static char winbind_separator(void)
58 {
59         struct wbcInterfaceDetails *details;
60         static bool got_sep;
61         static char sep;
62
63         if (got_sep)
64                 return sep;
65
66         details = init_interface_details();
67
68         if (!details) {
69                 d_fprintf(stderr, "could not obtain winbind separator!\n");
70                 return 0;
71         }
72
73         sep = details->winbind_separator;
74         got_sep = true;
75
76         if (!sep) {
77                 d_fprintf(stderr, "winbind separator was NULL!\n");
78                 return 0;
79         }
80
81         return sep;
82 }
83
84 static const char *get_winbind_domain(void)
85 {
86         static struct wbcInterfaceDetails *details;
87
88         details = init_interface_details();
89
90         if (!details) {
91                 d_fprintf(stderr, "could not obtain winbind domain name!\n");
92                 return 0;
93         }
94
95         return details->netbios_domain;
96 }
97
98 static const char *get_winbind_netbios_name(void)
99 {
100         static struct wbcInterfaceDetails *details;
101
102         details = init_interface_details();
103
104         if (!details) {
105                 d_fprintf(stderr, "could not obtain winbind netbios name!\n");
106                 return 0;
107         }
108
109         return details->netbios_name;
110 }
111
112 /* Copy of parse_domain_user from winbindd_util.c.  Parse a string of the
113    form DOMAIN/user into a domain and a user */
114
115 static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
116                                      fstring user)
117 {
118
119         char *p = strchr(domuser,winbind_separator());
120
121         if (!p) {
122                 /* Maybe it was a UPN? */
123                 if ((p = strchr(domuser, '@')) != NULL) {
124                         fstrcpy(domain, "");
125                         fstrcpy(user, domuser);
126                         return true;
127                 }
128
129                 fstrcpy(user, domuser);
130                 fstrcpy(domain, get_winbind_domain());
131                 return true;
132         }
133
134         fstrcpy(user, p+1);
135         fstrcpy(domain, domuser);
136         domain[PTR_DIFF(p, domuser)] = 0;
137
138         return true;
139 }
140
141 /* Parse string of "uid,sid" or "gid,sid" into separate int and string values.
142  * Return true if input was valid, false otherwise. */
143 static bool parse_mapping_arg(char *arg, int *id, char **sid)
144 {
145         char *tmp, *endptr;
146
147         if (!arg || !*arg)
148                 return false;
149
150         tmp = strtok(arg, ",");
151         *sid = strtok(NULL, ",");
152
153         if (!tmp || !*tmp || !*sid || !**sid)
154                 return false;
155
156         /* Because atoi() can return 0 on invalid input, which would be a valid
157          * UID/GID we must use strtoul() and do error checking */
158         *id = strtoul(tmp, &endptr, 10);
159
160         if (endptr[0] != '\0')
161                 return false;
162
163         return true;
164 }
165
166 /* pull pwent info for a given user */
167
168 static bool wbinfo_get_userinfo(char *user)
169 {
170         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
171         struct passwd *pwd = NULL;
172
173         wbc_status = wbcGetpwnam(user, &pwd);
174         if (!WBC_ERROR_IS_OK(wbc_status)) {
175                 d_fprintf(stderr, "failed to call wbcGetpwnam: %s\n",
176                           wbcErrorString(wbc_status));
177                 return false;
178         }
179
180         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
181                  pwd->pw_name,
182                  pwd->pw_passwd,
183                  (unsigned int)pwd->pw_uid,
184                  (unsigned int)pwd->pw_gid,
185                  pwd->pw_gecos,
186                  pwd->pw_dir,
187                  pwd->pw_shell);
188
189         wbcFreeMemory(pwd);
190
191         return true;
192 }
193
194 /* pull pwent info for a given uid */
195 static bool wbinfo_get_uidinfo(int uid)
196 {
197         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
198         struct passwd *pwd = NULL;
199
200         wbc_status = wbcGetpwuid(uid, &pwd);
201         if (!WBC_ERROR_IS_OK(wbc_status)) {
202                 d_fprintf(stderr, "failed to call wbcGetpwuid: %s\n",
203                           wbcErrorString(wbc_status));
204                 return false;
205         }
206
207         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
208                  pwd->pw_name,
209                  pwd->pw_passwd,
210                  (unsigned int)pwd->pw_uid,
211                  (unsigned int)pwd->pw_gid,
212                  pwd->pw_gecos,
213                  pwd->pw_dir,
214                  pwd->pw_shell);
215
216         wbcFreeMemory(pwd);
217
218         return true;
219 }
220
221 static bool wbinfo_get_user_sidinfo(const char *sid_str)
222 {
223         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
224         struct passwd *pwd = NULL;
225         struct wbcDomainSid sid;
226
227         wbc_status = wbcStringToSid(sid_str, &sid);
228         wbc_status = wbcGetpwsid(&sid, &pwd);
229         if (!WBC_ERROR_IS_OK(wbc_status)) {
230                 d_fprintf(stderr, "failed to call wbcGetpwsid: %s\n",
231                           wbcErrorString(wbc_status));
232                 return false;
233         }
234
235         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
236                  pwd->pw_name,
237                  pwd->pw_passwd,
238                  (unsigned int)pwd->pw_uid,
239                  (unsigned int)pwd->pw_gid,
240                  pwd->pw_gecos,
241                  pwd->pw_dir,
242                  pwd->pw_shell);
243
244         return true;
245 }
246
247
248 /* pull grent for a given group */
249 static bool wbinfo_get_groupinfo(const char *group)
250 {
251         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
252         struct group *grp;
253         char **mem;
254
255         wbc_status = wbcGetgrnam(group, &grp);
256         if (!WBC_ERROR_IS_OK(wbc_status)) {
257                 d_fprintf(stderr, "failed to call wbcGetgrnam: %s\n",
258                           wbcErrorString(wbc_status));
259                 return false;
260         }
261
262         d_printf("%s:%s:%u:",
263                  grp->gr_name,
264                  grp->gr_passwd,
265                  (unsigned int)grp->gr_gid);
266
267         mem = grp->gr_mem;
268         while (*mem != NULL) {
269                 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
270                 mem += 1;
271         }
272         d_printf("\n");
273
274         wbcFreeMemory(grp);
275
276         return true;
277 }
278
279 /* pull grent for a given gid */
280 static bool wbinfo_get_gidinfo(int gid)
281 {
282         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
283         struct group *grp;
284         char **mem;
285
286         wbc_status = wbcGetgrgid(gid, &grp);
287         if (!WBC_ERROR_IS_OK(wbc_status)) {
288                 d_fprintf(stderr, "failed to call wbcGetgrgid: %s\n",
289                           wbcErrorString(wbc_status));
290                 return false;
291         }
292
293         d_printf("%s:%s:%u:",
294                  grp->gr_name,
295                  grp->gr_passwd,
296                  (unsigned int)grp->gr_gid);
297
298         mem = grp->gr_mem;
299         while (*mem != NULL) {
300                 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
301                 mem += 1;
302         }
303         d_printf("\n");
304
305         wbcFreeMemory(grp);
306
307         return true;
308 }
309
310 /* List groups a user is a member of */
311
312 static bool wbinfo_get_usergroups(const char *user)
313 {
314         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
315         uint32_t num_groups;
316         uint32_t i;
317         gid_t *groups = NULL;
318
319         /* Send request */
320
321         wbc_status = wbcGetGroups(user, &num_groups, &groups);
322         if (!WBC_ERROR_IS_OK(wbc_status)) {
323                 d_fprintf(stderr, "failed to call wbcGetGroups: %s\n",
324                           wbcErrorString(wbc_status));
325                 return false;
326         }
327
328         for (i = 0; i < num_groups; i++) {
329                 d_printf("%d\n", (int)groups[i]);
330         }
331
332         wbcFreeMemory(groups);
333
334         return true;
335 }
336
337
338 /* List group SIDs a user SID is a member of */
339 static bool wbinfo_get_usersids(const char *user_sid_str)
340 {
341         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
342         uint32_t num_sids;
343         uint32_t i;
344         struct wbcDomainSid user_sid, *sids = NULL;
345
346         /* Send request */
347
348         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
349         if (!WBC_ERROR_IS_OK(wbc_status)) {
350                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
351                           wbcErrorString(wbc_status));
352                 return false;
353         }
354
355         wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
356         if (!WBC_ERROR_IS_OK(wbc_status)) {
357                 d_fprintf(stderr, "failed to call wbcLookupUserSids: %s\n",
358                           wbcErrorString(wbc_status));
359                 return false;
360         }
361
362         for (i = 0; i < num_sids; i++) {
363                 char str[WBC_SID_STRING_BUFLEN];
364                 wbcSidToStringBuf(&sids[i], str, sizeof(str));
365                 d_printf("%s\n", str);
366         }
367
368         wbcFreeMemory(sids);
369
370         return true;
371 }
372
373 static bool wbinfo_get_userdomgroups(const char *user_sid_str)
374 {
375         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
376         uint32_t num_sids;
377         uint32_t i;
378         struct wbcDomainSid user_sid, *sids = NULL;
379
380         /* Send request */
381
382         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
383         if (!WBC_ERROR_IS_OK(wbc_status)) {
384                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
385                           wbcErrorString(wbc_status));
386                 return false;
387         }
388
389         wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
390         if (!WBC_ERROR_IS_OK(wbc_status)) {
391                 d_fprintf(stderr, "failed to call wbcLookupUserSids: %s\n",
392                           wbcErrorString(wbc_status));
393                 return false;
394         }
395
396         for (i = 0; i < num_sids; i++) {
397                 char str[WBC_SID_STRING_BUFLEN];
398                 wbcSidToStringBuf(&sids[i], str, sizeof(str));
399                 d_printf("%s\n", str);
400         }
401
402         wbcFreeMemory(sids);
403
404         return true;
405 }
406
407 static bool wbinfo_get_sidaliases(const char *domain,
408                                   const char *user_sid_str)
409 {
410         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
411         struct wbcDomainInfo *dinfo = NULL;
412         uint32_t i;
413         struct wbcDomainSid user_sid;
414         uint32_t *alias_rids = NULL;
415         uint32_t num_alias_rids;
416         char domain_sid_str[WBC_SID_STRING_BUFLEN];
417
418         /* Send request */
419         if ((domain == NULL) || (strequal(domain, ".")) ||
420            (domain[0] == '\0')) {
421                 domain = get_winbind_domain();
422         }
423
424         /* Send request */
425
426         wbc_status = wbcDomainInfo(domain, &dinfo);
427         if (!WBC_ERROR_IS_OK(wbc_status)) {
428                 d_fprintf(stderr, "wbcDomainInfo(%s) failed: %s\n", domain,
429                           wbcErrorString(wbc_status));
430                 goto done;
431         }
432         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
433         if (!WBC_ERROR_IS_OK(wbc_status)) {
434                 goto done;
435         }
436
437         wbc_status = wbcGetSidAliases(&dinfo->sid, &user_sid, 1,
438             &alias_rids, &num_alias_rids);
439         if (!WBC_ERROR_IS_OK(wbc_status)) {
440                 goto done;
441         }
442
443         wbcSidToStringBuf(&dinfo->sid, domain_sid_str, sizeof(domain_sid_str));
444
445         for (i = 0; i < num_alias_rids; i++) {
446                 d_printf("%s-%d\n", domain_sid_str, alias_rids[i]);
447         }
448
449         wbcFreeMemory(alias_rids);
450
451 done:
452         wbcFreeMemory(dinfo);
453         return (WBC_ERR_SUCCESS == wbc_status);
454 }
455
456
457 /* Convert NetBIOS name to IP */
458
459 static bool wbinfo_wins_byname(const char *name)
460 {
461         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
462         char *ip = NULL;
463
464         wbc_status = wbcResolveWinsByName(name, &ip);
465         if (!WBC_ERROR_IS_OK(wbc_status)) {
466                 d_fprintf(stderr, "failed to call wbcResolveWinsByName: %s\n",
467                           wbcErrorString(wbc_status));
468                 return false;
469         }
470
471         /* Display response */
472
473         d_printf("%s\n", ip);
474
475         wbcFreeMemory(ip);
476
477         return true;
478 }
479
480 /* Convert IP to NetBIOS name */
481
482 static bool wbinfo_wins_byip(const char *ip)
483 {
484         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
485         char *name = NULL;
486
487         wbc_status = wbcResolveWinsByIP(ip, &name);
488         if (!WBC_ERROR_IS_OK(wbc_status)) {
489                 d_fprintf(stderr, "failed to call wbcResolveWinsByIP: %s\n",
490                           wbcErrorString(wbc_status));
491                 return false;
492         }
493
494         /* Display response */
495
496         d_printf("%s\n", name);
497
498         wbcFreeMemory(name);
499
500         return true;
501 }
502
503 /* List all/trusted domains */
504
505 static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
506 {
507         struct wbcDomainInfo *domain_list = NULL;
508         size_t num_domains;
509         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
510         bool print_all = !list_all_domains && verbose;
511         int i;
512
513         wbc_status = wbcListTrusts(&domain_list, &num_domains);
514         if (!WBC_ERROR_IS_OK(wbc_status)) {
515                 d_fprintf(stderr, "failed to call wbcListTrusts: %s\n",
516                           wbcErrorString(wbc_status));
517                 return false;
518         }
519
520         if (print_all) {
521                 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
522                          "Domain Name", "DNS Domain", "Trust Type",
523                          "Transitive", "In", "Out");
524         }
525
526         for (i=0; i<num_domains; i++) {
527                 if (print_all) {
528                         d_printf("%-16s", domain_list[i].short_name);
529                 } else {
530                         d_printf("%s", domain_list[i].short_name);
531                         d_printf("\n");
532                         continue;
533                 }
534
535                 d_printf("%-24s", domain_list[i].dns_name);
536
537                 switch(domain_list[i].trust_type) {
538                 case WBC_DOMINFO_TRUSTTYPE_NONE:
539                         d_printf("None        ");
540                         break;
541                 case WBC_DOMINFO_TRUSTTYPE_FOREST:
542                         d_printf("Forest      ");
543                         break;
544                 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
545                         d_printf("External    ");
546                         break;
547                 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
548                         d_printf("In-Forest   ");
549                         break;
550                 }
551
552                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
553                         d_printf("Yes         ");
554                 } else {
555                         d_printf("No          ");
556                 }
557
558                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
559                         d_printf("Yes  ");
560                 } else {
561                         d_printf("No   ");
562                 }
563
564                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
565                         d_printf("Yes  ");
566                 } else {
567                         d_printf("No   ");
568                 }
569
570                 d_printf("\n");
571         }
572
573         wbcFreeMemory(domain_list);
574
575         return true;
576 }
577
578 /* List own domain */
579
580 static bool wbinfo_list_own_domain(void)
581 {
582         d_printf("%s\n", get_winbind_domain());
583
584         return true;
585 }
586
587 /* show sequence numbers */
588 static bool wbinfo_show_sequence(const char *domain)
589 {
590         d_printf("This command has been deprecated.  Please use the "
591                  "--online-status option instead.\n");
592         return false;
593 }
594
595 /* show sequence numbers */
596 static bool wbinfo_show_onlinestatus(const char *domain)
597 {
598         struct wbcDomainInfo *domain_list = NULL;
599         size_t num_domains;
600         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
601         int i;
602
603         wbc_status = wbcListTrusts(&domain_list, &num_domains);
604         if (!WBC_ERROR_IS_OK(wbc_status)) {
605                 d_fprintf(stderr, "failed to call wbcListTrusts: %s\n",
606                           wbcErrorString(wbc_status));
607                 return false;
608         }
609
610         for (i=0; i<num_domains; i++) {
611                 bool is_offline;
612
613                 if (domain) {
614                         if (!strequal(domain_list[i].short_name, domain)) {
615                                 continue;
616                         }
617                 }
618
619                 is_offline = (domain_list[i].domain_flags &
620                               WBC_DOMINFO_DOMAIN_OFFLINE);
621
622                 d_printf("%s : %s\n",
623                          domain_list[i].short_name,
624                          is_offline ? "offline" : "online" );
625         }
626
627         wbcFreeMemory(domain_list);
628
629         return true;
630 }
631
632
633 /* Show domain info */
634
635 static bool wbinfo_domain_info(const char *domain)
636 {
637         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
638         struct wbcDomainInfo *dinfo = NULL;
639         char sid_str[WBC_SID_STRING_BUFLEN];
640
641         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
642                 domain = get_winbind_domain();
643         }
644
645         /* Send request */
646
647         wbc_status = wbcDomainInfo(domain, &dinfo);
648         if (!WBC_ERROR_IS_OK(wbc_status)) {
649                 d_fprintf(stderr, "failed to call wbcDomainInfo: %s\n",
650                           wbcErrorString(wbc_status));
651                 return false;
652         }
653
654         wbcSidToStringBuf(&dinfo->sid, sid_str, sizeof(sid_str));
655
656         /* Display response */
657
658         d_printf("Name              : %s\n", dinfo->short_name);
659         d_printf("Alt_Name          : %s\n", dinfo->dns_name);
660
661         d_printf("SID               : %s\n", sid_str);
662
663         d_printf("Active Directory  : %s\n",
664                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
665         d_printf("Native            : %s\n",
666                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ?
667                  "Yes" : "No");
668
669         d_printf("Primary           : %s\n",
670                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ?
671                  "Yes" : "No");
672
673         wbcFreeMemory(dinfo);
674
675         return true;
676 }
677
678 /* Get a foreign DC's name */
679 static bool wbinfo_getdcname(const char *domain_name)
680 {
681         struct winbindd_request request;
682         struct winbindd_response response;
683
684         ZERO_STRUCT(request);
685         ZERO_STRUCT(response);
686
687         fstrcpy(request.domain_name, domain_name);
688
689         /* Send request */
690
691         if (winbindd_request_response(WINBINDD_GETDCNAME, &request,
692                                       &response) != NSS_STATUS_SUCCESS) {
693                 d_fprintf(stderr, "Could not get dc name for %s\n",domain_name);
694                 return false;
695         }
696
697         /* Display response */
698
699         d_printf("%s\n", response.data.dc_name);
700
701         return true;
702 }
703
704 /* Find a DC */
705 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
706 {
707         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
708         struct wbcDomainControllerInfoEx *dc_info;
709         char *str = NULL;
710
711         wbc_status = wbcLookupDomainControllerEx(domain_name, NULL, NULL,
712                                                  flags | DS_DIRECTORY_SERVICE_REQUIRED,
713                                                  &dc_info);
714         if (!WBC_ERROR_IS_OK(wbc_status)) {
715                 printf("Could not find dc for %s\n", domain_name);
716                 return false;
717         }
718
719         wbcGuidToString(dc_info->domain_guid, &str);
720
721         d_printf("%s\n", dc_info->dc_unc);
722         d_printf("%s\n", dc_info->dc_address);
723         d_printf("%d\n", dc_info->dc_address_type);
724         d_printf("%s\n", str);
725         d_printf("%s\n", dc_info->domain_name);
726         d_printf("%s\n", dc_info->forest_name);
727         d_printf("0x%08x\n", dc_info->dc_flags);
728         d_printf("%s\n", dc_info->dc_site_name);
729         d_printf("%s\n", dc_info->client_site_name);
730
731         return true;
732 }
733
734 /* Check trust account password */
735
736 static bool wbinfo_check_secret(const char *domain)
737 {
738         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
739         struct wbcAuthErrorInfo *error = NULL;
740         const char *domain_name;
741
742         if (domain) {
743                 domain_name = domain;
744         } else {
745                 domain_name = get_winbind_domain();
746         }
747
748         wbc_status = wbcCheckTrustCredentials(domain_name, &error);
749
750         d_printf("checking the trust secret for domain %s via RPC calls %s\n",
751                 domain_name,
752                 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
753
754         if (wbc_status == WBC_ERR_AUTH_ERROR) {
755                 d_fprintf(stderr, "error code was %s (0x%x)\n",
756                           error->nt_string, error->nt_status);
757                 wbcFreeMemory(error);
758         }
759         if (!WBC_ERROR_IS_OK(wbc_status)) {
760                 d_fprintf(stderr, "failed to call wbcCheckTrustCredentials: "
761                           "%s\n", wbcErrorString(wbc_status));
762                 return false;
763         }
764
765         return true;
766 }
767
768 /* Find the currently connected DCs */
769
770 static bool wbinfo_dc_info(const char *domain_name)
771 {
772         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
773         size_t i, num_dcs;
774         const char **dc_names, **dc_ips;
775
776         wbc_status = wbcDcInfo(domain_name, &num_dcs,
777                                &dc_names, &dc_ips);
778         if (!WBC_ERROR_IS_OK(wbc_status)) {
779                 printf("Could not find dc info %s\n",
780                        domain_name ? domain_name : "our domain");
781                 return false;
782         }
783
784         for (i=0; i<num_dcs; i++) {
785                 printf("%s (%s)\n", dc_names[i], dc_ips[i]);
786         }
787         wbcFreeMemory(dc_names);
788         wbcFreeMemory(dc_ips);
789
790         return true;
791 }
792
793 /* Change trust account password */
794
795 static bool wbinfo_change_secret(const char *domain)
796 {
797         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
798         struct wbcAuthErrorInfo *error = NULL;
799         const char *domain_name;
800
801         if (domain) {
802                 domain_name = domain;
803         } else {
804                 domain_name = get_winbind_domain();
805         }
806
807         wbc_status = wbcChangeTrustCredentials(domain_name, &error);
808
809         d_printf("changing the trust secret for domain %s via RPC calls %s\n",
810                 domain_name,
811                 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
812
813         if (wbc_status == WBC_ERR_AUTH_ERROR) {
814                 d_fprintf(stderr, "error code was %s (0x%x)\n",
815                           error->nt_string, error->nt_status);
816                 wbcFreeMemory(error);
817         }
818         if (!WBC_ERROR_IS_OK(wbc_status)) {
819                 d_fprintf(stderr, "failed to call wbcChangeTrustCredentials: "
820                           "%s\n", wbcErrorString(wbc_status));
821                 return false;
822         }
823
824         return true;
825 }
826
827 /* Check DC connection */
828
829 static bool wbinfo_ping_dc(void)
830 {
831         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
832         struct wbcAuthErrorInfo *error = NULL;
833
834         wbc_status = wbcPingDc(NULL, &error);
835
836         d_printf("checking the NETLOGON dc connection %s\n",
837                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
838
839         if (wbc_status == WBC_ERR_AUTH_ERROR) {
840                 d_fprintf(stderr, "error code was %s (0x%x)\n",
841                           error->nt_string, error->nt_status);
842                 wbcFreeMemory(error);
843         }
844         if (!WBC_ERROR_IS_OK(wbc_status)) {
845                 d_fprintf(stderr, "failed to call wbcPingDc: %s\n",
846                           wbcErrorString(wbc_status));
847                 return false;
848         }
849
850         return true;
851 }
852
853 /* Convert uid to sid */
854
855 static bool wbinfo_uid_to_sid(uid_t uid)
856 {
857         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
858         struct wbcDomainSid sid;
859         char sid_str[WBC_SID_STRING_BUFLEN];
860
861         /* Send request */
862
863         wbc_status = wbcUidToSid(uid, &sid);
864         if (!WBC_ERROR_IS_OK(wbc_status)) {
865                 d_fprintf(stderr, "failed to call wbcUidToSid: %s\n",
866                           wbcErrorString(wbc_status));
867                 return false;
868         }
869
870         wbcSidToStringBuf(&sid, sid_str, sizeof(sid_str));
871
872         /* Display response */
873
874         d_printf("%s\n", sid_str);
875
876         return true;
877 }
878
879 /* Convert gid to sid */
880
881 static bool wbinfo_gid_to_sid(gid_t gid)
882 {
883         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
884         struct wbcDomainSid sid;
885         char sid_str[WBC_SID_STRING_BUFLEN];
886
887         /* Send request */
888
889         wbc_status = wbcGidToSid(gid, &sid);
890         if (!WBC_ERROR_IS_OK(wbc_status)) {
891                 d_fprintf(stderr, "failed to call wbcGidToSid: %s\n",
892                           wbcErrorString(wbc_status));
893                 return false;
894         }
895
896         wbcSidToStringBuf(&sid, sid_str, sizeof(sid_str));
897
898         /* Display response */
899
900         d_printf("%s\n", sid_str);
901
902         return true;
903 }
904
905 /* Convert sid to uid */
906
907 static bool wbinfo_sid_to_uid(const char *sid_str)
908 {
909         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
910         struct wbcDomainSid sid;
911         uid_t uid;
912
913         /* Send request */
914
915         wbc_status = wbcStringToSid(sid_str, &sid);
916         if (!WBC_ERROR_IS_OK(wbc_status)) {
917                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
918                           wbcErrorString(wbc_status));
919                 return false;
920         }
921
922         wbc_status = wbcSidToUid(&sid, &uid);
923         if (!WBC_ERROR_IS_OK(wbc_status)) {
924                 d_fprintf(stderr, "failed to call wbcSidToUid: %s\n",
925                           wbcErrorString(wbc_status));
926                 return false;
927         }
928
929         /* Display response */
930
931         d_printf("%d\n", (int)uid);
932
933         return true;
934 }
935
936 static bool wbinfo_sid_to_gid(const char *sid_str)
937 {
938         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
939         struct wbcDomainSid sid;
940         gid_t gid;
941
942         /* Send request */
943
944         wbc_status = wbcStringToSid(sid_str, &sid);
945         if (!WBC_ERROR_IS_OK(wbc_status)) {
946                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
947                           wbcErrorString(wbc_status));
948                 return false;
949         }
950
951         wbc_status = wbcSidToGid(&sid, &gid);
952         if (!WBC_ERROR_IS_OK(wbc_status)) {
953                 d_fprintf(stderr, "failed to call wbcSidToGid: %s\n",
954                           wbcErrorString(wbc_status));
955                 return false;
956         }
957
958         /* Display response */
959
960         d_printf("%d\n", (int)gid);
961
962         return true;
963 }
964
965 static bool wbinfo_sids_to_unix_ids(const char *arg)
966 {
967         char sidstr[WBC_SID_STRING_BUFLEN];
968         struct wbcDomainSid *sids;
969         struct wbcUnixId *unix_ids;
970         int i, num_sids;
971         const char *p;
972         wbcErr wbc_status;
973
974
975         num_sids = 0;
976         sids = NULL;
977         p = arg;
978
979         while (next_token(&p, sidstr, LIST_SEP, sizeof(sidstr))) {
980                 sids = talloc_realloc(talloc_tos(), sids, struct wbcDomainSid,
981                                       num_sids+1);
982                 if (sids == NULL) {
983                         d_fprintf(stderr, "talloc failed\n");
984                         return false;
985                 }
986                 wbc_status = wbcStringToSid(sidstr, &sids[num_sids]);
987                 if (!WBC_ERROR_IS_OK(wbc_status)) {
988                         d_fprintf(stderr, "wbcSidToString(%s) failed: %s\n",
989                                   sidstr, wbcErrorString(wbc_status));
990                         TALLOC_FREE(sids);
991                         return false;
992                 }
993                 num_sids += 1;
994         }
995
996         unix_ids = talloc_array(talloc_tos(), struct wbcUnixId, num_sids);
997         if (unix_ids == NULL) {
998                 TALLOC_FREE(sids);
999                 return false;
1000         }
1001
1002         wbc_status = wbcSidsToUnixIds(sids, num_sids, unix_ids);
1003         if (!WBC_ERROR_IS_OK(wbc_status)) {
1004                 d_fprintf(stderr, "wbcSidsToUnixIds failed: %s\n",
1005                           wbcErrorString(wbc_status));
1006                 TALLOC_FREE(sids);
1007                 return false;
1008         }
1009
1010         for (i=0; i<num_sids; i++) {
1011
1012                 wbcSidToStringBuf(&sids[i], sidstr, sizeof(sidstr));
1013
1014                 switch(unix_ids[i].type) {
1015                 case WBC_ID_TYPE_UID:
1016                         d_printf("%s -> uid %d\n", sidstr, unix_ids[i].id.uid);
1017                         break;
1018                 case WBC_ID_TYPE_GID:
1019                         d_printf("%s -> gid %d\n", sidstr, unix_ids[i].id.gid);
1020                         break;
1021                 case WBC_ID_TYPE_BOTH:
1022                         d_printf("%s -> uid/gid %d\n", sidstr, unix_ids[i].id.uid);
1023                         break;
1024                 default:
1025                         d_printf("%s -> unmapped\n", sidstr);
1026                         break;
1027                 }
1028         }
1029
1030         TALLOC_FREE(sids);
1031         TALLOC_FREE(unix_ids);
1032
1033         return true;
1034 }
1035
1036 static bool wbinfo_allocate_uid(void)
1037 {
1038         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1039         uid_t uid;
1040
1041         /* Send request */
1042
1043         wbc_status = wbcAllocateUid(&uid);
1044         if (!WBC_ERROR_IS_OK(wbc_status)) {
1045                 d_fprintf(stderr, "failed to call wbcAllocateUid: %s\n",
1046                           wbcErrorString(wbc_status));
1047                 return false;
1048         }
1049
1050         /* Display response */
1051
1052         d_printf("New uid: %u\n", (unsigned int)uid);
1053
1054         return true;
1055 }
1056
1057 static bool wbinfo_allocate_gid(void)
1058 {
1059         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1060         gid_t gid;
1061
1062         /* Send request */
1063
1064         wbc_status = wbcAllocateGid(&gid);
1065         if (!WBC_ERROR_IS_OK(wbc_status)) {
1066                 d_fprintf(stderr, "failed to call wbcAllocateGid: %s\n",
1067                           wbcErrorString(wbc_status));
1068                 return false;
1069         }
1070
1071         /* Display response */
1072
1073         d_printf("New gid: %u\n", (unsigned int)gid);
1074
1075         return true;
1076 }
1077
1078 static bool wbinfo_set_uid_mapping(uid_t uid, const char *sid_str)
1079 {
1080         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1081         struct wbcDomainSid sid;
1082
1083         /* Send request */
1084
1085         wbc_status = wbcStringToSid(sid_str, &sid);
1086         if (!WBC_ERROR_IS_OK(wbc_status)) {
1087                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1088                           wbcErrorString(wbc_status));
1089                 return false;
1090         }
1091
1092         wbc_status = wbcSetUidMapping(uid, &sid);
1093         if (!WBC_ERROR_IS_OK(wbc_status)) {
1094                 d_fprintf(stderr, "failed to call wbcSetUidMapping: %s\n",
1095                           wbcErrorString(wbc_status));
1096                 return false;
1097         }
1098
1099         /* Display response */
1100
1101         d_printf("uid %u now mapped to sid %s\n",
1102                 (unsigned int)uid, sid_str);
1103
1104         return true;
1105 }
1106
1107 static bool wbinfo_set_gid_mapping(gid_t gid, const char *sid_str)
1108 {
1109         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1110         struct wbcDomainSid sid;
1111
1112         /* Send request */
1113
1114         wbc_status = wbcStringToSid(sid_str, &sid);
1115         if (!WBC_ERROR_IS_OK(wbc_status)) {
1116                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1117                           wbcErrorString(wbc_status));
1118                 return false;
1119         }
1120
1121         wbc_status = wbcSetGidMapping(gid, &sid);
1122         if (!WBC_ERROR_IS_OK(wbc_status)) {
1123                 d_fprintf(stderr, "failed to call wbcSetGidMapping: %s\n",
1124                           wbcErrorString(wbc_status));
1125                 return false;
1126         }
1127
1128         /* Display response */
1129
1130         d_printf("gid %u now mapped to sid %s\n",
1131                 (unsigned int)gid, sid_str);
1132
1133         return true;
1134 }
1135
1136 static bool wbinfo_remove_uid_mapping(uid_t uid, const char *sid_str)
1137 {
1138         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1139         struct wbcDomainSid sid;
1140
1141         /* Send request */
1142
1143         wbc_status = wbcStringToSid(sid_str, &sid);
1144         if (!WBC_ERROR_IS_OK(wbc_status)) {
1145                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1146                           wbcErrorString(wbc_status));
1147                 return false;
1148         }
1149
1150         wbc_status = wbcRemoveUidMapping(uid, &sid);
1151         if (!WBC_ERROR_IS_OK(wbc_status)) {
1152                 d_fprintf(stderr, "failed to call wbcRemoveUidMapping: %s\n",
1153                           wbcErrorString(wbc_status));
1154                 return false;
1155         }
1156
1157         /* Display response */
1158
1159         d_printf("Removed uid %u to sid %s mapping\n",
1160                 (unsigned int)uid, sid_str);
1161
1162         return true;
1163 }
1164
1165 static bool wbinfo_remove_gid_mapping(gid_t gid, const char *sid_str)
1166 {
1167         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1168         struct wbcDomainSid sid;
1169
1170         /* Send request */
1171
1172         wbc_status = wbcStringToSid(sid_str, &sid);
1173         if (!WBC_ERROR_IS_OK(wbc_status)) {
1174                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1175                           wbcErrorString(wbc_status));
1176                 return false;
1177         }
1178
1179         wbc_status = wbcRemoveGidMapping(gid, &sid);
1180         if (!WBC_ERROR_IS_OK(wbc_status)) {
1181                 d_fprintf(stderr, "failed to call wbcRemoveGidMapping: %s\n",
1182                           wbcErrorString(wbc_status));
1183                 return false;
1184         }
1185
1186         /* Display response */
1187
1188         d_printf("Removed gid %u to sid %s mapping\n",
1189                 (unsigned int)gid, sid_str);
1190
1191         return true;
1192 }
1193
1194 /* Convert sid to string */
1195
1196 static bool wbinfo_lookupsid(const char *sid_str)
1197 {
1198         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1199         struct wbcDomainSid sid;
1200         char *domain;
1201         char *name;
1202         enum wbcSidType type;
1203
1204         /* Send off request */
1205
1206         wbc_status = wbcStringToSid(sid_str, &sid);
1207         if (!WBC_ERROR_IS_OK(wbc_status)) {
1208                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1209                           wbcErrorString(wbc_status));
1210                 return false;
1211         }
1212
1213         wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
1214         if (!WBC_ERROR_IS_OK(wbc_status)) {
1215                 d_fprintf(stderr, "failed to call wbcLookupSid: %s\n",
1216                           wbcErrorString(wbc_status));
1217                 return false;
1218         }
1219
1220         /* Display response */
1221
1222         d_printf("%s%c%s %d\n",
1223                  domain, winbind_separator(), name, type);
1224
1225         return true;
1226 }
1227
1228 /* Convert sid to fullname */
1229
1230 static bool wbinfo_lookupsid_fullname(const char *sid_str)
1231 {
1232         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1233         struct wbcDomainSid sid;
1234         char *domain;
1235         char *name;
1236         enum wbcSidType type;
1237
1238         /* Send off request */
1239
1240         wbc_status = wbcStringToSid(sid_str, &sid);
1241         if (!WBC_ERROR_IS_OK(wbc_status)) {
1242                 d_fprintf(stderr, "failed to call wbcStringToSid: %s\n",
1243                           wbcErrorString(wbc_status));
1244                 return false;
1245         }
1246
1247         wbc_status = wbcGetDisplayName(&sid, &domain, &name, &type);
1248         if (!WBC_ERROR_IS_OK(wbc_status)) {
1249                 d_fprintf(stderr, "failed to call wbcGetDisplayName: %s\n",
1250                           wbcErrorString(wbc_status));
1251                 return false;
1252         }
1253
1254         /* Display response */
1255
1256         d_printf("%s%c%s %d\n",
1257                  domain, winbind_separator(), name, type);
1258
1259         return true;
1260 }
1261
1262 /* Lookup a list of RIDs */
1263
1264 static bool wbinfo_lookuprids(const char *domain, const char *arg)
1265 {
1266         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1267         struct wbcDomainInfo *dinfo = NULL;
1268         char *domain_name = NULL;
1269         const char **names = NULL;
1270         enum wbcSidType *types = NULL;
1271         size_t i;
1272         int num_rids;
1273         uint32_t *rids = NULL;
1274         const char *p;
1275         char *ridstr;
1276         TALLOC_CTX *mem_ctx = NULL;
1277         bool ret = false;
1278
1279         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
1280                 domain = get_winbind_domain();
1281         }
1282
1283         /* Send request */
1284
1285         wbc_status = wbcDomainInfo(domain, &dinfo);
1286         if (!WBC_ERROR_IS_OK(wbc_status)) {
1287                 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
1288                          wbcErrorString(wbc_status));
1289                 goto done;
1290         }
1291
1292         mem_ctx = talloc_new(NULL);
1293         if (mem_ctx == NULL) {
1294                 d_printf("talloc_new failed\n");
1295                 goto done;
1296         }
1297
1298         num_rids = 0;
1299         rids = NULL;
1300         p = arg;
1301
1302         while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
1303                 uint32_t rid = strtoul(ridstr, NULL, 10);
1304                 rids = talloc_realloc(mem_ctx, rids, uint32_t, num_rids + 1);
1305                 if (rids == NULL) {
1306                         d_printf("talloc_realloc failed\n");
1307                 }
1308                 rids[num_rids] = rid;
1309                 num_rids += 1;
1310         }
1311
1312         if (rids == NULL) {
1313                 d_printf("no rids\n");
1314                 goto done;
1315         }
1316
1317         wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
1318                                    (const char **)&domain_name, &names, &types);
1319         if (!WBC_ERROR_IS_OK(wbc_status)) {
1320                 d_printf("winbind_lookup_rids failed: %s\n",
1321                          wbcErrorString(wbc_status));
1322                 goto done;
1323         }
1324
1325         d_printf("Domain: %s\n", domain_name);
1326
1327         for (i=0; i<num_rids; i++) {
1328                 d_printf("%8d: %s (%s)\n", rids[i], names[i],
1329                          wbcSidTypeString(types[i]));
1330         }
1331
1332         ret = true;
1333 done:
1334         wbcFreeMemory(dinfo);
1335         wbcFreeMemory(domain_name);
1336         wbcFreeMemory(names);
1337         wbcFreeMemory(types);
1338         TALLOC_FREE(mem_ctx);
1339         return ret;
1340 }
1341
1342 static bool wbinfo_lookup_sids(const char *arg)
1343 {
1344         char sidstr[WBC_SID_STRING_BUFLEN];
1345         struct wbcDomainSid *sids;
1346         struct wbcDomainInfo *domains;
1347         struct wbcTranslatedName *names;
1348         int num_domains;
1349         int i, num_sids;
1350         const char *p;
1351         wbcErr wbc_status;
1352
1353
1354         num_sids = 0;
1355         sids = NULL;
1356         p = arg;
1357
1358         while (next_token(&p, sidstr, LIST_SEP, sizeof(sidstr))) {
1359                 sids = talloc_realloc(talloc_tos(), sids, struct wbcDomainSid,
1360                                       num_sids+1);
1361                 if (sids == NULL) {
1362                         d_fprintf(stderr, "talloc failed\n");
1363                         return false;
1364                 }
1365                 wbc_status = wbcStringToSid(sidstr, &sids[num_sids]);
1366                 if (!WBC_ERROR_IS_OK(wbc_status)) {
1367                         d_fprintf(stderr, "wbcSidToString(%s) failed: %s\n",
1368                                   sidstr, wbcErrorString(wbc_status));
1369                         TALLOC_FREE(sids);
1370                         return false;
1371                 }
1372                 num_sids += 1;
1373         }
1374
1375         wbc_status = wbcLookupSids(sids, num_sids, &domains, &num_domains,
1376                                    &names);
1377         if (!WBC_ERROR_IS_OK(wbc_status)) {
1378                 d_fprintf(stderr, "wbcLookupSids failed: %s\n",
1379                           wbcErrorString(wbc_status));
1380                 TALLOC_FREE(sids);
1381                 return false;
1382         }
1383
1384         for (i=0; i<num_sids; i++) {
1385                 wbcSidToStringBuf(&sids[i], sidstr, sizeof(sidstr));
1386
1387                 d_printf("%s -> %s\\%s %d\n", sidstr,
1388                          domains[names[i].domain_index].short_name,
1389                          names[i].name, names[i].type);
1390         }
1391         return true;
1392 }
1393
1394 /* Convert string to sid */
1395
1396 static bool wbinfo_lookupname(const char *full_name)
1397 {
1398         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1399         struct wbcDomainSid sid;
1400         char sid_str[WBC_SID_STRING_BUFLEN];
1401         enum wbcSidType type;
1402         fstring domain_name;
1403         fstring account_name;
1404
1405         /* Send off request */
1406
1407         parse_wbinfo_domain_user(full_name, domain_name,
1408                                  account_name);
1409
1410         wbc_status = wbcLookupName(domain_name, account_name,
1411                                    &sid, &type);
1412         if (!WBC_ERROR_IS_OK(wbc_status)) {
1413                 d_fprintf(stderr, "failed to call wbcLookupName: %s\n",
1414                           wbcErrorString(wbc_status));
1415                 return false;
1416         }
1417
1418         wbcSidToStringBuf(&sid, sid_str, sizeof(sid_str));
1419
1420         /* Display response */
1421
1422         d_printf("%s %s (%d)\n", sid_str, wbcSidTypeString(type), type);
1423
1424         return true;
1425 }
1426
1427 static char *wbinfo_prompt_pass(TALLOC_CTX *mem_ctx,
1428                                 const char *prefix,
1429                                 const char *username)
1430 {
1431         char *prompt;
1432         const char *ret = NULL;
1433
1434         prompt = talloc_asprintf(mem_ctx, "Enter %s's ", username);
1435         if (!prompt) {
1436                 return NULL;
1437         }
1438         if (prefix) {
1439                 prompt = talloc_asprintf_append(prompt, "%s ", prefix);
1440                 if (!prompt) {
1441                         return NULL;
1442                 }
1443         }
1444         prompt = talloc_asprintf_append(prompt, "password: ");
1445         if (!prompt) {
1446                 return NULL;
1447         }
1448
1449         ret = getpass(prompt);
1450         TALLOC_FREE(prompt);
1451
1452         return talloc_strdup(mem_ctx, ret);
1453 }
1454
1455 /* Authenticate a user with a plaintext password */
1456
1457 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32_t flags)
1458 {
1459         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1460         char *s = NULL;
1461         char *p = NULL;
1462         char *password = NULL;
1463         char *name = NULL;
1464         char *local_cctype = NULL;
1465         uid_t uid;
1466         struct wbcLogonUserParams params;
1467         struct wbcLogonUserInfo *info;
1468         struct wbcAuthErrorInfo *error;
1469         struct wbcUserPasswordPolicyInfo *policy;
1470         TALLOC_CTX *frame = talloc_tos();
1471
1472         if ((s = talloc_strdup(frame, username)) == NULL) {
1473                 return false;
1474         }
1475
1476         if ((p = strchr(s, '%')) != NULL) {
1477                 *p = 0;
1478                 p++;
1479                 password = talloc_strdup(frame, p);
1480         } else {
1481                 password = wbinfo_prompt_pass(frame, NULL, username);
1482         }
1483
1484         local_cctype = talloc_strdup(frame, cctype);
1485
1486         name = s;
1487
1488         uid = geteuid();
1489
1490         params.username = name;
1491         params.password = password;
1492         params.num_blobs = 0;
1493         params.blobs = NULL;
1494
1495         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1496                                      &params.blobs,
1497                                      "flags",
1498                                      0,
1499                                      (uint8_t *)&flags,
1500                                      sizeof(flags));
1501         if (!WBC_ERROR_IS_OK(wbc_status)) {
1502                 d_fprintf(stderr, "failed to call wbcAddNamedBlob: %s\n",
1503                           wbcErrorString(wbc_status));
1504                 goto done;
1505         }
1506
1507         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1508                                      &params.blobs,
1509                                      "user_uid",
1510                                      0,
1511                                      (uint8_t *)&uid,
1512                                      sizeof(uid));
1513         if (!WBC_ERROR_IS_OK(wbc_status)) {
1514                 d_fprintf(stderr, "failed to call wbcAddNamedBlob: %s\n",
1515                           wbcErrorString(wbc_status));
1516                 goto done;
1517         }
1518
1519         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1520                                      &params.blobs,
1521                                      "krb5_cc_type",
1522                                      0,
1523                                      (uint8_t *)local_cctype,
1524                                      strlen(cctype)+1);
1525         if (!WBC_ERROR_IS_OK(wbc_status)) {
1526                 d_fprintf(stderr, "failed to call wbcAddNamedBlob: %s\n",
1527                           wbcErrorString(wbc_status));
1528                 goto done;
1529         }
1530
1531         wbc_status = wbcLogonUser(&params, &info, &error, &policy);
1532
1533         d_printf("plaintext kerberos password authentication for [%s] %s "
1534                  "(requesting cctype: %s)\n",
1535                  username, WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed",
1536                  cctype);
1537
1538         if (error) {
1539                 d_fprintf(stderr,
1540                          "error code was %s (0x%x)\nerror message was: %s\n",
1541                          error->nt_string,
1542                          error->nt_status,
1543                          error->display_string);
1544         }
1545
1546         if (WBC_ERROR_IS_OK(wbc_status)) {
1547                 if (flags & WBFLAG_PAM_INFO3_TEXT) {
1548                         if (info && info->info && info->info->user_flags &
1549                             NETLOGON_CACHED_ACCOUNT) {
1550                                 d_printf("user_flgs: "
1551                                          "NETLOGON_CACHED_ACCOUNT\n");
1552                         }
1553                 }
1554
1555                 if (info) {
1556                         int i;
1557                         for (i=0; i < info->num_blobs; i++) {
1558                                 if (strequal(info->blobs[i].name,
1559                                              "krb5ccname")) {
1560                                         d_printf("credentials were put "
1561                                                  "in: %s\n",
1562                                                 (const char *)
1563                                                       info->blobs[i].blob.data);
1564                                         break;
1565                                 }
1566                         }
1567                 } else {
1568                         d_printf("no credentials cached\n");
1569                 }
1570         }
1571  done:
1572
1573         wbcFreeMemory(params.blobs);
1574
1575         return WBC_ERROR_IS_OK(wbc_status);
1576 }
1577
1578 /* Authenticate a user with a plaintext password */
1579
1580 static bool wbinfo_auth(char *username)
1581 {
1582         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1583         char *s = NULL;
1584         char *p = NULL;
1585         char *password = NULL;
1586         char *name = NULL;
1587         TALLOC_CTX *frame = talloc_tos();
1588
1589         if ((s = talloc_strdup(frame, username)) == NULL) {
1590                 return false;
1591         }
1592
1593         if ((p = strchr(s, '%')) != NULL) {
1594                 *p = 0;
1595                 p++;
1596                 password = talloc_strdup(frame, p);
1597         } else {
1598                 password = wbinfo_prompt_pass(frame, NULL, username);
1599         }
1600
1601         name = s;
1602
1603         wbc_status = wbcAuthenticateUser(name, password);
1604
1605         d_printf("plaintext password authentication %s\n",
1606                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1607
1608 #if 0
1609         if (response.data.auth.nt_status)
1610                 d_fprintf(stderr,
1611                          "error code was %s (0x%x)\nerror message was: %s\n",
1612                          response.data.auth.nt_status_string,
1613                          response.data.auth.nt_status,
1614                          response.data.auth.error_string);
1615 #endif
1616
1617         return WBC_ERROR_IS_OK(wbc_status);
1618 }
1619
1620 /* Authenticate a user with a challenge/response */
1621
1622 static bool wbinfo_auth_crap(char *username, bool use_ntlmv2, bool use_lanman)
1623 {
1624         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1625         struct wbcAuthUserParams params;
1626         struct wbcAuthUserInfo *info = NULL;
1627         struct wbcAuthErrorInfo *err = NULL;
1628         DATA_BLOB lm = data_blob_null;
1629         DATA_BLOB nt = data_blob_null;
1630         fstring name_user;
1631         fstring name_domain;
1632         char *pass;
1633         char *p;
1634         TALLOC_CTX *frame = talloc_tos();
1635
1636         p = strchr(username, '%');
1637
1638         if (p) {
1639                 *p = 0;
1640                 pass = talloc_strdup(frame, p + 1);
1641         } else {
1642                 pass = wbinfo_prompt_pass(frame, NULL, username);
1643         }
1644
1645         parse_wbinfo_domain_user(username, name_domain, name_user);
1646
1647         params.account_name     = name_user;
1648         params.domain_name      = name_domain;
1649         params.workstation_name = NULL;
1650
1651         params.flags            = 0;
1652         params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1653                                   WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1654
1655         params.level            = WBC_AUTH_USER_LEVEL_RESPONSE;
1656
1657         generate_random_buffer(params.password.response.challenge, 8);
1658
1659         if (use_ntlmv2) {
1660                 DATA_BLOB server_chal;
1661                 DATA_BLOB names_blob;
1662
1663                 server_chal = data_blob(params.password.response.challenge, 8);
1664
1665                 /* Pretend this is a login to 'us', for blob purposes */
1666                 names_blob = NTLMv2_generate_names_blob(NULL,
1667                                                 get_winbind_netbios_name(),
1668                                                 get_winbind_domain());
1669
1670                 if (!SMBNTLMv2encrypt(NULL, name_user, name_domain, pass,
1671                                       &server_chal,
1672                                       &names_blob,
1673                                       &lm, &nt, NULL, NULL)) {
1674                         data_blob_free(&names_blob);
1675                         data_blob_free(&server_chal);
1676                         TALLOC_FREE(pass);
1677                         return false;
1678                 }
1679                 data_blob_free(&names_blob);
1680                 data_blob_free(&server_chal);
1681
1682         } else {
1683                 if (use_lanman) {
1684                         bool ok;
1685                         lm = data_blob(NULL, 24);
1686                         ok = SMBencrypt(pass,
1687                                         params.password.response.challenge,
1688                                         lm.data);
1689                         if (!ok) {
1690                                 data_blob_free(&lm);
1691                         }
1692                 }
1693                 nt = data_blob(NULL, 24);
1694                 SMBNTencrypt(pass, params.password.response.challenge,
1695                              nt.data);
1696         }
1697
1698         params.password.response.nt_length      = nt.length;
1699         params.password.response.nt_data        = nt.data;
1700         params.password.response.lm_length      = lm.length;
1701         params.password.response.lm_data        = lm.data;
1702
1703         wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1704
1705         /* Display response */
1706
1707         d_printf("challenge/response password authentication %s\n",
1708                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1709
1710         if (wbc_status == WBC_ERR_AUTH_ERROR) {
1711                 d_fprintf(stderr,
1712                          "error code was %s (0x%x)\nerror message was: %s\n",
1713                          err->nt_string,
1714                          err->nt_status,
1715                          err->display_string);
1716                 wbcFreeMemory(err);
1717         } else if (WBC_ERROR_IS_OK(wbc_status)) {
1718                 wbcFreeMemory(info);
1719         }
1720
1721         data_blob_free(&nt);
1722         data_blob_free(&lm);
1723
1724         return WBC_ERROR_IS_OK(wbc_status);
1725 }
1726
1727 /* Authenticate a user with a plaintext password */
1728
1729 static bool wbinfo_pam_logon(char *username)
1730 {
1731         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1732         struct wbcLogonUserParams params;
1733         struct wbcAuthErrorInfo *error;
1734         char *s = NULL;
1735         char *p = NULL;
1736         TALLOC_CTX *frame = talloc_tos();
1737         uint32_t flags;
1738         uint32_t uid;
1739
1740         ZERO_STRUCT(params);
1741
1742         if ((s = talloc_strdup(frame, username)) == NULL) {
1743                 return false;
1744         }
1745
1746         if ((p = strchr(s, '%')) != NULL) {
1747                 *p = 0;
1748                 p++;
1749                 params.password = talloc_strdup(frame, p);
1750         } else {
1751                 params.password = wbinfo_prompt_pass(frame, NULL, username);
1752         }
1753         params.username = s;
1754
1755         flags = WBFLAG_PAM_CACHED_LOGIN;
1756
1757         wbc_status = wbcAddNamedBlob(&params.num_blobs, &params.blobs,
1758                                      "flags", 0,
1759                                      (uint8_t *)&flags, sizeof(flags));
1760         if (!WBC_ERROR_IS_OK(wbc_status)) {
1761                 d_printf("wbcAddNamedBlob failed: %s\n",
1762                          wbcErrorString(wbc_status));
1763                 return false;
1764         }
1765
1766         uid = getuid();
1767
1768         wbc_status = wbcAddNamedBlob(&params.num_blobs, &params.blobs,
1769                                      "user_uid", 0,
1770                                      (uint8_t *)&uid, sizeof(uid));
1771         if (!WBC_ERROR_IS_OK(wbc_status)) {
1772                 d_printf("wbcAddNamedBlob failed: %s\n",
1773                          wbcErrorString(wbc_status));
1774                 return false;
1775         }
1776
1777         wbc_status = wbcLogonUser(&params, NULL, &error, NULL);
1778
1779         wbcFreeMemory(params.blobs);
1780
1781         d_printf("plaintext password authentication %s\n",
1782                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1783
1784         if (!WBC_ERROR_IS_OK(wbc_status)) {
1785                 d_fprintf(stderr,
1786                           "error code was %s (0x%x)\nerror message was: %s\n",
1787                           error->nt_string,
1788                           (int)error->nt_status,
1789                           error->display_string);
1790                 wbcFreeMemory(error);
1791                 return false;
1792         }
1793         return true;
1794 }
1795
1796 /* Save creds with winbind */
1797
1798 static bool wbinfo_ccache_save(char *username)
1799 {
1800         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1801         char *s = NULL;
1802         char *p = NULL;
1803         char *password = NULL;
1804         char *name = NULL;
1805         TALLOC_CTX *frame = talloc_stackframe();
1806
1807         s = talloc_strdup(frame, username);
1808         if (s == NULL) {
1809                 return false;
1810         }
1811
1812         p = strchr(s, '%');
1813         if (p != NULL) {
1814                 *p = 0;
1815                 p++;
1816                 password = talloc_strdup(frame, p);
1817         } else {
1818                 password = wbinfo_prompt_pass(frame, NULL, username);
1819         }
1820
1821         name = s;
1822
1823         wbc_status = wbcCredentialSave(name, password);
1824
1825         d_printf("saving creds %s\n",
1826                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1827
1828         TALLOC_FREE(frame);
1829
1830         return WBC_ERROR_IS_OK(wbc_status);
1831 }
1832
1833 #ifdef WITH_FAKE_KASERVER
1834 /* Authenticate a user with a plaintext password and set a token */
1835
1836 static bool wbinfo_klog(char *username)
1837 {
1838         struct winbindd_request request;
1839         struct winbindd_response response;
1840         NSS_STATUS result;
1841         char *p;
1842
1843         /* Send off request */
1844
1845         ZERO_STRUCT(request);
1846         ZERO_STRUCT(response);
1847
1848         p = strchr(username, '%');
1849
1850         if (p) {
1851                 *p = 0;
1852                 fstrcpy(request.data.auth.user, username);
1853                 fstrcpy(request.data.auth.pass, p + 1);
1854                 *p = '%';
1855         } else {
1856                 fstrcpy(request.data.auth.user, username);
1857                 fstrcpy(request.data.auth.pass, getpass("Password: "));
1858         }
1859
1860         request.flags |= WBFLAG_PAM_AFS_TOKEN;
1861
1862         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request,
1863                                            &response);
1864
1865         /* Display response */
1866
1867         d_printf("plaintext password authentication %s\n",
1868                  (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1869
1870         if (response.data.auth.nt_status)
1871                 d_fprintf(stderr,
1872                          "error code was %s (0x%x)\nerror message was: %s\n",
1873                          response.data.auth.nt_status_string,
1874                          response.data.auth.nt_status,
1875                          response.data.auth.error_string);
1876
1877         if (result != NSS_STATUS_SUCCESS)
1878                 return false;
1879
1880         if (response.extra_data.data == NULL) {
1881                 d_fprintf(stderr, "Did not get token data\n");
1882                 return false;
1883         }
1884
1885         if (!afs_settoken_str((char *)response.extra_data.data)) {
1886                 d_fprintf(stderr, "Could not set token\n");
1887                 return false;
1888         }
1889
1890         d_printf("Successfully created AFS token\n");
1891         return true;
1892 }
1893 #else
1894 static bool wbinfo_klog(char *username)
1895 {
1896         d_fprintf(stderr, "No AFS support compiled in.\n");
1897         return false;
1898 }
1899 #endif
1900
1901 /* Print domain users */
1902
1903 static bool print_domain_users(const char *domain)
1904 {
1905         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1906         uint32_t i;
1907         uint32_t num_users = 0;
1908         const char **users = NULL;
1909
1910         /* Send request to winbind daemon */
1911
1912         /* '.' is the special sign for our own domain */
1913         if (domain && strcmp(domain, ".") == 0) {
1914                 domain = get_winbind_domain();
1915         }
1916
1917         wbc_status = wbcListUsers(domain, &num_users, &users);
1918         if (!WBC_ERROR_IS_OK(wbc_status)) {
1919                 return false;
1920         }
1921
1922         for (i=0; i < num_users; i++) {
1923                 d_printf("%s\n", users[i]);
1924         }
1925
1926         wbcFreeMemory(users);
1927
1928         return true;
1929 }
1930
1931 /* Print domain groups */
1932
1933 static bool print_domain_groups(const char *domain)
1934 {
1935         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1936         uint32_t i;
1937         uint32_t num_groups = 0;
1938         const char **groups = NULL;
1939
1940         /* Send request to winbind daemon */
1941
1942         /* '.' is the special sign for our own domain */
1943         if (domain && strcmp(domain, ".") == 0) {
1944                 domain = get_winbind_domain();
1945         }
1946
1947         wbc_status = wbcListGroups(domain, &num_groups, &groups);
1948         if (!WBC_ERROR_IS_OK(wbc_status)) {
1949                 d_fprintf(stderr, "failed to call wbcListGroups: %s\n",
1950                           wbcErrorString(wbc_status));
1951                 return false;
1952         }
1953
1954         for (i=0; i < num_groups; i++) {
1955                 d_printf("%s\n", groups[i]);
1956         }
1957
1958         wbcFreeMemory(groups);
1959
1960         return true;
1961 }
1962
1963 /* Set the authorised user for winbindd access in secrets.tdb */
1964
1965 static bool wbinfo_set_auth_user(char *username)
1966 {
1967         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1968                           "See 'net help setauthuser' for details.\n");
1969         return false;
1970 }
1971
1972 static void wbinfo_get_auth_user(void)
1973 {
1974         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1975                           "See 'net help getauthuser' for details.\n");
1976 }
1977
1978 static bool wbinfo_ping(void)
1979 {
1980         wbcErr wbc_status;
1981
1982         wbc_status = wbcPing();
1983
1984         /* Display response */
1985
1986         d_printf("Ping to winbindd %s\n",
1987                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1988
1989         return WBC_ERROR_IS_OK(wbc_status);
1990 }
1991
1992 static bool wbinfo_change_user_password(const char *username)
1993 {
1994         wbcErr wbc_status;
1995         char *old_password = NULL;
1996         char *new_password = NULL;
1997         TALLOC_CTX *frame = talloc_tos();
1998
1999         old_password = wbinfo_prompt_pass(frame, "old", username);
2000         new_password = wbinfo_prompt_pass(frame, "new", username);
2001
2002         wbc_status = wbcChangeUserPassword(username, old_password,new_password);
2003
2004         /* Display response */
2005
2006         d_printf("Password change for user %s %s\n", username,
2007                 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
2008
2009         return WBC_ERROR_IS_OK(wbc_status);
2010 }
2011
2012 /* Main program */
2013
2014 enum {
2015         OPT_SET_AUTH_USER = 1000,
2016         OPT_GET_AUTH_USER,
2017         OPT_DOMAIN_NAME,
2018         OPT_SEQUENCE,
2019         OPT_GETDCNAME,
2020         OPT_DSGETDCNAME,
2021         OPT_DC_INFO,
2022         OPT_USERDOMGROUPS,
2023         OPT_SIDALIASES,
2024         OPT_USERSIDS,
2025         OPT_LOOKUP_SIDS,
2026         OPT_ALLOCATE_UID,
2027         OPT_ALLOCATE_GID,
2028         OPT_SET_UID_MAPPING,
2029         OPT_SET_GID_MAPPING,
2030         OPT_REMOVE_UID_MAPPING,
2031         OPT_REMOVE_GID_MAPPING,
2032         OPT_SIDS_TO_XIDS,
2033         OPT_SEPARATOR,
2034         OPT_LIST_ALL_DOMAINS,
2035         OPT_LIST_OWN_DOMAIN,
2036         OPT_UID_INFO,
2037         OPT_USER_SIDINFO,
2038         OPT_GROUP_INFO,
2039         OPT_GID_INFO,
2040         OPT_VERBOSE,
2041         OPT_ONLINESTATUS,
2042         OPT_CHANGE_USER_PASSWORD,
2043         OPT_CCACHE_SAVE,
2044         OPT_SID_TO_FULLNAME,
2045         OPT_NTLMV2,
2046         OPT_PAM_LOGON,
2047         OPT_LOGOFF,
2048         OPT_LOGOFF_USER,
2049         OPT_LOGOFF_UID,
2050         OPT_LANMAN
2051 };
2052
2053 int main(int argc, char **argv, char **envp)
2054 {
2055         int opt;
2056         TALLOC_CTX *frame = talloc_stackframe();
2057         poptContext pc;
2058         static char *string_arg;
2059         char *string_subarg = NULL;
2060         static char *opt_domain_name;
2061         static int int_arg;
2062         int int_subarg = -1;
2063         int result = 1;
2064         bool verbose = false;
2065         bool use_ntlmv2 = false;
2066         bool use_lanman = false;
2067         char *logoff_user = getenv("USER");
2068         int logoff_uid = geteuid();
2069
2070         struct poptOption long_options[] = {
2071                 POPT_AUTOHELP
2072
2073                 /* longName, shortName, argInfo, argPtr, value, descrip,
2074                    argDesc */
2075
2076                 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
2077                 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
2078                 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
2079                 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
2080                 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
2081                 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
2082                 { "sid-to-fullname", 0, POPT_ARG_STRING, &string_arg,
2083                   OPT_SID_TO_FULLNAME, "Converts sid to fullname", "SID" },
2084                 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
2085                 { "lookup-sids", 0, POPT_ARG_STRING, &string_arg,
2086                   OPT_LOOKUP_SIDS, "Converts SIDs to types and names",
2087                   "Sid-List"},
2088                 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
2089                 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
2090                 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
2091                 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
2092                 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
2093                   "Get a new UID out of idmap" },
2094                 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
2095                   "Get a new GID out of idmap" },
2096                 { "set-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_UID_MAPPING, "Create or modify uid to sid mapping in idmap", "UID,SID" },
2097                 { "set-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_GID_MAPPING, "Create or modify gid to sid mapping in idmap", "GID,SID" },
2098                 { "remove-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_UID_MAPPING, "Remove uid to sid mapping in idmap", "UID,SID" },
2099                 { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
2100                 { "sids-to-unix-ids", 0, POPT_ARG_STRING, &string_arg,
2101                   OPT_SIDS_TO_XIDS, "Translate SIDs to Unix IDs", "Sid-List" },
2102                 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
2103                 { "change-secret", 'c', POPT_ARG_NONE, 0, 'c', "Change shared secret" },
2104                 { "ping-dc", 'P', POPT_ARG_NONE, 0, 'P',
2105                   "Check the NETLOGON connection" },
2106                 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
2107                 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
2108                 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
2109                 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Deprecated command, see --online-status" },
2110                 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
2111                 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
2112                 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
2113                 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
2114                 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
2115                 { "user-sidinfo", 0, POPT_ARG_STRING, &string_arg, OPT_USER_SIDINFO, "Get user info from sid", "SID" },
2116                 { "gid-info", 0, POPT_ARG_INT, &int_arg, OPT_GID_INFO, "Get group info from gid", "GID" },
2117                 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
2118                 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
2119                   OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
2120                 { "sid-aliases", 0, POPT_ARG_STRING, &string_arg, OPT_SIDALIASES, "Get sid aliases", "SID" },
2121                 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
2122                 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
2123                 { "pam-logon", 0, POPT_ARG_STRING, &string_arg, OPT_PAM_LOGON,
2124                   "do a pam logon equivalent", "user%password" },
2125                 { "logoff", 0, POPT_ARG_NONE, NULL, OPT_LOGOFF,
2126                   "log off user", "uid" },
2127                 { "logoff-user", 0, POPT_ARG_STRING, &logoff_user,
2128                   OPT_LOGOFF_USER, "username to log off" },
2129                 { "logoff-uid", 0, POPT_ARG_INT, &logoff_uid,
2130                   OPT_LOGOFF_UID, "uid to log off" },
2131                 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
2132                 { "ccache-save", 0, POPT_ARG_STRING, &string_arg,
2133                   OPT_CCACHE_SAVE, "Store user and password for ccache "
2134                   "operation", "user%password" },
2135                 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
2136                   "Get a DC name for a foreign domain", "domainname" },
2137                 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
2138                 { "dc-info", 0, POPT_ARG_STRING, &string_arg, OPT_DC_INFO,
2139                   "Find the currently known DCs", "domainname" },
2140                 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
2141                 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
2142                 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
2143 #ifdef WITH_FAKE_KASERVER
2144                 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
2145 #endif
2146 #ifdef HAVE_KRB5
2147                 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
2148                         /* destroys wbinfo --help output */
2149                         /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
2150 #endif
2151                 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
2152                 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
2153                 { "change-user-password", 0, POPT_ARG_STRING, &string_arg, OPT_CHANGE_USER_PASSWORD, "Change the password for a user", NULL },
2154                 { "ntlmv2", 0, POPT_ARG_NONE, 0, OPT_NTLMV2, "Use NTLMv2 cryptography for user authentication", NULL},
2155                 { "lanman", 0, POPT_ARG_NONE, 0, OPT_LANMAN, "Use lanman cryptography for user authentication", NULL},
2156                 POPT_COMMON_VERSION
2157                 POPT_TABLEEND
2158         };
2159
2160         /* Samba client initialisation */
2161         load_case_tables();
2162
2163
2164         /* Parse options */
2165
2166         pc = poptGetContext("wbinfo", argc, (const char **)argv,
2167                             long_options, 0);
2168
2169         /* Parse command line options */
2170
2171         if (argc == 1) {
2172                 poptPrintHelp(pc, stderr, 0);
2173                 return 1;
2174         }
2175
2176         while((opt = poptGetNextOpt(pc)) != -1) {
2177                 /* get the generic configuration parameters like --domain */
2178                 switch (opt) {
2179                 case OPT_VERBOSE:
2180                         verbose = true;
2181                         break;
2182                 case OPT_NTLMV2:
2183                         use_ntlmv2 = true;
2184                         break;
2185                 case OPT_LANMAN:
2186                         use_lanman = true;
2187                         break;
2188                 }
2189         }
2190
2191         poptFreeContext(pc);
2192
2193         pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
2194                             POPT_CONTEXT_KEEP_FIRST);
2195
2196         while((opt = poptGetNextOpt(pc)) != -1) {
2197                 switch (opt) {
2198                 case 'u':
2199                         if (!print_domain_users(opt_domain_name)) {
2200                                 d_fprintf(stderr,
2201                                           "Error looking up domain users\n");
2202                                 goto done;
2203                         }
2204                         break;
2205                 case 'g':
2206                         if (!print_domain_groups(opt_domain_name)) {
2207                                 d_fprintf(stderr,
2208                                           "Error looking up domain groups\n");
2209                                 goto done;
2210                         }
2211                         break;
2212                 case 's':
2213                         if (!wbinfo_lookupsid(string_arg)) {
2214                                 d_fprintf(stderr,
2215                                           "Could not lookup sid %s\n",
2216                                           string_arg);
2217                                 goto done;
2218                         }
2219                         break;
2220                 case OPT_SID_TO_FULLNAME:
2221                         if (!wbinfo_lookupsid_fullname(string_arg)) {
2222                                 d_fprintf(stderr, "Could not lookup sid %s\n",
2223                                           string_arg);
2224                                 goto done;
2225                         }
2226                         break;
2227                 case 'R':
2228                         if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
2229                                 d_fprintf(stderr, "Could not lookup RIDs %s\n",
2230                                           string_arg);
2231                                 goto done;
2232                         }
2233                         break;
2234                 case OPT_LOOKUP_SIDS:
2235                         if (!wbinfo_lookup_sids(string_arg)) {
2236                                 d_fprintf(stderr, "Could not lookup SIDs %s\n",
2237                                           string_arg);
2238                                 goto done;
2239                         }
2240                         break;
2241                 case 'n':
2242                         if (!wbinfo_lookupname(string_arg)) {
2243                                 d_fprintf(stderr, "Could not lookup name %s\n",
2244                                           string_arg);
2245                                 goto done;
2246                         }
2247                         break;
2248                 case 'N':
2249                         if (!wbinfo_wins_byname(string_arg)) {
2250                                 d_fprintf(stderr,
2251                                           "Could not lookup WINS by name %s\n",
2252                                           string_arg);
2253                                 goto done;
2254                         }
2255                         break;
2256                 case 'I':
2257                         if (!wbinfo_wins_byip(string_arg)) {
2258                                 d_fprintf(stderr,
2259                                           "Could not lookup WINS by IP %s\n",
2260                                           string_arg);
2261                                 goto done;
2262                         }
2263                         break;
2264                 case 'U':
2265                         if (!wbinfo_uid_to_sid(int_arg)) {
2266                                 d_fprintf(stderr,
2267                                           "Could not convert uid %d to sid\n",
2268                                           int_arg);
2269                                 goto done;
2270                         }
2271                         break;
2272                 case 'G':
2273                         if (!wbinfo_gid_to_sid(int_arg)) {
2274                                 d_fprintf(stderr,
2275                                           "Could not convert gid %d to sid\n",
2276                                           int_arg);
2277                                 goto done;
2278                         }
2279                         break;
2280                 case 'S':
2281                         if (!wbinfo_sid_to_uid(string_arg)) {
2282                                 d_fprintf(stderr,
2283                                           "Could not convert sid %s to uid\n",
2284                                           string_arg);
2285                                 goto done;
2286                         }
2287                         break;
2288                 case 'Y':
2289                         if (!wbinfo_sid_to_gid(string_arg)) {
2290                                 d_fprintf(stderr,
2291                                           "Could not convert sid %s to gid\n",
2292                                           string_arg);
2293                                 goto done;
2294                         }
2295                         break;
2296                 case OPT_ALLOCATE_UID:
2297                         if (!wbinfo_allocate_uid()) {
2298                                 d_fprintf(stderr, "Could not allocate a uid\n");
2299                                 goto done;
2300                         }
2301                         break;
2302                 case OPT_ALLOCATE_GID:
2303                         if (!wbinfo_allocate_gid()) {
2304                                 d_fprintf(stderr, "Could not allocate a gid\n");
2305                                 goto done;
2306                         }
2307                         break;
2308                 case OPT_SET_UID_MAPPING:
2309                         if (!parse_mapping_arg(string_arg, &int_subarg,
2310                                 &string_subarg) ||
2311                             !wbinfo_set_uid_mapping(int_subarg, string_subarg))
2312                         {
2313                                 d_fprintf(stderr, "Could not create or modify "
2314                                           "uid to sid mapping\n");
2315                                 goto done;
2316                         }
2317                         break;
2318                 case OPT_SET_GID_MAPPING:
2319                         if (!parse_mapping_arg(string_arg, &int_subarg,
2320                                 &string_subarg) ||
2321                             !wbinfo_set_gid_mapping(int_subarg, string_subarg))
2322                         {
2323                                 d_fprintf(stderr, "Could not create or modify "
2324                                           "gid to sid mapping\n");
2325                                 goto done;
2326                         }
2327                         break;
2328                 case OPT_REMOVE_UID_MAPPING:
2329                         if (!parse_mapping_arg(string_arg, &int_subarg,
2330                                 &string_subarg) ||
2331                             !wbinfo_remove_uid_mapping(int_subarg,
2332                                 string_subarg))
2333                         {
2334                                 d_fprintf(stderr, "Could not remove uid to sid "
2335                                     "mapping\n");
2336                                 goto done;
2337                         }
2338                         break;
2339                 case OPT_REMOVE_GID_MAPPING:
2340                         if (!parse_mapping_arg(string_arg, &int_subarg,
2341                                 &string_subarg) ||
2342                             !wbinfo_remove_gid_mapping(int_subarg,
2343                                 string_subarg))
2344                         {
2345                                 d_fprintf(stderr, "Could not remove gid to sid "
2346                                     "mapping\n");
2347                                 goto done;
2348                         }
2349                         break;
2350                 case OPT_SIDS_TO_XIDS:
2351                         if (!wbinfo_sids_to_unix_ids(string_arg)) {
2352                                 d_fprintf(stderr, "wbinfo_sids_to_unix_ids "
2353                                           "failed\n");
2354                                 goto done;
2355                         }
2356                         break;
2357                 case 't':
2358                         if (!wbinfo_check_secret(opt_domain_name)) {
2359                                 d_fprintf(stderr, "Could not check secret\n");
2360                                 goto done;
2361                         }
2362                         break;
2363                 case 'c':
2364                         if (!wbinfo_change_secret(opt_domain_name)) {
2365                                 d_fprintf(stderr, "Could not change secret\n");
2366                                 goto done;
2367                         }
2368                         break;
2369                 case 'P':
2370                         if (!wbinfo_ping_dc()) {
2371                                 d_fprintf(stderr, "Could not ping our DC\n");
2372                                 goto done;
2373                         }
2374                         break;
2375                 case 'm':
2376                         if (!wbinfo_list_domains(false, verbose)) {
2377                                 d_fprintf(stderr,
2378                                           "Could not list trusted domains\n");
2379                                 goto done;
2380                         }
2381                         break;
2382                 case OPT_SEQUENCE:
2383                         if (!wbinfo_show_sequence(opt_domain_name)) {
2384                                 d_fprintf(stderr,
2385                                           "Could not show sequence numbers\n");
2386                                 goto done;
2387                         }
2388                         break;
2389                 case OPT_ONLINESTATUS:
2390                         if (!wbinfo_show_onlinestatus(opt_domain_name)) {
2391                                 d_fprintf(stderr,
2392                                           "Could not show online-status\n");
2393                                 goto done;
2394                         }
2395                         break;
2396                 case 'D':
2397                         if (!wbinfo_domain_info(string_arg)) {
2398                                 d_fprintf(stderr,
2399                                           "Could not get domain info\n");
2400                                 goto done;
2401                         }
2402                         break;
2403                 case 'i':
2404                         if (!wbinfo_get_userinfo(string_arg)) {
2405                                 d_fprintf(stderr,
2406                                           "Could not get info for user %s\n",
2407                                           string_arg);
2408                                 goto done;
2409                         }
2410                         break;
2411                 case OPT_USER_SIDINFO:
2412                         if ( !wbinfo_get_user_sidinfo(string_arg)) {
2413                                 d_fprintf(stderr,
2414                                           "Could not get info for user "
2415                                           "sid %s\n", string_arg);
2416                                 goto done;
2417                         }
2418                         break;
2419                 case OPT_UID_INFO:
2420                         if ( !wbinfo_get_uidinfo(int_arg)) {
2421                                 d_fprintf(stderr, "Could not get info for uid "
2422                                                 "%d\n", int_arg);
2423                                 goto done;
2424                         }
2425                         break;
2426                 case OPT_GROUP_INFO:
2427                         if ( !wbinfo_get_groupinfo(string_arg)) {
2428                                 d_fprintf(stderr, "Could not get info for "
2429                                           "group %s\n", string_arg);
2430                                 goto done;
2431                         }
2432                         break;
2433                 case OPT_GID_INFO:
2434                         if ( !wbinfo_get_gidinfo(int_arg)) {
2435                                 d_fprintf(stderr, "Could not get info for gid "
2436                                                 "%d\n", int_arg);
2437                                 goto done;
2438                         }
2439                         break;
2440                 case 'r':
2441                         if (!wbinfo_get_usergroups(string_arg)) {
2442                                 d_fprintf(stderr,
2443                                           "Could not get groups for user %s\n",
2444                                           string_arg);
2445                                 goto done;
2446                         }
2447                         break;
2448                 case OPT_USERSIDS:
2449                         if (!wbinfo_get_usersids(string_arg)) {
2450                                 d_fprintf(stderr, "Could not get group SIDs "
2451                                           "for user SID %s\n",
2452                                           string_arg);
2453                                 goto done;
2454                         }
2455                         break;
2456                 case OPT_USERDOMGROUPS:
2457                         if (!wbinfo_get_userdomgroups(string_arg)) {
2458                                 d_fprintf(stderr, "Could not get user's domain "
2459                                          "groups for user SID %s\n",
2460                                          string_arg);
2461                                 goto done;
2462                         }
2463                         break;
2464                 case OPT_SIDALIASES:
2465                         if (!wbinfo_get_sidaliases(opt_domain_name,
2466                                                    string_arg)) {
2467                                 d_fprintf(stderr, "Could not get sid aliases "
2468                                          "for user SID %s\n", string_arg);
2469                                 goto done;
2470                         }
2471                         break;
2472                 case 'a': {
2473                                 bool got_error = false;
2474
2475                                 if (!wbinfo_auth(string_arg)) {
2476                                         d_fprintf(stderr,
2477                                                   "Could not authenticate user "
2478                                                   "%s with plaintext "
2479                                                   "password\n", string_arg);
2480                                         got_error = true;
2481                                 }
2482
2483                                 if (!wbinfo_auth_crap(string_arg, use_ntlmv2,
2484                                                       use_lanman)) {
2485                                         d_fprintf(stderr,
2486                                                 "Could not authenticate user "
2487                                                 "%s with challenge/response\n",
2488                                                 string_arg);
2489                                         got_error = true;
2490                                 }
2491
2492                                 if (got_error)
2493                                         goto done;
2494                                 break;
2495                         }
2496                 case OPT_PAM_LOGON:
2497                         if (!wbinfo_pam_logon(string_arg)) {
2498                                 d_fprintf(stderr, "pam_logon failed for %s\n",
2499                                           string_arg);
2500                                 goto done;
2501                         }
2502                         break;
2503                 case OPT_LOGOFF:
2504                 {
2505                         wbcErr wbc_status;
2506
2507                         wbc_status = wbcLogoffUser(logoff_user, logoff_uid,
2508                                                    "");
2509                         d_printf("Logoff %s (%d): %s\n", logoff_user,
2510                                  logoff_uid, wbcErrorString(wbc_status));
2511                         break;
2512                 }
2513                 case 'K': {
2514                                 uint32_t flags = WBFLAG_PAM_KRB5 |
2515                                                  WBFLAG_PAM_CACHED_LOGIN |
2516                                                 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
2517                                                  WBFLAG_PAM_INFO3_TEXT |
2518                                                  WBFLAG_PAM_CONTACT_TRUSTDOM;
2519
2520                                 if (!wbinfo_auth_krb5(string_arg, "FILE",
2521                                                       flags)) {
2522                                         d_fprintf(stderr,
2523                                                 "Could not authenticate user "
2524                                                 "[%s] with Kerberos "
2525                                                 "(ccache: %s)\n", string_arg,
2526                                                 "FILE");
2527                                         goto done;
2528                                 }
2529                                 break;
2530                         }
2531                 case 'k':
2532                         if (!wbinfo_klog(string_arg)) {
2533                                 d_fprintf(stderr, "Could not klog user\n");
2534                                 goto done;
2535                         }
2536                         break;
2537                 case 'p':
2538                         if (!wbinfo_ping()) {
2539                                 d_fprintf(stderr, "could not ping winbindd!\n");
2540                                 goto done;
2541                         }
2542                         break;
2543                 case OPT_SET_AUTH_USER:
2544                         if (!wbinfo_set_auth_user(string_arg)) {
2545                                 goto done;
2546                         }
2547                         break;
2548                 case OPT_GET_AUTH_USER:
2549                         wbinfo_get_auth_user();
2550                         goto done;
2551                         break;
2552                 case OPT_CCACHE_SAVE:
2553                         if (!wbinfo_ccache_save(string_arg)) {
2554                                 goto done;
2555                         }
2556                         break;
2557                 case OPT_GETDCNAME:
2558                         if (!wbinfo_getdcname(string_arg)) {
2559                                 goto done;
2560                         }
2561                         break;
2562                 case OPT_DSGETDCNAME:
2563                         if (!wbinfo_dsgetdcname(string_arg, 0)) {
2564                                 goto done;
2565                         }
2566                         break;
2567                 case OPT_DC_INFO:
2568                         if (!wbinfo_dc_info(string_arg)) {
2569                                 goto done;
2570                         }
2571                         break;
2572                 case OPT_SEPARATOR: {
2573                         const char sep = winbind_separator();
2574                         if ( !sep ) {
2575                                 goto done;
2576                         }
2577                         d_printf("%c\n", sep);
2578                         break;
2579                 }
2580                 case OPT_LIST_ALL_DOMAINS:
2581                         if (!wbinfo_list_domains(true, verbose)) {
2582                                 goto done;
2583                         }
2584                         break;
2585                 case OPT_LIST_OWN_DOMAIN:
2586                         if (!wbinfo_list_own_domain()) {
2587                                 goto done;
2588                         }
2589                         break;
2590                 case OPT_CHANGE_USER_PASSWORD:
2591                         if (!wbinfo_change_user_password(string_arg)) {
2592                                 d_fprintf(stderr,
2593                                         "Could not change user password "
2594                                          "for user %s\n", string_arg);
2595                                 goto done;
2596                         }
2597                         break;
2598
2599                 /* generic configuration options */
2600                 case OPT_DOMAIN_NAME:
2601                 case OPT_VERBOSE:
2602                 case OPT_NTLMV2:
2603                 case OPT_LANMAN:
2604                 case OPT_LOGOFF_USER:
2605                 case OPT_LOGOFF_UID:
2606                         break;
2607                 default:
2608                         d_fprintf(stderr, "Invalid option\n");
2609                         poptPrintHelp(pc, stderr, 0);
2610                         goto done;
2611                 }
2612         }
2613
2614         result = 0;
2615
2616         /* Exit code */
2617
2618  done:
2619         talloc_free(frame);
2620
2621         poptFreeContext(pc);
2622         return result;
2623 }