X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fstored%2Fbcopy.c;h=3ceafca90b70b38499269d2a71351be6332832d9;hb=6fc016ea3c4f5698462494319733199e2de9a9af;hp=9efa2a796503d7b98dee654daa37afe120b821fe;hpb=01ccd37e6b9587ca7b9dc62ac235f671f4e9c8a1;p=bacula%2Fbacula diff --git a/bacula/src/stored/bcopy.c b/bacula/src/stored/bcopy.c index 9efa2a7965..3ceafca90b 100644 --- a/bacula/src/stored/bcopy.c +++ b/bacula/src/stored/bcopy.c @@ -8,7 +8,7 @@ * Version $Id$ */ /* - Copyright (C) 2001, 2002 Kern Sibbald and John Walker + Copyright (C) 2002-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 @@ -30,17 +30,20 @@ #include "bacula.h" #include "stored.h" +/* Dummy functions */ +int generate_daemon_event(JCR *jcr, const char *event) { return 1; } + /* Forward referenced functions */ -static int record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec); +static bool record_cb(DCR *dcr, DEV_RECORD *rec); /* Global variables */ static DEVICE *in_dev = NULL; static DEVICE *out_dev = NULL; -static JCR *in_jcr; /* input jcr */ -static JCR *out_jcr; /* output jcr */ +static JCR *in_jcr; /* input jcr */ +static JCR *out_jcr; /* output jcr */ static BSR *bsr = NULL; -static char *wd = "/tmp"; +static const char *wd = "/tmp"; static int list_records = 0; static uint32_t records = 0; static uint32_t jobs = 0; @@ -48,19 +51,25 @@ static DEV_BLOCK *out_block; #define CONFIG_FILE "bacula-sd.conf" char *configfile; +STORES *me = NULL; /* our Global resource */ +bool forge_on = false; /* proceed inspite of I/O errors */ +pthread_mutex_t device_release_mutex = PTHREAD_MUTEX_INITIALIZER; +pthread_cond_t wait_device_release = PTHREAD_COND_INITIALIZER; static void usage() { fprintf(stderr, _( +"Copyright (C) 2002-2005 Kern Sibbald.\n" "\nVersion: " VERSION " (" BDATE ")\n\n" "Usage: bcopy [-d debug_level] \n" " -b bootstrap specify a bootstrap file\n" " -c specify configuration file\n" " -d set debug level to nn\n" -" -v verbose\n" " -i specify input Volume names (separated by |)\n" " -o specify output Volume names (separated by |)\n" +" -p proceed inspite of errors\n" +" -v verbose\n" " -w specify working directory (default /tmp)\n" " -? print this message\n\n")); exit(1); @@ -71,51 +80,56 @@ int main (int argc, char *argv[]) int ch; char *iVolumeName = NULL; char *oVolumeName = NULL; + bool ignore_label_errors = false; - my_name_is(argc, argv, "bscan"); + my_name_is(argc, argv, "bcopy"); init_msg(NULL, NULL); - while ((ch = getopt(argc, argv, "b:c:d:mn:p:rsu:vV:w:?")) != -1) { + while ((ch = getopt(argc, argv, "b:c:d:i:o:pvw:?")) != -1) { switch (ch) { - case 'b': - bsr = parse_bsr(NULL, optarg); - break; - - case 'c': /* specify config file */ - if (configfile != NULL) { - free(configfile); - } - configfile = bstrdup(optarg); - break; - - case 'd': /* debug level */ - debug_level = atoi(optarg); - if (debug_level <= 0) - debug_level = 1; - break; - - case 'v': - verbose++; - break; - - case 'i': /* input Volume name */ - iVolumeName = optarg; - break; - - case 'o': /* output Volume name */ - oVolumeName = optarg; - break; - - - case 'w': - wd = optarg; - break; - - case '?': - default: - usage(); + case 'b': + bsr = parse_bsr(NULL, optarg); + break; + + case 'c': /* specify config file */ + if (configfile != NULL) { + free(configfile); + } + configfile = bstrdup(optarg); + break; + + case 'd': /* debug level */ + debug_level = atoi(optarg); + if (debug_level <= 0) + debug_level = 1; + break; + + case 'i': /* input Volume name */ + iVolumeName = optarg; + break; + + case 'o': /* output Volume name */ + oVolumeName = optarg; + break; + + case 'p': + ignore_label_errors = true; + forge_on = true; + break; + + case 'v': + verbose++; + break; + + case 'w': + wd = optarg; + break; + + case '?': + default: + usage(); - } + } } argc -= optind; argv += optind; @@ -134,103 +148,110 @@ int main (int argc, char *argv[]) parse_config(configfile); /* Setup and acquire input device for reading */ - in_jcr = setup_jcr("bcopy", argv[0], bsr, iVolumeName); - in_dev = setup_to_access_device(in_jcr, 1); /* read device */ - if (!in_dev) { + in_jcr = setup_jcr("bcopy", argv[0], bsr, iVolumeName, 1); /* read device */ + if (!in_jcr) { + exit(1); + } + in_jcr->ignore_label_errors = ignore_label_errors; + in_dev = in_jcr->dcr->dev; + if (!in_dev) { exit(1); } /* Setup output device for writing */ - out_jcr = setup_jcr("bcopy", argv[1], bsr, oVolumeName); - out_dev = setup_to_access_device(out_jcr, 0); /* no acquire */ - if (!out_dev) { - exit(1); + out_jcr = setup_jcr("bcopy", argv[1], bsr, oVolumeName, 0); /* no acquire */ + if (!out_jcr) { + exit(1); + } + out_dev = out_jcr->dcr->dev; + if (!out_dev) { + exit(1); } /* For we must now acquire the device for writing */ - out_block = new_block(out_dev); lock_device(out_dev); - if (open_dev(out_dev, out_jcr->VolumeName, READ_WRITE) < 0) { + if (open_dev(out_dev, out_jcr->dcr->VolumeName, OPEN_READ_WRITE) < 0) { Emsg1(M_FATAL, 0, _("dev open failed: %s\n"), out_dev->errmsg); unlock_device(out_dev); - free_block(out_block); exit(1); } unlock_device(out_dev); - if (!(out_dev=acquire_device_for_append(out_jcr, out_dev, out_block))) { - free_block(out_block); + if (!acquire_device_for_append(out_jcr->dcr)) { free_jcr(in_jcr); exit(1); } + out_block = out_jcr->dcr->block; - read_records(in_jcr, in_dev, record_cb, mount_next_read_volume); - if (!write_block_to_device(out_jcr, out_dev, out_block)) { + read_records(in_jcr->dcr, record_cb, mount_next_read_volume); + if (!write_block_to_device(out_jcr->dcr)) { Pmsg0(000, _("Write of last block failed.\n")); } Pmsg2(000, _("%u Jobs copied. %u records copied.\n"), jobs, records); - free_block(out_block); - term_dev(in_dev); - term_dev(out_dev); free_jcr(in_jcr); free_jcr(out_jcr); + + term_dev(in_dev); + term_dev(out_dev); return 0; } - -static int record_cb(JCR *in_jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec) +/* + * read_records() calls back here for each record it gets + */ +static bool record_cb(DCR *in_dcr, DEV_RECORD *rec) { if (list_records) { Pmsg5(000, _("Record: SessId=%u SessTim=%u FileIndex=%d Stream=%d len=%u\n"), - rec->VolSessionId, rec->VolSessionTime, rec->FileIndex, - rec->Stream, rec->data_len); + rec->VolSessionId, rec->VolSessionTime, rec->FileIndex, + rec->Stream, rec->data_len); } - /* - * Check for Start or End of Session Record + /* + * Check for Start or End of Session Record * */ if (rec->FileIndex < 0) { if (verbose > 1) { - dump_label_record(dev, rec, 1); + dump_label_record(in_dcr->dev, rec, 1); } switch (rec->FileIndex) { case PRE_LABEL: Pmsg0(000, "Volume is prelabeled. This volume cannot be copied.\n"); - return 1; + return false; case VOL_LABEL: Pmsg0(000, "Volume label not copied.\n"); - return 1; + return true; case SOS_LABEL: - jobs++; - break; + jobs++; + break; case EOS_LABEL: - while (!write_record_to_block(out_block, rec)) { + while (!write_record_to_block(out_block, rec)) { Dmsg2(150, "!write_record_to_block data_len=%d rem=%d\n", rec->data_len, - rec->remainder); - if (!write_block_to_device(out_jcr, out_dev, out_block)) { - Dmsg2(90, "Got write_block_to_dev error on device %s. %s\n", - dev_name(out_dev), strerror_dev(out_dev)); + rec->remainder); + if (!write_block_to_device(out_jcr->dcr)) { + Dmsg2(90, "Got write_block_to_dev error on device %s: ERR=%s\n", + out_dev->print_name(), strerror_dev(out_dev)); Jmsg(out_jcr, M_FATAL, 0, _("Cannot fixup device error. %s\n"), - strerror_dev(out_dev)); - } - } - if (!write_block_to_device(out_jcr, out_dev, out_block)) { - Dmsg2(90, "Got write_block_to_dev error on device %s. %s\n", - dev_name(out_dev), strerror_dev(out_dev)); + strerror_dev(out_dev)); + } + } + if (!write_block_to_device(out_jcr->dcr)) { + Dmsg2(90, "Got write_block_to_dev error on device %s: ERR=%s\n", + out_dev->print_name(), strerror_dev(out_dev)); Jmsg(out_jcr, M_FATAL, 0, _("Cannot fixup device error. %s\n"), - strerror_dev(out_dev)); - } - break; + strerror_dev(out_dev)); + } + break; case EOM_LABEL: Pmsg0(000, "EOM label not copied.\n"); - return 1; - case EOT_LABEL: /* end of all tapes */ + return true; + case EOT_LABEL: /* end of all tapes */ Pmsg0(000, "EOT label not copied.\n"); - return 1; + return true; default: - break; + break; } } @@ -238,33 +259,34 @@ static int record_cb(JCR *in_jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec records++; while (!write_record_to_block(out_block, rec)) { Dmsg2(150, "!write_record_to_block data_len=%d rem=%d\n", rec->data_len, - rec->remainder); - if (!write_block_to_device(out_jcr, out_dev, out_block)) { - Dmsg2(90, "Got write_block_to_dev error on device %s. %s\n", - dev_name(out_dev), strerror_dev(out_dev)); + rec->remainder); + if (!write_block_to_device(out_jcr->dcr)) { + Dmsg2(90, "Got write_block_to_dev error on device %s: ERR=%s\n", + out_dev->print_name(), strerror_dev(out_dev)); Jmsg(out_jcr, M_FATAL, 0, _("Cannot fixup device error. %s\n"), - strerror_dev(out_dev)); - break; + strerror_dev(out_dev)); + break; } } - return 1; + return true; } /* Dummies to replace askdir.c */ -int dir_get_volume_info(JCR *jcr, enum get_vol_info_rw writing) { return 1;} -int dir_find_next_appendable_volume(JCR *jcr) { return 1;} -int dir_update_volume_info(JCR *jcr, DEVICE *dev, int relabel) { return 1; } -int dir_create_jobmedia_record(JCR *jcr) { return 1; } -int dir_ask_sysop_to_mount_next_volume(JCR *jcr, DEVICE *dev) { return 1; } -int dir_update_file_attributes(JCR *jcr, DEV_RECORD *rec) { return 1;} -int dir_send_job_status(JCR *jcr) {return 1;} +bool dir_get_volume_info(DCR *dcr, enum get_vol_info_rw writing) { return 1;} +bool dir_find_next_appendable_volume(DCR *dcr) { return 1;} +bool dir_update_volume_info(DCR *dcr, bool relabel) { return 1; } +bool dir_create_jobmedia_record(DCR *dcr) { return 1; } +bool dir_ask_sysop_to_create_appendable_volume(DCR *dcr) { return 1; } +bool dir_update_file_attributes(DCR *dcr, DEV_RECORD *rec) { return 1;} +bool dir_send_job_status(JCR *jcr) {return 1;} -int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev) +bool dir_ask_sysop_to_mount_volume(DCR *dcr) { - fprintf(stderr, "Mount Volume %s on device %s and press return when ready: ", - in_jcr->VolumeName, dev_name(dev)); - getchar(); - return 1; + DEVICE *dev = dcr->dev; + fprintf(stderr, "Mount Volume \"%s\" on device %s and press return when ready: ", + dcr->VolumeName, dev->print_name()); + getchar(); + return true; }