]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/job.c
- Correct typo in Copyright
[bacula/bacula] / bacula / src / stored / job.c
index a6600c2ab16a2ef6282af8642a0262920b65a1f5..5dd592256fe698af92ea85118736d0491cdd43e3 100644 (file)
    Copyright (C) 2000-2005 Kern Sibbald
 
    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.
+   modify it under the terms of the GNU General Public License
+   version 2 as amended with additional clauses defined in the
+   file LICENSE in the main source directory.
 
    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 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.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+   the file LICENSE for additional details.
 
  */
 
@@ -35,28 +30,18 @@ extern uint32_t VolSessionTime;
 /* Imported functions */
 extern uint32_t newVolSessionId();
 
-/* Forward referenced functions */
-static bool use_device_cmd(JCR *jcr);
-
 /* Requests from the Director daemon */
 static char jobcmd[] = "JobId=%d job=%127s job_name=%127s client_name=%127s "
       "type=%d level=%d FileSet=%127s NoAttr=%d SpoolAttr=%d FileSetMD5=%127s "
-      "SpoolData=%d  WritePartAfterJob=%d";
-static char use_device[]  = "use device=%127s media_type=%127s "
-   "pool_name=%127s pool_type=%127s PoolId=%lld append=%d";
-static char query_device[] = "query device=%127s";
+      "SpoolData=%d WritePartAfterJob=%d PreferMountedVols=%d\n";
 
 
 /* Responses sent to Director daemon */
 static char OKjob[]     = "3000 OK Job SDid=%u SDtime=%u Authorization=%s\n";
-static char OK_device[] = "3000 OK use device device=%s\n";
-static char NO_device[] = "3924 Device \"%s\" not in SD Device resources.\n";
-static char NOT_open[]  = "3925 Device \"%s\" could not be opened or does not exist.\n";
-static char BAD_use[]   = "3913 Bad use command: %s\n";
 static char BAD_job[]   = "3915 Bad Job command: %s\n";
-static char OK_query[]  = "3001 OK query\n";
-static char NO_query[]  = "3918 Query failed\n";
-static char BAD_query[] = "3917 Bad query command: %s\n";
+//static char OK_query[]  = "3001 OK query\n";
+//static char NO_query[]  = "3918 Query failed\n";
+//static char BAD_query[] = "3917 Bad query command: %s\n";
 
 /*
  * Director requests us to start a job
@@ -74,7 +59,9 @@ bool job_cmd(JCR *jcr)
    char auth_key[100];
    BSOCK *dir = jcr->dir_bsock;
    POOL_MEM job_name, client_name, job, fileset_name, fileset_md5;
-   int JobType, level, spool_attributes, no_attributes, spool_data, write_part_after_job;
+   int JobType, level, spool_attributes, no_attributes, spool_data;
+   int write_part_after_job, PreferMountedVols;
+
    JCR *ojcr;
 
    /*
@@ -82,9 +69,10 @@ bool job_cmd(JCR *jcr)
     */
    Dmsg1(100, "<dird: %s\n", dir->msg);
    if (sscanf(dir->msg, jobcmd, &JobId, job.c_str(), job_name.c_str(),
-             client_name.c_str(),
-             &JobType, &level, fileset_name.c_str(), &no_attributes,
-             &spool_attributes, fileset_md5.c_str(), &spool_data, &write_part_after_job) != 12) {
+              client_name.c_str(),
+              &JobType, &level, fileset_name.c_str(), &no_attributes,
+              &spool_attributes, fileset_md5.c_str(), &spool_data, 
+              &write_part_after_job, &PreferMountedVols) != 13) {
       pm_strcpy(jcr->errmsg, dir->msg);
       bnet_fsend(dir, BAD_job, jcr->errmsg);
       Dmsg1(100, ">dird: %s\n", dir->msg);
@@ -123,6 +111,7 @@ bool job_cmd(JCR *jcr)
    jcr->write_part_after_job = write_part_after_job;
    jcr->fileset_md5 = get_pool_memory(PM_NAME);
    pm_strcpy(jcr->fileset_md5, fileset_md5);
+   jcr->PreferMountedVols = PreferMountedVols;
 
    jcr->authenticated = false;
 
@@ -134,19 +123,7 @@ bool job_cmd(JCR *jcr)
    Dmsg1(100, ">dird: %s", dir->msg);
    jcr->sd_auth_key = bstrdup(auth_key);
    memset(auth_key, 0, sizeof(auth_key));
-   return true;
-}
-
-bool use_cmd(JCR *jcr) 
-{
-   /*
-    * Wait for the device, media, and pool information
-    */
-   if (!use_device_cmd(jcr)) {
-      set_jcr_job_status(jcr, JS_ErrorTerminated);
-      memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
-      return false;
-   }
+   generate_daemon_event(jcr, "JobStart");
    return true;
 }
 
