]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/autochanger.c
Misc see kes-1.31 13May03
[bacula/bacula] / bacula / src / stored / autochanger.c
1 /*
2  *
3  *  Routines for handling the autochanger.
4  *
5  *   Kern Sibbald, August MMII
6  *                            
7  *   Version $Id$
8  */
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"                   /* pull in global headers */
30 #include "stored.h"                   /* pull in Storage Deamon headers */
31
32 /* Forward referenced functions */
33 static char *edit_device_codes(JCR *jcr, char *omsg, char *imsg, char *cmd);
34
35
36 /*
37  * Called here to do an autoload using the autochanger, if
38  *  configured, and if a Slot has been defined for this Volume.
39  *  On success this routine loads the indicated tape, but the
40  *  label is not read, so it must be verified.
41  *
42  *  Note if dir is not NULL, it is the console requesting the 
43  *   autoload for labeling, so we respond directly to the
44  *   dir bsock.
45  *
46  *  Returns: 1 on success
47  *           0 on failure
48  */
49 int autoload_device(JCR *jcr, DEVICE *dev, int writing, BSOCK *dir)
50 {
51    int slot = jcr->VolCatInfo.Slot;
52    int rtn_stat = 0;
53      
54    /*
55     * Handle autoloaders here.  If we cannot autoload it, we
56     *  will return FALSE to ask the sysop.
57     */
58    if (writing && dev_cap(dev, CAP_AUTOCHANGER) && slot <= 0) {
59       if (dir) {
60          return 0;                    /* For user, bail out right now */
61       }
62       if (dir_find_next_appendable_volume(jcr)) {
63          slot = jcr->VolCatInfo.Slot; 
64       }
65    }
66    Dmsg1(100, "Want changer slot=%d\n", slot);
67
68    if (slot > 0 && jcr->device->changer_name && jcr->device->changer_command) {
69       uint32_t timeout = jcr->device->max_changer_wait;
70       POOLMEM *changer, *results;
71       int status, loaded;
72
73       results = get_pool_memory(PM_MESSAGE);
74       changer = get_pool_memory(PM_FNAME);
75
76       /* Find out what is loaded, zero means device is unloaded */
77       Jmsg(jcr, M_INFO, 0, _("3301 Issuing autochanger \"loaded\" command.\n"));
78       changer = edit_device_codes(jcr, changer, jcr->device->changer_command, 
79                    "loaded");
80       status = run_program(changer, timeout, results);
81       Dmsg3(100, "run_prog: %s stat=%d result=%s\n", changer, status, results);
82       if (status == 0) {
83          loaded = atoi(results);
84       } else {
85          Jmsg(jcr, M_INFO, 0, _("3991 Bad autochanger \"load slot\" status=%d.\n"), status);
86          loaded = -1;              /* force unload */
87       }
88       Dmsg1(100, "loaded=%s\n", results);
89
90       /* If bad status or tape we want is not loaded, load it. */
91       if (status != 0 || loaded != slot) { 
92          if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
93             offline_dev(dev);
94          }
95          /* We are going to load a new tape, so close the device */
96          force_close_dev(dev);
97          if (loaded != 0) {        /* must unload drive */
98             Dmsg0(100, "Doing changer unload.\n");
99             Jmsg(jcr, M_INFO, 0, _("3302 Issuing autochanger \"unload\" command.\n"));
100             changer = edit_device_codes(jcr, changer, 
101                         jcr->device->changer_command, "unload");
102             status = run_program(changer, timeout, NULL);
103             Dmsg1(100, "unload status=%d\n", status);
104          }
105          /*
106           * Load the desired cassette    
107           */
108          Dmsg1(100, "Doing changer load slot %d\n", slot);
109          Jmsg(jcr, M_INFO, 0, _("3303 Issuing autochanger \"load slot %d\" command.\n"), 
110               slot);
111          changer = edit_device_codes(jcr, changer, 
112                       jcr->device->changer_command, "load");
113          status = run_program(changer, timeout, NULL);
114          if (status == 0) {
115             Jmsg(jcr, M_INFO, 0, _("3304 Autochanger \"load slot %d\" status is OK.\n"),
116                     slot);
117          } else {
118             Jmsg(jcr, M_INFO, 0, _("3992 Bad autochanger \"load slot\" status=%d.\n"),
119                     status);
120          }
121          Dmsg2(100, "load slot %d status=%d\n", slot, status);
122       }
123       free_pool_memory(changer);
124       free_pool_memory(results);
125       Dmsg1(100, "After changer, status=%d\n", status);
126       if (status == 0) {           /* did we succeed? */
127          rtn_stat = 1;             /* tape loaded by changer */
128       }
129    }
130    return rtn_stat;
131 }
132
133 /*
134  * List the Volumes that are in the autoloader possibly
135  *   with their barcodes.
136  *   We assume that it is always the Console that is calling us.
137  */
138 int autochanger_list(JCR *jcr, DEVICE *dev, BSOCK *dir)
139 {
140    uint32_t timeout = jcr->device->max_changer_wait;
141    POOLMEM *changer;
142    BPIPE *bpipe;
143    int len = sizeof_pool_memory(dir->msg) - 1;
144
145    if (!dev_cap(dev, CAP_AUTOCHANGER) || !jcr->device->changer_name ||
146        !jcr->device->changer_command) {
147       bnet_fsend(dir, _("3993 Not a autochanger device.\n"));
148       return 0;
149    }
150
151    changer = get_pool_memory(PM_FNAME);
152    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
153       offline_dev(dev);
154    }
155    /* We are going to load a new tape, so close the device */
156    force_close_dev(dev);
157
158    /* First unload any tape */
159    bnet_fsend(dir, _("3305 Issuing autochanger \"unload\" command.\n"));
160    changer = edit_device_codes(jcr, changer, jcr->device->changer_command, "unload");
161    run_program(changer, timeout, NULL);
162
163    /* Now list slots occupied */
164    changer = edit_device_codes(jcr, changer, jcr->device->changer_command, "list");
165    bnet_fsend(dir, _("3306 Issuing autochanger \"list\" command.\n"));
166    bpipe = open_bpipe(changer, timeout, "r");
167    if (!bpipe) {
168       bnet_fsend(dir, _("3993 Open bpipe failed.\n"));
169       goto bail_out;
170    }
171    /* Get output from changer */
172    while (fgets(dir->msg, len, bpipe->rfd)) { 
173       dir->msglen = strlen(dir->msg);
174       bnet_send(dir);
175    }
176    bnet_sig(dir, BNET_EOD);
177    close_bpipe(bpipe);
178
179 bail_out:
180    free_pool_memory(changer);
181    return 1;
182 }
183
184
185
186 /*
187  * Edit codes into ChangerCommand
188  *  %% = %
189  *  %a = archive device name
190  *  %c = changer device name
191  *  %f = Client's name
192  *  %j = Job name
193  *  %o = command
194  *  %s = Slot base 0
195  *  %S = Slot base 1
196  *  %v = Volume name
197  *
198  *
199  *  omsg = edited output message
200  *  imsg = input string containing edit codes (%x)
201  *  cmd = command string (load, unload, ...) 
202  *
203  */
204 static char *edit_device_codes(JCR *jcr, char *omsg, char *imsg, char *cmd) 
205 {
206    char *p;
207    const char *str;
208    char add[20];
209
210    *omsg = 0;
211    Dmsg1(200, "edit_device_codes: %s\n", imsg);
212    for (p=imsg; *p; p++) {
213       if (*p == '%') {
214          switch (*++p) {
215          case '%':
216             str = "%";
217             break;
218          case 'a':
219             str = jcr->device->dev->dev_name;
220             break;
221          case 'c':
222             str = NPRT(jcr->device->changer_name);
223             break;
224          case 'o':
225             str = NPRT(cmd);
226             break;
227          case 's':
228             sprintf(add, "%d", jcr->VolCatInfo.Slot - 1);
229             str = add;
230             break;
231          case 'S':
232             sprintf(add, "%d", jcr->VolCatInfo.Slot);
233             str = add;
234             break;
235          case 'j':                    /* Job name */
236             str = jcr->Job;
237             break;
238          case 'v':
239             str = NPRT(jcr->VolumeName);
240             break;
241          case 'f':
242             str = NPRT(jcr->client_name);
243             break;
244
245          default:
246             add[0] = '%';
247             add[1] = *p;
248             add[2] = 0;
249             str = add;
250             break;
251          }
252       } else {
253          add[0] = *p;
254          add[1] = 0;
255          str = add;
256       }
257       Dmsg1(200, "add_str %s\n", str);
258       pm_strcat(&omsg, (char *)str);
259       Dmsg1(200, "omsg=%s\n", omsg);
260    }
261    return omsg;
262 }