]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/read.c
e154f801d076fc1814803f9995f42d7e0c8368ee
[bacula/bacula] / bacula / src / stored / read.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2009 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Read code for Storage daemon
30  *
31  *     Kern Sibbald, November MM
32  *
33  *   Version $Id$
34  */
35
36 #include "bacula.h"
37 #include "stored.h"
38
39 /* Forward referenced subroutines */
40 static bool record_cb(DCR *dcr, DEV_RECORD *rec);
41
42
43 /* Responses sent to the File daemon */
44 static char OK_data[]    = "3000 OK data\n";
45 static char FD_error[]   = "3000 error\n";
46 static char rec_header[] = "rechdr %ld %ld %ld %ld %ld";
47
48 /*
49  *  Read Data and send to File Daemon
50  *   Returns: false on failure
51  *            true  on success
52  */
53 bool do_read_data(JCR *jcr)
54 {
55    BSOCK *fd = jcr->file_bsock;
56    bool ok = true;
57    DCR *dcr = jcr->read_dcr;
58
59    Dmsg0(20, "Start read data.\n");
60
61    if (!bnet_set_buffer_size(fd, dcr->device->max_network_buffer_size, BNET_SETBUF_WRITE)) {
62       return false;
63    }
64
65    if (jcr->NumReadVolumes == 0) {
66       Jmsg(jcr, M_FATAL, 0, _("No Volume names found for restore.\n"));
67       fd->fsend(FD_error);
68       return false;
69    }
70
71    Dmsg2(200, "Found %d volumes names to restore. First=%s\n", jcr->NumReadVolumes,
72       jcr->VolList->VolumeName);
73
74    /* Ready device for reading */
75    if (!acquire_device_for_read(dcr)) {
76       fd->fsend(FD_error);
77       return false;
78    }
79
80    /* Tell File daemon we will send data */
81    fd->fsend(OK_data);
82    ok = read_records(dcr, record_cb, mount_next_read_volume);
83
84    /* Send end of data to FD */
85    fd->signal(BNET_EOD);
86
87    if (!release_device(jcr->read_dcr)) {
88       ok = false;
89    }
90
91    Dmsg0(30, "Done reading.\n");
92    return ok;
93 }
94
95 /*
96  * Called here for each record from read_records()
97  *  Returns: true if OK
98  *           false if error
99  */
100 static bool record_cb(DCR *dcr, DEV_RECORD *rec)
101 {
102    JCR *jcr = dcr->jcr;
103    BSOCK *fd = jcr->file_bsock;
104    bool ok = true;
105    POOLMEM *save_msg;
106    char ec1[50], ec2[50];
107
108    if (rec->FileIndex < 0) {
109       return true;
110    }
111    Dmsg5(400, "Send to FD: SessId=%u SessTim=%u FI=%s Strm=%s, len=%d\n",
112       rec->VolSessionId, rec->VolSessionTime, 
113       FI_to_ascii(ec1, rec->FileIndex),
114       stream_to_ascii(ec2, rec->Stream, rec->FileIndex),
115       rec->data_len);
116
117    /* Send record header to File daemon */
118    if (!fd->fsend(rec_header, rec->VolSessionId, rec->VolSessionTime,
119           rec->FileIndex, rec->Stream, rec->data_len)) {
120       Pmsg1(000, _(">filed: Error Hdr=%s\n"), fd->msg);
121       Jmsg1(jcr, M_FATAL, 0, _("Error sending to File daemon. ERR=%s\n"),
122          fd->bstrerror());
123       return false;
124    } else {
125       Dmsg1(400, ">filed: Hdr=%s\n", fd->msg);
126    }
127
128
129    /* Send data record to File daemon */
130    save_msg = fd->msg;          /* save fd message pointer */
131    fd->msg = rec->data;         /* pass data directly to the FD */
132    fd->msglen = rec->data_len;
133    Dmsg1(400, ">filed: send %d bytes data.\n", fd->msglen);
134    if (!fd->send()) {
135       Pmsg1(000, _("Error sending to FD. ERR=%s\n"), fd->bstrerror());
136       Jmsg1(jcr, M_FATAL, 0, _("Error sending to File daemon. ERR=%s\n"),
137          fd->bstrerror());
138
139       ok = false;
140    }
141    fd->msg = save_msg;                /* restore fd message pointer */
142    return ok;
143 }