r7525: Unify lp_load(), load_interfaces and logging setup into popt().
[bbaumbach/samba-autobuild/.git] / source4 / lib / cmdline / popt_common.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Common popt routines
4
5    Copyright (C) Tim Potter 2001,2002
6    Copyright (C) Jelmer Vernooij 2002,2003,2005
7
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.
12    
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.
17    
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.
21 */
22
23 #include "includes.h"
24 #include "version.h"
25 #include "dynconfig.h"
26 #include "system/filesys.h"
27 #include "system/passwd.h"
28 #include "lib/cmdline/popt_common.h"
29
30 /* Handle command line options:
31  *              -d,--debuglevel 
32  *              -s,--configfile 
33  *              -O,--socket-options 
34  *              -V,--version
35  *              -l,--log-base
36  *              -n,--netbios-name
37  *              -W,--workgroup
38  *              -i,--scope
39  */
40
41 enum {OPT_OPTION=1,OPT_LEAK_REPORT,OPT_LEAK_REPORT_FULL, OPT_DEBUG_STDERR};
42
43 struct cli_credentials *cmdline_credentials = NULL;
44
45 static void popt_common_callback(poptContext con, 
46                            enum poptCallbackReason reason,
47                            const struct poptOption *opt,
48                            const char *arg, const void *data)
49 {
50         const char *pname;
51         
52         if (reason == POPT_CALLBACK_REASON_POST) {
53                 /* Hook any 'every Samba program must do this, after
54                  * the smb.conf is setup' functions here */
55                 lp_load(dyn_CONFIGFILE,True,False,False);
56                 load_interfaces();
57                 return;
58         }
59
60         /* Find out basename of current program */
61         pname = strrchr_m(poptGetInvocationName(con),'/');
62
63         if (!pname)
64                 pname = poptGetInvocationName(con);
65         else 
66                 pname++;
67
68         if (reason == POPT_CALLBACK_REASON_PRE) {
69                 setup_logging(pname, DEBUG_STDOUT);
70                 return;
71         }
72
73         switch(opt->val) {
74         case 'd':
75                 lp_set_cmdline("log level", arg);
76                 break;
77
78         case OPT_DEBUG_STDERR:
79                 setup_logging(pname, DEBUG_STDERR);
80                 break;
81
82         case 'V':
83                 printf( "Version %s\n", SAMBA_VERSION_STRING );
84                 exit(0);
85                 break;
86
87         case 'O':
88                 if (arg) {
89                         lp_set_cmdline("socket options", arg);
90                 }
91                 break;
92
93         case 's':
94                 if (arg) {
95                         pstrcpy(dyn_CONFIGFILE, arg);
96                 }
97                 break;
98
99         case 'l':
100                 if (arg) {
101                         char *logfile = talloc_asprintf(NULL, "%s/log.%s", arg, pname);
102                         lp_set_cmdline("log file", logfile);
103                         talloc_free(logfile);
104                 }
105                 break;
106                 
107         case 'W':
108                 lp_set_cmdline("workgroup", arg);
109                 break;
110                 
111         case 'n':
112                 lp_set_cmdline("netbios name", arg);
113                 break;
114                 
115         case 'i':
116                 lp_set_cmdline("netbios scope", arg);
117                 break;
118
119         case 'm':
120                 lp_set_cmdline("max protocol", arg);
121                 break;
122
123         case 'R':
124                 lp_set_cmdline("name resolve order", arg);
125                 break;
126
127         case OPT_OPTION:
128                 if (!lp_set_option(arg)) {
129                         fprintf(stderr, "Error setting option '%s'\n", arg);
130                         exit(1);
131                 }
132                 break;
133
134         case OPT_LEAK_REPORT:
135                 talloc_enable_leak_report();
136                 break;
137
138         case OPT_LEAK_REPORT_FULL:
139                 talloc_enable_leak_report_full();
140                 break;
141
142         }
143 }
144
145 struct poptOption popt_common_connection[] = {
146         { NULL, 0, POPT_ARG_CALLBACK, popt_common_callback },
147         { "name-resolve", 'R', POPT_ARG_STRING, NULL, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
148         { "socket-options", 'O', POPT_ARG_STRING, NULL, 'O', "socket options to use", "SOCKETOPTIONS" },
149         { "netbiosname", 'n', POPT_ARG_STRING, NULL, 'n', "Primary netbios name", "NETBIOSNAME" },
150         { "workgroup", 'W', POPT_ARG_STRING, NULL, 'W', "Set the workgroup name", "WORKGROUP" },
151         { "scope", 'i', POPT_ARG_STRING, NULL, 'i', "Use this Netbios scope", "SCOPE" },
152         { "maxprotocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set max protocol level", "MAXPROTOCOL" },
153         POPT_TABLEEND
154 };
155
156 struct poptOption popt_common_samba[] = {
157         { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE|POPT_CBFLAG_POST, popt_common_callback },
158         { "debuglevel",   'd', POPT_ARG_STRING, NULL, 'd', "Set debug level", "DEBUGLEVEL" },
159         { "debug-stderr", 0, POPT_ARG_NONE, NULL, OPT_DEBUG_STDERR, "Send debug output to STDERR", NULL },
160         { "configfile",   's', POPT_ARG_STRING, NULL, 's', "Use alternative configuration file", "CONFIGFILE" },
161         { "option",         0, POPT_ARG_STRING, NULL, OPT_OPTION, "Set smb.conf option from command line", "name=value" },
162         { "log-basename", 'l', POPT_ARG_STRING, NULL, 'l', "Basename for log/debug files", "LOGFILEBASE" },
163         { "leak-report",     0, POPT_ARG_NONE, NULL, OPT_LEAK_REPORT, "enable talloc leak reporting on exit", NULL },   
164         { "leak-report-full",0, POPT_ARG_NONE, NULL, OPT_LEAK_REPORT_FULL, "enable full talloc leak reporting on exit", NULL },
165         POPT_TABLEEND
166 };
167
168 struct poptOption popt_common_version[] = {
169         { NULL, 0, POPT_ARG_CALLBACK, popt_common_callback },
170         { "version", 'V', POPT_ARG_NONE, NULL, 'V', "Print version" },
171         POPT_TABLEEND
172 };
173
174 /* Handle command line options:
175  *              -U,--user
176  *              -A,--authentication-file
177  *              -k,--use-kerberos
178  *              -N,--no-pass
179  *              -S,--signing
180  *      -P --machine-pass
181  */
182
183
184 static BOOL dont_ask = False;
185
186 static void popt_common_credentials_callback(poptContext con, 
187                                                 enum poptCallbackReason reason,
188                                                 const struct poptOption *opt,
189                                                 const char *arg, const void *data)
190 {
191         if (reason == POPT_CALLBACK_REASON_PRE) {
192                 cmdline_credentials = cli_credentials_init(talloc_autofree_context());
193                 return;
194         }
195         
196         if (reason == POPT_CALLBACK_REASON_POST) {
197                 cli_credentials_guess(cmdline_credentials);
198
199                 if (!dont_ask) {
200                         cli_credentials_set_cmdline_callbacks(cmdline_credentials);
201                 }
202                 return;
203         }
204
205         switch(opt->val) {
206         case 'U':
207                 {
208                         char *lp;
209
210                         cli_credentials_parse_string(cmdline_credentials, arg, CRED_SPECIFIED);
211
212                         if (cmdline_credentials->password && (lp=strchr_m(arg,'%'))) {
213                                 memset(lp,0,strlen(cmdline_credentials->password));
214                         }
215                 }
216                 break;
217
218         case 'A':
219                 cli_credentials_parse_file(cmdline_credentials, arg, CRED_SPECIFIED);
220                 break;
221
222         case 'S':
223                 lp_set_cmdline("client signing", arg);
224                 break;
225
226         case 'P':
227                 /* Later, after this is all over, get the machine account details from the secrets.ldb */
228                 cli_credentials_set_machine_account_pending(cmdline_credentials);
229                 
230                 /* machine accounts only work with kerberos (fall though)*/
231
232         case 'k':
233 #ifndef HAVE_KRB5
234                 d_printf("No kerberos support compiled in\n");
235                 exit(1);
236 #else
237                 lp_set_cmdline("gensec:krb5", "True");
238                 lp_set_cmdline("gensec:ms_krb5", "True");
239 #endif
240                 break;
241
242
243         }
244 }
245
246
247
248 struct poptOption popt_common_credentials[] = {
249         { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE|POPT_CBFLAG_POST, popt_common_credentials_callback },
250         { "user", 'U', POPT_ARG_STRING, NULL, 'U', "Set the network username", "[DOMAIN\\]USERNAME[%PASSWORD]" },
251         { "no-pass", 'N', POPT_ARG_NONE, &dont_ask, True, "Don't ask for a password" },
252         { "kerberos", 'k', POPT_ARG_NONE, NULL, 'k', "Use kerberos (active directory) authentication" },
253         { "authentication-file", 'A', POPT_ARG_STRING, NULL, 'A', "Get the credentials from a file", "FILE" },
254         { "signing", 'S', POPT_ARG_STRING, NULL, 'S', "Set the client signing state", "on|off|required" },
255         { "machine-pass", 'P', POPT_ARG_NONE, NULL, 'P', "Use stored machine account password (implies -k)" },
256         POPT_TABLEEND
257 };