]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/next_vol.c
Update Console conf code + update copyrights in dird
[bacula/bacula] / bacula / src / dird / next_vol.c
1 /*
2  *
3  *   Bacula Director -- next_vol -- handles finding the next
4  *    volume for append.  Split out of catreq.c August MMIII
5  *    catalog request from the Storage daemon.
6
7  *     Kern Sibbald, March MMI
8  *
9  *   Version $Id$
10  */
11 /*
12    Copyright (C) 2001-2004 Kern Sibbald and John Walker
13
14    This program is free software; you can redistribute it and/or
15    modify it under the terms of the GNU General Public License as
16    published by the Free Software Foundation; either version 2 of
17    the License, or (at your option) any later version.
18
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public
25    License along with this program; if not, write to the Free
26    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27    MA 02111-1307, USA.
28
29  */
30
31 #include "bacula.h"
32 #include "dird.h"
33
34 /*
35  *  Items needed:
36  *   jcr->PoolId
37  *   jcr->store
38  *   jcr->db
39  *   jcr->pool
40  *   MEDIA_DBR mr (zeroed out)
41  *   create -- whether or not to create a new volume
42  */
43 int find_next_volume_for_append(JCR *jcr, MEDIA_DBR *mr, int create)
44 {
45    int retry = 0;
46    bool ok;
47    bool InChanger;
48
49    mr->PoolId = jcr->PoolId;
50    bstrncpy(mr->MediaType, jcr->store->media_type, sizeof(mr->MediaType));
51    Dmsg2(120, "CatReq FindMedia: Id=%d, MediaType=%s\n", mr->PoolId, mr->MediaType);
52    /*
53     * If we are using an Autochanger, restrict Volume 
54     *   search to the Autochanger on the first pass 
55     */
56    InChanger = jcr->store->autochanger;
57    /*
58     * Find the Next Volume for Append
59     */
60    db_lock(jcr->db);
61    for ( ;; ) {
62       bstrncpy(mr->VolStatus, "Append", sizeof(mr->VolStatus));  /* want only appendable volumes */
63       /*
64        *  1. Look for volume with "Append" status.
65        */
66       ok = db_find_next_volume(jcr, jcr->db, 1, InChanger, mr);  
67       Dmsg2(100, "catreq after find_next_vol ok=%d FW=%d\n", ok, mr->FirstWritten);
68       if (!ok) {
69          /*
70           * 2. Try finding a recycled volume
71           */
72          ok = find_recycled_volume(jcr, InChanger, mr);
73          Dmsg2(100, "find_recycled_volume %d FW=%d\n", ok, mr->FirstWritten);
74          if (!ok) {
75             /*
76              * 3. Try pruning Volumes
77              */
78             prune_volumes(jcr);  
79             ok = recycle_oldest_purged_volume(jcr, InChanger, mr);
80             if (InChanger) {
81                InChanger = false;
82                if (!ok) {
83                   continue;           /* retry again accepting any volume */
84                }
85             }
86             Dmsg2(200, "find_recycled_volume2 %d FW=%d\n", ok, mr->FirstWritten);
87             if (!ok && create) {
88                /*
89                 * 4. Try "creating" a new Volume
90                 */
91                ok = newVolume(jcr, mr);
92             }
93          }
94
95          /* 
96           *  Look at more drastic ways to find an Appendable Volume
97           */ 
98          if (!ok && (jcr->pool->purge_oldest_volume ||
99                      jcr->pool->recycle_oldest_volume)) {
100             Dmsg2(200, "No next volume found. PurgeOldest=%d\n RecyleOldest=%d",
101                 jcr->pool->purge_oldest_volume, jcr->pool->recycle_oldest_volume);
102             /* Find oldest volume to recycle */
103             ok = db_find_next_volume(jcr, jcr->db, -1, InChanger, mr);
104             Dmsg1(400, "Find oldest=%d\n", ok);
105             if (ok) {
106                UAContext *ua;
107                Dmsg0(400, "Try purge.\n");
108                /* 
109                 * 5.  Try to purging oldest volume only if not UA calling us.
110                 */
111                ua = new_ua_context(jcr);
112                if (jcr->pool->purge_oldest_volume && create) {
113                   Jmsg(jcr, M_INFO, 0, _("Purging oldest volume \"%s\"\n"), mr->VolumeName);
114                   ok = purge_jobs_from_volume(ua, mr);
115                /*
116                 * 5. or try recycling the oldest volume
117                 */
118                } else if (jcr->pool->recycle_oldest_volume) {
119                   Jmsg(jcr, M_INFO, 0, _("Pruning oldest volume \"%s\"\n"), mr->VolumeName);
120                   ok = prune_volume(ua, mr);
121                }
122                free_ua_context(ua);
123                if (ok) {
124                   ok = recycle_volume(jcr, mr);
125                   Dmsg1(400, "Recycle after purge oldest=%d\n", ok);
126                }
127             }
128          }
129       }
130       Dmsg2(100, "VolJobs=%d FirstWritten=%d\n", mr->VolJobs, mr->FirstWritten);
131       if (ok) {
132          /* If we can use the volume, check if it is expired */
133          if (has_volume_expired(jcr, mr)) {
134             if (retry++ < 200) {            /* sanity check */
135                continue;                    /* try again from the top */
136             } else {
137                Jmsg(jcr, M_ERROR, 0, _(
138 "We seem to be looping trying to find the next volume. I give up.\n"));
139             }
140          }
141       }
142       break;
143    } /* end for loop */
144    db_unlock(jcr->db);
145    return ok;
146 }
147
148 /*
149  * Check if any time limits or use limits have expired
150  *   if so, set the VolStatus appropriately.
151  */
152 bool has_volume_expired(JCR *jcr, MEDIA_DBR *mr)
153 {
154    bool expired = false;
155    /*
156     * Check limits and expirations if "Append" and it has been used
157     * i.e. mr->VolJobs > 0
158     *
159     */
160    if (strcmp(mr->VolStatus, "Append") == 0 && mr->VolJobs > 0) {
161       /* First handle Max Volume Bytes */
162       if ((mr->MaxVolBytes > 0 && mr->VolBytes >= mr->MaxVolBytes)) {
163          Jmsg(jcr, M_INFO, 0, _("Max Volume bytes exceeded. "             
164              "Marking Volume \"%s\" as Full.\n"), mr->VolumeName);
165          bstrncpy(mr->VolStatus, "Full", sizeof(mr->VolStatus));
166          expired = true;
167
168       /* Now see if Volume should only be used once */
169       } else if (mr->VolBytes > 0 && jcr->pool->use_volume_once) {
170          Jmsg(jcr, M_INFO, 0, _("Volume used once. "             
171              "Marking Volume \"%s\" as Used.\n"), mr->VolumeName);
172          bstrncpy(mr->VolStatus, "Used", sizeof(mr->VolStatus));
173          expired = true;
174
175       /* Now see if Max Jobs written to volume */
176       } else if (mr->MaxVolJobs > 0 && mr->MaxVolJobs <= mr->VolJobs) {
177          Jmsg(jcr, M_INFO, 0, _("Max Volume jobs exceeded. "       
178              "Marking Volume \"%s\" as Used.\n"), mr->VolumeName);
179          bstrncpy(mr->VolStatus, "Used", sizeof(mr->VolStatus));
180          expired = true;
181
182       /* Now see if Max Files written to volume */
183       } else if (mr->MaxVolFiles > 0 && mr->MaxVolFiles <= mr->VolFiles) {
184          Jmsg(jcr, M_INFO, 0, _("Max Volume files exceeded. "       
185              "Marking Volume \"%s\" as Used.\n"), mr->VolumeName);
186          bstrncpy(mr->VolStatus, "Used", sizeof(mr->VolStatus));
187          expired = true;
188
189       /* Finally, check Use duration expiration */
190       } else if (mr->VolUseDuration > 0) {
191          utime_t now = time(NULL);
192          /* See if Vol Use has expired */
193          if (mr->VolUseDuration <= (now - mr->FirstWritten)) {
194             Jmsg(jcr, M_INFO, 0, _("Max configured use duration exceeded. "       
195                "Marking Volume \"%s\" as Used.\n"), mr->VolumeName);
196             bstrncpy(mr->VolStatus, "Used", sizeof(mr->VolStatus));
197             expired = true;
198          }
199       }
200    }
201    if (expired) {
202       /* Need to update media */
203       if (!db_update_media_record(jcr, jcr->db, mr)) {
204          Jmsg(jcr, M_ERROR, 0, _("Catalog error updating volume \"%s\". ERR=%s"),
205               mr->VolumeName, db_strerror(jcr->db));
206       }           
207    }  
208    return expired;
209 }
210
211 /*
212  * Try hard to recycle the current volume
213  *
214  *  Returns: on failure - reason = NULL
215  *           on success - reason - pointer to reason
216  */
217 void check_if_volume_valid_or_recyclable(JCR *jcr, MEDIA_DBR *mr, char **reason)
218 {
219    int ok;
220
221    *reason = NULL;
222
223    /*  Check if a duration or limit has expired */
224    if (has_volume_expired(jcr, mr)) {
225       *reason = "volume has expired";
226       /* Keep going because we may be able to recycle volume */
227    }
228
229    /*
230     * Now see if we can use the volume as is
231     */
232    if (strcmp(mr->VolStatus, "Append") == 0 ||
233        strcmp(mr->VolStatus, "Recycle") == 0) {
234       *reason = NULL;
235       return;
236    }
237                                                                                         
238    /*
239     * Check if the Volume is already marked for recycling
240     */
241    if (strcmp(mr->VolStatus, "Purged") == 0) {
242       if (recycle_volume(jcr, mr)) {
243          Jmsg(jcr, M_INFO, 0, "Recycled current volume \"%s\"\n", mr->VolumeName);
244          *reason = NULL;
245          return;
246       } else {
247          /* In principle this shouldn't happen */
248          *reason = "and recycling of current volume failed";
249          return;
250       }
251    }
252                                                                                         
253    /* At this point, the volume is not valid for writing */
254    *reason = "but should be Append, Purged or Recycle";
255                                                                                         
256    /*
257     * What we're trying to do here is see if the current volume is
258     * "recyclable" - ie. if we prune all expired jobs off it, is
259     * it now possible to reuse it for the job that it is currently
260     * needed for?
261     */
262    if ((mr->LastWritten + mr->VolRetention) < (utime_t)time(NULL)
263          && mr->Recycle && jcr->pool->recycle_current_volume
264          && (strcmp(mr->VolStatus, "Full") == 0 ||
265             strcmp(mr->VolStatus, "Used") == 0)) {
266       /*
267        * Attempt prune of current volume to see if we can
268        * recycle it for use.
269        */
270       UAContext *ua;
271                                                                                         
272       ua = new_ua_context(jcr);
273       ok = prune_volume(ua, mr);
274       free_ua_context(ua);
275                                                                                         
276       if (ok) {
277          /* If fully purged, recycle current volume */
278          if (recycle_volume(jcr, mr)) {
279             Jmsg(jcr, M_INFO, 0, "Recycled current volume \"%s\"\n", mr->VolumeName);
280             *reason = NULL;
281          } else {
282             *reason = "but should be Append, Purged or Recycle (recycling of the "
283                "current volume failed)";
284          }
285       } else {
286          *reason = "but should be Append, Purged or Recycle (cannot automatically "
287             "recycle current volume, as it still contains unpruned data)";
288       }
289    }
290 }