]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/job.c
Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
[bacula/bacula] / bacula / src / stored / job.c
1 /*
2  *   Job control and execution for Storage Daemon
3  *
4  *   Kern Sibbald, MM
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000-2004 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"
30 #include "stored.h"
31
32 /* Imported variables */
33 extern uint32_t VolSessionTime;
34
35 /* Imported functions */
36 extern uint32_t newVolSessionId();
37
38 /* Forward referenced functions */
39 static bool use_device_cmd(JCR *jcr);
40
41 /* Requests from the Director daemon */
42 static char jobcmd[] = "JobId=%d job=%127s job_name=%127s client_name=%127s "
43          "type=%d level=%d FileSet=%127s NoAttr=%d SpoolAttr=%d FileSetMD5=%127s "
44          "SpoolData=%d";
45 static char use_device[]  = "use device=%127s media_type=%127s pool_name=%127s pool_type=%127s\n";
46 static char use_devices[] = "use devices=%127s media_type=%127s pool_name=%127s pool_type=%127s\n";
47
48 /* Responses sent to Director daemon */
49 static char OKjob[]     = "3000 OK Job SDid=%u SDtime=%u Authorization=%s\n";
50 static char OK_device[] = "3000 OK use device\n";
51 static char NO_device[] = "3914 Device \"%s\" not in SD Device resources.\n";
52 static char BAD_use[]   = "3913 Bad use command: %s\n";
53 static char BAD_job[]   = "3915 Bad Job command: %s\n";
54
55 /*
56  * Director requests us to start a job
57  * Basic tasks done here:
58  *  - We pickup the JobId to be run from the Director.
59  *  - We pickup the device, media, and pool from the Director
60  *  - Wait for a connection from the File Daemon (FD)
61  *  - Accept commands from the FD (i.e. run the job)
62  *  - Return when the connection is terminated or
63  *    there is an error.
64  */
65 bool job_cmd(JCR *jcr)
66 {
67    int JobId, errstat;
68    char auth_key[100];
69    BSOCK *dir = jcr->dir_bsock;
70    POOL_MEM job_name, client_name, job, fileset_name, fileset_md5;
71    int JobType, level, spool_attributes, no_attributes, spool_data;
72    struct timeval tv;
73    struct timezone tz;
74    struct timespec timeout;
75    JCR *ojcr;
76
77    /*
78     * Get JobId and permissions from Director
79     */
80    Dmsg1(100, "Job_cmd: %s\n", dir->msg);
81    if (sscanf(dir->msg, jobcmd, &JobId, job.c_str(), job_name.c_str(),
82               client_name.c_str(),
83               &JobType, &level, fileset_name.c_str(), &no_attributes,
84               &spool_attributes, fileset_md5.c_str(), &spool_data) != 11) {
85       pm_strcpy(jcr->errmsg, dir->msg);
86       bnet_fsend(dir, BAD_job, jcr->errmsg);
87       Emsg1(M_FATAL, 0, _("Bad Job Command from Director: %s\n"), jcr->errmsg);
88       set_jcr_job_status(jcr, JS_ErrorTerminated);
89       return false;
90    }
91    /*
92     * Since this job could be rescheduled, we
93     *  check to see if we have it already. If so
94     *  free the old jcr and use the new one.
95     */
96    ojcr = get_jcr_by_full_name(job.c_str());
97    if (ojcr && !ojcr->authenticated) {
98       Dmsg2(100, "Found ojcr=0x%x Job %s\n", (unsigned)(long)ojcr, job.c_str());
99       free_jcr(ojcr);
100    }
101    jcr->JobId = JobId;
102    jcr->VolSessionId = newVolSessionId();
103    jcr->VolSessionTime = VolSessionTime;
104    bstrncpy(jcr->Job, job, sizeof(jcr->Job));
105    unbash_spaces(job_name);
106    jcr->job_name = get_pool_memory(PM_NAME);
107    pm_strcpy(jcr->job_name, job_name);
108    unbash_spaces(client_name);
109    jcr->client_name = get_pool_memory(PM_NAME);
110    pm_strcpy(jcr->client_name, client_name);
111    unbash_spaces(fileset_name);
112    jcr->fileset_name = get_pool_memory(PM_NAME);
113    pm_strcpy(jcr->fileset_name, fileset_name);
114    jcr->JobType = JobType;
115    jcr->JobLevel = level;
116    jcr->no_attributes = no_attributes;
117    jcr->spool_attributes = spool_attributes;
118    jcr->spool_data = spool_data;
119    jcr->fileset_md5 = get_pool_memory(PM_NAME);
120    pm_strcpy(jcr->fileset_md5, fileset_md5);
121
122    jcr->authenticated = false;
123
124    /*
125     * Pass back an authorization key for the File daemon
126     */
127    make_session_key(auth_key, NULL, 1);
128    bnet_fsend(dir, OKjob, jcr->VolSessionId, jcr->VolSessionTime, auth_key);
129    Dmsg1(110, ">dird: %s", dir->msg);
130    jcr->sd_auth_key = bstrdup(auth_key);
131    memset(auth_key, 0, sizeof(auth_key));
132
133    /*
134     * Wait for the device, media, and pool information
135     */
136    if (!use_device_cmd(jcr)) {
137       set_jcr_job_status(jcr, JS_ErrorTerminated);
138       memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
139       return false;
140    }
141
142    /* The following jobs don't need the FD */
143    switch (jcr->JobType) {
144    case JT_MIGRATION:
145    case JT_COPY:
146    case JT_ARCHIVE:
147       jcr->authenticated = true;
148       run_job(jcr);
149       return false;
150    }
151
152    set_jcr_job_status(jcr, JS_WaitFD);          /* wait for FD to connect */
153    dir_send_job_status(jcr);
154
155    gettimeofday(&tv, &tz);
156    timeout.tv_nsec = tv.tv_usec * 1000;
157    timeout.tv_sec = tv.tv_sec + 30 * 60;        /* wait 30 minutes */
158
159    Dmsg1(100, "%s waiting on FD to contact SD\n", jcr->Job);
160    /*
161     * Wait for the File daemon to contact us to start the Job,
162     *  when he does, we will be released, unless the 30 minutes
163     *  expires.
164     */
165    P(jcr->mutex);
166    for ( ;!job_canceled(jcr); ) {
167       errstat = pthread_cond_timedwait(&jcr->job_start_wait, &jcr->mutex, &timeout);
168       if (errstat == 0 || errstat == ETIMEDOUT) {
169          break;
170       }
171    }
172    V(jcr->mutex);
173
174    memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
175
176    if (jcr->authenticated && !job_canceled(jcr)) {
177       Dmsg1(100, "Running job %s\n", jcr->Job);
178       run_job(jcr);                   /* Run the job */
179    }
180    return false;
181 }
182
183 /*
184  * After receiving a connection (in job.c) if it is
185  *   from the File daemon, this routine is called.
186  */
187 void handle_filed_connection(BSOCK *fd, char *job_name)
188 {
189    JCR *jcr;
190
191    bmicrosleep(0, 50000);             /* wait 50 millisecs */
192    if (!(jcr=get_jcr_by_full_name(job_name))) {
193       Jmsg1(NULL, M_FATAL, 0, _("Job name not found: %s\n"), job_name);
194       Dmsg1(100, "Job name not found: %s\n", job_name);
195       return;
196    }
197
198    jcr->file_bsock = fd;
199    jcr->file_bsock->jcr = jcr;
200
201    Dmsg1(110, "Found Job %s\n", job_name);
202
203    if (jcr->authenticated) {
204       Jmsg2(jcr, M_FATAL, 0, "Hey!!!! JobId %u Job %s already authenticated.\n",
205          jcr->JobId, jcr->Job);
206       free_jcr(jcr);
207       return;
208    }
209
210    /*
211     * Authenticate the File daemon
212     */
213    if (jcr->authenticated || !authenticate_filed(jcr)) {
214       Dmsg1(100, "Authentication failed Job %s\n", jcr->Job);
215       Jmsg(jcr, M_FATAL, 0, _("Unable to authenticate File daemon\n"));
216    } else {
217       jcr->authenticated = true;
218       Dmsg1(110, "OK Authentication Job %s\n", jcr->Job);
219    }
220
221    P(jcr->mutex);
222    if (!jcr->authenticated) {
223       set_jcr_job_status(jcr, JS_ErrorTerminated);
224    }
225    pthread_cond_signal(&jcr->job_start_wait); /* wake waiting job */
226    V(jcr->mutex);
227    free_jcr(jcr);
228    return;
229 }
230
231
232 /*
233  *   Use Device command from Director
234  *   He tells is what Device Name to use, the Media Type,
235  *      the Pool Name, and the Pool Type.
236  *
237  *    Ensure that the device exists and is opened, then store
238  *      the media and pool info in the JCR.
239  */
240 static bool use_device_cmd(JCR *jcr)
241 {
242    POOL_MEM dev_name, media_type, pool_name, pool_type;
243    BSOCK *dir = jcr->dir_bsock;
244    DEVRES *device;
245    bool quit = false;
246
247    while (!quit) {
248       bool ok;
249       if (bnet_recv(dir) <= 0) {
250          Jmsg0(jcr, M_FATAL, 0, _("No Device from Director\n"));
251          return false;
252       }
253
254       Dmsg1(120, "Use device: %s", dir->msg);
255       /*
256        * If there are multiple devices, the director sends us
257        *   use_devices (note plurel) until the last one, at which
258        *   time, it sends us a use_device command (note singlular)
259        *   so we stop looking after getting the use_device.
260        */
261       ok = sscanf(dir->msg, use_device, dev_name.c_str(), media_type.c_str(),
262                   pool_name.c_str(), pool_type.c_str()) == 4;
263       if (ok) {
264          quit = true;                 /* got last device */
265       } else {
266          ok = sscanf(dir->msg, use_devices, dev_name.c_str(), media_type.c_str(),
267                      pool_name.c_str(), pool_type.c_str()) == 4;
268       }
269       if (ok) {
270          unbash_spaces(dev_name);
271          unbash_spaces(media_type);
272          unbash_spaces(pool_name);
273          unbash_spaces(pool_type);
274          LockRes();
275          foreach_res(device, R_DEVICE) {
276             /* Find resource, and make sure we were able to open it */
277             if (fnmatch(dev_name.c_str(), device->hdr.name, 0) == 0 &&
278                 device->dev && strcmp(device->media_type, media_type.c_str()) == 0) {
279                const int name_len = MAX_NAME_LENGTH;
280                DCR *dcr;
281                UnlockRes();
282                dcr = new_dcr(jcr, device->dev);
283                if (!dcr) {
284                   return false;
285                }
286                Dmsg1(120, "Found device %s\n", device->hdr.name);
287                bstrncpy(dcr->pool_name, pool_name, name_len);
288                bstrncpy(dcr->pool_type, pool_type, name_len);
289                bstrncpy(dcr->media_type, media_type, name_len);
290                bstrncpy(dcr->dev_name, dev_name, name_len);
291                jcr->device = device;
292                Dmsg1(220, "Got: %s", dir->msg);
293                return bnet_fsend(dir, OK_device);
294             }
295          }
296          UnlockRes();
297          if (verbose) {
298             unbash_spaces(dir->msg);
299             pm_strcpy(jcr->errmsg, dir->msg);
300             Jmsg(jcr, M_INFO, 0, _("Failed command: %s\n"), jcr->errmsg);
301          }
302          Jmsg(jcr, M_FATAL, 0, _("\n"
303             "     Device \"%s\" with MediaType \"%s\" requested by Dir not found in SD Device resources.\n"),
304               dev_name.c_str(), media_type.c_str());
305          bnet_fsend(dir, NO_device, dev_name.c_str());
306       } else {
307          unbash_spaces(dir->msg);
308          pm_strcpy(jcr->errmsg, dir->msg);
309          if (verbose) {
310             Jmsg(jcr, M_INFO, 0, _("Failed command: %s\n"), jcr->errmsg);
311          }
312          Jmsg(jcr, M_FATAL, 0, _("Bad Use Device command: %s\n"), jcr->errmsg);
313          bnet_fsend(dir, BAD_use, jcr->errmsg);
314       }
315    }
316
317    return false;                      /* ERROR return */
318 }
319
320 /*
321  * Destroy the Job Control Record and associated
322  * resources (sockets).
323  */
324 void stored_free_jcr(JCR *jcr)
325 {
326    if (jcr->file_bsock) {
327       bnet_close(jcr->file_bsock);
328       jcr->file_bsock = NULL;
329    }
330    if (jcr->job_name) {
331       free_pool_memory(jcr->job_name);
332    }
333    if (jcr->client_name) {
334       free_memory(jcr->client_name);
335       jcr->client_name = NULL;
336    }
337    if (jcr->fileset_name) {
338       free_memory(jcr->fileset_name);
339    }
340    if (jcr->fileset_md5) {
341       free_memory(jcr->fileset_md5);
342    }
343    if (jcr->bsr) {
344       free_bsr(jcr->bsr);
345       jcr->bsr = NULL;
346    }
347    if (jcr->RestoreBootstrap) {
348       unlink(jcr->RestoreBootstrap);
349       free_pool_memory(jcr->RestoreBootstrap);
350       jcr->RestoreBootstrap = NULL;
351    }
352    if (jcr->next_dev || jcr->prev_dev) {
353       Emsg0(M_FATAL, 0, _("In free_jcr(), but still attached to device!!!!\n"));
354    }
355    pthread_cond_destroy(&jcr->job_start_wait);
356    if (jcr->dcr) {
357       free_dcr(jcr->dcr);
358       jcr->dcr = NULL;
359    }
360    return;
361 }