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