@@ -168,12 +145,12 @@ bool run_cmd(JCR *jcr)
       return false;
    }
 
-   set_jcr_job_status(jcr, JS_WaitFD);         /* wait for FD to connect */
+   set_jcr_job_status(jcr, JS_WaitFD);          /* wait for FD to connect */
    dir_send_job_status(jcr);
 
    gettimeofday(&tv, &tz);
    timeout.tv_nsec = tv.tv_usec * 1000;
-   timeout.tv_sec = tv.tv_sec + 30 * 60;       /* wait 30 minutes */
+   timeout.tv_sec = tv.tv_sec + 30 * 60;        /* wait 30 minutes */
 
    Dmsg1(100, "%s waiting on FD to contact SD\n", jcr->Job);
    /*
@@ -185,7 +162,7 @@ bool run_cmd(JCR *jcr)
    for ( ;!job_canceled(jcr); ) {
       errstat = pthread_cond_timedwait(&jcr->job_start_wait, &jcr->mutex, &timeout);
       if (errstat == 0 || errstat == ETIMEDOUT) {
-        break;
+         break;
       }
    }
    V(jcr->mutex);
@@ -194,7 +171,7 @@ bool run_cmd(JCR *jcr)
 
    if (jcr->authenticated && !job_canceled(jcr)) {
       Dmsg1(100, "Running job %s\n", jcr->Job);
-      run_job(jcr);                  /* Run the job */
+      run_job(jcr);                   /* Run the job */
    }
    return false;
 }
@@ -207,7 +184,7 @@ void handle_filed_connection(BSOCK *fd, char *job_name)
 {
    JCR *jcr;
 
-   bmicrosleep(0, 50000);            /* wait 50 millisecs */
+   bmicrosleep(0, 50000);             /* wait 50 millisecs */
    if (!(jcr=get_jcr_by_full_name(job_name))) {
       Jmsg1(NULL, M_FATAL, 0, _("Job name not found: %s\n"), job_name);
       Dmsg1(100, "Job name not found: %s\n", job_name);
@@ -221,7 +198,7 @@ void handle_filed_connection(BSOCK *fd, char *job_name)
 
    if (jcr->authenticated) {
       Jmsg2(jcr, M_FATAL, 0, "Hey!!!! JobId %u Job %s already authenticated.\n",
-        jcr->JobId, jcr->Job);
+         jcr->JobId, jcr->Job);
       free_jcr(jcr);
       return;
    }
@@ -248,168 +225,7 @@ void handle_filed_connection(BSOCK *fd, char *job_name)
 }
 
 
