s3-waf: Detect which version of krb5_enctype_to_string is used
[Samba/gebeck_regimport.git] / source4 / lib / cmdline / popt_credentials.c
blob1776fb2f6f6b7c2e6ee149f18a37ec132cb51628
1 /*
2 Unix SMB/CIFS implementation.
3 Credentials popt routines
5 Copyright (C) Jelmer Vernooij 2002,2003,2005
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "lib/cmdline/popt_common.h"
23 #include "lib/cmdline/credentials.h"
24 #include "auth/credentials/credentials.h"
25 #include "auth/gensec/gensec.h"
26 #include "param/param.h"
28 /* Handle command line options:
29 * -U,--user
30 * -A,--authentication-file
31 * -k,--use-kerberos
32 * -N,--no-pass
33 * -S,--signing
34 * -P --machine-pass
35 * --simple-bind-dn
36 * --password
40 static bool dont_ask;
42 enum opt { OPT_SIMPLE_BIND_DN, OPT_PASSWORD, OPT_KERBEROS, OPT_SIGN, OPT_ENCRYPT };
45 disable asking for a password
47 void popt_common_dont_ask(void)
49 dont_ask = true;
52 static void popt_common_credentials_callback(poptContext con,
53 enum poptCallbackReason reason,
54 const struct poptOption *opt,
55 const char *arg, const void *data)
57 if (reason == POPT_CALLBACK_REASON_PRE) {
58 cmdline_credentials = cli_credentials_init(talloc_autofree_context());
59 return;
62 if (reason == POPT_CALLBACK_REASON_POST) {
63 cli_credentials_guess(cmdline_credentials, cmdline_lp_ctx);
65 if (!dont_ask) {
66 cli_credentials_set_cmdline_callbacks(cmdline_credentials);
68 return;
72 switch(opt->val) {
73 case 'U':
75 char *lp;
77 cli_credentials_parse_string(cmdline_credentials, arg, CRED_SPECIFIED);
78 /* This breaks the abstraction, including the const above */
79 if ((lp=strchr_m(arg,'%'))) {
80 lp[0]='\0';
81 lp++;
82 /* Try to prevent this showing up in ps */
83 memset(lp,0,strlen(lp));
86 break;
88 case OPT_PASSWORD:
89 cli_credentials_set_password(cmdline_credentials, arg, CRED_SPECIFIED);
90 /* Try to prevent this showing up in ps */
91 memset(discard_const(arg),0,strlen(arg));
92 break;
94 case 'A':
95 cli_credentials_parse_file(cmdline_credentials, arg, CRED_SPECIFIED);
96 break;
98 case 'P':
99 /* Later, after this is all over, get the machine account details from the secrets.ldb */
100 cli_credentials_set_machine_account_pending(cmdline_credentials, cmdline_lp_ctx);
101 break;
103 case OPT_KERBEROS:
105 bool use_kerberos = true;
106 /* Force us to only use kerberos */
107 if (arg) {
108 if (!set_boolean(arg, &use_kerberos)) {
109 fprintf(stderr, "Error parsing -k %s. Should be "
110 "-k [yes|no]\n", arg);
111 exit(1);
112 break;
116 cli_credentials_set_kerberos_state(cmdline_credentials,
117 use_kerberos
118 ? CRED_MUST_USE_KERBEROS
119 : CRED_DONT_USE_KERBEROS);
120 break;
123 case OPT_SIMPLE_BIND_DN:
125 cli_credentials_set_bind_dn(cmdline_credentials, arg);
126 break;
128 case OPT_SIGN:
130 uint32_t gensec_features;
132 gensec_features = cli_credentials_get_gensec_features(cmdline_credentials);
134 gensec_features |= GENSEC_FEATURE_SIGN;
135 cli_credentials_set_gensec_features(cmdline_credentials,
136 gensec_features);
137 break;
139 case OPT_ENCRYPT:
141 uint32_t gensec_features;
143 gensec_features = cli_credentials_get_gensec_features(cmdline_credentials);
145 gensec_features |= GENSEC_FEATURE_SEAL;
146 cli_credentials_set_gensec_features(cmdline_credentials,
147 gensec_features);
148 break;
155 struct poptOption popt_common_credentials[] = {
156 { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE|POPT_CBFLAG_POST, (void *)popt_common_credentials_callback },
157 { "user", 'U', POPT_ARG_STRING, NULL, 'U', "Set the network username", "[DOMAIN/]USERNAME[%PASSWORD]" },
158 { "no-pass", 'N', POPT_ARG_NONE, &dont_ask, 'N', "Don't ask for a password" },
159 { "password", 0, POPT_ARG_STRING, NULL, OPT_PASSWORD, "Password" },
160 { "authentication-file", 'A', POPT_ARG_STRING, NULL, 'A', "Get the credentials from a file", "FILE" },
161 { "machine-pass", 'P', POPT_ARG_NONE, NULL, 'P', "Use stored machine account password (implies -k)" },
162 { "simple-bind-dn", 0, POPT_ARG_STRING, NULL, OPT_SIMPLE_BIND_DN, "DN to use for a simple bind" },
163 { "kerberos", 'k', POPT_ARG_STRING, NULL, OPT_KERBEROS, "Use Kerberos, -k [yes|no]" },
164 { "sign", 'S', POPT_ARG_NONE, NULL, OPT_SIGN, "Sign connection to prevent modification in transit" },
165 { "encrypt", 'e', POPT_ARG_NONE, NULL, OPT_ENCRYPT, "Encrypt connection for privacy" },
166 { NULL }