]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/autochanger.c
76d1e00e35738ae365019880c1abd9cbe6f8e142
[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       changer = edit_device_codes(jcr, changer, jcr->device->changer_command, 
78                    "loaded");
79       status = run_program(changer, timeout, results);
80       Dmsg3(100, "run_prog: %s stat=%d result=%s\n", changer, status, results);
81       if (status == 0) {
82          loaded = atoi(results);
83       } else {
84          loaded = -1;              /* force unload */
85       }
86       Dmsg1(100, "loaded=%s\n", results);
87
88       /* If bad status or tape we want is not loaded, load it. */
89       if (status != 0 || loaded != slot) { 
90          if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
91             offline_dev(dev);
92          }
93          /* We are going to load a new tape, so close the device */
94          force_close_dev(dev);
95          if (loaded != 0) {        /* must unload drive */
96             Dmsg0(100, "Doing changer unload.\n");
97             if (dir) {
98                bnet_fsend(dir, _("3902 Issuing autochanger \"unload\" command.\n"));
99             } else {
100                Jmsg(jcr, M_INFO, 0, _("Issuing autochanger \"unload\" command.\n"));
101             }
102             changer = edit_device_codes(jcr, changer, 
103                         jcr->device->changer_command, "unload");
104             status = run_program(changer, timeout, NULL);
105             Dmsg1(100, "unload status=%d\n", status);
106          }
107          /*
108           * Load the desired cassette    
109           */
110          Dmsg1(100, "Doing changer load slot %d\n", slot);
111          if (dir) {
112             bnet_fsend(dir, _("3903 Issuing autochanger \"load slot %d\" command.\n"),
113                slot);
114          } else {
115             Jmsg(jcr, M_INFO, 0, _("Issuing autochanger \"load slot %d\" command.\n"),
116                slot);
117          }
118          changer = edit_device_codes(jcr, changer, 
119                       jcr->device->changer_command, "load");
120          status = run_program(changer, timeout, NULL);
121          if (status == 0) {
122             Jmsg(jcr, M_INFO, 0, _("Autochanger \"load slot\" status is OK.\n"));
123          } else {
124             Jmsg(jcr, M_INFO, 0, _("Bad autochanger \"load slot\" status = %d.\n"),
125                status);
126          }
127          Dmsg2(100, "load slot %d status=%d\n", slot, status);
128       }
129       free_pool_memory(changer);
130       free_pool_memory(results);
131       Dmsg1(100, "After changer, status=%d\n", status);
132       if (status == 0) {           /* did we succeed? */
133          rtn_stat = 1;             /* tape loaded by changer */
134       }
135    }
136    return rtn_stat;
137 }
138
139 int autochanger_list(JCR *jcr, DEVICE *dev, BSOCK *dir)
140 {
141    uint32_t timeout = jcr->device->max_changer_wait;
142    POOLMEM *changer;
143    BPIPE *bpipe;
144    int len = sizeof_pool_memory(dir->msg) - 1;
145
146    if (!dev_cap(dev, CAP_AUTOCHANGER) || !jcr->device->changer_name ||
147        !jcr->device->changer_command) {
148       bnet_fsend(dir, _("Not a changer device.\n"));
149       return 0;
150    }
151
152    changer = get_pool_memory(PM_FNAME);
153    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
154       offline_dev(dev);
155    }
156    /* We are going to load a new tape, so close the device */
157    force_close_dev(dev);
158
159    /* First unload any tape */
160    bnet_fsend(dir, _("3902 Issuing autochanger \"unload\" command.\n"));
161    changer = edit_device_codes(jcr, changer, jcr->device->changer_command, "unload");
162    run_program(changer, timeout, NULL);
163
164    /* Now list slots occupied */
165    changer = edit_device_codes(jcr, changer, jcr->device->changer_command, "list");
166    bnet_fsend(dir, _("3903 Issuing autochanger \"list\" command.\n"));
167    bpipe = open_bpipe(changer, timeout, "r");
168    if (!bpipe) {
169       bnet_fsend(dir, _("Open bpipe failed.\n"));
170       goto bail_out;
171    }
172    /* Get output from changer */
173    while (fgets(dir->msg, len, bpipe->rfd)) { 
174       dir->msglen = strlen(dir->msg);
175       bnet_send(dir);
176    }
177    bnet_sig(dir, BNET_EOD);
178    close_bpipe(bpipe);
179
180 bail_out:
181    free_pool_memory(changer);
182    return 1;
183 }
184
185
186
187 /*
188  * Edit codes into ChangerCommand
189  *  %% = %
190  *  %a = archive device name
191  *  %c = changer device name
192  *  %f = Client's name
193  *  %j = Job name
194  *  %o = command
195  *  %s = Slot base 0
196  *  %S = Slot base 1
197  *  %v = Volume name
198  *
199  *
200  *  omsg = edited output message
201  *  imsg = input string containing edit codes (%x)
202  *  cmd = command string (load, unload, ...) 
203  *
204  */
205 static char *edit_device_codes(JCR *jcr, char *omsg, char *imsg, char *cmd) 
206 {
207    char *p;
208    const char *str;
209    char add[20];
210
211    *omsg = 0;
212    Dmsg1(200, "edit_device_codes: %s\n", imsg);
213    for (p=imsg; *p; p++) {
214       if (*p == '%') {
215          switch (*++p) {
216          case '%':
217             str = "%";
218             break;
219          case 'a':
220             str = jcr->device->dev->dev_name;
221             break;
222          case 'c':
223             str = NPRT(jcr->device->changer_name);
224             break;
225          case 'o':
226             str = NPRT(cmd);
227             break;
228          case 's':
229             sprintf(add, "%d", jcr->VolCatInfo.Slot - 1);
230             str = add;
231             break;
232          case 'S':
233             sprintf(add, "%d", jcr->VolCatInfo.Slot);
234             str = add;
235             break;
236          case 'j':                    /* Job name */
237             str = jcr->Job;
238             break;
239          case 'v':
240             str = NPRT(jcr->VolumeName);
241             break;
242          case 'f':
243             str = NPRT(jcr->client_name);
244             break;
245
246          default:
247             add[0] = '%';
248             add[1] = *p;
249             add[2] = 0;
250             str = add;
251             break;
252          }
253       } else {
254          add[0] = *p;
255          add[1] = 0;
256          str = add;
257       }
258       Dmsg1(200, "add_str %s\n", str);
259       pm_strcat(&omsg, (char *)str);
260       Dmsg1(200, "omsg=%s\n", omsg);
261    }
262    return omsg;
263 }