]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/append.c
e1c8efd396a4edcd00fe95d25e0b16676cbd66fd
[bacula/bacula] / bacula / src / stored / append.c
1 /*
2  * Append code for Storage daemon
3  *  Kern Sibbald, May MM
4  *
5  *  Version $Id$
6  */
7 /*
8    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2 of
13    the License, or (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public
21    License along with this program; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23    MA 02111-1307, USA.
24
25  */
26
27 #include "bacula.h"
28 #include "stored.h"
29
30 extern int  FiledDataChan;            /* File daemon data channel (port) */
31 extern int BaculaTapeVersion;         /* Version number */
32 extern char BaculaId[];               /* Id string */
33
34 /* Responses sent to the File daemon */
35 static char OK_data[]    = "3000 OK data\n";
36
37 /* 
38  *  Append Data sent from File daemon   
39  *
40  */
41 int do_append_data(JCR *jcr) 
42 {
43    int32_t n;
44    long file_index, stream, last_file_index;
45    BSOCK *ds;
46    BSOCK *fd_sock = jcr->file_bsock;
47    int ok = TRUE;
48    DEVICE *dev = jcr->device->dev;
49    DEV_RECORD rec;
50    DEV_BLOCK  *block;
51    
52    Dmsg0(10, "Start append data.\n");
53
54    /* Tell File daemon to send data */
55    bnet_fsend(fd_sock, OK_data);
56
57    sm_check(__FILE__, __LINE__, False);
58
59 #ifdef NO_ATTRIBUTES_TEST
60 // jcr->spool_attributes = 1;
61    jcr->no_attributes = 1;
62 #endif
63   
64    if (!jcr->no_attributes && jcr->spool_attributes) {
65       open_spool_file(jcr, jcr->dir_bsock);
66    }
67
68    ds = fd_sock;
69
70    if (!bnet_set_buffer_size(ds, MAX_NETWORK_BUFFER_SIZE, BNET_SETBUF_WRITE)) {
71       jcr->JobStatus = JS_Cancelled;
72       Jmsg(jcr, M_FATAL, 0, _("Unable to set network buffer size.\n"));
73       return 0;
74    }
75
76    Dmsg1(20, "Begin append device=%s\n", dev_name(dev));
77
78    block = new_block(dev);
79
80    /* 
81     * Acquire output device for writing.  Note, after acquiring a
82     *   device, we MUST release it, which is done at the end of this
83     *   subroutine.
84     */
85    Dmsg0(100, "just before acquire_device\n");
86    if (!acquire_device_for_append(jcr, dev, block)) {
87       jcr->JobStatus = JS_Cancelled;
88       free_block(block);
89       return 0;
90    }
91    sm_check(__FILE__, __LINE__, False);
92
93    Dmsg0(100, "Just after acquire_device_for_append\n");
94    /*
95     * Write Begin Session Record
96     */
97    if (!write_session_label(jcr, block, SOS_LABEL)) {
98       jcr->JobStatus = JS_Cancelled;
99       Jmsg1(jcr, M_FATAL, 0, _("Write session label failed. ERR=%s\n"),
100          strerror_dev(dev));
101       ok = FALSE;
102    }
103
104    sm_check(__FILE__, __LINE__, False);
105
106    memset(&rec, 0, sizeof(rec));
107
108    /* 
109     * Get Data from File daemon, write to device   
110     */
111    jcr->VolFirstFile = 0;
112    time(&jcr->run_time);              /* start counting time for rates */
113    for (last_file_index = 0; ok && !job_cancelled(jcr); ) {
114       char info[100];
115
116       /* Read Stream header from the File daemon.
117        *  The stream header consists of the following:
118        *    file_index (sequential Bacula file index)
119        *    stream     (arbitrary Bacula number to distinguish parts of data)
120        *    info       (Info for Storage daemon -- compressed, encryped, ...)
121        */
122       if ((n=bget_msg(ds)) < 0) { 
123          Jmsg1(jcr, M_FATAL, 0, _("Error reading data header from FD. ERR=%s\n"),
124             bnet_strerror(ds));
125          ok = FALSE;
126          break;
127       }
128       if (n == 0 || job_cancelled(jcr)) {
129          break;                       /* all done */
130       }
131       sm_check(__FILE__, __LINE__, False);
132       ds->msg[ds->msglen] = 0;
133       if (sscanf(ds->msg, "%ld %ld %100s", &file_index, &stream, info) != 3) {
134          Jmsg1(jcr, M_FATAL, 0, _("Malformed data header from FD: %s\n"), ds->msg);
135          ok = FALSE;
136          break;
137       }
138       Dmsg2(190, "<filed: Header FilInx=%d stream=%d\n", file_index, stream);
139
140       if (!(file_index > 0 && (file_index == last_file_index ||
141           file_index == last_file_index + 1))) {
142          Jmsg0(jcr, M_FATAL, 0, _("File index from FD not positive or sequential\n"));
143          ok = FALSE;
144          break;
145       }
146       if (file_index != last_file_index) {
147          jcr->JobFiles = file_index;
148          if (jcr->VolFirstFile == 0) {
149             jcr->VolFirstFile = file_index;
150          }
151          last_file_index = file_index;
152       }
153       
154       /* Read data stream from the File daemon.
155        *  The data stream is just raw bytes
156        */
157       sm_check(__FILE__, __LINE__, False);
158       while ((n=bget_msg(ds)) > 0 && !job_cancelled(jcr)) {
159
160          sm_check(__FILE__, __LINE__, False);
161          rec.VolSessionId = jcr->VolSessionId;
162          rec.VolSessionTime = jcr->VolSessionTime;
163          rec.FileIndex = file_index;
164          rec.Stream = stream;
165          rec.data_len = ds->msglen;
166          rec.data = ds->msg;            /* use message buffer */
167
168          Dmsg4(250, "before writ_rec FI=%d SessId=%d Strm=%s len=%d\n",
169             rec.FileIndex, rec.VolSessionId, stream_to_ascii(rec.Stream), 
170             rec.data_len);
171           
172          while (!write_record_to_block(block, &rec)) {
173             Dmsg2(150, "!write_record_to_block data_len=%d rem=%d\n", rec.data_len,
174                        rec.remainder);
175             if (!write_block_to_device(jcr, dev, block)) {
176                Dmsg2(90, "Got write_block_to_dev error on device %s. %s\n",
177                   dev_name(dev), strerror_dev(dev));
178                Jmsg(jcr, M_FATAL, 0, _("Cannot fixup device error. %s\n"),
179                      strerror_dev(dev));
180                ok = FALSE;
181                break;
182             }
183          }
184          sm_check(__FILE__, __LINE__, False);
185          if (!ok) {
186             Dmsg0(400, "Not OK\n");
187             break;
188          }
189          jcr->JobBytes += rec.data_len;   /* increment bytes this job */
190          Dmsg4(190, "write_record FI=%s SessId=%d Strm=%s len=%d\n",
191             FI_to_ascii(rec.FileIndex), rec.VolSessionId, 
192             stream_to_ascii(rec.Stream), rec.data_len);
193          /* Send attributes and MD5 to Director for Catalog */
194          if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_MD5_SIGNATURE) {
195             if (!jcr->no_attributes) {
196                if (jcr->spool_attributes && jcr->dir_bsock->spool_fd) {
197                   jcr->dir_bsock->spool = 1;
198                }
199                if (!dir_update_file_attributes(jcr, &rec)) {
200                   Jmsg(jcr, M_FATAL, 0, _("Error updating file attributes. ERR=%s\n"),
201                      bnet_strerror(jcr->dir_bsock));
202                   ok = FALSE;
203                   jcr->dir_bsock->spool = 0;
204                   break;
205                }
206                jcr->dir_bsock->spool = 0;
207             }
208          }
209          sm_check(__FILE__, __LINE__, False);
210       }
211       if (n < 0) {
212          Jmsg1(jcr, M_FATAL, 0, _("Network error on data channel. ERR=%s\n"),
213             bnet_strerror(ds));
214          ok = FALSE;
215          break;
216       }
217    }
218    /* 
219     *******FIXME***** we should put the ok status in the End of
220     * session label 
221     *
222     *   We probably need a new flag that says "Do not attempt
223     *   to write because there is no tape".
224     */
225    sm_check(__FILE__, __LINE__, False);
226    Dmsg0(90, "Write_end_session_label()\n");
227    if (!write_session_label(jcr, block, EOS_LABEL)) {
228       Jmsg1(jcr, M_FATAL, 0, _("Error writting end session label. ERR=%s\n"),
229           strerror_dev(dev));
230       ok = FALSE;
231    }
232    /* Write out final block of this session */
233    if (!write_block_to_device(jcr, dev, block)) {
234       Pmsg0(000, "Set ok=FALSE after write_block_to_device.\n");
235       ok = FALSE;
236    }
237
238    /* Release the device */
239    if (!release_device(jcr, dev, block)) {
240       Pmsg0(000, "Error in release_device\n");
241       ok = FALSE;
242    }
243
244    free_block(block);
245
246    if (jcr->spool_attributes && jcr->dir_bsock->spool_fd) {
247       bnet_despool(jcr->dir_bsock);
248       close_spool_file(jcr, jcr->dir_bsock);
249    }
250
251    Dmsg0(90, "return from do_append_data()\n");
252    return ok ? 1 : 0;
253 }