ctdb-daemon: Reorder main() to improve the structure
[metze/samba/wip.git] / ctdb / server / ctdbd.c
1 /* 
2    standalone ctdb daemon
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "replace.h"
21 #include "system/filesys.h"
22 #include "system/time.h"
23 #include "system/wait.h"
24 #include "system/network.h"
25
26 #include <popt.h>
27 #include <talloc.h>
28 /* Allow use of deprecated function tevent_loop_allow_nesting() */
29 #define TEVENT_DEPRECATED
30 #include <tevent.h>
31
32 #include "lib/util/debug.h"
33 #include "lib/util/samba_util.h"
34
35 #include "ctdb_private.h"
36
37 #include "common/reqid.h"
38 #include "common/system.h"
39 #include "common/common.h"
40 #include "common/logging.h"
41
42 static struct {
43         const char *debuglevel;
44         const char *transport;
45         const char *myaddress;
46         const char *logging;
47         const char *recovery_lock;
48         const char *db_dir;
49         const char *db_dir_persistent;
50         const char *db_dir_state;
51         int         nosetsched;
52         int         start_as_disabled;
53         int         start_as_stopped;
54         int         no_lmaster;
55         int         no_recmaster;
56         int         script_log_level;
57         int         max_persistent_check_errors;
58 } options = {
59         .debuglevel = "NOTICE",
60         .transport = "tcp",
61         .logging = "file:" LOGDIR "/log.ctdb",
62         .db_dir = CTDB_VARDIR,
63         .db_dir_persistent = CTDB_VARDIR "/persistent",
64         .db_dir_state = CTDB_VARDIR "/state",
65         .script_log_level = DEBUG_ERR,
66 };
67
68 int script_log_level;
69 bool fast_start;
70
71 /*
72   called by the transport layer when a packet comes in
73 */
74 static void ctdb_recv_pkt(struct ctdb_context *ctdb, uint8_t *data, uint32_t length)
75 {
76         struct ctdb_req_header *hdr = (struct ctdb_req_header *)data;
77
78         CTDB_INCREMENT_STAT(ctdb, node_packets_recv);
79
80         /* up the counter for this source node, so we know its alive */
81         if (ctdb_validate_pnn(ctdb, hdr->srcnode)) {
82                 /* as a special case, redirected calls don't increment the rx_cnt */
83                 if (hdr->operation != CTDB_REQ_CALL ||
84                     ((struct ctdb_req_call_old *)hdr)->hopcount == 0) {
85                         ctdb->nodes[hdr->srcnode]->rx_cnt++;
86                 }
87         }
88
89         ctdb_input_pkt(ctdb, hdr);
90 }
91
92 static const struct ctdb_upcalls ctdb_upcalls = {
93         .recv_pkt       = ctdb_recv_pkt,
94         .node_dead      = ctdb_node_dead,
95         .node_connected = ctdb_node_connected
96 };
97
98 static struct ctdb_context *ctdb_init(struct tevent_context *ev)
99 {
100         int ret;
101         struct ctdb_context *ctdb;
102
103         ctdb = talloc_zero(ev, struct ctdb_context);
104         if (ctdb == NULL) {
105                 DBG_ERR("Memory error\n");
106                 return NULL;
107         }
108         ctdb->ev  = ev;
109
110         /* Wrap early to exercise code. */
111         ret = reqid_init(ctdb, INT_MAX-200, &ctdb->idr);
112         if (ret != 0) {
113                 D_ERR("reqid_init failed (%s)\n", strerror(ret));
114                 talloc_free(ctdb);
115                 return NULL;
116         }
117
118         ret = srvid_init(ctdb, &ctdb->srv);
119         if (ret != 0) {
120                 D_ERR("srvid_init failed (%s)\n", strerror(ret));
121                 talloc_free(ctdb);
122                 return NULL;
123         }
124
125         ret = ctdb_set_socketname(ctdb, CTDB_SOCKET);
126         if (ret != 0) {
127                 DBG_ERR("ctdb_set_socketname failed.\n");
128                 talloc_free(ctdb);
129                 return NULL;
130         }
131
132         gettimeofday(&ctdb->ctdbd_start_time, NULL);
133
134         gettimeofday(&ctdb->last_recovery_started, NULL);
135         gettimeofday(&ctdb->last_recovery_finished, NULL);
136
137         ctdb->recovery_mode    = CTDB_RECOVERY_NORMAL;
138         ctdb->recovery_master  = (uint32_t)-1;
139
140         ctdb->upcalls = &ctdb_upcalls;
141
142         ctdb->statistics.statistics_start_time = timeval_current();
143
144         ctdb->capabilities = CTDB_CAP_DEFAULT;
145
146         /*
147          * Initialise this node's PNN to the unknown value.  This will
148          * be set to the correct value by either ctdb_add_node() as
149          * part of loading the nodes file or by
150          * ctdb_tcp_listen_automatic() when the transport is
151          * initialised.  At some point we should de-optimise this and
152          * pull it out into ctdb_start_daemon() so it is done clearly
153          * and only in one place.
154          */
155         ctdb->pnn = CTDB_UNKNOWN_PNN;
156
157         ctdb->do_checkpublicip = true;
158
159         return ctdb;
160 }
161
162
163 /*
164   main program
165 */
166 int main(int argc, const char *argv[])
167 {
168         struct ctdb_context *ctdb = NULL;
169         int interactive = 0;
170         const char *ctdb_socket;
171
172         struct poptOption popt_options[] = {
173                 POPT_AUTOHELP
174                 { "debug", 'd', POPT_ARG_STRING, &options.debuglevel, 0, "debug level", NULL },
175                 { "interactive", 'i', POPT_ARG_NONE, &interactive, 0, "don't fork", NULL },
176                 { "logging", 0, POPT_ARG_STRING, &options.logging, 0, "logging method to be used", NULL },
177                 { "listen", 0, POPT_ARG_STRING, &options.myaddress, 0, "address to listen on", "address" },
178                 { "transport", 0, POPT_ARG_STRING, &options.transport, 0, "protocol transport", NULL },
179                 { "dbdir", 0, POPT_ARG_STRING, &options.db_dir, 0, "directory for the tdb files", NULL },
180                 { "dbdir-persistent", 0, POPT_ARG_STRING, &options.db_dir_persistent, 0, "directory for persistent tdb files", NULL },
181                 { "dbdir-state", 0, POPT_ARG_STRING, &options.db_dir_state, 0, "directory for internal state tdb files", NULL },
182                 { "reclock", 0, POPT_ARG_STRING, &options.recovery_lock, 0, "recovery lock", "lock" },
183                 { "nosetsched", 0, POPT_ARG_NONE, &options.nosetsched, 0, "disable setscheduler SCHED_FIFO call, use mmap for tdbs", NULL },
184                 { "start-as-disabled", 0, POPT_ARG_NONE, &options.start_as_disabled, 0, "Node starts in disabled state", NULL },
185                 { "start-as-stopped", 0, POPT_ARG_NONE, &options.start_as_stopped, 0, "Node starts in stopped state", NULL },
186                 { "no-lmaster", 0, POPT_ARG_NONE, &options.no_lmaster, 0, "disable lmaster role on this node", NULL },
187                 { "no-recmaster", 0, POPT_ARG_NONE, &options.no_recmaster, 0, "disable recmaster role on this node", NULL },
188                 { "script-log-level", 0, POPT_ARG_INT, &options.script_log_level, 0, "log level of event script output", NULL },
189                 { "max-persistent-check-errors", 0, POPT_ARG_INT,
190                   &options.max_persistent_check_errors, 0,
191                   "max allowed persistent check errors (default 0)", NULL },
192                 POPT_TABLEEND
193         };
194         int opt, ret;
195         const char **extra_argv;
196         poptContext pc;
197         struct tevent_context *ev;
198         const char *ctdb_base;
199         const char *t;
200
201         /*
202          * Basic setup
203          */
204
205         talloc_enable_null_tracking();
206
207         fault_setup();
208
209         ev = tevent_context_init(NULL);
210         if (ev == NULL) {
211                 fprintf(stderr, "tevent_context_init() failed\n");
212                 exit(1);
213         }
214         tevent_loop_allow_nesting(ev);
215
216         ctdb = ctdb_init(ev);
217         if (ctdb == NULL) {
218                 fprintf(stderr, "Failed to init ctdb\n");
219                 exit(1);
220         }
221
222         /* Default value for CTDB_BASE - don't override */
223         setenv("CTDB_BASE", CTDB_ETCDIR, 0);
224         ctdb_base = getenv("CTDB_BASE");
225         if (ctdb_base == NULL) {
226                 D_ERR("CTDB_BASE not set\n");
227                 exit(1);
228         }
229
230         /*
231          * Command-line option handling
232          */
233
234         pc = poptGetContext(argv[0], argc, argv, popt_options, POPT_CONTEXT_KEEP_FIRST);
235
236         while ((opt = poptGetNextOpt(pc)) != -1) {
237                 switch (opt) {
238                 default:
239                         fprintf(stderr, "Invalid option %s: %s\n", 
240                                 poptBadOption(pc, 0), poptStrerror(opt));
241                         goto fail;
242                 }
243         }
244
245         /* If there are extra arguments then exit with usage message */
246         extra_argv = poptGetArgs(pc);
247         if (extra_argv) {
248                 extra_argv++;
249                 if (extra_argv[0])  {
250                         poptPrintHelp(pc, stdout, 0);
251                         goto fail;
252                 }
253         }
254
255         /*
256          * Logging setup/options
257          */
258
259         /* Log to stderr when running as interactive */
260         if (interactive) {
261                 options.logging = "file:";
262         }
263
264         /* Initialize logging and set the debug level */
265         if (!ctdb_logging_init(ctdb, options.logging, options.debuglevel)) {
266                 goto fail;
267         }
268         setenv("CTDB_LOGGING", options.logging, 1);
269         setenv("CTDB_DEBUGLEVEL", debug_level_to_string(DEBUGLEVEL), 1);
270
271         script_log_level = options.script_log_level;
272
273         D_NOTICE("CTDB starting on node\n");
274
275         /*
276          * Cluster setup/options
277          */
278
279         ret = ctdb_set_transport(ctdb, options.transport);
280         if (ret == -1) {
281                 D_ERR("ctdb_set_transport failed - %s\n", ctdb_errstr(ctdb));
282                 goto fail;
283         }
284
285         if (options.recovery_lock == NULL) {
286                 D_WARNING("Recovery lock not set\n");
287         }
288         ctdb->recovery_lock = options.recovery_lock;
289
290         /* tell ctdb what address to listen on */
291         if (options.myaddress) {
292                 ret = ctdb_set_address(ctdb, options.myaddress);
293                 if (ret == -1) {
294                         D_ERR("ctdb_set_address failed - %s\n",
295                               ctdb_errstr(ctdb));
296                         goto fail;
297                 }
298         }
299
300         /* tell ctdb what nodes are available */
301         ctdb->nodes_file = talloc_asprintf(ctdb, "%s/nodes", ctdb_base);
302         if (ctdb->nodes_file == NULL) {
303                 DBG_ERR(" Out of memory\n");
304                 goto fail;
305         }
306         ctdb_load_nodes_file(ctdb);
307
308         /*
309          * Database setup/options
310          */
311
312         ctdb->db_directory = options.db_dir;
313         mkdir_p_or_die(ctdb->db_directory, 0700);
314
315         ctdb->db_directory_persistent = options.db_dir_persistent;
316         mkdir_p_or_die(ctdb->db_directory_persistent, 0700);
317
318         ctdb->db_directory_state = options.db_dir_state;
319         mkdir_p_or_die(ctdb->db_directory_state, 0700);
320
321         if (options.max_persistent_check_errors < 0) {
322                 ctdb->max_persistent_check_errors = 0xFFFFFFFFFFFFFFFFLL;
323         } else {
324                 ctdb->max_persistent_check_errors =
325                         (uint64_t)options.max_persistent_check_errors;
326         }
327
328         /*
329          * Legacy setup/options
330          */
331
332         ctdb->start_as_disabled = options.start_as_disabled;
333         ctdb->start_as_stopped  = options.start_as_stopped;
334
335         /* set ctdbd capabilities */
336         if (options.no_lmaster != 0) {
337                 ctdb->capabilities &= ~CTDB_CAP_LMASTER;
338         }
339         if (options.no_recmaster != 0) {
340                 ctdb->capabilities &= ~CTDB_CAP_RECMASTER;
341         }
342
343         ctdb->do_setsched = (options.nosetsched != 1);
344
345         /*
346          * Miscellaneous setup
347          */
348
349         ctdb_tunables_set_defaults(ctdb);
350
351         ctdb->event_script_dir = talloc_asprintf(ctdb,
352                                                  "%s/events.d",
353                                                  ctdb_base);
354         if (ctdb->event_script_dir == NULL) {
355                 DBG_ERR("Out of memory\n");
356                 goto fail;
357         }
358
359         ctdb->notification_script = talloc_asprintf(ctdb,
360                                                     "%s/notify.sh",
361                                                     ctdb_base);
362         if (ctdb->notification_script == NULL) {
363                 D_ERR("Unable to set notification script\n");
364                 goto fail;
365         }
366
367         /*
368          * Testing and debug options
369          */
370
371         /* Environment variable overrides default */
372         ctdbd_pidfile = getenv("CTDB_PIDFILE");
373         if (ctdbd_pidfile == NULL) {
374                 ctdbd_pidfile = CTDB_RUNDIR "/ctdbd.pid";
375         }
376
377         /* Environment variable overrides default */
378         ctdb_socket = getenv("CTDB_SOCKET");
379         if (ctdb_socket == NULL) {
380                 ctdb_socket = CTDB_SOCKET;
381         }
382         ret = ctdb_set_socketname(ctdb, ctdb_socket);
383         if (ret == -1) {
384                 D_ERR("ctdb_set_socketname() failed\n");
385                 goto fail;
386         }
387
388         t = getenv("CTDB_TEST_MODE");
389         if (t != NULL) {
390                 ctdb->do_setsched = false;
391                 ctdb->do_checkpublicip = false;
392                 fast_start = true;
393         }
394
395         /* start the protocol running (as a child) */
396         return ctdb_start_daemon(ctdb, interactive?false:true);
397
398 fail:
399         talloc_free(ctdb);
400         exit(1);
401 }