413c8e7cc3d44476711f87e2d076aa8a3662686f
[kai/samba.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 3 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, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "version.h"
24 #include "lib/cmdline/popt_common.h"
25
26 /* Handle command line options:
27  *              -d,--debuglevel 
28  *              -s,--configfile 
29  *              -O,--socket-options 
30  *              -V,--version
31  *              -l,--log-base
32  *              -n,--netbios-name
33  *              -W,--workgroup
34  *              --realm
35  *              -i,--scope
36  */
37
38 enum {OPT_OPTION=1,OPT_LEAK_REPORT,OPT_LEAK_REPORT_FULL,OPT_DEBUG_STDERR};
39
40 struct cli_credentials *cmdline_credentials = NULL;
41
42 static bool PrintSambaVersionString;
43
44 static void popt_common_callback(poptContext con, 
45                            enum poptCallbackReason reason,
46                            const struct poptOption *opt,
47                            const char *arg, const void *data)
48 {
49         const char *pname;
50
51         if (reason == POPT_CALLBACK_REASON_POST) {
52                 if (PrintSambaVersionString) {
53                         printf( "Version %s\n", SAMBA_VERSION_STRING );
54                         exit(0);
55                 }
56
57                 lp_load();
58                 /* Hook any 'every Samba program must do this, after
59                  * the smb.conf is setup' functions here */
60                 return;
61         }
62
63         /* Find out basename of current program */
64         pname = strrchr_m(poptGetInvocationName(con),'/');
65
66         if (!pname)
67                 pname = poptGetInvocationName(con);
68         else 
69                 pname++;
70
71         if (reason == POPT_CALLBACK_REASON_PRE) {
72                 /* Hook for 'almost the first thing to do in a samba program' here */
73                 /* setup for panics */
74                 fault_setup(poptGetInvocationName(con));
75
76                 /* and logging */
77                 setup_logging(pname, DEBUG_STDOUT);
78
79                 if (getenv("SMB_CONF_PATH")) {
80                         lp_set_cmdline("config file", getenv("SMB_CONF_PATH"));
81                 }
82                 return;
83         }
84
85         switch(opt->val) {
86         case 'd':
87                 lp_set_cmdline("log level", arg);
88                 break;
89
90         case OPT_DEBUG_STDERR:
91                 setup_logging(pname, DEBUG_STDERR);
92                 break;
93
94         case 'V':
95                 PrintSambaVersionString = true;
96                 break;
97
98         case 'O':
99                 if (arg) {
100                         lp_set_cmdline("socket options", arg);
101                 }
102                 break;
103
104         case 's':
105                 if (arg) {
106                         lp_set_cmdline("config file", arg);
107                 }
108                 break;
109
110         case 'l':
111                 if (arg) {
112                         char *new_logfile = talloc_asprintf(NULL, "%s/log.%s", arg, pname);
113                         lp_set_cmdline("log file", new_logfile);
114                         talloc_free(new_logfile);
115                 }
116                 break;
117                 
118         case 'W':
119                 lp_set_cmdline("workgroup", arg);
120                 break;
121
122         case 'r':
123                 lp_set_cmdline("realm", arg);
124                 break;
125                 
126         case 'n':
127                 lp_set_cmdline("netbios name", arg);
128                 break;
129                 
130         case 'i':
131                 lp_set_cmdline("netbios scope", arg);
132                 break;
133
134         case 'm':
135                 lp_set_cmdline("client max protocol", arg);
136                 break;
137
138         case 'R':
139                 lp_set_cmdline("name resolve order", arg);
140                 break;
141
142         case OPT_OPTION:
143                 if (!lp_set_option(arg)) {
144                         fprintf(stderr, "Error setting option '%s'\n", arg);
145                         exit(1);
146                 }
147                 break;
148
149         case OPT_LEAK_REPORT:
150                 talloc_enable_leak_report();
151                 break;
152
153         case OPT_LEAK_REPORT_FULL:
154                 talloc_enable_leak_report_full();
155                 break;
156
157         }
158 }
159
160 struct poptOption popt_common_connection[] = {
161         { NULL, 0, POPT_ARG_CALLBACK, (void *)popt_common_callback },
162         { "name-resolve", 'R', POPT_ARG_STRING, NULL, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
163         { "socket-options", 'O', POPT_ARG_STRING, NULL, 'O', "socket options to use", "SOCKETOPTIONS" },
164         { "netbiosname", 'n', POPT_ARG_STRING, NULL, 'n', "Primary netbios name", "NETBIOSNAME" },
165         { "workgroup", 'W', POPT_ARG_STRING, NULL, 'W', "Set the workgroup name", "WORKGROUP" },
166         { "realm", 0, POPT_ARG_STRING, NULL, 'r', "Set the realm name", "REALM" },
167         { "scope", 'i', POPT_ARG_STRING, NULL, 'i', "Use this Netbios scope", "SCOPE" },
168         { "maxprotocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set max protocol level", "MAXPROTOCOL" },
169         { NULL }
170 };
171
172 struct poptOption popt_common_samba[] = {
173         { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE|POPT_CBFLAG_POST, (void *)popt_common_callback },
174         { "debuglevel",   'd', POPT_ARG_STRING, NULL, 'd', "Set debug level", "DEBUGLEVEL" },
175         { "debug-stderr", 0, POPT_ARG_NONE, NULL, OPT_DEBUG_STDERR, "Send debug output to STDERR", NULL },
176         { "configfile",   's', POPT_ARG_STRING, NULL, 's', "Use alternative configuration file", "CONFIGFILE" },
177         { "option",         0, POPT_ARG_STRING, NULL, OPT_OPTION, "Set smb.conf option from command line", "name=value" },
178         { "log-basename", 'l', POPT_ARG_STRING, NULL, 'l', "Basename for log/debug files", "LOGFILEBASE" },
179         { "leak-report",     0, POPT_ARG_NONE, NULL, OPT_LEAK_REPORT, "enable talloc leak reporting on exit", NULL },   
180         { "leak-report-full",0, POPT_ARG_NONE, NULL, OPT_LEAK_REPORT_FULL, "enable full talloc leak reporting on exit", NULL },
181         { NULL }
182 };
183
184 struct poptOption popt_common_version[] = {
185         { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_POST, (void *)popt_common_callback },
186         { "version", 'V', POPT_ARG_NONE, NULL, 'V', "Print version" },
187         { NULL }
188 };
189