]> git.sur5r.net Git - bacula/bacula/commitdiff
Add .dump and .exit commands for daemons
authorKern Sibbald <kern@sibbald.com>
Sat, 10 Jul 2010 12:21:46 +0000 (14:21 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:57 +0000 (16:53 +0200)
bacula/src/dird/ua_dotcmds.c
bacula/src/filed/filed.c
bacula/src/filed/filed.h
bacula/src/filed/job.c

index afe4be6a9e282c4a8d92fd01501d8221ee1409cb..945d9a0958138a388769850eaab40250a6b3647b 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2002-2009 Free Software Foundation Europe e.V.
+   Copyright (C) 2002-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -52,7 +52,7 @@ extern bool dot_status_cmd(UAContext *ua, const char *cmd);
 
 
 /* Forward referenced functions */
-static bool die_or_dump_cmd(UAContext *ua, const char *cmd);
+static bool admin_cmds(UAContext *ua, const char *cmd);
 static bool jobscmd(UAContext *ua, const char *cmd);
 static bool filesetscmd(UAContext *ua, const char *cmd);
 static bool clientscmd(UAContext *ua, const char *cmd);
@@ -85,9 +85,9 @@ static struct cmdstruct commands[] = { /* help */  /* can be used in runscript *
  { NT_(".backups"),    backupscmd,       NULL,       false},
  { NT_(".clients"),    clientscmd,       NULL,       true},
  { NT_(".defaults"),   defaultscmd,      NULL,       false},
- { NT_(".die"),        die_or_dump_cmd,  NULL,       false},
- { NT_(".dump"),       die_or_dump_cmd,  NULL,       false},
- { NT_(".exit"),       dot_quit_cmd,     NULL,       false},
+ { NT_(".die"),        admin_cmds,       NULL,       false},
+ { NT_(".dump"),       admin_cmds,       NULL,       false},
+ { NT_(".exit"),       admin_cmds,       NULL,       false},
  { NT_(".filesets"),   filesetscmd,      NULL,       false},
  { NT_(".help"),       dot_help_cmd,     NULL,       false},
  { NT_(".jobs"),       jobscmd,          NULL,       true},
@@ -419,32 +419,41 @@ static void do_client_cmd(UAContext *ua, CLIENT *client, const char *cmd)
 }
 
 /*
- * Create segmentation fault or dump memory
+ *   .die (seg fault)
+ *   .dump (sm_dump)
+ *   .exit (no arg => .quit)
  */
-static bool die_or_dump_cmd(UAContext *ua, const char *cmd)
+static bool admin_cmds(UAContext *ua, const char *cmd)
 {
    pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
    STORE *store=NULL;
    CLIENT *client=NULL;
    bool dir=false;
    bool do_deadlock=false;
-   const char *remote_cmd="sm_dump";
+   const char *remote_cmd;
    int i;
    JCR *jcr = NULL;
    int a;
-   if (!strncmp(ua->argk[0], ".die", 4)) {
+   if (strncmp(ua->argk[0], ".die", 4) == 0) {
       if (find_arg(ua, "deadlock") > 0) {
-         do_deadlock=true;
+         do_deadlock = true;
          remote_cmd = ".die deadlock";
       } else {
          remote_cmd = ".die";
       }
+   } else if (strncmp(ua->argk[0], ".dump", 5) == 0) {
+      remote_cmd = "sm_dump";
+   } else if (strncmp(ua->argk[0], ".exit", 5) == 0) {
+      remote_cmd = "exit";
+   } else {
+      ua->error_msg(_("Unknown command: %s\n"), ua->argk[0]);
+      return true;
    }
    /* General debug? */
    for (i=1; i<ua->argc; i++) {
       if (strcasecmp(ua->argk[i], "dir") == 0 ||
           strcasecmp(ua->argk[i], "director") == 0) {
-         dir=true;
+         dir = true;
       }
       if (strcasecmp(ua->argk[i], "client") == 0 ||
           strcasecmp(ua->argk[i], "fd") == 0) {
@@ -503,7 +512,7 @@ static bool die_or_dump_cmd(UAContext *ua, const char *cmd)
    }
 
    if (dir) {
-      if (!strncmp(remote_cmd, ".die", 4)) {
+      if (strncmp(remote_cmd, ".die", 4) == 0) {
          if (do_deadlock) {
             ua->send_msg(_("The Director will generate a deadlock.\n"));
             P(mutex); 
@@ -513,8 +522,10 @@ static bool die_or_dump_cmd(UAContext *ua, const char *cmd)
          a = jcr->JobId; /* ref NULL pointer */
          jcr->JobId = 1000; /* another ref NULL pointer */
 
-      } else {                  /* .dump */
+      } else if (strncmp(remote_cmd, ".dump", 5) == 0) {
          sm_dump(false, true);
+      } else if (strncmp(remote_cmd, ".exit", 5) == 0) {
+         dot_quit_cmd(ua, cmd);
       }
    }
 
index 50708d3d4834de74d0f0628ad91906d205210bef..7ef7c6ece89fffc8e611276c6580ff0424615e27 100644 (file)
@@ -53,7 +53,6 @@ extern void *handle_client_request(void *dir_sock);
 extern bool parse_fd_config(CONFIG *config, const char *configfile, int exit_code);
 
 /* Forward referenced functions */
-void terminate_filed(int sig);
 static bool check_resources();
 
 /* Exported variables */
index 6aac8f52185be814539f867be71e1216dadc53aa..7a820e1db1af3cd629189fd7fcfeb83afb18e062 100644 (file)
@@ -78,3 +78,6 @@ typedef enum {
 #endif
 
 extern CLIENT *me;                    /* "Global" Client resource */
+
+void terminate_filed(int sig);
+
index 0a2b8e2dcd7b26fd3bc5525d4991072b07739f81..9059314a7ae995a6b79d48aee542bbada5f7c906 100644 (file)
@@ -92,6 +92,7 @@ static int restore_object_cmd(JCR *jcr);
 static int set_options(findFOPTS *fo, const char *opts);
 static void set_storage_auth_key(JCR *jcr, char *key);
 static int sm_dump_cmd(JCR *jcr);
+static int exit_cmd(JCR *jcr);
 
 /* Exported functions */
 
@@ -128,6 +129,9 @@ static struct s_cmds cmds[] = {
    {"accurate",     accurate_cmd,  0},
    {"restoreobject", restore_object_cmd, 0},
    {"sm_dump",      sm_dump_cmd, 0},
+#ifdef DEVELOPER
+   {"exit",         exit_cmd, 0},
+#endif
    {NULL,       NULL}                  /* list terminator */
 };
 
@@ -401,12 +405,21 @@ void *handle_client_request(void *dirp)
 
 static int sm_dump_cmd(JCR *jcr)
 {
-   BSOCK *dir = jcr->dir_bsock;
    sm_dump(false, true);
-   dir->fsend("2000 sm_dump OK\n");
+   jcr->dir_bsock->fsend("2000 sm_dump OK\n");
    return 1;
 }
 
+#ifdef DEVELOPER
+static int exit_cmd(JCR *jcr)
+{
+   jcr->dir_bsock->fsend("2000 exit OK\n");
+   terminate_filed(0);
+   return 0;
+}
+#endif
+
+
 /**
  * Hello from Director he must identify himself and provide his
  *  password.