]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/ua_server.c
Backport from Bacula Enterprise
[bacula/bacula] / bacula / src / dird / ua_server.c
index eecf65619efcc3b418c826ed26f1a302db11b9ba..eb5c586770eb08f03c72b9b3cca4be35acdb4dab 100644 (file)
@@ -1,54 +1,38 @@
 /*
- *
- *   Bacula Director -- User Agent Server
- *
- *     Kern Sibbald, September MM
- *
- *    Version $Id$
- */
+   Bacula(R) - The Network Backup Solution
 
-/*
-   Copyright (C) 2000-2003 Kern Sibbald and John Walker
+   Copyright (C) 2000-2015 Kern Sibbald
+   Copyright (C) 2000-2014 Free Software Foundation Europe e.V.
 
-   This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2 of
-   the License, or (at your option) any later version.
+   The original author of Bacula is Kern Sibbald, with contributions
+   from many others, a complete list can be found in the file AUTHORS.
 
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
+   You may use this file and others of this release according to the
+   license defined in the LICENSE file, which includes the Affero General
+   Public License, v3.0 ("AGPLv3") and some additional permissions and
+   terms pursuant to its AGPLv3 Section 7.
 
-   You should have received a copy of the GNU General Public
-   License along with this program; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-   MA 02111-1307, USA.
+   This notice must be preserved when any source code is 
+   conveyed and/or propagated.
 
+   Bacula(R) is a registered trademark of Kern Sibbald.
+*/
+/*
+ *
+ *   Bacula Director -- User Agent Server
+ *
+ *     Kern Sibbald, September MM
+ *
  */
 
 #include "bacula.h"
 #include "dird.h"
 
-/* Imported subroutines */
-
 /* Imported variables */
-extern int r_first;
-extern int r_last;
-extern struct s_res resources[];
-extern int console_msg_pending;
-extern char my_name[];
 
-/* Static variables */
-
-/* Exported variables */
-int quit_cmd_thread = 0;
-
-/* Imported functions */
 
 /* Forward referenced functions */
-
-static void *connect_thread(void *arg);
+extern "C" void *connect_thread(void *arg);
 static void *handle_UA_client_request(void *arg);
 
 
@@ -58,36 +42,35 @@ static workq_t ua_workq;
 
 struct s_addr_port {
    char *addr;
-   int port;
+   char *port;
 };
 
 /* Called here by Director daemon to start UA (user agent)
  * command thread. This routine creates the thread and then
  * returns.
  */
