]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/ua_cmds.c
Fix DATE problem and minor compile stuff
[bacula/bacula] / bacula / src / dird / ua_cmds.c
index cfdc8de4079a1b0bede265ffbdd7e8281f8ff73d..e4bb83dddfb68d9a5306fc3d6127b5ce2523b9bb 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 /*
-   Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2000-2003 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -133,6 +133,23 @@ int do_a_command(UAContext *ua, char *cmd)
    return stat;
 }
 
+/*
+ * This is a common routine used to stuff the Pool DB record defaults
+ *   into the Media DB record just before creating a media (Volume) 
+ *   record.
+ */
+void set_pool_dbr_defaults_in_media_dbr(MEDIA_DBR *mr, POOL_DBR *pr)
+{
+   mr->PoolId = pr->PoolId;
+   strcpy(mr->VolStatus, "Append");
+   mr->Recycle = pr->Recycle;
+   mr->VolRetention = pr->VolRetention;
+   mr->VolUseDuration = pr->VolUseDuration;
+   mr->MaxVolJobs = pr->MaxVolJobs;
+   mr->MaxVolFiles = pr->MaxVolFiles;
+   mr->MaxVolBytes = pr->MaxVolBytes;
+}
+
 
 /*
  *  Add Volumes to an existing Pool
@@ -185,10 +202,8 @@ static int addcmd(UAContext *ua, char *cmd)
    /* Get media type */
    if ((store = get_storage_resource(ua, cmd)) != NULL) {
       strcpy(mr.MediaType, store->media_type);
-   } else {
-      if (!get_media_type(ua, mr.MediaType)) {
-        return 1;
-      }
+   } else if (!get_media_type(ua, mr.MediaType, sizeof(mr.MediaType))) {
+      return 1;
    }
       
    if (pr.MaxVols == 0) {
@@ -260,15 +275,12 @@ getVolName:
       slot = atoi(ua->cmd);
    }
           
