2 Unix SMB/CIFS implementation.
5 Copyright (C) Tim Potter 2001,2002
6 Copyright (C) Jelmer Vernooij 2002,2003
7 Copyright (C) James Peach 2006
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 /* Handle command line options:
36 extern bool AllowDebugChange
;
37 extern bool override_logfile
;
39 static void set_logfile(poptContext con
, const char * arg
)
45 /* Find out basename of current program */
46 pname
= strrchr_m(poptGetInvocationName(con
),'/');
49 pname
= poptGetInvocationName(con
);
53 if (asprintf(&logfile
, "%s/log.%s", arg
, pname
) < 0) {
56 lp_set_logfile(logfile
);
60 static bool PrintSambaVersionString
;
62 static void popt_common_callback(poptContext con
,
63 enum poptCallbackReason reason
,
64 const struct poptOption
*opt
,
65 const char *arg
, const void *data
)
68 if (reason
== POPT_CALLBACK_REASON_PRE
) {
69 set_logfile(con
, get_dyn_LOGFILEBASE());
73 if (reason
== POPT_CALLBACK_REASON_POST
) {
75 if (PrintSambaVersionString
) {
76 printf( "Version %s\n", SAMBA_VERSION_STRING
);
80 if (is_default_dyn_CONFIGFILE()) {
81 if(getenv("SMB_CONF_PATH")) {
82 set_dyn_CONFIGFILE(getenv("SMB_CONF_PATH"));
86 /* Further 'every Samba program must do this' hooks here. */
93 debug_parse_levels(arg
);
94 AllowDebugChange
= False
;
99 PrintSambaVersionString
= True
;
104 lp_do_parameter(-1, "socket options", arg
);
110 set_dyn_CONFIGFILE(arg
);
116 set_global_myname(arg
);
122 set_logfile(con
, arg
);
123 override_logfile
= True
;
124 set_dyn_LOGFILEBASE(arg
);
130 set_global_scope(arg
);
136 set_global_myworkgroup(arg
);
142 struct poptOption popt_common_connection
[] = {
143 { NULL
, 0, POPT_ARG_CALLBACK
, (void *)popt_common_callback
},
144 { "socket-options", 'O', POPT_ARG_STRING
, NULL
, 'O', "socket options to use",
146 { "netbiosname", 'n', POPT_ARG_STRING
, NULL
, 'n', "Primary netbios name", "NETBIOSNAME" },
147 { "workgroup", 'W', POPT_ARG_STRING
, NULL
, 'W', "Set the workgroup name", "WORKGROUP" },
148 { "scope", 'i', POPT_ARG_STRING
, NULL
, 'i', "Use this Netbios scope", "SCOPE" },
153 struct poptOption popt_common_samba
[] = {
154 { NULL
, 0, POPT_ARG_CALLBACK
|POPT_CBFLAG_PRE
|POPT_CBFLAG_POST
, (void *)popt_common_callback
},
155 { "debuglevel", 'd', POPT_ARG_STRING
, NULL
, 'd', "Set debug level", "DEBUGLEVEL" },
156 { "configfile", 's', POPT_ARG_STRING
, NULL
, 's', "Use alternate configuration file", "CONFIGFILE" },
157 { "log-basename", 'l', POPT_ARG_STRING
, NULL
, 'l', "Base name for log files", "LOGFILEBASE" },
158 { "version", 'V', POPT_ARG_NONE
, NULL
, 'V', "Print version" },
162 struct poptOption popt_common_configfile
[] = {
163 { NULL
, 0, POPT_ARG_CALLBACK
|POPT_CBFLAG_PRE
|POPT_CBFLAG_POST
, (void *)popt_common_callback
},
164 { "configfile", 0, POPT_ARG_STRING
, NULL
, 's', "Use alternate configuration file", "CONFIGFILE" },
168 struct poptOption popt_common_version
[] = {
169 { NULL
, 0, POPT_ARG_CALLBACK
, (void *)popt_common_callback
},
170 { "version", 'V', POPT_ARG_NONE
, NULL
, 'V', "Print version" },
174 struct poptOption popt_common_debuglevel
[] = {
175 { NULL
, 0, POPT_ARG_CALLBACK
, (void *)popt_common_callback
},
176 { "debuglevel", 'd', POPT_ARG_STRING
, NULL
, 'd', "Set debug level", "DEBUGLEVEL" },
181 /* Handle command line options:
208 static void popt_dynconfig_callback(poptContext con
,
209 enum poptCallbackReason reason
,
210 const struct poptOption
*opt
,
211 const char *arg
, const void *data
)
217 set_dyn_SBINDIR(arg
);
229 set_dyn_SWATDIR(arg
);
233 case DYN_LMHOSTSFILE
:
235 set_dyn_LMHOSTSFILE(arg
);
247 set_dyn_SHLIBEXT(arg
);
253 set_dyn_LOCKDIR(arg
);
263 case DYN_SMB_PASSWD_FILE
:
265 set_dyn_SMB_PASSWD_FILE(arg
);
269 case DYN_PRIVATE_DIR
:
271 set_dyn_PRIVATE_DIR(arg
);
278 const struct poptOption popt_common_dynconfig
[] = {
280 { NULL
, '\0', POPT_ARG_CALLBACK
, (void *)popt_dynconfig_callback
},
282 { "sbindir", '\0' , POPT_ARG_STRING
, NULL
, DYN_SBINDIR
,
283 "Path to sbin directory", "SBINDIR" },
284 { "bindir", '\0' , POPT_ARG_STRING
, NULL
, DYN_BINDIR
,
285 "Path to bin directory", "BINDIR" },
286 { "swatdir", '\0' , POPT_ARG_STRING
, NULL
, DYN_SWATDIR
,
287 "Path to SWAT installation directory", "SWATDIR" },
288 { "lmhostsfile", '\0' , POPT_ARG_STRING
, NULL
, DYN_LMHOSTSFILE
,
289 "Path to lmhosts file", "LMHOSTSFILE" },
290 { "libdir", '\0' , POPT_ARG_STRING
, NULL
, DYN_LIBDIR
,
291 "Path to shared library directory", "LIBDIR" },
292 { "shlibext", '\0' , POPT_ARG_STRING
, NULL
, DYN_SHLIBEXT
,
293 "Shared library extension", "SHLIBEXT" },
294 { "lockdir", '\0' , POPT_ARG_STRING
, NULL
, DYN_LOCKDIR
,
295 "Path to lock file directory", "LOCKDIR" },
296 { "piddir", '\0' , POPT_ARG_STRING
, NULL
, DYN_PIDDIR
,
297 "Path to PID file directory", "PIDDIR" },
298 { "smb-passwd-file", '\0' , POPT_ARG_STRING
, NULL
, DYN_SMB_PASSWD_FILE
,
299 "Path to smbpasswd file", "SMB_PASSWD_FILE" },
300 { "private-dir", '\0' , POPT_ARG_STRING
, NULL
, DYN_PRIVATE_DIR
,
301 "Path to private data directory", "PRIVATE_DIR" },
306 /****************************************************************************
307 * get a password from a a file or file descriptor
309 * ****************************************************************************/
311 static void get_password_file(void)
315 bool close_it
= False
;
319 if ((p
= getenv("PASSWD_FD")) != NULL
) {
320 if (asprintf(&spec
, "descriptor %s", p
) < 0) {
323 sscanf(p
, "%d", &fd
);
325 } else if ((p
= getenv("PASSWD_FILE")) != NULL
) {
326 fd
= sys_open(p
, O_RDONLY
, 0);
327 spec
= SMB_STRDUP(p
);
329 fprintf(stderr
, "Error opening PASSWD_FILE %s: %s\n",
330 spec
, strerror(errno
));
337 fprintf(stderr
, "fd = %d, < 0\n", fd
);
341 for(p
= pass
, *p
= '\0'; /* ensure that pass is null-terminated */
342 p
&& p
- pass
< sizeof(pass
);) {
343 switch (read(fd
, p
, 1)) {
345 if (*p
!= '\n' && *p
!= '\0') {
346 *++p
= '\0'; /* advance p, and null-terminate pass */
351 *p
= '\0'; /* null-terminate it, just in case... */
352 p
= NULL
; /* then force the loop condition to become false */
355 fprintf(stderr
, "Error reading password from file %s: %s\n",
356 spec
, "empty password\n");
362 fprintf(stderr
, "Error reading password from file %s: %s\n",
363 spec
, strerror(errno
));
370 set_cmdline_auth_info_password(pass
);
376 static void get_credentials_file(const char *file
)
381 char *ptr
, *val
, *param
;
383 if ((auth
=x_fopen(file
, O_RDONLY
, 0)) == NULL
)
385 /* fail if we can't open the credentials file */
386 d_printf("ERROR: Unable to open credentials file!\n");
390 while (!x_feof(auth
))
392 /* get a line from the file */
393 if (!x_fgets(buf
, sizeof(buf
), auth
))
397 if ((len
) && (buf
[len
-1]=='\n'))
405 /* break up the line into parameter & value.
406 * will need to eat a little whitespace possibly */
408 if (!(ptr
= strchr_m (buf
, '=')))
414 /* eat leading white space */
415 while ((*val
!='\0') && ((*val
==' ') || (*val
=='\t')))
418 if (strwicmp("password", param
) == 0) {
419 set_cmdline_auth_info_password(val
);
420 } else if (strwicmp("username", param
) == 0) {
421 set_cmdline_auth_info_username(val
);
422 } else if (strwicmp("domain", param
) == 0) {
423 set_global_myworkgroup(val
);
425 memset(buf
, 0, sizeof(buf
));
430 /* Handle command line options:
432 * -A,--authentication-file
441 static void popt_common_credentials_callback(poptContext con
,
442 enum poptCallbackReason reason
,
443 const struct poptOption
*opt
,
444 const char *arg
, const void *data
)
448 if (reason
== POPT_CALLBACK_REASON_PRE
) {
449 set_cmdline_auth_info_username("GUEST");
451 if (getenv("LOGNAME")) {
452 set_cmdline_auth_info_username(getenv("LOGNAME"));
455 if (getenv("USER")) {
456 char *puser
= SMB_STRDUP(getenv("USER"));
460 set_cmdline_auth_info_username(puser
);
462 if ((p
= strchr_m(puser
,'%'))) {
466 set_cmdline_auth_info_password(p
+1);
467 memset(strchr_m(getenv("USER"),'%')+1,'X',len
);
472 if (getenv("PASSWD")) {
473 set_cmdline_auth_info_password(getenv("PASSWD"));
476 if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
487 char *puser
= SMB_STRDUP(arg
);
489 if ((lp
=strchr_m(puser
,'%'))) {
492 set_cmdline_auth_info_username(puser
);
493 set_cmdline_auth_info_password(lp
+1);
495 memset(strchr_m(arg
,'%')+1,'X',len
);
497 set_cmdline_auth_info_username(puser
);
504 get_credentials_file(arg
);
509 d_printf("No kerberos support compiled in\n");
512 set_cmdline_auth_info_use_krb5_ticket();
517 if (!set_cmdline_auth_info_signing_state(arg
)) {
518 fprintf(stderr
, "Unknown signing option %s\n", arg
);
523 set_cmdline_auth_info_use_machine_account();
526 set_cmdline_auth_info_password("");
529 set_cmdline_auth_info_smb_encrypt();
535 struct poptOption popt_common_credentials
[] = {
536 { NULL
, 0, POPT_ARG_CALLBACK
|POPT_CBFLAG_PRE
, (void *)popt_common_credentials_callback
},
537 { "user", 'U', POPT_ARG_STRING
, NULL
, 'U', "Set the network username", "USERNAME" },
538 { "no-pass", 'N', POPT_ARG_NONE
, NULL
, 'N', "Don't ask for a password" },
539 { "kerberos", 'k', POPT_ARG_NONE
, NULL
, 'k', "Use kerberos (active directory) authentication" },
540 { "authentication-file", 'A', POPT_ARG_STRING
, NULL
, 'A', "Get the credentials from a file", "FILE" },
541 { "signing", 'S', POPT_ARG_STRING
, NULL
, 'S', "Set the client signing state", "on|off|required" },
542 {"machine-pass", 'P', POPT_ARG_NONE
, NULL
, 'P', "Use stored machine account password" },
543 {"encrypt", 'e', POPT_ARG_NONE
, NULL
, 'e', "Encrypt SMB transport (UNIX extended servers only)" },