]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/butil.c
added WSACleanup(), corrected WSA_Init() (removed #ifdef)
[bacula/bacula] / bacula / src / stored / butil.c
1 /*
2  *
3  *  Utility routines for "tool" programs such as bscan, bls,
4  *    bextract, ...  Some routines also used by Bacula.
5  * 
6  *  Normally nothing in this file is called by the Storage   
7  *    daemon because we interact more directly with the user
8  *    i.e. printf, ...
9  *
10  *   Version $Id$
11  */
12 /*
13    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
14
15    This program is free software; you can redistribute it and/or
16    modify it under the terms of the GNU General Public License as
17    published by the Free Software Foundation; either version 2 of
18    the License, or (at your option) any later version.
19
20    This program is distributed in the hope that it will be useful,
21    but WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23    General Public License for more details.
24
25    You should have received a copy of the GNU General Public
26    License along with this program; if not, write to the Free
27    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28    MA 02111-1307, USA.
29
30  */
31
32 #include "bacula.h"
33 #include "stored.h"
34
35 /* Imported variables -- eliminate some day */
36 extern char *configfile;
37
38 #ifdef DEBUG
39 char *rec_state_to_str(DEV_RECORD *rec)
40 {
41    static char buf[200]; 
42    buf[0] = 0;
43    if (rec->state & REC_NO_HEADER) {
44       strcat(buf, "Nohdr,");
45    }
46    if (is_partial_record(rec)) {
47       strcat(buf, "partial,");
48    }
49    if (rec->state & REC_BLOCK_EMPTY) {
50       strcat(buf, "empty,");
51    }
52    if (rec->state & REC_NO_MATCH) {
53       strcat(buf, "Nomatch,");
54    }
55    if (rec->state & REC_CONTINUATION) {
56       strcat(buf, "cont,");
57    }
58    if (buf[0]) {
59       buf[strlen(buf)-1] = 0;
60    }
61    return buf;
62 }
63 #endif
64
65
66 /*
67  * Setup device, jcr, and prepare to access device.
68  *   If the caller wants read access, acquire the device, otherwise,
69  *     the caller will do it.
70  */
71 DEVICE *setup_to_access_device(JCR *jcr, int read_access)
72 {
73    DEVICE *dev;
74    char *p;
75    DEVRES *device;
76
77    /*
78     * If no volume name already given and no bsr, and it is a file,
79     * try getting name from Filename  
80     */
81    if (!jcr->bsr && jcr->VolumeName[0] == 0) {
82       if (strncmp(jcr->dev_name, "/dev/", 5) != 0) {
83          /* Try stripping file part */
84          p = jcr->dev_name + strlen(jcr->dev_name);
85          while (p >= jcr->dev_name && *p != '/')
86             p--;
87          if (*p == '/') {
88             pm_strcpy(&jcr->VolumeName, p+1);
89             *p = 0;
90          }
91       }
92    }
93
94    if ((device=find_device_res(jcr->dev_name, read_access)) == NULL) {
95       Jmsg2(jcr, M_FATAL, 0, _("Cannot find device \"%s\" in config file %s.\n"), 
96            jcr->dev_name, configfile);
97       return NULL;
98    }
99    jcr->device = device;
100    pm_strcpy(&jcr->dev_name, device->device_name);
101    
102    dev = init_dev(NULL, device);
103    jcr->device->dev = dev;
104    new_dcr(jcr, dev);        
105    if (!dev || !first_open_device(dev)) {
106       Jmsg1(jcr, M_FATAL, 0, _("Cannot open %s\n"), jcr->dev_name);
107       return NULL;
108    }
109    Dmsg0(90, "Device opened for read.\n");
110
111    create_vol_list(jcr);
112
113    if (read_access) {
114       if (!acquire_device_for_read(jcr)) {
115          return NULL;
116       }
117    }
118    return dev;
119 }
120
121
122 /*
123  * Search for device resource that corresponds to 
124  * device name on command line (or default).
125  *       
126  * Returns: NULL on failure
127  *          Device resource pointer on success
128  */
129 DEVRES *find_device_res(char *device_name, int read_access)
130 {
131    bool found = false;
132    DEVRES *device;
133
134    LockRes();
135    foreach_res(device, R_DEVICE) {
136       if (strcmp(device->device_name, device_name) == 0) {
137          found = true;
138          break;
139       }
140    } 
141    if (!found) {
142       /* Search for name of Device resource rather than archive name */
143       if (device_name[0] == '"') {
144          strcpy(device_name, device_name+1);
145          int len = strlen(device_name);
146          if (len > 0) {
147             device_name[len-1] = 0;
148          }
149       }
150       foreach_res(device, R_DEVICE) {
151          if (strcmp(device->hdr.name, device_name) == 0) {
152             found = true;
153             break;
154          }
155       } 
156    }
157    UnlockRes();
158    if (!found) {
159       Pmsg2(0, _("Could not find device \"%s\" in config file %s.\n"), device_name,
160             configfile);
161       return NULL;
162    }
163    Pmsg2(0, _("Using device: \"%s\" for %s.\n"), device_name,
164              read_access?"reading":"writing");
165    return device;
166 }
167
168
169
170 /*
171  * Called here when freeing JCR so that we can get rid 
172  *  of "daemon" specific memory allocated.
173  */
174 static void my_free_jcr(JCR *jcr)
175 {
176    if (jcr->pool_name) {
177       free_pool_memory(jcr->pool_name);
178       jcr->pool_name = NULL;
179    }
180    if (jcr->pool_type) {
181       free_pool_memory(jcr->pool_type);
182       jcr->pool_type = NULL;
183    }
184    if (jcr->job_name) {
185       free_pool_memory(jcr->job_name);
186       jcr->job_name = NULL;
187    }
188    if (jcr->client_name) {
189       free_pool_memory(jcr->client_name);
190       jcr->client_name = NULL;
191    }
192    if (jcr->fileset_name) {
193       free_pool_memory(jcr->fileset_name);
194       jcr->fileset_name = NULL;
195    }
196    if (jcr->fileset_md5) {
197       free_pool_memory(jcr->fileset_md5);
198       jcr->fileset_md5 = NULL;
199    }
200    if (jcr->dev_name) {
201       free_pool_memory(jcr->dev_name);
202       jcr->dev_name = NULL;
203    }
204    if (jcr->VolList) {
205       free_vol_list(jcr);
206    }  
207    if (jcr->dcr) {
208       free_dcr(jcr->dcr);
209       jcr->dcr = NULL;
210    }
211      
212    return;
213 }
214
215 /*
216  * Setup a "daemon" JCR for the various standalone
217  *  tools (e.g. bls, bextract, bscan, ...)
218  */
219 JCR *setup_jcr(char *name, char *device, BSR *bsr, char *VolumeName)
220 {
221    JCR *jcr = new_jcr(sizeof(JCR), my_free_jcr);
222    jcr->VolSessionId = 1;
223    jcr->VolSessionTime = (uint32_t)time(NULL);
224    jcr->bsr = bsr;
225    jcr->NumVolumes = 0;
226    jcr->pool_name = get_pool_memory(PM_FNAME);
227    strcpy(jcr->pool_name, "Default");
228    jcr->pool_type = get_pool_memory(PM_FNAME);
229    strcpy(jcr->pool_type, "Backup");
230    jcr->job_name = get_pool_memory(PM_FNAME);
231    pm_strcpy(&jcr->job_name, "Dummy.Job.Name");
232    jcr->client_name = get_pool_memory(PM_FNAME);
233    pm_strcpy(&jcr->client_name, "Dummy.Client.Name");
234    bstrncpy(jcr->Job, name, sizeof(jcr->Job));
235    jcr->fileset_name = get_pool_memory(PM_FNAME);
236    pm_strcpy(&jcr->fileset_name, "Dummy.fileset.name");
237    jcr->fileset_md5 = get_pool_memory(PM_FNAME);
238    pm_strcpy(&jcr->fileset_md5, "Dummy.fileset.md5");
239    jcr->JobId = 0;
240    jcr->JobType = JT_CONSOLE;
241    jcr->JobLevel = L_FULL;
242    jcr->JobStatus = JS_Terminated;
243    jcr->dev_name = get_pool_memory(PM_FNAME);
244    pm_strcpy(&jcr->dev_name, device);
245    if (!bsr && VolumeName) {
246       pm_strcpy(&jcr->VolumeName, VolumeName);
247    }
248    jcr->where = bstrdup("");
249    return jcr;
250 }
251
252
253 /*
254  * Device got an error, attempt to analyse it
255  */
256 void display_tape_error_status(JCR *jcr, DEVICE *dev)
257 {
258    uint32_t status;
259
260    status = status_dev(dev);
261    Dmsg1(20, "Device status: %x\n", status);
262    if (status & BMT_EOD)
263       Jmsg(jcr, M_ERROR, 0, _("Unexpected End of Data\n"));
264   else if (status & BMT_EOT)
265       Jmsg(jcr, M_ERROR, 0, _("Unexpected End of Tape\n"));
266    else if (status & BMT_EOF)
267       Jmsg(jcr, M_ERROR, 0, _("Unexpected End of File\n"));
268    else if (status & BMT_DR_OPEN)
269       Jmsg(jcr, M_ERROR, 0, _("Tape Door is Open\n"));
270    else if (!(status & BMT_ONLINE))
271       Jmsg(jcr, M_ERROR, 0, _("Unexpected Tape is Off-line\n"));
272 }