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