Apply the changes that Derrell Lipman supplied ...
[Samba/gebeck_regimport.git] / source3 / lib / popt_common.c
blob9a5a11202255e77aada34e8c29e3d47ae90cf887
1 /*
2 Unix SMB/CIFS implementation.
3 Common popt routines
5 Copyright (C) Tim Potter 2001,2002
6 Copyright (C) Jelmer Vernooij 2002,2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
25 /* Handle command line options:
26 * -d,--debuglevel
27 * -s,--configfile
28 * -O,--socket-options
29 * -V,--version
30 * -l,--log-base
31 * -n,--netbios-name
32 * -W,--workgroup
33 * -i,--scope
36 extern pstring user_socket_options;
37 extern BOOL AllowDebugChange;
39 struct user_auth_info cmdline_auth_info;
41 static void popt_common_callback(poptContext con,
42 enum poptCallbackReason reason,
43 const struct poptOption *opt,
44 const char *arg, const void *data)
46 pstring logfile;
47 const char *pname;
49 /* Find out basename of current program */
50 pname = strrchr_m(poptGetInvocationName(con),'/');
52 if (!pname)
53 pname = poptGetInvocationName(con);
54 else
55 pname++;
57 if (reason == POPT_CALLBACK_REASON_PRE) {
58 pstr_sprintf(logfile, "%s/log.%s", dyn_LOGFILEBASE, pname);
59 lp_set_logfile(logfile);
60 return;
63 switch(opt->val) {
64 case 'd':
65 if (arg) {
66 debug_parse_levels(arg);
67 AllowDebugChange = False;
69 break;
71 case 'V':
72 printf( "Version %s\n", SAMBA_VERSION_STRING);
73 exit(0);
74 break;
76 case 'O':
77 if (arg) {
78 pstrcpy(user_socket_options,arg);
80 break;
82 case 's':
83 if (arg) {
84 pstrcpy(dyn_CONFIGFILE, arg);
86 break;
88 case 'n':
89 if (arg) {
90 set_global_myname(arg);
92 break;
94 case 'l':
95 if (arg) {
96 pstr_sprintf(logfile, "%s/log.%s", arg, pname);
97 lp_set_logfile(logfile);
99 break;
101 case 'i':
102 if (arg) {
103 set_global_scope(arg);
105 break;
107 case 'W':
108 if (arg) {
109 set_global_myworkgroup(arg);
111 break;
115 struct poptOption popt_common_connection[] = {
116 { NULL, 0, POPT_ARG_CALLBACK, popt_common_callback },
117 { "socket-options", 'O', POPT_ARG_STRING, NULL, 'O', "socket options to use",
118 "SOCKETOPTIONS" },
119 { "netbiosname", 'n', POPT_ARG_STRING, NULL, 'n', "Primary netbios name", "NETBIOSNAME" },
120 { "workgroup", 'W', POPT_ARG_STRING, NULL, 'W', "Set the workgroup name", "WORKGROUP" },
121 { "scope", 'i', POPT_ARG_STRING, NULL, 'i', "Use this Netbios scope", "SCOPE" },
123 POPT_TABLEEND
126 struct poptOption popt_common_samba[] = {
127 { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE, popt_common_callback },
128 { "debuglevel", 'd', POPT_ARG_STRING, NULL, 'd', "Set debug level", "DEBUGLEVEL" },
129 { "configfile", 's', POPT_ARG_STRING, NULL, 's', "Use alternative configuration file", "CONFIGFILE" },
130 { "log-basename", 'l', POPT_ARG_STRING, NULL, 'l', "Basename for log/debug files", "LOGFILEBASE" },
131 { "version", 'V', POPT_ARG_NONE, NULL, 'V', "Print version" },
132 POPT_TABLEEND
135 struct poptOption popt_common_version[] = {
136 { NULL, 0, POPT_ARG_CALLBACK, popt_common_callback },
137 { "version", 'V', POPT_ARG_NONE, NULL, 'V', "Print version" },
138 POPT_TABLEEND
143 /****************************************************************************
144 * get a password from a a file or file descriptor
145 * exit on failure
146 * ****************************************************************************/
147 static void get_password_file(struct user_auth_info *a)
149 int fd = -1;
150 char *p;
151 BOOL close_it = False;
152 pstring spec;
153 char pass[128];
155 if ((p = getenv("PASSWD_FD")) != NULL) {
156 pstrcpy(spec, "descriptor ");
157 pstrcat(spec, p);
158 sscanf(p, "%d", &fd);
159 close_it = False;
160 } else if ((p = getenv("PASSWD_FILE")) != NULL) {
161 fd = sys_open(p, O_RDONLY, 0);
162 pstrcpy(spec, p);
163 if (fd < 0) {
164 fprintf(stderr, "Error opening PASSWD_FILE %s: %s\n",
165 spec, strerror(errno));
166 exit(1);
168 close_it = True;
171 for(p = pass, *p = '\0'; /* ensure that pass is null-terminated */
172 p && p - pass < sizeof(pass);) {
173 switch (read(fd, p, 1)) {
174 case 1:
175 if (*p != '\n' && *p != '\0') {
176 *++p = '\0'; /* advance p, and null-terminate pass */
177 break;
179 case 0:
180 if (p - pass) {
181 *p = '\0'; /* null-terminate it, just in case... */
182 p = NULL; /* then force the loop condition to become false */
183 break;
184 } else {
185 fprintf(stderr, "Error reading password from file %s: %s\n",
186 spec, "empty password\n");
187 exit(1);
190 default:
191 fprintf(stderr, "Error reading password from file %s: %s\n",
192 spec, strerror(errno));
193 exit(1);
196 pstrcpy(a->password, pass);
197 if (close_it)
198 close(fd);
201 static void get_credentials_file(const char *file, struct user_auth_info *info)
203 XFILE *auth;
204 fstring buf;
205 uint16 len = 0;
206 char *ptr, *val, *param;
208 if ((auth=x_fopen(file, O_RDONLY, 0)) == NULL)
210 /* fail if we can't open the credentials file */
211 d_printf("ERROR: Unable to open credentials file!\n");
212 exit(-1);
215 while (!x_feof(auth))
217 /* get a line from the file */
218 if (!x_fgets(buf, sizeof(buf), auth))
219 continue;
220 len = strlen(buf);
222 if ((len) && (buf[len-1]=='\n'))
224 buf[len-1] = '\0';
225 len--;
227 if (len == 0)
228 continue;
230 /* break up the line into parameter & value.
231 * will need to eat a little whitespace possibly */
232 param = buf;
233 if (!(ptr = strchr_m (buf, '=')))
234 continue;
236 val = ptr+1;
237 *ptr = '\0';
239 /* eat leading white space */
240 while ((*val!='\0') && ((*val==' ') || (*val=='\t')))
241 val++;
243 if (strwicmp("password", param) == 0)
245 pstrcpy(info->password, val);
246 info->got_pass = True;
248 else if (strwicmp("username", param) == 0)
249 pstrcpy(info->username, val);
250 else if (strwicmp("domain", param) == 0)
251 set_global_myworkgroup(val);
252 memset(buf, 0, sizeof(buf));
254 x_fclose(auth);
257 /* Handle command line options:
258 * -U,--user
259 * -A,--authentication-file
260 * -k,--use-kerberos
261 * -N,--no-pass
262 * -S,--signing
263 * -P --machine-pass
267 static void popt_common_credentials_callback(poptContext con,
268 enum poptCallbackReason reason,
269 const struct poptOption *opt,
270 const char *arg, const void *data)
272 char *p;
274 if (reason == POPT_CALLBACK_REASON_PRE) {
275 cmdline_auth_info.use_kerberos = False;
276 cmdline_auth_info.got_pass = False;
277 cmdline_auth_info.signing_state = Undefined;
278 pstrcpy(cmdline_auth_info.username, "GUEST");
280 if (getenv("LOGNAME"))pstrcpy(cmdline_auth_info.username,getenv("LOGNAME"));
282 if (getenv("USER")) {
283 pstrcpy(cmdline_auth_info.username,getenv("USER"));
285 if ((p = strchr_m(cmdline_auth_info.username,'%'))) {
286 *p = 0;
287 pstrcpy(cmdline_auth_info.password,p+1);
288 cmdline_auth_info.got_pass = True;
289 memset(strchr_m(getenv("USER"),'%')+1,'X',strlen(cmdline_auth_info.password));
293 if (getenv("PASSWD")) {
294 pstrcpy(cmdline_auth_info.password,getenv("PASSWD"));
295 cmdline_auth_info.got_pass = True;
298 if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
299 get_password_file(&cmdline_auth_info);
300 cmdline_auth_info.got_pass = True;
303 return;
306 switch(opt->val) {
307 case 'U':
309 char *lp;
311 pstrcpy(cmdline_auth_info.username,arg);
312 if ((lp=strchr_m(cmdline_auth_info.username,'%'))) {
313 *lp = 0;
314 pstrcpy(cmdline_auth_info.password,lp+1);
315 cmdline_auth_info.got_pass = True;
316 memset(strchr_m(arg,'%')+1,'X',strlen(cmdline_auth_info.password));
319 break;
321 case 'A':
322 get_credentials_file(arg, &cmdline_auth_info);
323 break;
325 case 'k':
326 #ifndef HAVE_KRB5
327 d_printf("No kerberos support compiled in\n");
328 exit(1);
329 #else
330 cmdline_auth_info.use_kerberos = True;
331 cmdline_auth_info.got_pass = True;
332 #endif
333 break;
335 case 'S':
337 cmdline_auth_info.signing_state = -1;
338 if (strequal(arg, "off") || strequal(arg, "no") || strequal(arg, "false"))
339 cmdline_auth_info.signing_state = False;
340 else if (strequal(arg, "on") || strequal(arg, "yes") || strequal(arg, "true") ||
341 strequal(arg, "auto") )
342 cmdline_auth_info.signing_state = True;
343 else if (strequal(arg, "force") || strequal(arg, "required") || strequal(arg, "forced"))
344 cmdline_auth_info.signing_state = Required;
345 else {
346 fprintf(stderr, "Unknown signing option %s\n", arg );
347 exit(1);
350 break;
351 case 'P':
353 char *opt_password = NULL;
354 /* it is very useful to be able to make ads queries as the
355 machine account for testing purposes and for domain leave */
357 if (!secrets_init()) {
358 d_printf("ERROR: Unable to open secrets database\n");
359 exit(1);
362 opt_password = secrets_fetch_machine_password(lp_workgroup(), NULL, NULL);
364 if (!opt_password) {
365 d_printf("ERROR: Unable to fetch machine password\n");
366 exit(1);
368 pstr_sprintf(cmdline_auth_info.username, "%s$",
369 global_myname());
370 pstrcpy(cmdline_auth_info.password,opt_password);
371 SAFE_FREE(opt_password);
373 /* machine accounts only work with kerberos */
374 cmdline_auth_info.use_kerberos = True;
375 cmdline_auth_info.got_pass = True;
377 break;
383 struct poptOption popt_common_credentials[] = {
384 { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE, popt_common_credentials_callback },
385 { "user", 'U', POPT_ARG_STRING, NULL, 'U', "Set the network username", "USERNAME" },
386 { "no-pass", 'N', POPT_ARG_NONE, &cmdline_auth_info.got_pass, 0, "Don't ask for a password" },
387 { "kerberos", 'k', POPT_ARG_NONE, &cmdline_auth_info.use_kerberos, 'k', "Use kerberos (active directory) authentication" },
388 { "authentication-file", 'A', POPT_ARG_STRING, NULL, 'A', "Get the credentials from a file", "FILE" },
389 { "signing", 'S', POPT_ARG_STRING, NULL, 'S', "Set the client signing state", "on|off|required" },
390 {"machine-pass", 'P', POPT_ARG_NONE, NULL, 'P', "Use stored machine account password" },
391 POPT_TABLEEND