-/*
- *   Use Device command from Director
- *   He tells is what Device Name to use, the Media Type,
- *     the Pool Name, and the Pool Type.
- *
- *    Ensure that the device exists and is opened, then store
- *     the media and pool info in the JCR.
- */
-static bool use_device_cmd(JCR *jcr)
-{
-   POOL_MEM dev_name, media_type, pool_name, pool_type;
-   BSOCK *dir = jcr->dir_bsock;
-   DEVRES *device;
-   uint64_t PoolId;
-   AUTOCHANGER *changer;
-   int append;
-   bool ok;
-
-   /*
-    * If there are multiple devices, the director sends us
-    *  use_device for each device that it wants to use.
-    */
-   Dmsg1(100, "<dird: %s", dir->msg);
-   ok = sscanf(dir->msg, use_device, dev_name.c_str(), media_type.c_str(),
-              pool_name.c_str(), pool_type.c_str(), &PoolId, &append) == 6;
-   if (ok) {
-      unbash_spaces(dev_name);
-      unbash_spaces(media_type);
-      unbash_spaces(pool_name);
-      unbash_spaces(pool_type);
-      LockRes();
-      foreach_res(device, R_DEVICE) {
-        /* Find resource, and make sure we were able to open it */
-        if (fnmatch(dev_name.c_str(), device->hdr.name, 0) == 0 &&
-            strcmp(device->media_type, media_type.c_str()) == 0) {
-           const int name_len = MAX_NAME_LENGTH;
-           DCR *dcr;
-           UnlockRes();
-           if (!device->dev) {
-              device->dev = init_dev(jcr, NULL, device);
-           }
-           if (!device->dev) {
-               Jmsg(jcr, M_WARNING, 0, _("\n"
-                  "     Device \"%s\" requested by DIR could not be opened or does not exist.\n"),
-                   dev_name.c_str());
-              bnet_fsend(dir, NOT_open, dev_name.c_str());
-               Dmsg1(100, ">dird: %s\n", dir->msg);
-              return false;
-           }  
-           dcr = new_dcr(jcr, device->dev);
-           if (!dcr) {
-               bnet_fsend(dir, _("3926 Could not get dcr for device: %s\n"), dev_name.c_str());
-               Dmsg1(100, ">dird: %s\n", dir->msg);
-              return false;
-           }
-            Dmsg1(100, "Found device %s\n", device->hdr.name);
-           bstrncpy(dcr->pool_name, pool_name, name_len);
-           bstrncpy(dcr->pool_type, pool_type, name_len);
-           bstrncpy(dcr->media_type, media_type, name_len);
-           bstrncpy(dcr->dev_name, dev_name, name_len);
-           dcr->PoolId = PoolId;
-           jcr->dcr = dcr;
-           if (append == SD_APPEND) {
-              ok = reserve_device_for_append(jcr, device->dev);
-           } else {
-              ok = reserve_device_for_read(jcr, device->dev);
-           }
-           if (!ok) {
-               bnet_fsend(dir, _("3927 Could not reserve device: %s\n"), dev_name.c_str());
-               Dmsg1(100, ">dird: %s\n", dir->msg);
-              free_dcr(jcr->dcr);
-              return false;
-           }
-            Dmsg1(220, "Got: %s", dir->msg);
-           bash_spaces(dev_name);
-           ok = bnet_fsend(dir, OK_device, dev_name.c_str());
-            Dmsg1(100, ">dird: %s\n", dir->msg);
-           return ok;
-        }
-      }
-
-      foreach_res(changer, R_AUTOCHANGER) {
-        /* Find resource, and make sure we were able to open it */
-        if (fnmatch(dev_name.c_str(), changer->hdr.name, 0) == 0) {
-           const int name_len = MAX_NAME_LENGTH;
-           DCR *dcr;
-           /* Try each device in this AutoChanger */
-           foreach_alist(device, changer->device) {
-               Dmsg1(100, "Try changer device %s\n", device->hdr.name);
-              if (!device->dev) {
-                 device->dev = init_dev(jcr, NULL, device);
-              }
-              if (!device->dev) {
-                  Dmsg1(100, "Device %s could not be opened. Skipped\n", dev_name.c_str());
-                  Jmsg(jcr, M_WARNING, 0, _("\n"
-                     "     Device \"%s\" in changer \"%s\" requested by DIR could not be opened or does not exist.\n"),
-                      device->hdr.name, dev_name.c_str());
-                 continue;
-              }
-              if (!device->dev->autoselect) {
-                 continue;           /* device is not available */
-              }
-              dcr = new_dcr(jcr, device->dev);
-              if (!dcr) {
-                  bnet_fsend(dir, _("3926 Could not get dcr for device: %s\n"), dev_name.c_str());
-                  Dmsg1(100, ">dird: %s\n", dir->msg);
-                 UnlockRes();
-                 return false;
-              }
-               Dmsg1(100, "Found changer device %s\n", device->hdr.name);
-              bstrncpy(dcr->pool_name, pool_name, name_len);
-              bstrncpy(dcr->pool_type, pool_type, name_len);
-              bstrncpy(dcr->media_type, media_type, name_len);
-              bstrncpy(dcr->dev_name, dev_name, name_len);
-              jcr->dcr = dcr;
-              if (append == SD_APPEND) {
-                 ok = reserve_device_for_append(jcr, device->dev);
-              } else {
-                 ok = reserve_device_for_read(jcr, device->dev);
-              }
-              if (!ok) {
-                  Jmsg(jcr, M_WARNING, 0, _("Could not reserve device: %s\n"), dev_name.c_str());
-                 free_dcr(jcr->dcr);
-                 continue;
-              }
-               Dmsg1(100, "Device %s opened.\n", dev_name.c_str());
-              UnlockRes();
-              pm_strcpy(dev_name, device->hdr.name);
-              bash_spaces(dev_name);
-              ok = bnet_fsend(dir, OK_device, dev_name.c_str());
-               Dmsg1(100, ">dird: %s\n", dir->msg);
-              return ok;
-           }
-           break;                    /* we found it but could not open a device */
-        }
-      }
-
-      UnlockRes();
-      if (verbose) {
-        unbash_spaces(dir->msg);
-        pm_strcpy(jcr->errmsg, dir->msg);
-         Jmsg(jcr, M_INFO, 0, _("Failed command: %s\n"), jcr->errmsg);
-      }
-      Jmsg(jcr, M_FATAL, 0, _("\n"
-         "     Device \"%s\" with MediaType \"%s\" requested by DIR not found in SD Device resources.\n"),
-          dev_name.c_str(), media_type.c_str());
-      bnet_fsend(dir, NO_device, dev_name.c_str());
-      Dmsg1(100, ">dird: %s\n", dir->msg);
-   } else {
-      unbash_spaces(dir->msg);
-      pm_strcpy(jcr->errmsg, dir->msg);
-      if (verbose) {
-         Jmsg(jcr, M_INFO, 0, _("Failed command: %s\n"), jcr->errmsg);
-      }
-      Jmsg(jcr, M_FATAL, 0, _("Bad Use Device command: %s\n"), jcr->errmsg);
-      bnet_fsend(dir, BAD_use, jcr->errmsg);
-      Dmsg1(100, ">dird: %s\n", dir->msg);
-   }
-
-   return false;                     /* ERROR return */
-}
-
+#ifdef needed
 /*
  *   Query Device command from Director
  *   Sends Storage Daemon's information on the device to the
@@ -431,44 +247,44 @@ bool query_cmd(JCR *jcr)
    Dmsg1(100, "<dird: %s\n", dir->msg);
    if (ok) {
       unbash_spaces(dev_name);
-      LockRes();
+//    LockRes();
       foreach_res(device, R_DEVICE) {
-        /* Find resource, and make sure we were able to open it */
-        if (fnmatch(dev_name.c_str(), device->hdr.name, 0) == 0) {
-           if (!device->dev) {
-              device->dev = init_dev(jcr, NULL, device);
-           }
-           if (!device->dev) {
-              break;
-           }  
-           UnlockRes();
-           ok = dir_update_device(jcr, device->dev);
-           if (ok) {
-              ok = bnet_fsend(dir, OK_query);
-           } else {
-              bnet_fsend(dir, NO_query);
-           }
-           return ok;
-        }
+         /* Find resource, and make sure we were able to open it */
+         if (fnmatch(dev_name.c_str(), device->hdr.name, 0) == 0) {
+            if (!device->dev) {
+               device->dev = init_dev(jcr, device);
+            }
+            if (!device->dev) {
+               break;
+            }  
+//          UnlockRes();
+            ok = dir_update_device(jcr, device->dev);
+            if (ok) {
+               ok = bnet_fsend(dir, OK_query);
+            } else {
+               bnet_fsend(dir, NO_query);
+            }
+            return ok;
+         }
       }
       foreach_res(changer, R_AUTOCHANGER) {
-        /* Find resource, and make sure we were able to open it */
-        if (fnmatch(dev_name.c_str(), changer->hdr.name, 0) == 0) {
-           UnlockRes();
-           if (!changer->device || changer->device->size() == 0) {
-              continue;              /* no devices */
-           }
-           ok = dir_update_changer(jcr, changer);
-           if (ok) {
-              ok = bnet_fsend(dir, OK_query);
-           } else {
-              bnet_fsend(dir, NO_query);
-           }
-           return ok;
-        }
+         /* Find resource, and make sure we were able to open it */
+         if (fnmatch(dev_name.c_str(), changer->hdr.name, 0) == 0) {
+//          UnlockRes();
+            if (!changer->device || changer->device->size() == 0) {
+               continue;              /* no devices */
+            }
+            ok = dir_update_changer(jcr, changer);
+            if (ok) {
+               ok = bnet_fsend(dir, OK_query);
+            } else {
+               bnet_fsend(dir, NO_query);
+            }
+            return ok;
+         }
       }
       /* If we get here, the device/autochanger was not found */
-      UnlockRes();
+//    UnlockRes();
       unbash_spaces(dir->msg);
       pm_strcpy(jcr->errmsg, dir->msg);
       bnet_fsend(dir, NO_device, dev_name.c_str());
@@ -483,6 +299,8 @@ bool query_cmd(JCR *jcr)
    return true;
 }
 
+#endif
+
 
 /*
  * Destroy the Job Control Record and associated