Merge commit 'martins-svart/status-test-2' into status-test
[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 const char *call_names[] = {
36         "startup",
37         "startrecovery",
38         "recovered",
39         "takeip",
40         "releaseip",
41         "stopped",
42         "monitor",
43         "status",
44         "shutdown",
45         "reload"
46 };
47
48 static void ctdb_event_script_timeout(struct event_context *ev, struct timed_event *te, struct timeval t, void *p);
49
50 /*
51   ctdbd sends us a SIGTERM when we should time out the current script
52  */
53 static void sigterm(int sig)
54 {
55         char tbuf[100], buf[200];
56         time_t t;
57
58         DEBUG(DEBUG_ERR,("Timed out running script '%s' after %.1f seconds pid :%d\n", 
59                  child_state.script_running, timeval_elapsed(&child_state.start), getpid()));
60
61         t = time(NULL);
62
63         strftime(tbuf, sizeof(tbuf)-1, "%Y%m%d%H%M%S",  localtime(&t));
64         sprintf(buf, "pstree -p >/tmp/ctdb.event.%s.%d", tbuf, getpid());
65         system(buf);
66
67         DEBUG(DEBUG_ERR,("Logged timedout eventscript : %s\n", buf));
68
69         /* all the child processes will be running in the same process group */
70         kill(-getpgrp(), SIGKILL);
71         _exit(1);
72 }
73
74 struct ctdb_event_script_state {
75         struct ctdb_context *ctdb;
76         pid_t child;
77         /* Warning: this can free us! */
78         void (*callback)(struct ctdb_context *, int, void *);
79         int cb_status;
80         int fd[2];
81         void *private_data;
82         enum ctdb_eventscript_call call;
83         const char *options;
84         struct timeval timeout;
85 };
86
87
88 struct ctdb_monitor_script_status {
89         struct ctdb_monitor_script_status *next;
90         const char *name;
91         struct timeval start;
92         struct timeval finished;
93         int32_t disabled;
94         int32_t status;
95         int32_t timedout;
96         char *output;
97 };
98
99 struct ctdb_monitor_script_status_ctx {
100         struct ctdb_monitor_script_status *scripts;
101 };
102
103 /* called from ctdb_logging when we have received output on STDERR from
104  * one of the eventscripts
105  */
106 int ctdb_log_event_script_output(struct ctdb_context *ctdb, char *str, uint16_t len)
107 {
108         struct ctdb_monitor_script_status *script;
109
110         if (ctdb->current_monitor_status_ctx == NULL) {
111                 return -1;
112         }
113
114         script = ctdb->current_monitor_status_ctx->scripts;
115         if (script == NULL) {
116                 return -1;
117         }
118
119         if (script->output == NULL) {
120                 script->output = talloc_asprintf(script, "%*.*s", len, len, str);
121         } else {
122                 script->output = talloc_asprintf_append(script->output, "%*.*s", len, len, str);
123         }
124
125         return 0;
126 }
127
128 /* called from the event script child process when we are starting a new
129  * monitor event
130  */
131 int32_t ctdb_control_event_script_init(struct ctdb_context *ctdb)
132 {
133         DEBUG(DEBUG_INFO, ("event script init called\n"));
134
135         if (ctdb->current_monitor_status_ctx == NULL) {
136                 DEBUG(DEBUG_ERR,(__location__ " current_monitor_status_ctx is NULL when initing script\n"));
137                 return -1;
138         }
139
140         return 0;
141 }
142
143
144 /* called from the event script child process when we are star running
145  * an eventscript
146  */
147 int32_t ctdb_control_event_script_start(struct ctdb_context *ctdb, TDB_DATA indata)
148 {
149         const char *name = (const char *)indata.dptr;
150         struct ctdb_monitor_script_status *script;
151
152         DEBUG(DEBUG_INFO, ("event script start called : %s\n", name));
153
154         if (ctdb->current_monitor_status_ctx == NULL) {
155                 DEBUG(DEBUG_ERR,(__location__ " current_monitor_status_ctx is NULL when starting script\n"));
156                 return -1;
157         }
158
159         script = talloc_zero(ctdb->current_monitor_status_ctx, struct ctdb_monitor_script_status);
160         if (script == NULL) {
161                 DEBUG(DEBUG_ERR,(__location__ " Failed to talloc ctdb_monitor_script_status for script %s\n", name));
162                 return -1;
163         }
164
165         script->next  = ctdb->current_monitor_status_ctx->scripts;
166         script->name  = talloc_strdup(script, name);
167         CTDB_NO_MEMORY(ctdb, script->name);
168         script->start = timeval_current();
169         ctdb->current_monitor_status_ctx->scripts = script;
170
171         return 0;
172 }
173
174 /* called from the event script child process when we have finished running
175  * an eventscript
176  */
177 int32_t ctdb_control_event_script_stop(struct ctdb_context *ctdb, TDB_DATA indata)
178 {
179         int32_t res = *((int32_t *)indata.dptr);
180         struct ctdb_monitor_script_status *script;
181
182         if (ctdb->current_monitor_status_ctx == NULL) {
183                 DEBUG(DEBUG_ERR,(__location__ " current_monitor_status_ctx is NULL when script finished\n"));
184                 return -1;
185         }
186
187         script = ctdb->current_monitor_status_ctx->scripts;
188         if (script == NULL) {
189                 DEBUG(DEBUG_ERR,(__location__ " script is NULL when the script had finished\n"));
190                 return -1;
191         }
192
193         script->finished = timeval_current();
194         script->status   = res;
195
196         DEBUG(DEBUG_INFO, ("event script stop called for script:%s duration:%.1f status:%d\n", script->name, timeval_elapsed(&script->start), (int)res));
197
198         return 0;
199 }
200
201 /* called from the event script child process when we have a disabled script
202  */
203 int32_t ctdb_control_event_script_disabled(struct ctdb_context *ctdb, TDB_DATA indata)
204 {
205         const char *name = (const char *)indata.dptr;
206         struct ctdb_monitor_script_status *script;
207
208         DEBUG(DEBUG_INFO, ("event script disabed called for script %s\n", name));
209
210         if (ctdb->current_monitor_status_ctx == NULL) {
211                 DEBUG(DEBUG_ERR,(__location__ " current_monitor_status_ctx is NULL when script finished\n"));
212                 return -1;
213         }
214
215         script = ctdb->current_monitor_status_ctx->scripts;
216         if (script == NULL) {
217                 DEBUG(DEBUG_ERR,(__location__ " script is NULL when the script had finished\n"));
218                 return -1;
219         }
220
221         script->finished = timeval_current();
222         script->status   = 0;
223         script->disabled = 1;
224
225         return 0;
226 }
227
228 /* called from the event script child process when we have completed a
229  * monitor event
230  */
231 int32_t ctdb_control_event_script_finished(struct ctdb_context *ctdb)
232 {
233         DEBUG(DEBUG_INFO, ("event script finished called\n"));
234
235         if (ctdb->current_monitor_status_ctx == NULL) {
236                 DEBUG(DEBUG_ERR,(__location__ " script_status is NULL when monitoring event finished\n"));
237                 return -1;
238         }
239
240         if (ctdb->last_monitor_status_ctx) {
241                 talloc_free(ctdb->last_monitor_status_ctx);
242                 ctdb->last_monitor_status_ctx = NULL;
243         }
244         ctdb->last_monitor_status_ctx = talloc_steal(ctdb, ctdb->current_monitor_status_ctx);
245         ctdb->current_monitor_status_ctx = NULL;
246
247         return 0;
248 }
249
250 static struct ctdb_monitoring_wire *marshall_monitoring_scripts(TALLOC_CTX *mem_ctx, struct ctdb_monitoring_wire *monitoring_scripts, struct ctdb_monitor_script_status *script)
251 {
252         struct ctdb_monitoring_script_wire script_wire;
253         size_t size;
254
255         if (script == NULL) {
256                 return monitoring_scripts;
257         }
258         monitoring_scripts = marshall_monitoring_scripts(mem_ctx, monitoring_scripts, script->next);
259         if (monitoring_scripts == NULL) {
260                 return NULL;
261         }
262
263         bzero(&script_wire, sizeof(struct ctdb_monitoring_script_wire));
264         strncpy(script_wire.name, script->name, MAX_SCRIPT_NAME);
265         script_wire.start    = script->start;
266         script_wire.finished = script->finished;
267         script_wire.disabled = script->disabled;
268         script_wire.status   = script->status;
269         script_wire.timedout = script->timedout;
270         if (script->output != NULL) {
271                 strncpy(script_wire.output, script->output, MAX_SCRIPT_OUTPUT);
272         }
273
274         size = talloc_get_size(monitoring_scripts);
275         monitoring_scripts = talloc_realloc_size(mem_ctx, monitoring_scripts, size + sizeof(struct ctdb_monitoring_script_wire));
276         if (monitoring_scripts == NULL) {
277                 DEBUG(DEBUG_ERR,(__location__ " Failed to talloc_resize monitoring_scripts blob\n"));
278                 return NULL;
279         }
280
281         memcpy(&monitoring_scripts->scripts[monitoring_scripts->num_scripts], &script_wire, sizeof(script_wire));
282         monitoring_scripts->num_scripts++;
283         
284         return monitoring_scripts;
285 }
286
287 int32_t ctdb_control_get_event_script_status(struct ctdb_context *ctdb, TDB_DATA *outdata)
288 {
289         struct ctdb_monitor_script_status_ctx *script_status = talloc_get_type(ctdb->last_monitor_status_ctx, struct ctdb_monitor_script_status_ctx);
290         struct ctdb_monitoring_wire *monitoring_scripts;
291
292         if (script_status == NULL) {
293                 DEBUG(DEBUG_ERR,(__location__ " last_monitor_status_ctx is NULL when reading status\n"));
294                 return -1;
295         }
296
297         monitoring_scripts = talloc_size(outdata, offsetof(struct ctdb_monitoring_wire, scripts));
298         if (monitoring_scripts == NULL) {
299                 DEBUG(DEBUG_ERR,(__location__ " failed to talloc monitoring_scripts structure\n"));
300                 return -1;
301         }
302         
303         monitoring_scripts->num_scripts = 0;
304         monitoring_scripts = marshall_monitoring_scripts(outdata, monitoring_scripts, script_status->scripts);
305         if (monitoring_scripts == NULL) {
306                 DEBUG(DEBUG_ERR,(__location__ " Monitoring scritps is NULL. can not return data to client\n"));
307                 return -1;
308         }
309
310         outdata->dsize = talloc_get_size(monitoring_scripts);
311         outdata->dptr  = (uint8_t *)monitoring_scripts;
312
313         return 0;
314 }
315
316 struct ctdb_script_tree_item {
317         const char *name;
318         int32_t is_enabled;
319 };
320
321 struct ctdb_script_list {
322         struct ctdb_script_list *next;
323         const char *name;
324         int32_t is_enabled;
325 };
326
327 static struct ctdb_script_list *ctdb_get_script_list(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx)
328 {
329         DIR *dir;
330         struct dirent *de;
331         struct stat st;
332         trbt_tree_t *tree;
333         struct ctdb_script_list *head, *tail, *new_item;
334         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
335         struct ctdb_script_tree_item *tree_item;
336         int count;
337
338         /*
339           the service specific event scripts 
340         */
341         if (stat(ctdb->event_script_dir, &st) != 0 && 
342             errno == ENOENT) {
343                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
344                 talloc_free(tmp_ctx);
345                 return NULL;
346         }
347
348         /* create a tree to store all the script names in */
349         tree = trbt_create(tmp_ctx, 0);
350
351         /* scan all directory entries and insert all valid scripts into the 
352            tree
353         */
354         dir = opendir(ctdb->event_script_dir);
355         if (dir == NULL) {
356                 DEBUG(DEBUG_CRIT,("Failed to open event script directory '%s'\n", ctdb->event_script_dir));
357                 talloc_free(tmp_ctx);
358                 return NULL;
359         }
360
361         count = 0;
362         while ((de=readdir(dir)) != NULL) {
363                 int namlen;
364                 unsigned num;
365                 char *str;
366
367                 namlen = strlen(de->d_name);
368
369                 if (namlen < 3) {
370                         continue;
371                 }
372
373                 if (de->d_name[namlen-1] == '~') {
374                         /* skip files emacs left behind */
375                         continue;
376                 }
377
378                 if (de->d_name[2] != '.') {
379                         continue;
380                 }
381
382                 if (sscanf(de->d_name, "%02u.", &num) != 1) {
383                         continue;
384                 }
385
386                 /* Make sure the event script is executable */
387                 str = talloc_asprintf(tree, "%s/%s", ctdb->event_script_dir, de->d_name);
388                 if (stat(str, &st) != 0) {
389                         DEBUG(DEBUG_ERR,("Could not stat event script %s. Ignoring this event script\n", str));
390                         continue;
391                 }
392
393
394                 tree_item = talloc(tree, struct ctdb_script_tree_item);
395                 if (tree_item == NULL) {
396                         DEBUG(DEBUG_ERR, (__location__ " Failed to allocate new tree item\n"));
397                         talloc_free(tmp_ctx);
398                         return NULL;
399                 }
400         
401                 tree_item->is_enabled = 1;
402                 if (!(st.st_mode & S_IXUSR)) {
403                         DEBUG(DEBUG_INFO,("Event script %s is not executable. Ignoring this event script\n", str));
404                         tree_item->is_enabled = 0;
405                 }
406
407                 tree_item->name = talloc_strdup(tree_item, de->d_name);
408                 if (tree_item->name == NULL) {
409                         DEBUG(DEBUG_ERR,(__location__ " Failed to allocate script name.\n"));
410                         talloc_free(tmp_ctx);
411                         return NULL;
412                 }
413
414                 /* store the event script in the tree */
415                 trbt_insert32(tree, (num<<16)|count++, tree_item);
416         }
417         closedir(dir);
418
419
420         head = NULL;
421         tail = NULL;
422
423         /* fetch the scripts from the tree one by one and add them to the linked
424            list
425          */
426         while ((tree_item=trbt_findfirstarray32(tree, 1)) != NULL) {
427
428                 new_item = talloc(tmp_ctx, struct ctdb_script_list);
429                 if (new_item == NULL) {
430                         DEBUG(DEBUG_ERR, (__location__ " Failed to allocate new list item\n"));
431                         talloc_free(tmp_ctx);
432                         return NULL;
433                 }
434
435                 new_item->next = NULL;
436                 new_item->name = talloc_steal(new_item, tree_item->name);
437                 new_item->is_enabled = tree_item->is_enabled;
438
439                 if (head == NULL) {
440                         head = new_item;
441                         tail = new_item;
442                 } else {
443                         tail->next = new_item;
444                         tail = new_item;
445                 }
446
447                 talloc_steal(mem_ctx, new_item);
448
449                 /* remove this script from the tree */
450                 talloc_free(tree_item);
451         }       
452
453         talloc_free(tmp_ctx);
454         return head;
455 }
456
457
458
459 /*
460   Actually run the event script
461   this function is called and run in the context of a forked child
462   which allows it to do blocking calls such as system()
463  */
464 static int ctdb_run_event_script(struct ctdb_context *ctdb,
465                                  bool from_user,
466                                  enum ctdb_eventscript_call call,
467                                  const char *options)
468 {
469         char *cmdstr;
470         int ret;
471         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
472         struct ctdb_script_list *scripts, *current;
473
474         if (!from_user && call == CTDB_EVENT_MONITOR) {
475                 /* This is running in the forked child process. At this stage
476                  * we want to switch from being a ctdb daemon into being a
477                  * client and connect to the real local daemon.
478                  */
479                 if (switch_from_server_to_client(ctdb) != 0) {
480                         DEBUG(DEBUG_CRIT, (__location__ "ERROR: failed to switch eventscript child into client mode. shutting down.\n"));
481                         _exit(1);
482                 }
483
484                 if (ctdb_ctrl_event_script_init(ctdb) != 0) {
485                         DEBUG(DEBUG_ERR,(__location__ " Failed to init event script monitoring\n"));
486                         talloc_free(tmp_ctx);
487                         return -1;
488                 }
489         }
490
491         if (ctdb->recovery_mode != CTDB_RECOVERY_NORMAL) {
492                 /* we guarantee that only some specifically allowed event scripts are run
493                    while in recovery */
494                 const enum ctdb_eventscript_call allowed_calls[] = {
495                         CTDB_EVENT_START_RECOVERY, CTDB_EVENT_SHUTDOWN, CTDB_EVENT_RELEASE_IP, CTDB_EVENT_STOPPED };
496                 int i;
497                 for (i=0;i<ARRAY_SIZE(allowed_calls);i++) {
498                         if (call == allowed_calls[i]) break;
499                 }
500                 if (i == ARRAY_SIZE(allowed_calls)) {
501                         DEBUG(DEBUG_ERR,("Refusing to run event scripts call '%s' while in recovery\n",
502                                  call_names[call]));
503                         talloc_free(tmp_ctx);
504                         return -1;
505                 }
506         }
507
508         if (setpgid(0,0) != 0) {
509                 DEBUG(DEBUG_ERR,("Failed to create process group for event scripts - %s\n",
510                          strerror(errno)));
511                 talloc_free(tmp_ctx);
512                 return -1;              
513         }
514
515         signal(SIGTERM, sigterm);
516
517         child_state.start = timeval_current();
518         child_state.script_running = "startup";
519
520         scripts = ctdb_get_script_list(ctdb, tmp_ctx);
521
522         /* fetch the scripts from the tree one by one and execute
523            them
524          */
525         for (current=scripts; current; current=current->next) {
526                 const char *str = from_user ? "CTDB_CALLED_BY_USER=1 " : "";
527         
528                 /* Allow a setting where we run the actual monitor event
529                    from an external source and replace it with
530                    a "status" event that just picks up the actual
531                    status of the event asynchronously.
532                 */
533                 if ((ctdb->tunable.use_status_events_for_monitoring != 0) 
534                 &&  (call == CTDB_EVENT_MONITOR)
535                 &&  !from_user) {
536                         cmdstr = talloc_asprintf(tmp_ctx, "%s%s/%s %s",
537                                         str,
538                                         ctdb->event_script_dir,
539                                         current->name, "status");
540                 } else {
541                         cmdstr = talloc_asprintf(tmp_ctx, "%s%s/%s %s %s",
542                                         str,
543                                         ctdb->event_script_dir,
544                                         current->name, call_names[call], options);
545                 }
546                 CTDB_NO_MEMORY(ctdb, cmdstr);
547
548                 DEBUG(DEBUG_INFO,("Executing event script %s\n",cmdstr));
549
550                 child_state.start = timeval_current();
551                 child_state.script_running = cmdstr;
552
553                 if (!from_user && call == CTDB_EVENT_MONITOR) {
554                         if (ctdb_ctrl_event_script_start(ctdb, current->name) != 0) {
555                                 DEBUG(DEBUG_ERR,(__location__ " Failed to start event script monitoring\n"));
556                                 talloc_free(tmp_ctx);
557                                 return -1;
558                         }
559
560                         if (!current->is_enabled) {
561                                 if (ctdb_ctrl_event_script_disabled(ctdb, current->name) != 0) {
562                                         DEBUG(DEBUG_ERR,(__location__ " Failed to report disabled eventscript\n"));
563                                         talloc_free(tmp_ctx);
564                                         return -1;
565                                 }
566                         }
567
568                 }
569
570                 if (!current->is_enabled) {
571                         continue;
572                 }
573
574                 ret = system(cmdstr);
575                 /* if the system() call was successful, translate ret into the
576                    return code from the command
577                 */
578                 if (ret != -1) {
579                         ret = WEXITSTATUS(ret);
580                 }
581                 if (ret == 127) {
582                         ret = 0;
583                         DEBUG(DEBUG_ERR,("Script %s returned status 127. Someone just deleted it?\n", cmdstr));
584                 }
585  
586                 if (!from_user && call == CTDB_EVENT_MONITOR) {
587                         if (ctdb_ctrl_event_script_stop(ctdb, ret) != 0) {
588                                 DEBUG(DEBUG_ERR,(__location__ " Failed to stop event script monitoring\n"));
589                                 talloc_free(tmp_ctx);
590                                 return -1;
591                         }
592                 }
593
594                 /* return an error if the script failed */
595                 if (ret != 0) {
596                         DEBUG(DEBUG_ERR,("Event script %s failed with error %d\n", cmdstr, ret));
597                         if (!from_user && call == CTDB_EVENT_MONITOR) {
598                                 if (ctdb_ctrl_event_script_finished(ctdb) != 0) {
599                                         DEBUG(DEBUG_ERR,(__location__ " Failed to finish event script monitoring\n"));
600                                         talloc_free(tmp_ctx);
601                                         return -1;
602                                 }
603                         }
604
605                         talloc_free(tmp_ctx);
606                         return ret;
607                 }
608         }
609
610         child_state.start = timeval_current();
611         child_state.script_running = "finished";
612         
613         if (!from_user && call == CTDB_EVENT_MONITOR) {
614                 if (ctdb_ctrl_event_script_finished(ctdb) != 0) {
615                         DEBUG(DEBUG_ERR,(__location__ " Failed to finish event script monitoring\n"));
616                         talloc_free(tmp_ctx);
617                         return -1;
618                 }
619         }
620
621         talloc_free(tmp_ctx);
622         return 0;
623 }
624
625 /* called when child is finished */
626 static void ctdb_event_script_handler(struct event_context *ev, struct fd_event *fde, 
627                                       uint16_t flags, void *p)
628 {
629         struct ctdb_event_script_state *state = 
630                 talloc_get_type(p, struct ctdb_event_script_state);
631         struct ctdb_context *ctdb = state->ctdb;
632
633         if (read(state->fd[0], &state->cb_status, sizeof(state->cb_status)) !=
634             sizeof(state->cb_status)) {
635                 state->cb_status = -2;
636         }
637
638         DEBUG(DEBUG_INFO,(__location__ " Eventscript %s %s finished with state %d\n",
639                           call_names[state->call], state->options, state->cb_status));
640
641         state->child = 0;
642         ctdb->event_script_timeouts = 0;
643         talloc_free(state);
644 }
645
646 static void ctdb_ban_self(struct ctdb_context *ctdb, uint32_t ban_period)
647 {
648         TDB_DATA data;
649         struct ctdb_ban_time bantime;
650
651         bantime.pnn  = ctdb->pnn;
652         bantime.time = ban_period;
653
654         data.dsize = sizeof(bantime);
655         data.dptr  = (uint8_t *)&bantime;
656
657         ctdb_control_set_ban_state(ctdb, data);
658 }
659
660
661 /* called when child times out */
662 static void ctdb_event_script_timeout(struct event_context *ev, struct timed_event *te, 
663                                       struct timeval t, void *p)
664 {
665         struct ctdb_event_script_state *state = talloc_get_type(p, struct ctdb_event_script_state);
666         struct ctdb_context *ctdb = state->ctdb;
667
668         DEBUG(DEBUG_ERR,("Event script timed out : %s %s count : %u  pid : %d\n",
669                          call_names[state->call], state->options, ctdb->event_script_timeouts, state->child));
670
671         if (kill(state->child, 0) != 0) {
672                 DEBUG(DEBUG_ERR,("Event script child process already dead, errno %s(%d)\n", strerror(errno), errno));
673                 state->child = 0;
674                 talloc_free(state);
675                 return;
676         }
677
678         if (state->call == CTDB_EVENT_MONITOR) {
679                 /* if it is a monitor event, we allow it to "hang" a few times
680                    before we declare it a failure and ban ourself (and make
681                    ourself unhealthy)
682                 */
683                 DEBUG(DEBUG_ERR, (__location__ " eventscript for monitor event timedout.\n"));
684
685                 ctdb->event_script_timeouts++;
686
687                 if (ctdb->event_script_timeouts > ctdb->tunable.script_ban_count) {
688                         DEBUG(DEBUG_ERR, ("Maximum timeout count %u reached for eventscript. Making node unhealthy\n", ctdb->tunable.script_ban_count));
689                         state->cb_status = -ETIME;
690                 } else {
691                         state->cb_status = 0;
692                 }
693         } else if (state->call == CTDB_EVENT_STARTUP) {
694                 DEBUG(DEBUG_ERR, (__location__ " eventscript for startup event timedout.\n"));
695                 state->cb_status = -1;
696         } else {
697                 /* if it is not a monitor or a startup event we ban ourself
698                    immediately
699                 */
700                 DEBUG(DEBUG_ERR, (__location__ " eventscript for NON-monitor/NON-startup event timedout. Immediately banning ourself for %d seconds\n", ctdb->tunable.recovery_ban_period));
701
702                 ctdb_ban_self(ctdb, ctdb->tunable.recovery_ban_period);
703
704                 state->cb_status = -1;
705         }
706
707         if (state->call == CTDB_EVENT_MONITOR || state->call == CTDB_EVENT_STATUS) {
708                 struct ctdb_monitor_script_status *script;
709
710                 if (ctdb->current_monitor_status_ctx == NULL) {
711                         talloc_free(state);
712                         return;
713                 }
714
715                 script = ctdb->current_monitor_status_ctx->scripts;
716                 if (script != NULL) {
717                         script->timedout = 1;
718                 }
719
720                 if (ctdb->last_monitor_status_ctx) {
721                         talloc_free(ctdb->last_monitor_status_ctx);
722                         ctdb->last_monitor_status_ctx = NULL;
723                 }
724                 ctdb->last_monitor_status_ctx = talloc_steal(ctdb, ctdb->current_monitor_status_ctx);
725                 ctdb->current_monitor_status_ctx = NULL;
726         }
727
728         talloc_free(state);
729 }
730
731 /*
732   destroy an event script: kill it if ->child != 0.
733  */
734 static int event_script_destructor(struct ctdb_event_script_state *state)
735 {
736         if (state->child) {
737                 DEBUG(DEBUG_ERR,(__location__ " Sending SIGTERM to child pid:%d\n", state->child));
738
739                 if (kill(state->child, SIGTERM) != 0) {
740                         DEBUG(DEBUG_ERR,("Failed to kill child process for eventscript, errno %s(%d)\n", strerror(errno), errno));
741                 }
742         }
743
744         /* This is allowed to free us; talloc will prevent double free anyway,
745          * but beware if you call this outside the destructor! */
746         if (state->callback) {
747                 state->callback(state->ctdb, state->cb_status, state->private_data);
748         }
749
750         return 0;
751 }
752
753 static unsigned int count_words(const char *options)
754 {
755         unsigned int words = 0;
756
757         options += strspn(options, " \t");
758         while (*options) {
759                 words++;
760                 options += strcspn(options, " \t");
761                 options += strspn(options, " \t");
762         }
763         return words;
764 }
765
766 static bool check_options(enum ctdb_eventscript_call call, const char *options)
767 {
768         switch (call) {
769         /* These all take no arguments. */
770         case CTDB_EVENT_STARTUP:
771         case CTDB_EVENT_START_RECOVERY:
772         case CTDB_EVENT_RECOVERED:
773         case CTDB_EVENT_STOPPED:
774         case CTDB_EVENT_MONITOR:
775         case CTDB_EVENT_STATUS:
776         case CTDB_EVENT_SHUTDOWN:
777                 return count_words(options) == 0;
778
779         case CTDB_EVENT_TAKE_IP: /* interface, IP address, netmask bits. */
780         case CTDB_EVENT_RELEASE_IP:
781                 return count_words(options) == 3;
782
783         default:
784                 DEBUG(DEBUG_ERR,(__location__ "Unknown ctdb_eventscript_call %u\n", call));
785                 return false;
786         }
787 }
788
789 /*
790   run the event script in the background, calling the callback when 
791   finished
792  */
793 static int ctdb_event_script_callback_v(struct ctdb_context *ctdb, 
794                                         void (*callback)(struct ctdb_context *, int, void *),
795                                         void *private_data,
796                                         bool from_user,
797                                         enum ctdb_eventscript_call call,
798                                         const char *fmt, va_list ap)
799 {
800         TALLOC_CTX *mem_ctx;
801         struct ctdb_event_script_state *state;
802         int ret;
803
804         if (!from_user && (call == CTDB_EVENT_MONITOR || call == CTDB_EVENT_STATUS)) {
805                 /* if this was a "monitor" or a status event, we recycle the
806                    context to start a new monitor event
807                 */
808                 if (ctdb->monitor_event_script_ctx != NULL) {
809                         talloc_free(ctdb->monitor_event_script_ctx);
810                         ctdb->monitor_event_script_ctx = NULL;
811                 }
812                 ctdb->monitor_event_script_ctx = talloc_new(ctdb);
813                 mem_ctx = ctdb->monitor_event_script_ctx;
814
815                 if (ctdb->current_monitor_status_ctx != NULL) {
816                         talloc_free(ctdb->current_monitor_status_ctx);
817                         ctdb->current_monitor_status_ctx = NULL;
818                 }
819
820 <<<<<<< HEAD:server/eventscript.c
821                 ctdb->current_monitor_status_ctx = talloc(ctdb->monitor_event_script_ctx, struct ctdb_monitor_script_status_ctx);
822 =======
823                 ctdb->current_monitor_status_ctx = talloc(ctdb, struct ctdb_monitor_script_status_ctx);
824                 CTDB_NO_MEMORY(ctdb, ctdb->current_monitor_status_ctx);
825 >>>>>>> martins-svart/status-test-2:server/eventscript.c
826                 ctdb->current_monitor_status_ctx->scripts = NULL;
827         } else {
828                 /* any other script will first terminate any monitor event */
829                 if (ctdb->monitor_event_script_ctx != NULL) {
830                         talloc_free(ctdb->monitor_event_script_ctx);
831                         ctdb->monitor_event_script_ctx = NULL;
832                 }
833                 /* and then use a context common for all non-monitor events */
834 <<<<<<< HEAD:server/eventscript.c
835                 if (ctdb->other_event_script_ctx != NULL) {
836                         talloc_free(ctdb->other_event_script_ctx);
837                         ctdb->other_event_script_ctx = NULL;
838                 }
839                 ctdb->other_event_script_ctx = talloc_new(ctdb);
840 =======
841                 if (ctdb->other_event_script_ctx == NULL) {
842                         ctdb->other_event_script_ctx = talloc_new(ctdb);
843                 }
844 >>>>>>> martins-svart/status-test-2:server/eventscript.c
845                 mem_ctx = ctdb->other_event_script_ctx;
846         }
847
848         state = talloc(mem_ctx, struct ctdb_event_script_state);
849         CTDB_NO_MEMORY(ctdb, state);
850
851         state->ctdb = ctdb;
852         state->callback = callback;
853         state->private_data = private_data;
854         state->call = call;
855         state->options = talloc_vasprintf(state, fmt, ap);
856         state->timeout = timeval_set(ctdb->tunable.script_timeout, 0);
857         if (state->options == NULL) {
858                 DEBUG(DEBUG_ERR, (__location__ " could not allocate state->options\n"));
859                 talloc_free(state);
860                 return -1;
861         }
862         if (!check_options(state->call, state->options)) {
863                 DEBUG(DEBUG_ERR, ("Bad eventscript options '%s' for %s\n",
864                                   call_names[state->call], state->options));
865                 talloc_free(state);
866                 return -1;
867         }
868
869         DEBUG(DEBUG_INFO,(__location__ " Starting eventscript %s %s\n",
870                           call_names[state->call], state->options));
871         
872         ret = pipe(state->fd);
873         if (ret != 0) {
874                 talloc_free(state);
875                 return -1;
876         }
877
878         state->child = fork();
879
880         if (state->child == (pid_t)-1) {
881                 close(state->fd[0]);
882                 close(state->fd[1]);
883                 talloc_free(state);
884                 return -1;
885         }
886
887         if (state->child == 0) {
888                 int rt;
889
890                 close(state->fd[0]);
891                 set_close_on_exec(state->fd[1]);
892
893                 rt = ctdb_run_event_script(ctdb, from_user, state->call, state->options);
894                 /* We must be able to write PIPEBUF bytes at least; if this
895                    somehow fails, the read above will be short. */
896                 write(state->fd[1], &rt, sizeof(rt));
897                 close(state->fd[1]);
898                 _exit(rt);
899         }
900
901         close(state->fd[1]);
902         set_close_on_exec(state->fd[0]);
903         talloc_set_destructor(state, event_script_destructor);
904
905         DEBUG(DEBUG_DEBUG, (__location__ " Created PIPE FD:%d to child eventscript process\n", state->fd[0]));
906
907         event_add_fd(ctdb->ev, state, state->fd[0], EVENT_FD_READ|EVENT_FD_AUTOCLOSE,
908                      ctdb_event_script_handler, state);
909
910         if (!timeval_is_zero(&state->timeout)) {
911                 event_add_timed(ctdb->ev, state, timeval_current_ofs(state->timeout.tv_sec, state->timeout.tv_usec), ctdb_event_script_timeout, state);
912         } else {
913                 DEBUG(DEBUG_ERR, (__location__ " eventscript %s %s called with no timeout\n",
914                                   call_names[state->call], state->options));
915         }
916
917         return 0;
918 }
919
920
921 /*
922   run the event script in the background, calling the callback when 
923   finished
924  */
925 int ctdb_event_script_callback(struct ctdb_context *ctdb, 
926                                TALLOC_CTX *mem_ctx,
927                                void (*callback)(struct ctdb_context *, int, void *),
928                                void *private_data,
929                                bool from_user,
930                                enum ctdb_eventscript_call call,
931                                const char *fmt, ...)
932 {
933         va_list ap;
934         int ret;
935
936         va_start(ap, fmt);
937         ret = ctdb_event_script_callback_v(ctdb, callback, private_data, from_user, call, fmt, ap);
938         va_end(ap);
939
940         return ret;
941 }
942
943
944 struct callback_status {
945         bool done;
946         int status;
947 };
948
949 /*
950   called when ctdb_event_script() finishes
951  */
952 static void event_script_callback(struct ctdb_context *ctdb, int status, void *private_data)
953 {
954         struct callback_status *s = (struct callback_status *)private_data;
955         s->done = true;
956         s->status = status;
957 }
958
959 /*
960   run the event script, waiting for it to complete. Used when the caller
961   doesn't want to continue till the event script has finished.
962  */
963 int ctdb_event_script_args(struct ctdb_context *ctdb, enum ctdb_eventscript_call call,
964                            const char *fmt, ...)
965 {
966         va_list ap;
967         int ret;
968         struct callback_status status;
969
970         va_start(ap, fmt);
971         ret = ctdb_event_script_callback_v(ctdb,
972                         event_script_callback, &status, false, call, fmt, ap);
973         if (ret != 0) {
974                 return ret;
975         }
976         va_end(ap);
977
978         status.status = -1;
979         status.done = false;
980
981         while (status.done == false && event_loop_once(ctdb->ev) == 0) /* noop */;
982
983         return status.status;
984 }
985
986 int ctdb_event_script(struct ctdb_context *ctdb, enum ctdb_eventscript_call call)
987 {
988         /* GCC complains about empty format string, so use %s and "". */
989         return ctdb_event_script_args(ctdb, call, "%s", "");
990 }
991
992 struct eventscript_callback_state {
993         struct ctdb_req_control *c;
994 };
995
996 /*
997   called when a forced eventscript finishes
998  */
999 static void run_eventscripts_callback(struct ctdb_context *ctdb, int status, 
1000                                  void *private_data)
1001 {
1002         struct eventscript_callback_state *state = 
1003                 talloc_get_type(private_data, struct eventscript_callback_state);
1004
1005         ctdb_enable_monitoring(ctdb);
1006
1007         if (status != 0) {
1008                 DEBUG(DEBUG_ERR,(__location__ " Failed to forcibly run eventscripts\n"));
1009         }
1010
1011         ctdb_request_control_reply(ctdb, state->c, NULL, status, NULL);
1012         /* This will free the struct ctdb_event_script_state we are in! */
1013         talloc_free(state);
1014         return;
1015 }
1016
1017 <<<<<<< HEAD:server/eventscript.c
1018
1019 =======
1020 /* Returns rest of string, or NULL if no match. */
1021 >>>>>>> martins-svart/status-test-2:server/eventscript.c
1022 static const char *get_call(const char *p, enum ctdb_eventscript_call *call)
1023 {
1024         unsigned int len;
1025
1026         /* Skip any initial whitespace. */
1027         p += strspn(p, " \t");
1028
1029         /* See if we match any. */
1030         for (*call = 0; *call < ARRAY_SIZE(call_names); (*call)++) {
1031                 len = strlen(call_names[*call]);
1032                 if (strncmp(p, call_names[*call], len) == 0) {
1033 <<<<<<< HEAD:server/eventscript.c
1034                         /* If that's it, we're good. */
1035                         if (*p == '\0')
1036                                 return p;
1037                         /* Otherwise, if whitespace is next, good. */
1038                         len = strspn(p, " \t");
1039                         if (len)
1040                                 return p + len;
1041                         /* Hmm, extra chars: keep looking. */
1042 =======
1043                         /* If end of string or whitespace, we're done. */
1044                         if (strcspn(p + len, " \t") == 0) {
1045                                 return p + len;
1046                         }
1047 >>>>>>> martins-svart/status-test-2:server/eventscript.c
1048                 }
1049         }
1050         return NULL;
1051 }
1052
1053 /*
1054   A control to force running of the eventscripts from the ctdb client tool
1055 */
1056 int32_t ctdb_run_eventscripts(struct ctdb_context *ctdb,
1057                 struct ctdb_req_control *c,
1058                 TDB_DATA indata, bool *async_reply)
1059 {
1060         int ret;
1061         struct eventscript_callback_state *state;
1062         const char *options;
1063         enum ctdb_eventscript_call call;
1064
1065         /* Figure out what call they want. */
1066         options = get_call((const char *)indata.dptr, &call);
1067         if (!options) {
1068                 DEBUG(DEBUG_ERR, (__location__ " Invalid forced \"%s\"\n", (const char *)indata.dptr));
1069                 return -1;
1070         }
1071
1072         if (ctdb->recovery_mode != CTDB_RECOVERY_NORMAL) {
1073                 DEBUG(DEBUG_ERR, (__location__ " Aborted running eventscript \"%s\" while in RECOVERY mode\n", indata.dptr));
1074                 return -1;
1075         }
1076
1077         state = talloc(ctdb->other_event_script_ctx, struct eventscript_callback_state);
1078         CTDB_NO_MEMORY(ctdb, state);
1079
1080         state->c = talloc_steal(state, c);
1081
1082         DEBUG(DEBUG_NOTICE,("Forced running of eventscripts with arguments %s\n", indata.dptr));
1083
1084         ctdb_disable_monitoring(ctdb);
1085
1086         ret = ctdb_event_script_callback(ctdb, 
1087                          state, run_eventscripts_callback, state,
1088                          true, call, "%s", options);
1089
1090         if (ret != 0) {
1091                 ctdb_enable_monitoring(ctdb);
1092                 DEBUG(DEBUG_ERR,(__location__ " Failed to run eventscripts with arguments %s\n", indata.dptr));
1093                 talloc_free(state);
1094                 return -1;
1095         }
1096
1097         /* tell ctdb_control.c that we will be replying asynchronously */
1098         *async_reply = true;
1099
1100         return 0;
1101 }
1102
1103
1104
1105 int32_t ctdb_control_enable_script(struct ctdb_context *ctdb, TDB_DATA indata)
1106 {
1107         const char *script;
1108         struct stat st;
1109         char *filename;
1110         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
1111
1112         script = (char *)indata.dptr;
1113         if (indata.dsize == 0) {
1114                 DEBUG(DEBUG_ERR,(__location__ " No script specified.\n"));
1115                 talloc_free(tmp_ctx);
1116                 return -1;
1117         }
1118         if (indata.dptr[indata.dsize - 1] != '\0') {
1119                 DEBUG(DEBUG_ERR,(__location__ " String is not null terminated.\n"));
1120                 talloc_free(tmp_ctx);
1121                 return -1;
1122         }
1123         if (index(script,'/') != NULL) {
1124                 DEBUG(DEBUG_ERR,(__location__ " Script name contains '/'. Failed to enable script %s\n", script));
1125                 talloc_free(tmp_ctx);
1126                 return -1;
1127         }
1128
1129
1130         if (stat(ctdb->event_script_dir, &st) != 0 && 
1131             errno == ENOENT) {
1132                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
1133                 talloc_free(tmp_ctx);
1134                 return -1;
1135         }
1136
1137
1138         filename = talloc_asprintf(tmp_ctx, "%s/%s", ctdb->event_script_dir, script);
1139         if (filename == NULL) {
1140                 DEBUG(DEBUG_ERR,(__location__ " Failed to create script path\n"));
1141                 talloc_free(tmp_ctx);
1142                 return -1;
1143         }
1144
1145         if (stat(filename, &st) != 0) {
1146                 DEBUG(DEBUG_ERR,("Could not stat event script %s. Failed to enable script.\n", filename));
1147                 talloc_free(tmp_ctx);
1148                 return -1;
1149         }
1150
1151         if (chmod(filename, st.st_mode | S_IXUSR) == -1) {
1152                 DEBUG(DEBUG_ERR,("Could not chmod %s. Failed to enable script.\n", filename));
1153                 talloc_free(tmp_ctx);
1154                 return -1;
1155         }
1156
1157         talloc_free(tmp_ctx);
1158         return 0;
1159 }
1160
1161 int32_t ctdb_control_disable_script(struct ctdb_context *ctdb, TDB_DATA indata)
1162 {
1163         const char *script;
1164         struct stat st;
1165         char *filename;
1166         TALLOC_CTX *tmp_ctx = talloc_new(ctdb);
1167
1168         script = (char *)indata.dptr;
1169         if (indata.dsize == 0) {
1170                 DEBUG(DEBUG_ERR,(__location__ " No script specified.\n"));
1171                 talloc_free(tmp_ctx);
1172                 return -1;
1173         }
1174         if (indata.dptr[indata.dsize - 1] != '\0') {
1175                 DEBUG(DEBUG_ERR,(__location__ " String is not null terminated.\n"));
1176                 talloc_free(tmp_ctx);
1177                 return -1;
1178         }
1179         if (index(script,'/') != NULL) {
1180                 DEBUG(DEBUG_ERR,(__location__ " Script name contains '/'. Failed to disable script %s\n", script));
1181                 talloc_free(tmp_ctx);
1182                 return -1;
1183         }
1184
1185
1186         if (stat(ctdb->event_script_dir, &st) != 0 && 
1187             errno == ENOENT) {
1188                 DEBUG(DEBUG_CRIT,("No event script directory found at '%s'\n", ctdb->event_script_dir));
1189                 talloc_free(tmp_ctx);
1190                 return -1;
1191         }
1192
1193
1194         filename = talloc_asprintf(tmp_ctx, "%s/%s", ctdb->event_script_dir, script);
1195         if (filename == NULL) {
1196                 DEBUG(DEBUG_ERR,(__location__ " Failed to create script path\n"));
1197                 talloc_free(tmp_ctx);
1198                 return -1;
1199         }
1200
1201         if (stat(filename, &st) != 0) {
1202                 DEBUG(DEBUG_ERR,("Could not stat event script %s. Failed to disable script.\n", filename));
1203                 talloc_free(tmp_ctx);
1204                 return -1;
1205         }
1206
1207         if (chmod(filename, st.st_mode & ~(S_IXUSR|S_IXGRP|S_IXOTH)) == -1) {
1208                 DEBUG(DEBUG_ERR,("Could not chmod %s. Failed to disable script.\n", filename));
1209                 talloc_free(tmp_ctx);
1210                 return -1;
1211         }
1212
1213         talloc_free(tmp_ctx);
1214         return 0;
1215 }