-   mr.PoolId = pr.PoolId;
-   strcpy(mr.VolStatus, "Append");
-   mr.Recycle = pr.Recycle;
-   mr.VolRetention = pr.VolRetention;
+   set_pool_dbr_defaults_in_media_dbr(&mr, &pr);
    for (i=startnum; i < num+startnum; i++) { 
       sprintf(mr.VolumeName, name, i);
       mr.Slot = slot++;
       Dmsg1(200, "Create Volume %s\n", mr.VolumeName);
-      if (!db_create_media_record(ua->db, &mr)) {
+      if (!db_create_media_record(ua->jcr, ua->db, &mr)) {
         bsendmsg(ua, db_strerror(ua->db));
         return 1;
       }
@@ -278,7 +290,7 @@ getVolName:
    }
    pr.NumVols += num;
    Dmsg0(200, "Update pool record.\n"); 
-   if (db_update_pool_record(ua->db, &pr) != 1) {
+   if (db_update_pool_record(ua->jcr, ua->db, &pr) != 1) {
       bsendmsg(ua, db_strerror(ua->db));
       return 1;
    }
@@ -379,7 +391,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
       }
       unlock_jcr_chain();
 
-      if (do_prompt(ua, _("Choose Job to cancel"), JobName) < 0) {
+      if (do_prompt(ua, _("Choose Job to cancel"), JobName, sizeof(JobName)) < 0) {
         return 1;
       }
       if (njobs == 1) {
@@ -399,7 +411,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
      
    switch (jcr->JobStatus) {
    case JS_Created:
-      jcr->JobStatus = JS_Cancelled;
+      set_jcr_job_status(jcr, JS_Cancelled);
       bsendmsg(ua, _("JobId %d, Job %s marked to be cancelled.\n"),
              jcr->JobId, jcr->Job);
       free_jcr(jcr);
@@ -407,7 +419,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
         
    default:
 
-      jcr->JobStatus = JS_Cancelled;
+      set_jcr_job_status(jcr, JS_Cancelled);
       /* Cancel File daemon */
       ua->jcr->client = jcr->client;
       if (!connect_to_file_daemon(ua->jcr, 10, FDConnectTimeout, 1)) {
@@ -418,7 +430,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
       Dmsg0(200, "Connected to file daemon\n");
       fd = ua->jcr->file_bsock;
       bnet_fsend(fd, "cancel Job=%s\n", jcr->Job);
-      while (bnet_recv(fd) > 0) {
+      while (bnet_recv(fd) >= 0) {
          bsendmsg(ua, "%s", fd->msg);
       }
       bnet_sig(fd, BNET_TERMINATE);
@@ -435,7 +447,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
       Dmsg0(200, "Connected to storage daemon\n");
       sd = ua->jcr->store_bsock;
       bnet_fsend(sd, "cancel Job=%s\n", jcr->Job);
-      while (bnet_recv(sd) > 0) {
+      while (bnet_recv(sd) >= 0) {
          bsendmsg(ua, "%s", sd->msg);
       }
       bnet_sig(sd, BNET_TERMINATE);
@@ -448,6 +460,44 @@ static int cancelcmd(UAContext *ua, char *cmd)
    return 1; 
 }
 
+/*
+ * This is a common routine to create or update a
+ *   Pool DB base record from a Pool Resource. We handle
+ *   the setting of MaxVols and NumVols slightly differently
+ *   depending on if we are creating the Pool or we are
+ *   simply bringing it into agreement with the resource (updage).
+ */
+void set_pooldbr_from_poolres(POOL_DBR *pr, POOL *pool, int create)
+{
+   strcpy(pr->PoolType, pool->pool_type);
+   if (create) {
+      pr->MaxVols = pool->max_volumes;
+      pr->NumVols = 0;
+   } else {         /* update pool */
+      if (pr->MaxVols != pool->max_volumes) {
+        pr->MaxVols = pool->max_volumes;
+      }
+      if (pr->MaxVols != 0 && pr->MaxVols < pr->NumVols) {
+        pr->MaxVols = pr->NumVols;
+      }
+   }
+   pr->UseOnce = pool->use_volume_once;
+   pr->UseCatalog = pool->use_catalog;
+   pr->AcceptAnyVolume = pool->accept_any_volume;
+   pr->Recycle = pool->Recycle;
+   pr->VolRetention = pool->VolRetention;
+   pr->VolUseDuration = pool->VolUseDuration;
+   pr->MaxVolJobs = pool->MaxVolJobs;
+   pr->MaxVolFiles = pool->MaxVolFiles;
+   pr->MaxVolBytes = pool->MaxVolBytes;
+   if (pool->label_format) {
+      strcpy(pr->LabelFormat, pool->label_format);
+   } else {
+      strcpy(pr->LabelFormat, "*");    /* none */
+   }
+}
+
+
 /*
  * Create a pool record from a given Pool resource
  *   Also called from backup.c
@@ -456,7 +506,7 @@ static int cancelcmd(UAContext *ua, char *cmd)
  *          1  record created
  */
 
-int create_pool(B_DB *db, POOL *pool)
+int create_pool(JCR *jcr, B_DB *db, POOL *pool)
 {
    POOL_DBR  pr;
 
@@ -464,26 +514,13 @@ int create_pool(B_DB *db, POOL *pool)
 
    strcpy(pr.Name, pool->hdr.name);
 
-   if (db_get_pool_record(db, &pr)) {
+   if (db_get_pool_record(jcr, db, &pr)) {
       return 0;                      /* exists */
    }
 
-   strcpy(pr.PoolType, pool->pool_type);
-   pr.MaxVols = pool->max_volumes;
-   pr.NumVols = 0;
-   pr.UseOnce = pool->use_volume_once;
-   pr.UseCatalog = pool->use_catalog;
-   pr.AcceptAnyVolume = pool->accept_any_volume;
-   pr.Recycle = pool->Recycle;
-   pr.VolRetention = pool->VolRetention;
-   pr.AutoPrune = pool->AutoPrune;
-   if (pool->label_format) {
-      strcpy(pr.LabelFormat, pool->label_format);
-   } else {
-      strcpy(pr.LabelFormat, "*");    /* none */
-   }
+   set_pooldbr_from_poolres(&pr, pool, 1);
 
-   if (!db_create_pool_record(db, &pr)) {
+   if (!db_create_pool_record(jcr, db, &pr)) {
       return -1;                     /* error */
    }
    return 1;
@@ -508,7 +545,7 @@ static int createcmd(UAContext *ua, char *cmd)
       return 1;
    }
 
-   switch (create_pool(ua->db, pool)) {
+   switch (create_pool(ua->jcr, ua->db, pool)) {
    case 0:
       bsendmsg(ua, _("Error: Pool %s already exists.\n\
 Use update to change it.\n"), pool->hdr.name);
@@ -564,7 +601,7 @@ static int updatecmd(UAContext *ua, char *cmd)
    start_prompt(ua, _("Update choice:\n"));
    add_prompt(ua, _("Volume parameters"));
    add_prompt(ua, _("Pool from resource"));
-   switch (do_prompt(ua, _("Choose catalog item to update"), NULL)) {
+   switch (do_prompt(ua, _("Choose catalog item to update"), NULL, 0)) {
       case 0:
         update_volume(ua);
         break;
@@ -595,7 +632,7 @@ static int update_volume(UAContext *ua)
    }
 
    for (int done=0; !done; ) {
-      if (!db_get_media_record(ua->db, &mr)) {
+      if (!db_get_media_record(ua->jcr, ua->db, &mr)) {
         if (mr.MediaId != 0) {
             bsendmsg(ua, _("Volume record for MediaId %d not found.\n"), mr.MediaId);
         } else {
@@ -603,59 +640,159 @@ static int update_volume(UAContext *ua)
         }
         return 0;
       }
-      bsendmsg(ua, _("Updating Volume %s\n"), mr.VolumeName);
+      bsendmsg(ua, _("Updating Volume \"%s\"\n"), mr.VolumeName);
       start_prompt(ua, _("Parameters to modify:\n"));
       add_prompt(ua, _("Volume Status"));
       add_prompt(ua, _("Volume Retention Period"));
+      add_prompt(ua, _("Volume Use Duration"));
+      add_prompt(ua, _("Maximum Volume Jobs"));
+      add_prompt(ua, _("Maximum Volume Files"));
+      add_prompt(ua, _("Maximum Volume Bytes"));
       add_prompt(ua, _("Recycle Flag"));
       add_prompt(ua, _("Slot"));
+      add_prompt(ua, _("Volume Files"));
       add_prompt(ua, _("Done"));
-      switch (do_prompt(ua, _("Select parameter to modify"), NULL)) {
+      switch (do_prompt(ua, _("Select parameter to modify"), NULL, 0)) {
       case 0:                        /* Volume Status */
         /* Modify Volume Status */
-         bsendmsg(ua, _("Current value is: %s\n"), mr.VolStatus);
+         bsendmsg(ua, _("Current Volume status is: %s\n"), mr.VolStatus);
          start_prompt(ua, _("Possible Values are:\n"));
-         add_prompt(ua, "Append");
-         add_prompt(ua, "Archive");
+         add_prompt(ua, "Append");      /* Better not translate these as */
+         add_prompt(ua, "Archive");     /* They are known in the database code */
          add_prompt(ua, "Disabled");
          add_prompt(ua, "Full");
+         add_prompt(ua, "Used");
          if (strcmp(mr.VolStatus, "Purged") == 0) {
             add_prompt(ua, "Recycle");
         }
          add_prompt(ua, "Read-Only");
-         if (do_prompt(ua, _("Choose new Volume Status"), ua->cmd) < 0) {
+         if (do_prompt(ua, _("Choose new Volume Status"), ua->cmd, sizeof(mr.VolStatus)) < 0) {
            return 1;
         }
-        strcpy(mr.VolStatus, ua->cmd);
+        bstrncpy(mr.VolStatus, ua->cmd, sizeof(mr.VolStatus));
         query = get_pool_memory(PM_MESSAGE);
-         Mmsg(&query, "UPDATE Media SET VolStatus='%s' WHERE MediaId=%d",
+         Mmsg(&query, "UPDATE Media SET VolStatus='%s' WHERE MediaId=%u",
            mr.VolStatus, mr.MediaId);
         if (!db_sql_query(ua->db, query, NULL, NULL)) {  
             bsendmsg(ua, "%s", db_strerror(ua->db));
-        }       
+        } else {
+            bsendmsg(ua, _("New Volume status is: %s\n"), mr.VolStatus);
+        }
         free_pool_memory(query);
         break;
       case 1:                        /* Retention */
-         bsendmsg(ua, _("Current value is: %s\n"),
-           edit_btime(mr.VolRetention, ed1));
+         bsendmsg(ua, _("Current retention seconds is: %s\n"),
+           edit_utime(mr.VolRetention, ed1));
          if (!get_cmd(ua, _("Enter Volume Retention period: "))) {
            return 0;
         }
-        if (!string_to_btime(ua->cmd, &mr.VolRetention)) {
+        if (!duration_to_utime(ua->cmd, &mr.VolRetention)) {
             bsendmsg(ua, _("Invalid retention period specified.\n"));
            break;
         }
         query = get_pool_memory(PM_MESSAGE);
-         Mmsg(&query, "UPDATE Media SET VolRetention=%s WHERE MediaId=%d",
+         Mmsg(&query, "UPDATE Media SET VolRetention=%s WHERE MediaId=%u",
            edit_uint64(mr.VolRetention, ed1), mr.MediaId);
         if (!db_sql_query(ua->db, query, NULL, NULL)) {  
             bsendmsg(ua, "%s", db_strerror(ua->db));
-        }       
+        } else {
+            bsendmsg(ua, _("New retention seconds is: %s\n"),
+              edit_utime(mr.VolRetention, ed1));
+        }
+        free_pool_memory(query);
+        break;
+
+      case 2:                        /* Use Duration */
+         bsendmsg(ua, _("Current use duration is: %s\n"),
+           edit_utime(mr.VolUseDuration, ed1));
+         if (!get_cmd(ua, _("Enter Volume Use Duration: "))) {
+           return 0;
+        }
+        if (!duration_to_utime(ua->cmd, &mr.VolUseDuration)) {
+            bsendmsg(ua, _("Invalid use duration specified.\n"));
+           break;
+        }
+        query = get_pool_memory(PM_MESSAGE);
+         Mmsg(&query, "UPDATE Media SET VolUseDuration=%s WHERE MediaId=%u",
+           edit_uint64(mr.VolUseDuration, ed1), mr.MediaId);
+        if (!db_sql_query(ua->db, query, NULL, NULL)) {  
+            bsendmsg(ua, "%s", db_strerror(ua->db));
+        } else {
+            bsendmsg(ua, _("New use duration is: %s\n"),
+              edit_utime(mr.VolUseDuration, ed1));
+        }
         free_pool_memory(query);
         break;
-      case 2:                        /* Recycle */
+
+      case 3:                        /* Max Jobs */
+        int32_t maxjobs;
+         bsendmsg(ua, _("Current max jobs is: %u\n"), mr.MaxVolJobs);
+         if (!get_cmd(ua, _("Enter new Maximum Jobs: "))) {
+           return 0;
+        }
+        maxjobs = atoi(ua->cmd);
+        if (maxjobs < 0) {
+            bsendmsg(ua, _("Invalid number, it must be 0 or greater\n"));
+           break;
+        } 
+        query = get_pool_memory(PM_MESSAGE);
+         Mmsg(&query, "UPDATE Media SET MaxVolJobs=%u WHERE MediaId=%u",
+           maxjobs, mr.MediaId);
+        if (!db_sql_query(ua->db, query, NULL, NULL)) {  
+            bsendmsg(ua, "%s", db_strerror(ua->db));
+        } else {
+            bsendmsg(ua, _("New max jobs is: %u\n"), maxjobs);
+        }
+        free_pool_memory(query);
+        break;
+
+      case 4:                        /* Max Files */
+        int32_t maxfiles;
+         bsendmsg(ua, _("Current max files is: %u\n"), mr.MaxVolFiles);
+         if (!get_cmd(ua, _("Enter new Maximum Files: "))) {
+           return 0;
+        }
+        maxfiles = atoi(ua->cmd);
+        if (maxfiles < 0) {
+            bsendmsg(ua, _("Invalid number, it must be 0 or greater\n"));
+           break;
+        } 
+        query = get_pool_memory(PM_MESSAGE);
+         Mmsg(&query, "UPDATE Media SET MaxVolFiles=%u WHERE MediaId=%u",
+           maxfiles, mr.MediaId);
+        if (!db_sql_query(ua->db, query, NULL, NULL)) {  
+            bsendmsg(ua, "%s", db_strerror(ua->db));
+        } else {
+            bsendmsg(ua, _("New max files is: %u\n"), maxfiles);
+        }
+        free_pool_memory(query);
+        break;
+
+      case 5:                        /* Max Bytes */
+        uint64_t maxbytes;
+         bsendmsg(ua, _("Current value is: %s\n"), edit_uint64(mr.MaxVolBytes, ed1));
+         if (!get_cmd(ua, _("Enter new Maximum Bytes: "))) {
+           return 0;
+        }
+        if (!size_to_uint64(ua->cmd, strlen(ua->cmd), &maxbytes)) {
+            bsendmsg(ua, _("Invalid byte size specification.\n"));
+           break;
+        } 
+        query = get_pool_memory(PM_MESSAGE);
+         Mmsg(&query, "UPDATE Media SET MaxVolBytes=%s WHERE MediaId=%u",
+           edit_uint64(maxbytes, ed1), mr.MediaId);
+        if (!db_sql_query(ua->db, query, NULL, NULL)) {  
+            bsendmsg(ua, "%s", db_strerror(ua->db));
+        } else {
+            bsendmsg(ua, _("New Max bytes is: %s\n"), edit_uint64(maxbytes, ed1));
+        }
+        free_pool_memory(query);
+        break;
+
+
+      case 6:                        /* Recycle */
         int recycle;
-         bsendmsg(ua, _("Current value is: %s\n"),
+         bsendmsg(ua, _("Current recycle flag is: %s\n"),
             mr.Recycle==1?_("yes"):_("no"));
          if (!get_cmd(ua, _("Enter new Recycle status: "))) {
            return 0;
@@ -669,17 +806,20 @@ static int update_volume(UAContext *ua)
            break;
         }
         query = get_pool_memory(PM_MESSAGE);
-         Mmsg(&query, "UPDATE Media SET Recycle=%d WHERE MediaId=%d",
+         Mmsg(&query, "UPDATE Media SET Recycle=%d WHERE MediaId=%u",
            recycle, mr.MediaId);
         if (!db_sql_query(ua->db, query, NULL, NULL)) {  
             bsendmsg(ua, "%s", db_strerror(ua->db));
-        }       
+        } else {       
+            bsendmsg(ua, _("New recycle flag is: %s\n"),
+               mr.Recycle==1?_("yes"):_("no"));
+        }
         free_pool_memory(query);
         break;
 
-      case 3:                        /* Slot */
+      case 7:                        /* Slot */
         int slot;
-         bsendmsg(ua, _("Current value is: %d\n"), mr.Slot);
+         bsendmsg(ua, _("Current Slot is: %d\n"), mr.Slot);
          if (!get_cmd(ua, _("Enter new Slot: "))) {
            return 0;
         }
@@ -693,17 +833,47 @@ static int update_volume(UAContext *ua)
            break;
         }
         query = get_pool_memory(PM_MESSAGE);
-         Mmsg(&query, "UPDATE Media SET Slot=%d WHERE MediaId=%d",
+         Mmsg(&query, "UPDATE Media SET Slot=%d WHERE MediaId=%u",
            slot, mr.MediaId);
         if (!db_sql_query(ua->db, query, NULL, NULL)) {  
             bsendmsg(ua, "%s", db_strerror(ua->db));
         } else {
-            bsendmsg(ua, "New value is: %d\n", slot);
+            bsendmsg(ua, "New Slot is: %d\n", slot);
+        }
+        free_pool_memory(query);
+        break;
+
+      case 8:                        /* Volume Files */
+        int32_t VolFiles;
+         bsendmsg(ua, _("Warning changing Volume Files can result\n"
+                        "in loss of data on your Volume\n\n"));
+         bsendmsg(ua, _("Current Volume Files is: %u\n"), mr.VolFiles);
+         if (!get_cmd(ua, _("Enter new number of Files for Volume: "))) {
+           return 0;
+        }
+        VolFiles = atoi(ua->cmd);
+        if (VolFiles < 0) {
+            bsendmsg(ua, _("Invalid number, it must be 0 or greater\n"));
+           break;
+        } 
+        if (VolFiles != (int)(mr.VolFiles + 1)) {
+            bsendmsg(ua, _("Normally, you should only increase Volume Files by one!\n"));
+            if (!get_cmd(ua, _("Continue? (yes/no): ")) || 
+                 strcasecmp(ua->cmd, "yes") != 0) {
+              break;
+           }
+        }
+        query = get_pool_memory(PM_MESSAGE);
+         Mmsg(&query, "UPDATE Media SET VolFiles=%u WHERE MediaId=%u",
+           VolFiles, mr.MediaId);
+        if (!db_sql_query(ua->db, query, NULL, NULL)) {  
+            bsendmsg(ua, "%s", db_strerror(ua->db));
+        } else {
+            bsendmsg(ua, _("New Volume Files is: %u\n"), VolFiles);
         }
         free_pool_memory(query);
         break;
 
-        
       default:                       /* Done or error */
          bsendmsg(ua, "Selection done.\n");
         return 1;
@@ -732,22 +902,10 @@ static int update_pool(UAContext *ua)
    if (!get_pool_dbr(ua, &pr)) {
       return 0;
    }
-   strcpy(pr.PoolType, pool->pool_type);
-   if (pr.MaxVols != (uint32_t) (pool->max_volumes)) {
-      pr.MaxVols = pool->max_volumes;
-   }
-   if (pr.MaxVols != 0 && pr.MaxVols < pr.NumVols) {
-      pr.MaxVols = pr.NumVols;
-   }
-   pr.UseOnce = pool->use_volume_once;
-   pr.UseCatalog = pool->use_catalog;
-   pr.AcceptAnyVolume = pool->accept_any_volume;
-   if (pool->label_format) {
-      strcpy(pr.LabelFormat, pool->label_format);
-   } else {
-      strcpy(pr.LabelFormat, "*");    /* none */
-   }
-   id = db_update_pool_record(ua->db, &pr);
+
+   set_pooldbr_from_poolres(&pr, pool, 0); /* update */
+
+   id = db_update_pool_record(ua->jcr, ua->db, &pr);
    if (id <= 0) {
       bsendmsg(ua, _("db_update_pool_record returned %d. ERR=%s\n"),
         id, db_strerror(ua->db));
@@ -772,7 +930,7 @@ static void do_storage_setdebug(UAContext *ua, STORE *store, int level)
    Dmsg0(120, _("Connected to storage daemon\n"));
    sd = ua->jcr->store_bsock;
    bnet_fsend(sd, "setdebug=%d\n", level);
-   if (bnet_recv(sd) > 0) {
+   if (bnet_recv(sd) >= 0) {
       bsendmsg(ua, "%s", sd->msg);
    }
    bnet_sig(sd, BNET_TERMINATE);
@@ -798,7 +956,7 @@ static void do_client_setdebug(UAContext *ua, CLIENT *client, int level)
    Dmsg0(120, "Connected to file daemon\n");
    fd = ua->jcr->file_bsock;
    bnet_fsend(fd, "setdebug=%d\n", level);
-   if (bnet_recv(fd) > 0) {
+   if (bnet_recv(fd) >= 0) {
       bsendmsg(ua, "%s", fd->msg);
    }
    bnet_sig(fd, BNET_TERMINATE);
@@ -958,7 +1116,7 @@ static int setdebugcmd(UAContext *ua, char *cmd)
    add_prompt(ua, _("Storage"));
    add_prompt(ua, _("Client"));
    add_prompt(ua, _("All"));
-   switch(do_prompt(ua, _("Select daemon type to set debug level"), NULL)) {
+   switch(do_prompt(ua, _("Select daemon type to set debug level"), NULL, 0)) {
       case 0:                        /* Director */
         debug_level = level;
         break;
@@ -1049,7 +1207,7 @@ static int delete_volume(UAContext *ua)
       return 1;
    }
    if (strcasecmp(ua->cmd, _("yes")) == 0) {
-      db_delete_media_record(ua->db, &mr);
+      db_delete_media_record(ua->jcr, ua->db, &mr);
    }
    return 1;
 }
@@ -1070,7 +1228,7 @@ static int delete_pool(UAContext *ua)
       return 1;
    }
    if (strcasecmp(ua->cmd, _("yes")) == 0) {
-      db_delete_pool_record(ua->db, &pr);
+      db_delete_pool_record(ua->jcr, ua->db, &pr);
    }
    return 1;
 }
@@ -1131,7 +1289,7 @@ gotVol:
 
    memset(&mr, 0, sizeof(mr));
    strcpy(mr.VolumeName, ua->cmd);
-   if (db_get_media_record(ua->db, &mr)) {
+   if (db_get_media_record(ua->jcr, ua->db, &mr)) {
        bsendmsg(ua, _("Media record for Volume %s already exists.\n"), 
          mr.VolumeName);
        return 1;
@@ -1151,10 +1309,6 @@ gotVol:
    if (!select_pool_dbr(ua, &pr)) {
       return 1;
    }
-   mr.PoolId = pr.PoolId;
-   strcpy(mr.VolStatus, "Append");
-   mr.Recycle = pr.Recycle;
-   mr.VolRetention = pr.VolRetention;
 
    ua->jcr->store = store;
    bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d ...\n"), 
@@ -1172,7 +1326,7 @@ gotVol:
    bnet_fsend(sd, _("label %s VolumeName=%s PoolName=%s MediaType=%s Slot=%d"), 
       dev_name, mr.VolumeName, pr.Name, mr.MediaType, mr.Slot);
    bsendmsg(ua, "Sending label command ...\n");
-   while (bget_msg(sd, 0) > 0) {
+   while (bget_msg(sd, 0) >= 0) {
       bsendmsg(ua, "%s", sd->msg);
       if (strncmp(sd->msg, "3000 OK label.", 14) == 0) {
         ok = TRUE;
@@ -1183,8 +1337,10 @@ gotVol:
    unbash_spaces(mr.VolumeName);
    unbash_spaces(mr.MediaType);
    unbash_spaces(pr.Name);
+   mr.LabelDate = time(NULL);
    if (ok) {
-      if (db_create_media_record(ua->db, &mr)) {
+      set_pool_dbr_defaults_in_media_dbr(&mr, &pr);
+      if (db_create_media_record(ua->jcr, ua->db, &mr)) {
          bsendmsg(ua, _("Media record for Volume=%s successfully created.\n"),
            mr.VolumeName);
         if (ua->automount) {
@@ -1192,7 +1348,7 @@ gotVol:
            bash_spaces(dev_name);
             bnet_fsend(sd, "mount %s", dev_name);
            unbash_spaces(dev_name);
-           while (bnet_recv(sd) > 0) {
+           while (bnet_recv(sd) >= 0) {
                bsendmsg(ua, "%s", sd->msg);
               /* Here we can get
                *  3001 OK mount. Device=xxx      or
@@ -1251,7 +1407,7 @@ static void do_mount_cmd(int mount, UAContext *ua, char *cmd)
    } else {
       bnet_fsend(sd, "unmount %s", dev_name);
    }
-   while (bnet_recv(sd) > 0) {
+   while (bnet_recv(sd) >= 0) {
       bsendmsg(ua, "%s", sd->msg);
       if (strncmp(sd->msg, "3001 OK mount.", 14) == 0) {
          /***** ****FIXME**** fix JobStatus */
@@ -1327,7 +1483,7 @@ static int helpcmd(UAContext *ua, char *cmd)
 
 static int versioncmd(UAContext *ua, char *cmd)
 {
-   bsendmsg(ua, "%s Version: " VERSION " (" DATE ")\n", my_name);
+   bsendmsg(ua, "%s Version: " VERSION " (" BDATE ")\n", my_name);
    return 1;
 }
 
@@ -1346,19 +1502,19 @@ int open_db(UAContext *ua)
       ua->catalog = (CAT *)GetNextRes(R_CATALOG, NULL);
       UnlockRes();
       if (!ua->catalog) {    
-         bnet_fsend(ua->UA_sock, _("Could not find a Catalog resource\n"));
+         bsendmsg(ua, _("Could not find a Catalog resource\n"));
         return 0;
       } else {
-         bnet_fsend(ua->UA_sock, _("Using default Catalog name=%s DB=%s\n"), 
+         bsendmsg(ua, _("Using default Catalog name=%s DB=%s\n"), 
            ua->catalog->hdr.name, ua->catalog->db_name);
       }
    }
 
    Dmsg0(150, "Open database\n");
-   ua->db = db_init_database(NULL, ua->catalog->db_name, ua->catalog->db_user,
+   ua->db = db_init_database(ua->jcr, ua->catalog->db_name, ua->catalog->db_user,
                             ua->catalog->db_password);
-   if (!db_open_database(ua->db)) {
-      bnet_fsend(ua->UA_sock, _("Could not open DB %s: ERR=%s"), 
+   if (!db_open_database(ua->jcr, ua->db)) {
+      bsendmsg(ua, _("Could not open DB %s: ERR=%s"), 
         ua->catalog->db_name, db_strerror(ua->db));
       close_db(ua);
       return 0;
@@ -1371,7 +1527,7 @@ int open_db(UAContext *ua)
 void close_db(UAContext *ua)
 {
    if (ua->db) {
-      db_close_database(ua->db);
+      db_close_database(ua->jcr, ua->db);
    }
    ua->db = NULL;
    ua->jcr->db = NULL;