-void start_UA_server(char *UA_addr, int UA_port)
+void start_UA_server(dlist *addrs)
 {
    pthread_t thid;
    int status;
-   static struct s_addr_port arg;
+   static dlist *myaddrs = addrs;
 
-   arg.port = UA_port;
-   arg.addr = UA_addr;
-   if ((status=pthread_create(&thid, NULL, connect_thread, (void *)&arg)) != 0) {
-      Emsg1(M_ABORT, 0, _("Cannot create UA thread: %s\n"), strerror(status));
+   if ((status=pthread_create(&thid, NULL, connect_thread, (void *)myaddrs)) != 0) {
+      berrno be;
+      Emsg1(M_ABORT, 0, _("Cannot create UA thread: %s\n"), be.bstrerror(status));
    }
    started = TRUE;
    return;
 }
 
-static void *connect_thread(void *arg)
+extern "C"
+void *connect_thread(void *arg)
 {
-   struct s_addr_port *UA = (struct s_addr_port *)arg;
-
    pthread_detach(pthread_self());
+   set_jcr_in_tsd(INVALID_JCR);
 
-   /*  ****FIXME**** put # 5 on config parameter */
-   bnet_thread_server(UA->addr, UA->port, 5, &ua_workq, handle_UA_client_request);
+   /* Permit MaxConsoleConnect console connections */
+   bnet_thread_server((dlist*)arg, director->MaxConsoleConnect, &ua_workq, handle_UA_client_request);
    return NULL;
 }
 
@@ -95,34 +78,31 @@ static void *connect_thread(void *arg)
  * Create a Job Control Record for a control "job",
  *   filling in all the appropriate fields.
  */
-JCR *create_control_jcr(char *base_name, int job_type)
+JCR *new_control_jcr(const char *base_name, int job_type)
 {
    JCR *jcr;
    jcr = new_jcr(sizeof(JCR), dird_free_jcr);
-   jcr->sd_auth_key = bstrdup("dummy"); /* dummy Storage daemon key */
-   create_unique_job_name(jcr, base_name);
-   jcr->sched_time = jcr->start_time;
-   jcr->JobType = job_type;
-   jcr->JobLevel = L_FULL;
-   jcr->JobStatus = JS_Running;
-   /* None of these are really defined for control JCRs, so we
-    * simply take the first of each one. This ensures that there
-    * will be no null pointer references.
+   /*
+    * The job and defaults are not really used, but
+    *  we set them up to ensure that everything is correctly
+    *  initialized.
     */
    LockRes();
    jcr->job = (JOB *)GetNextRes(R_JOB, NULL);
-   jcr->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
-   jcr->client = (CLIENT *)GetNextRes(R_CLIENT, NULL);
-   jcr->pool = (POOL *)GetNextRes(R_POOL, NULL);
-   jcr->catalog = (CAT *)GetNextRes(R_CATALOG, NULL);
-   jcr->store = (STORE *)GetNextRes(R_STORAGE, NULL);
-   jcr->fileset = (FILESET *)GetNextRes(R_FILESET, NULL);
+   set_jcr_defaults(jcr, jcr->job);
    UnlockRes();
+   jcr->sd_auth_key = bstrdup("dummy"); /* dummy Storage daemon key */
+   create_unique_job_name(jcr, base_name);
+   jcr->sched_time = jcr->start_time;
+   jcr->setJobType(job_type);
+   jcr->setJobLevel(L_NONE);
+   jcr->setJobStatus(JS_Running);
+   jcr->JobId = 0;
    return jcr;
 }
 
 /*
- * Handle Director User Agent commands  
+ * Handle Director User Agent commands
  *
  */
 static void *handle_UA_client_request(void *arg)
@@ -130,51 +110,61 @@ static void *handle_UA_client_request(void *arg)
    int stat;
    UAContext *ua;
    JCR *jcr;
-   BSOCK *UA_sock = (BSOCK *)arg;
+   BSOCK *user = (BSOCK *)arg;
 
    pthread_detach(pthread_self());
 
-   jcr = create_control_jcr("*Console*", JT_CONSOLE);
+   jcr = new_control_jcr("-Console-", JT_CONSOLE);
 
    ua = new_ua_context(jcr);
-   ua->UA_sock = UA_sock;
+   ua->UA_sock = user;
+   set_jcr_in_tsd(INVALID_JCR);
 
-   bnet_recv(ua->UA_sock);         /* Get first message */
+   user->recv();             /* Get first message */
    if (!authenticate_user_agent(ua)) {
       goto getout;
    }
 
    while (!ua->quit) {
-      stat = bnet_recv(ua->UA_sock);
+      if (ua->api) user->signal(BNET_MAIN_PROMPT);
+      stat = user->recv();
       if (stat >= 0) {
-        pm_strcpy(&ua->cmd, ua->UA_sock->msg);
-        parse_ua_args(ua);
+         pm_strcpy(ua->cmd, ua->UA_sock->msg);
+         parse_ua_args(ua);
          if (ua->argc > 0 && ua->argk[0][0] == '.') {
-           do_a_dot_command(ua, ua->cmd);
-        } else {
-           do_a_command(ua, ua->cmd);
-        }
-        if (!ua->quit) {
-           if (ua->auto_display_messages) {
-               strcpy(ua->cmd, "messages");
-              qmessagescmd(ua, ua->cmd);
-              ua->user_notified_msg_pending = FALSE;
-           } else if (!ua->user_notified_msg_pending && console_msg_pending) {
-               bsendmsg(ua, _("You have messages.\n"));
-              ua->user_notified_msg_pending = TRUE;
-           }
-           bnet_sig(ua->UA_sock, BNET_EOD); /* send end of command */
-        }
-      } else if (is_bnet_stop(ua->UA_sock)) {
-        ua->quit = TRUE;
-        break;
+            do_a_dot_command(ua);
+         } else {
+            do_a_command(ua);
+         }
+         dequeue_messages(ua->jcr);
+         if (!ua->quit) {
+            if (console_msg_pending && acl_access_ok(ua, Command_ACL, "messages", 8)) {
+               if (ua->auto_display_messages) {
+                  pm_strcpy(ua->cmd, "messages");
+                  qmessagescmd(ua, ua->cmd);
+                  ua->user_notified_msg_pending = false;
+               } else if (!ua->gui && !ua->user_notified_msg_pending && console_msg_pending) {
+                  if (ua->api) {
+                     user->signal(BNET_MSGS_PENDING);
+                  } else {
+                     bsendmsg(ua, _("You have messages.\n"));
+                  }
+                  ua->user_notified_msg_pending = true;
+               }
+            }
+            if (!ua->api) user->signal(BNET_EOD);     /* send end of command */
+         }
+      } else if (user->is_stop()) {
+         ua->quit = true;
       } else { /* signal */
-        bnet_sig(ua->UA_sock, BNET_POLL);
+         user->signal(BNET_POLL);
       }
+
+      /* At the end of each command, revert to the main shared SQL link */
+      ua->db = ua->shared_db;
    }
 
 getout:
-
    close_db(ua);
    free_ua_context(ua);
    free_jcr(jcr);
@@ -184,7 +174,7 @@ getout:
 
 /*
  * Create a UAContext for a Job that is running so that
- *   it can the User Agent routines and    
+ *   it can the User Agent routines and
  *   to ensure that the Job gets the proper output.
  *   This is a sort of mini-kludge, and should be
  *   unified at some point.
@@ -196,11 +186,12 @@ UAContext *new_ua_context(JCR *jcr)
    ua = (UAContext *)malloc(sizeof(UAContext));
    memset(ua, 0, sizeof(UAContext));
    ua->jcr = jcr;
-   ua->db = jcr->db;
+   ua->shared_db = ua->db = jcr->db;
    ua->cmd = get_pool_memory(PM_FNAME);
    ua->args = get_pool_memory(PM_FNAME);
-   ua->verbose = 1;
-   ua->automount = TRUE;
+   ua->errmsg = get_pool_memory(PM_FNAME);
+   ua->verbose = true;
+   ua->automount = true;
    return ua;
 }
 
@@ -212,24 +203,26 @@ void free_ua_context(UAContext *ua)
    if (ua->args) {
       free_pool_memory(ua->args);
    }
+   if (ua->errmsg) {
+      free_pool_memory(ua->errmsg);
+   }
    if (ua->prompt) {
       free(ua->prompt);
    }
-
-   if (ua->UA_sock) {
-      bnet_close(ua->UA_sock);
+   if (ua->unique) {
+      free(ua->unique);
    }
+   free_bsock(ua->UA_sock);
    free(ua);
 }
 
 
 /*
- * Called from main Bacula thread 
+ * Called from main Bacula thread
  */
 void term_ua_server()
 {
    if (!started) {
       return;
    }
-   quit_cmd_thread = TRUE;
 }