e12491c3e8f16e2a6ae12b4a42160fad4f6dd2bf
[sahlberg/ctdb.git] / server / eventscript.c
1 /* 
2    event script handling
3
4    Copyright (C) Andrew Tridgell  2007
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 "includes.h"
21 #include <time.h>
22 #include "system/filesys.h"
23 #include "system/wait.h"
24 #include "system/dir.h"
25 #include "system/locale.h"
26 #include "../include/ctdb_private.h"
27 #include "lib/events/events.h"
28 #include "../common/rb_tree.h"
29
30 static struct {
31         struct timeval start;
32         const char *script_running;
33 } child_state;
34
35 static void ctdb_event_script_timeout(struct event_context *ev, struct timed_event *te, struct timeval t, void *p);
36
37 /*
38   ctdbd sends us a SIGTERM when we should time out the current script
39  */
40 static void sigterm(int sig)
41 {
42         char tbuf[100], buf[200];
43         time_t t;
44
45         DEBUG(DEBUG_ERR,("Timed out running script '%s' after %.1f seconds pid :%d\n", 
46                  child_state.script_running, timeval_elapsed(&child_state.start), getpid()));
47
48         t = time(NULL);
49
50         strftime(tbuf, sizeof(tbuf)-1, "%Y%m%d%H%M%S",  localtime(&t));
51         sprintf(buf, "{ pstree -p; cat /proc/locks; ls -li /var/ctdb/ /var/ctdb/persistent; }"
52                 " >/tmp/ctdb.event.%s.%d", tbuf, getpid());
53         system(buf);
54
55         DEBUG(DEBUG_ERR,("Logged timedout eventscript : %s\n", buf));
56
57         /* all the child processes will be running in the same process group */
58         kill(-getpgrp(), SIGKILL);
59         _exit(1);
60 }
61
62 struct ctdb_event_script_state {
63         struct ctdb_context *ctdb;
64         pid_t child;
65         /* Warning: this can free us! */
66         void (*callback)(struct ctdb_context *, int, void *);
67         int fd[2];
68         void *private_data;
69         bool from_user;
70         enum ctdb_eventscript_call call;
71         const char *options;
72         struct timeval timeout;
73
74         unsigned int current;
75         struct ctdb_scripts_wire *scripts;
76 };
77
78 static struct ctdb_script_wire *get_current_script(struct ctdb_event_script_state *state)
79 {
80         return &state->scripts->scripts[state->current];
81 }
82
83 /* called from ctdb_logging when we have received output on STDERR from
84  * one of the eventscripts
85  */
86 static void log_event_script_output(const char *str, uint16_t len, void *p)
87 {
88         struct ctdb_event_script_state *state
89                 = talloc_get_type(p, struct ctdb_event_script_state);
90         struct ctdb_script_wire *current;
91         unsigned int slen, min;
92
93         /* We may have been aborted to run something else.  Discard */
94         if (state->scripts == NULL) {
95                 return;
96         }
97
98         current = get_current_script(state);
99
100         /* Append, but don't overfill buffer.  It starts zero-filled. */
101         slen = strlen(current->output);
102         min = MIN(len, sizeof(current->output) - slen - 1);
103
104         memcpy(current->output + slen, str, min);
105 }
106
107 int32_t ctdb_control_get_event_script_status(struct ctdb_context *ctdb,
108                                              uint32_t call_type,
109                                              TDB_DATA *outdata)
110 {
111         if (call_type >= CTDB_EVENT_MAX) {
112                 return -1;
113         }
114
115         if (ctdb->last_status[call_type] == NULL) {
116                 /* If it's never been run, return nothing so they can tell. */
117                 outdata->dsize = 0;
118         } else {
119                 outdata->dsize = talloc_get_size(ctdb->last_status[call_type]);
120                 outdata->dptr  = (uint8_t *)ctdb->last_status[call_type];
121         }
122         return 0;
123 }
124
125 struct ctdb_script_tree_item {
126         const char *name;
127         int error;
128 };
129
130 /* Return true if OK, otherwise set errno. */
131 static bool check_executable(const char *dir, const char *name)
132 {
133         char *full;
134         struct stat st;
135
136         full = talloc_asprintf(NULL, "%s/%s", dir, name);
137         if (!full)
138                 return false;
139
140         if (stat(full, &st) != 0) {
141                 DEBUG(DEBUG_ERR,("Could not stat event script %s: %s\n",
142                                  full, strerror(errno)));
143                 talloc_free(full);
144                 return false;
145         }
146
147         if (!(st.st_mode & S_IXUSR)) {
148                 DEBUG(DEBUG_DEBUG,("Event script %s is not executable. Ignoring this event script\n", full));
149                 errno = ENOEXEC;
150                 talloc_free(full);
151                 return false;
152         }
153
154         talloc_free(full);
155         return true;
156 }
157
158 static struct ctdb_scripts_wire *ctdb_get_script_list(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx)
159 {
160         DIR *dir;
161         struct dirent *de;
162         struct stat st;
163         trbt_tree_t *tree;
164         struct ctdb_scripts_wire *scripts;
165         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
166         struct ctdb_script_tree_item *tree_item;
167         int count;
168
169         /*
170           the service specific event scripts 
171         */
172         if (stat(ctdb->event_script_dir, &st) != 0 && 
173             errno == ENOENT) {
174                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
175                 talloc_free(tmp_ctx);
176                 return NULL;
177         }
178
179         /* create a tree to store all the script names in */
180         tree = trbt_create(tmp_ctx, 0);
181
182         /* scan all directory entries and insert all valid scripts into the 
183            tree
184         */
185         dir = opendir(ctdb->event_script_dir);
186         if (dir == NULL) {
187                 DEBUG(DEBUG_CRIT,("Failed to open event script directory '%s'\n", ctdb->event_script_dir));
188                 talloc_free(tmp_ctx);
189                 return NULL;
190         }
191
192         count = 0;
193         while ((de=readdir(dir)) != NULL) {
194                 int namlen;
195                 unsigned num;
196
197                 namlen = strlen(de->d_name);
198
199                 if (namlen < 3) {
200                         continue;
201                 }
202
203                 if (de->d_name[namlen-1] == '~') {
204                         /* skip files emacs left behind */
205                         continue;
206                 }
207
208                 if (de->d_name[2] != '.') {
209                         continue;
210                 }
211
212                 if (sscanf(de->d_name, "%02u.", &num) != 1) {
213                         continue;
214                 }
215
216                 if (strlen(de->d_name) > MAX_SCRIPT_NAME) {
217                         DEBUG(DEBUG_ERR,("Script name %s too long! %u chars max",
218                                          de->d_name, MAX_SCRIPT_NAME));
219                         continue;
220                 }
221
222                 tree_item = talloc(tree, struct ctdb_script_tree_item);
223                 if (tree_item == NULL) {
224                         DEBUG(DEBUG_ERR, (__location__ " Failed to allocate new tree item\n"));
225                         talloc_free(tmp_ctx);
226                         return NULL;
227                 }
228         
229                 tree_item->error = 0;
230                 if (!check_executable(ctdb->event_script_dir, de->d_name)) {
231                         tree_item->error = errno;
232                 }
233
234                 tree_item->name = talloc_strdup(tree_item, de->d_name);
235                 if (tree_item->name == NULL) {
236                         DEBUG(DEBUG_ERR,(__location__ " Failed to allocate script name.\n"));
237                         talloc_free(tmp_ctx);
238                         return NULL;
239                 }
240
241                 /* store the event script in the tree */
242                 trbt_insert32(tree, (num<<16)|count++, tree_item);
243         }
244         closedir(dir);
245
246         /* Overallocates by one, but that's OK */
247         scripts = talloc_zero_size(tmp_ctx,
248                                    sizeof(*scripts)
249                                    + sizeof(scripts->scripts[0]) * count);
250         if (scripts == NULL) {
251                 DEBUG(DEBUG_ERR, (__location__ " Failed to allocate scripts\n"));
252                 talloc_free(tmp_ctx);
253                 return NULL;
254         }
255         scripts->num_scripts = count;
256
257         for (count = 0; count < scripts->num_scripts; count++) {
258                 tree_item = trbt_findfirstarray32(tree, 1);
259
260                 strcpy(scripts->scripts[count].name, tree_item->name);
261                 scripts->scripts[count].status = -tree_item->error;
262
263                 /* remove this script from the tree */
264                 talloc_free(tree_item);
265         }
266
267         talloc_steal(mem_ctx, scripts);
268         talloc_free(tmp_ctx);
269         return scripts;
270 }
271
272 static int child_setup(struct ctdb_context *ctdb)
273 {
274         if (setpgid(0,0) != 0) {
275                 int ret = -errno;
276                 DEBUG(DEBUG_ERR,("Failed to create process group for event scripts - %s\n",
277                          strerror(errno)));
278                 return ret;
279         }
280
281         signal(SIGTERM, sigterm);
282         return 0;
283 }
284
285 static char *child_command_string(struct ctdb_context *ctdb,
286                                        TALLOC_CTX *ctx,
287                                        bool from_user,
288                                        const char *scriptname,
289                                        enum ctdb_eventscript_call call,
290                                        const char *options)
291 {
292         const char *str = from_user ? "CTDB_CALLED_BY_USER=1 " : "";
293
294         /* Allow a setting where we run the actual monitor event
295            from an external source and replace it with
296            a "status" event that just picks up the actual
297            status of the event asynchronously.
298         */
299         if ((ctdb->tunable.use_status_events_for_monitoring != 0)
300             &&  (call == CTDB_EVENT_MONITOR)
301             &&  !from_user) {
302                 return talloc_asprintf(ctx, "%s%s/%s %s",
303                                        str,
304                                        ctdb->event_script_dir,
305                                        scriptname, "status");
306         } else {
307                 return talloc_asprintf(ctx, "%s%s/%s %s %s",
308                                        str,
309                                        ctdb->event_script_dir,
310                                        scriptname,
311                                        ctdb_eventscript_call_names[call],
312                                        options);
313         }
314 }
315
316 static int child_run_one(struct ctdb_context *ctdb,
317                          const char *scriptname, const char *cmdstr)
318 {
319         int ret;
320
321         ret = system(cmdstr);
322         /* if the system() call was successful, translate ret into the
323            return code from the command
324         */
325         if (ret != -1) {
326                 ret = WEXITSTATUS(ret);
327         } else {
328                 ret = -errno;
329         }
330
331         /* 127 could mean it does not exist, 126 non-executable. */
332         if (ret == 127 || ret == 126) {
333                 /* Re-check it... */
334                 if (!check_executable(ctdb->event_script_dir, scriptname)) {
335                         DEBUG(DEBUG_ERR,("Script %s returned status %u. Someone just deleted it?\n",
336                                          cmdstr, ret));
337                         ret = -errno;
338                 }
339         }
340         return ret;
341 }
342
343 /*
344   Actually run one event script
345   this function is called and run in the context of a forked child
346   which allows it to do blocking calls such as system()
347  */
348 static int child_run_script(struct ctdb_context *ctdb,
349                             bool from_user,
350                             enum ctdb_eventscript_call call,
351                             const char *options,
352                             struct ctdb_script_wire *current)
353 {
354         char *cmdstr;
355         int ret;
356         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
357
358         child_state.start = timeval_current();
359         ret = child_setup(ctdb);
360         if (ret != 0)
361                 goto out;
362
363         cmdstr = child_command_string(ctdb, tmp_ctx, from_user,
364                                       current->name, call, options);
365         CTDB_NO_MEMORY(ctdb, cmdstr);
366         child_state.script_running = cmdstr;
367
368         DEBUG(DEBUG_DEBUG,("Executing event script %s\n",cmdstr));
369
370         if (current->status) {
371                 ret = current->status;
372                 goto out;
373         }
374
375         ret = child_run_one(ctdb, current->name, cmdstr);
376 out:
377         talloc_free(tmp_ctx);
378         return ret;
379 }
380
381 static void ctdb_event_script_handler(struct event_context *ev, struct fd_event *fde,
382                                       uint16_t flags, void *p);
383
384 static int fork_child_for_script(struct ctdb_context *ctdb,
385                                  struct ctdb_event_script_state *state)
386 {
387         int r;
388         struct ctdb_script_wire *current = get_current_script(state);
389
390         current->start = timeval_current();
391
392         r = pipe(state->fd);
393         if (r != 0) {
394                 DEBUG(DEBUG_ERR, (__location__ " pipe failed for child eventscript process\n"));
395                 return -errno;
396         }
397
398         if (!ctdb_fork_with_logging(state, ctdb, log_event_script_output,
399                                     state, &state->child)) {
400                 r = -errno;
401                 close(state->fd[0]);
402                 close(state->fd[1]);
403                 return r;
404         }
405
406         /* If we are the child, do the work. */
407         if (state->child == 0) {
408                 int rt;
409
410                 close(state->fd[0]);
411                 set_close_on_exec(state->fd[1]);
412
413                 rt = child_run_script(ctdb, state->from_user, state->call, state->options, current);
414                 /* We must be able to write PIPEBUF bytes at least; if this
415                    somehow fails, the read above will be short. */
416                 write(state->fd[1], &rt, sizeof(rt));
417                 close(state->fd[1]);
418                 _exit(rt);
419         }
420
421         close(state->fd[1]);
422         set_close_on_exec(state->fd[0]);
423
424         DEBUG(DEBUG_DEBUG, (__location__ " Created PIPE FD:%d to child eventscript process\n", state->fd[0]));
425
426         /* Set ourselves up to be called when that's done. */
427         event_add_fd(ctdb->ev, state, state->fd[0], EVENT_FD_READ|EVENT_FD_AUTOCLOSE,
428                      ctdb_event_script_handler, state);
429         return 0;
430 }
431
432 /*
433  Summarize status of this run of scripts.
434  */
435 static int script_status(struct ctdb_scripts_wire *scripts)
436 {
437         unsigned int i;
438
439         for (i = 0; i < scripts->num_scripts; i++) {
440                 switch (scripts->scripts[i].status) {
441                 case -ENOENT:
442                 case -ENOEXEC:
443                         /* Disabled or missing; that's OK. */
444                         break;
445                 case 0:
446                         /* No problem. */
447                         break;
448                 default:
449                         return scripts->scripts[i].status;
450                 }
451         }
452
453         /* All OK! */
454         return 0;
455 }
456
457 /* called when child is finished */
458 static void ctdb_event_script_handler(struct event_context *ev, struct fd_event *fde, 
459                                       uint16_t flags, void *p)
460 {
461         struct ctdb_event_script_state *state = 
462                 talloc_get_type(p, struct ctdb_event_script_state);
463         struct ctdb_script_wire *current = get_current_script(state);
464         struct ctdb_context *ctdb = state->ctdb;
465         int r, status;
466
467         r = read(state->fd[0], &current->status, sizeof(current->status));
468         if (r < 0) {
469                 current->status = -errno;
470         } else if (r != sizeof(current->status)) {
471                 current->status = -EIO;
472         }
473
474         current->finished = timeval_current();
475         /* valgrind gets overloaded if we run next script as it's still doing
476          * post-execution analysis, so kill finished child here. */
477         if (ctdb->valgrinding) {
478                 kill(state->child, SIGKILL);
479         }
480
481         state->child = 0;
482
483         status = script_status(state->scripts);
484
485         /* Aborted or finished all scripts?  We're done. */
486         if (status != 0 || state->current+1 == state->scripts->num_scripts) {
487                 DEBUG(DEBUG_INFO,(__location__ " Eventscript %s %s finished with state %d\n",
488                                   ctdb_eventscript_call_names[state->call], state->options, status));
489
490                 ctdb->event_script_timeouts = 0;
491                 talloc_free(state);
492                 return;
493         }
494
495         /* Forget about that old fd. */
496         talloc_free(fde);
497
498         /* Next script! */
499         state->current++;
500         current++;
501         current->status = fork_child_for_script(ctdb, state);
502         if (current->status != 0) {
503                 /* This calls the callback. */
504                 talloc_free(state);
505         }
506 }
507
508 /* called when child times out */
509 static void ctdb_event_script_timeout(struct event_context *ev, struct timed_event *te, 
510                                       struct timeval t, void *p)
511 {
512         struct ctdb_event_script_state *state = talloc_get_type(p, struct ctdb_event_script_state);
513         struct ctdb_context *ctdb = state->ctdb;
514         struct ctdb_script_wire *current = get_current_script(state);
515
516         DEBUG(DEBUG_ERR,("Event script timed out : %s %s %s count : %u  pid : %d\n",
517                          current->name, ctdb_eventscript_call_names[state->call], state->options, ctdb->event_script_timeouts, state->child));
518
519         state->scripts->scripts[state->current].status = -ETIME;
520
521         if (kill(state->child, 0) != 0) {
522                 DEBUG(DEBUG_ERR,("Event script child process already dead, errno %s(%d)\n", strerror(errno), errno));
523                 state->child = 0;
524         }
525
526         talloc_free(state);
527 }
528
529 /*
530   destroy an event script: kill it if ->child != 0.
531  */
532 static int event_script_destructor(struct ctdb_event_script_state *state)
533 {
534         int status;
535
536         if (state->child) {
537                 DEBUG(DEBUG_ERR,(__location__ " Sending SIGTERM to child pid:%d\n", state->child));
538
539                 if (kill(state->child, SIGTERM) != 0) {
540                         DEBUG(DEBUG_ERR,("Failed to kill child process for eventscript, errno %s(%d)\n", strerror(errno), errno));
541                 }
542         }
543
544         /* If we were the current monitor, we no longer are. */
545         if (state->ctdb->current_monitor == state) {
546                 state->ctdb->current_monitor = NULL;
547         }
548
549         /* Save our scripts as the last executed status, if we have them.
550          * See ctdb_event_script_callback_v where we abort monitor event. */
551         if (state->scripts) {
552                 talloc_free(state->ctdb->last_status[state->call]);
553                 state->ctdb->last_status[state->call] = state->scripts;
554                 if (state->current < state->ctdb->last_status[state->call]->num_scripts) {
555                         state->ctdb->last_status[state->call]->num_scripts = state->current+1;
556                 }
557         }
558
559         /* Use last status as result, or "OK" if none. */
560         if (state->ctdb->last_status[state->call]) {
561                 status = script_status(state->ctdb->last_status[state->call]);
562         } else {
563                 status = 0;
564         }
565
566         /* This is allowed to free us; talloc will prevent double free anyway,
567          * but beware if you call this outside the destructor! */
568         if (state->callback) {
569                 state->callback(state->ctdb, status, state->private_data);
570         }
571
572         return 0;
573 }
574
575 static unsigned int count_words(const char *options)
576 {
577         unsigned int words = 0;
578
579         options += strspn(options, " \t");
580         while (*options) {
581                 words++;
582                 options += strcspn(options, " \t");
583                 options += strspn(options, " \t");
584         }
585         return words;
586 }
587
588 static bool check_options(enum ctdb_eventscript_call call, const char *options)
589 {
590         switch (call) {
591         /* These all take no arguments. */
592         case CTDB_EVENT_INIT:
593         case CTDB_EVENT_STARTUP:
594         case CTDB_EVENT_START_RECOVERY:
595         case CTDB_EVENT_RECOVERED:
596         case CTDB_EVENT_STOPPED:
597         case CTDB_EVENT_MONITOR:
598         case CTDB_EVENT_STATUS:
599         case CTDB_EVENT_SHUTDOWN:
600         case CTDB_EVENT_RELOAD:
601                 return count_words(options) == 0;
602
603         case CTDB_EVENT_TAKE_IP: /* interface, IP address, netmask bits. */
604         case CTDB_EVENT_RELEASE_IP:
605                 return count_words(options) == 3;
606
607         case CTDB_EVENT_UPDATE_IP: /* old interface, new interface, IP address, netmask bits. */
608                 return count_words(options) == 4;
609
610         default:
611                 DEBUG(DEBUG_ERR,(__location__ "Unknown ctdb_eventscript_call %u\n", call));
612                 return false;
613         }
614 }
615
616 /*
617   run the event script in the background, calling the callback when 
618   finished
619  */
620 static int ctdb_event_script_callback_v(struct ctdb_context *ctdb, 
621                                         void (*callback)(struct ctdb_context *, int, void *),
622                                         void *private_data,
623                                         bool from_user,
624                                         enum ctdb_eventscript_call call,
625                                         const char *fmt, va_list ap)
626 {
627         struct ctdb_event_script_state *state;
628
629         state = talloc(ctdb->event_script_ctx, struct ctdb_event_script_state);
630         CTDB_NO_MEMORY(ctdb, state);
631
632         state->ctdb = ctdb;
633         state->callback = callback;
634         state->private_data = private_data;
635         state->from_user = from_user;
636         state->call = call;
637         state->options = talloc_vasprintf(state, fmt, ap);
638         state->timeout = timeval_set(ctdb->tunable.script_timeout, 0);
639         state->scripts = NULL;
640         if (state->options == NULL) {
641                 DEBUG(DEBUG_ERR, (__location__ " could not allocate state->options\n"));
642                 talloc_free(state);
643                 return -1;
644         }
645         if (!check_options(state->call, state->options)) {
646                 DEBUG(DEBUG_ERR, ("Bad eventscript options '%s' for %s\n",
647                                   ctdb_eventscript_call_names[state->call], state->options));
648                 talloc_free(state);
649                 return -1;
650         }
651
652         if (ctdb->recovery_mode != CTDB_RECOVERY_NORMAL) {
653                 /* we guarantee that only some specifically allowed event scripts are run
654                    while in recovery */
655                 const enum ctdb_eventscript_call allowed_calls[] = {
656                         CTDB_EVENT_INIT,
657                         CTDB_EVENT_START_RECOVERY,
658                         CTDB_EVENT_SHUTDOWN,
659                         CTDB_EVENT_RELEASE_IP,
660                         CTDB_EVENT_STOPPED
661                 };
662                 int i;
663                 for (i=0;i<ARRAY_SIZE(allowed_calls);i++) {
664                         if (call == allowed_calls[i]) break;
665                 }
666                 if (i == ARRAY_SIZE(allowed_calls)) {
667                         DEBUG(DEBUG_ERR,("Refusing to run event scripts call '%s' while in recovery\n",
668                                  ctdb_eventscript_call_names[call]));
669                         talloc_free(state);
670                         return -1;
671                 }
672         }
673
674         /* Kill off any running monitor events to run this event. */
675         if (ctdb->current_monitor) {
676                 /* Discard script status so we don't save to last_status */
677                 talloc_free(ctdb->current_monitor->scripts);
678                 ctdb->current_monitor->scripts = NULL;
679                 talloc_free(ctdb->current_monitor);
680                 ctdb->current_monitor = NULL;
681         }
682
683         DEBUG(DEBUG_INFO,(__location__ " Starting eventscript %s %s\n",
684                           ctdb_eventscript_call_names[state->call],
685                           state->options));
686
687         /* This is not a child of state, since we save it in destructor. */
688         state->scripts = ctdb_get_script_list(ctdb, ctdb);
689         if (state->scripts == NULL) {
690                 talloc_free(state);
691                 return -1;
692         }
693         state->current = 0;
694
695         if (!from_user && (call == CTDB_EVENT_MONITOR || call == CTDB_EVENT_STATUS)) {
696                 ctdb->current_monitor = state;
697         }
698
699         talloc_set_destructor(state, event_script_destructor);
700
701         /* Nothing to do? */
702         if (state->scripts->num_scripts == 0) {
703                 talloc_free(state);
704                 return 0;
705         }
706
707         state->scripts->scripts[0].status = fork_child_for_script(ctdb, state);
708         if (state->scripts->scripts[0].status != 0) {
709                 /* Callback is called from destructor, with fail result. */
710                 talloc_free(state);
711                 return 0;
712         }
713
714         if (!timeval_is_zero(&state->timeout)) {
715                 event_add_timed(ctdb->ev, state, timeval_current_ofs(state->timeout.tv_sec, state->timeout.tv_usec), ctdb_event_script_timeout, state);
716         } else {
717                 DEBUG(DEBUG_ERR, (__location__ " eventscript %s %s called with no timeout\n",
718                                   ctdb_eventscript_call_names[state->call],
719                                   state->options));
720         }
721
722         return 0;
723 }
724
725
726 /*
727   run the event script in the background, calling the callback when 
728   finished
729  */
730 int ctdb_event_script_callback(struct ctdb_context *ctdb, 
731                                TALLOC_CTX *mem_ctx,
732                                void (*callback)(struct ctdb_context *, int, void *),
733                                void *private_data,
734                                bool from_user,
735                                enum ctdb_eventscript_call call,
736                                const char *fmt, ...)
737 {
738         va_list ap;
739         int ret;
740
741         va_start(ap, fmt);
742         ret = ctdb_event_script_callback_v(ctdb, callback, private_data, from_user, call, fmt, ap);
743         va_end(ap);
744
745         return ret;
746 }
747
748
749 struct callback_status {
750         bool done;
751         int status;
752 };
753
754 /*
755   called when ctdb_event_script() finishes
756  */
757 static void event_script_callback(struct ctdb_context *ctdb, int status, void *private_data)
758 {
759         struct callback_status *s = (struct callback_status *)private_data;
760         s->done = true;
761         s->status = status;
762 }
763
764 /*
765   run the event script, waiting for it to complete. Used when the caller
766   doesn't want to continue till the event script has finished.
767  */
768 int ctdb_event_script_args(struct ctdb_context *ctdb, enum ctdb_eventscript_call call,
769                            const char *fmt, ...)
770 {
771         va_list ap;
772         int ret;
773         struct callback_status status;
774
775         va_start(ap, fmt);
776         ret = ctdb_event_script_callback_v(ctdb,
777                         event_script_callback, &status, false, call, fmt, ap);
778         if (ret != 0) {
779                 return ret;
780         }
781         va_end(ap);
782
783         status.status = -1;
784         status.done = false;
785
786         while (status.done == false && event_loop_once(ctdb->ev) == 0) /* noop */;
787
788         if (status.status == -ETIME) {
789                 DEBUG(DEBUG_ERR, (__location__ " eventscript for '%s' timedout."
790                                   " Immediately banning ourself for %d seconds\n",
791                                   ctdb_eventscript_call_names[call],
792                                   ctdb->tunable.recovery_ban_period));
793                 ctdb_ban_self(ctdb);
794         }
795
796         return status.status;
797 }
798
799 int ctdb_event_script(struct ctdb_context *ctdb, enum ctdb_eventscript_call call)
800 {
801         /* GCC complains about empty format string, so use %s and "". */
802         return ctdb_event_script_args(ctdb, call, "%s", "");
803 }
804
805 struct eventscript_callback_state {
806         struct ctdb_req_control *c;
807 };
808
809 /*
810   called when a forced eventscript run has finished
811  */
812 static void run_eventscripts_callback(struct ctdb_context *ctdb, int status, 
813                                  void *private_data)
814 {
815         struct eventscript_callback_state *state = 
816                 talloc_get_type(private_data, struct eventscript_callback_state);
817
818         ctdb_enable_monitoring(ctdb);
819
820         if (status != 0) {
821                 DEBUG(DEBUG_ERR,(__location__ " Failed to forcibly run eventscripts\n"));
822         }
823
824         ctdb_request_control_reply(ctdb, state->c, NULL, status, NULL);
825         /* This will free the struct ctdb_event_script_state we are in! */
826         talloc_free(state);
827         return;
828 }
829
830
831 /* Returns rest of string, or NULL if no match. */
832 static const char *get_call(const char *p, enum ctdb_eventscript_call *call)
833 {
834         unsigned int len;
835
836         /* Skip any initial whitespace. */
837         p += strspn(p, " \t");
838
839         /* See if we match any. */
840         for (*call = 0; *call < CTDB_EVENT_MAX; (*call)++) {
841                 len = strlen(ctdb_eventscript_call_names[*call]);
842                 if (strncmp(p, ctdb_eventscript_call_names[*call], len) == 0) {
843                         /* If end of string or whitespace, we're done. */
844                         if (strcspn(p + len, " \t") == 0) {
845                                 return p + len;
846                         }
847                 }
848         }
849         return NULL;
850 }
851
852 /*
853   A control to force running of the eventscripts from the ctdb client tool
854 */
855 int32_t ctdb_run_eventscripts(struct ctdb_context *ctdb,
856                 struct ctdb_req_control *c,
857                 TDB_DATA indata, bool *async_reply)
858 {
859         int ret;
860         struct eventscript_callback_state *state;
861         const char *options;
862         enum ctdb_eventscript_call call;
863
864         /* Figure out what call they want. */
865         options = get_call((const char *)indata.dptr, &call);
866         if (!options) {
867                 DEBUG(DEBUG_ERR, (__location__ " Invalid forced \"%s\"\n", (const char *)indata.dptr));
868                 return -1;
869         }
870
871         if (ctdb->recovery_mode != CTDB_RECOVERY_NORMAL) {
872                 DEBUG(DEBUG_ERR, (__location__ " Aborted running eventscript \"%s\" while in RECOVERY mode\n", indata.dptr));
873                 return -1;
874         }
875
876         state = talloc(ctdb->event_script_ctx, struct eventscript_callback_state);
877         CTDB_NO_MEMORY(ctdb, state);
878
879         state->c = talloc_steal(state, c);
880
881         DEBUG(DEBUG_NOTICE,("Forced running of eventscripts with arguments %s\n", indata.dptr));
882
883         ctdb_disable_monitoring(ctdb);
884
885         ret = ctdb_event_script_callback(ctdb, 
886                          state, run_eventscripts_callback, state,
887                          true, call, "%s", options);
888
889         if (ret != 0) {
890                 ctdb_enable_monitoring(ctdb);
891                 DEBUG(DEBUG_ERR,(__location__ " Failed to run eventscripts with arguments %s\n", indata.dptr));
892                 talloc_free(state);
893                 return -1;
894         }
895
896         /* tell ctdb_control.c that we will be replying asynchronously */
897         *async_reply = true;
898
899         return 0;
900 }
901
902
903
904 int32_t ctdb_control_enable_script(struct ctdb_context *ctdb, TDB_DATA indata)
905 {
906         const char *script;
907         struct stat st;
908         char *filename;
909         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
910
911         script = (char *)indata.dptr;
912         if (indata.dsize == 0) {
913                 DEBUG(DEBUG_ERR,(__location__ " No script specified.\n"));
914                 talloc_free(tmp_ctx);
915                 return -1;
916         }
917         if (indata.dptr[indata.dsize - 1] != '\0') {
918                 DEBUG(DEBUG_ERR,(__location__ " String is not null terminated.\n"));
919                 talloc_free(tmp_ctx);
920                 return -1;
921         }
922         if (index(script,'/') != NULL) {
923                 DEBUG(DEBUG_ERR,(__location__ " Script name contains '/'. Failed to enable script %s\n", script));
924                 talloc_free(tmp_ctx);
925                 return -1;
926         }
927
928
929         if (stat(ctdb->event_script_dir, &st) != 0 && 
930             errno == ENOENT) {
931                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
932                 talloc_free(tmp_ctx);
933                 return -1;
934         }
935
936
937         filename = talloc_asprintf(tmp_ctx, "%s/%s", ctdb->event_script_dir, script);
938         if (filename == NULL) {
939                 DEBUG(DEBUG_ERR,(__location__ " Failed to create script path\n"));
940                 talloc_free(tmp_ctx);
941                 return -1;
942         }
943
944         if (stat(filename, &st) != 0) {
945                 DEBUG(DEBUG_ERR,("Could not stat event script %s. Failed to enable script.\n", filename));
946                 talloc_free(tmp_ctx);
947                 return -1;
948         }
949
950         if (chmod(filename, st.st_mode | S_IXUSR) == -1) {
951                 DEBUG(DEBUG_ERR,("Could not chmod %s. Failed to enable script.\n", filename));
952                 talloc_free(tmp_ctx);
953                 return -1;
954         }
955
956         talloc_free(tmp_ctx);
957         return 0;
958 }
959
960 int32_t ctdb_control_disable_script(struct ctdb_context *ctdb, TDB_DATA indata)
961 {
962         const char *script;
963         struct stat st;
964         char *filename;
965         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
966
967         script = (char *)indata.dptr;
968         if (indata.dsize == 0) {
969                 DEBUG(DEBUG_ERR,(__location__ " No script specified.\n"));
970                 talloc_free(tmp_ctx);
971                 return -1;
972         }
973         if (indata.dptr[indata.dsize - 1] != '\0') {
974                 DEBUG(DEBUG_ERR,(__location__ " String is not null terminated.\n"));
975                 talloc_free(tmp_ctx);
976                 return -1;
977         }
978         if (index(script,'/') != NULL) {
979                 DEBUG(DEBUG_ERR,(__location__ " Script name contains '/'. Failed to disable script %s\n", script));
980                 talloc_free(tmp_ctx);
981                 return -1;
982         }
983
984
985         if (stat(ctdb->event_script_dir, &st) != 0 && 
986             errno == ENOENT) {
987                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
988                 talloc_free(tmp_ctx);
989                 return -1;
990         }
991
992
993         filename = talloc_asprintf(tmp_ctx, "%s/%s", ctdb->event_script_dir, script);
994         if (filename == NULL) {
995                 DEBUG(DEBUG_ERR,(__location__ " Failed to create script path\n"));
996                 talloc_free(tmp_ctx);
997                 return -1;
998         }
999
1000         if (stat(filename, &st) != 0) {
1001                 DEBUG(DEBUG_ERR,("Could not stat event script %s. Failed to disable script.\n", filename));
1002                 talloc_free(tmp_ctx);
1003                 return -1;
1004         }
1005
1006         if (chmod(filename, st.st_mode & ~(S_IXUSR|S_IXGRP|S_IXOTH)) == -1) {
1007                 DEBUG(DEBUG_ERR,("Could not chmod %s. Failed to disable script.\n", filename));
1008                 talloc_free(tmp_ctx);
1009                 return -1;
1010         }
1011
1012         talloc_free(tmp_ctx);
1013         return 0;
1014 }