]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/msgchan.c
Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
[bacula/bacula] / bacula / src / dird / msgchan.c
1 /*
2  *
3  *   Bacula Director -- msgchan.c -- handles the message channel
4  *    to the Storage daemon and the File daemon.
5  *
6  *     Kern Sibbald, August MM
7  *
8  *    This routine runs as a thread and must be thread reentrant.
9  *
10  *  Basic tasks done here:
11  *    Open a message channel with the Storage daemon
12  *      to authenticate ourself and to pass the JobId.
13  *    Create a thread to interact with the Storage daemon
14  *      who returns a job status and requests Catalog services, etc.
15  *
16  *   Version $Id$
17  */
18 /*
19    Copyright (C) 2000-2004 Kern Sibbald
20
21    This program is free software; you can redistribute it and/or
22    modify it under the terms of the GNU General Public License as
23    published by the Free Software Foundation; either version 2 of
24    the License, or (at your option) any later version.
25
26    This program is distributed in the hope that it will be useful,
27    but WITHOUT ANY WARRANTY; without even the implied warranty of
28    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29    General Public License for more details.
30
31    You should have received a copy of the GNU General Public
32    License along with this program; if not, write to the Free
33    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
34    MA 02111-1307, USA.
35
36  */
37
38 #include "bacula.h"
39 #include "dird.h"
40
41 /* Commands sent to Storage daemon */
42 static char jobcmd[]     = "JobId=%d job=%s job_name=%s client_name=%s "
43 "type=%d level=%d FileSet=%s NoAttr=%d SpoolAttr=%d FileSetMD5=%s SpoolData=%d";
44 static char use_device[] = "use device=%s media_type=%s pool_name=%s pool_type=%s\n";
45
46 /* Response from Storage daemon */
47 static char OKjob[]      = "3000 OK Job SDid=%d SDtime=%d Authorization=%100s\n";
48 static char OK_device[]  = "3000 OK use device\n";
49
50 /* Storage Daemon requests */
51 static char Job_start[]  = "3010 Job %127s start\n";
52 static char Job_end[]    =
53    "3099 Job %127s end JobStatus=%d JobFiles=%d JobBytes=%" lld "\n";
54 static char Job_status[] = "3012 Job %127s jobstatus %d\n";
55
56 /* Forward referenced functions */
57 extern "C" void *msg_thread(void *arg);
58
59 /*
60  * Establish a message channel connection with the Storage daemon
61  * and perform authentication.
62  */
63 bool connect_to_storage_daemon(JCR *jcr, int retry_interval,
64                               int max_retry_time, int verbose)
65 {
66    BSOCK *sd;
67    STORE *store;
68
69    store = (STORE *)jcr->storage[0]->first();
70
71    /*
72     *  Open message channel with the Storage daemon
73     */
74    Dmsg2(200, "bnet_connect to Storage daemon %s:%d\n", store->address,
75       store->SDport);
76    sd = bnet_connect(jcr, retry_interval, max_retry_time,
77           _("Storage daemon"), store->address,
78           NULL, store->SDport, verbose);
79    if (sd == NULL) {
80       return false;
81    }
82    sd->res = (RES *)store;        /* save pointer to other end */
83    jcr->store_bsock = sd;
84
85    if (!authenticate_storage_daemon(jcr, store)) {
86       return false;
87    }
88    return true;
89 }
90
91 /*
92  * Start a job with the Storage daemon
93  */
94 int start_storage_daemon_job(JCR *jcr)
95 {
96    int status = 0;
97    STORE *storage;
98    BSOCK *sd;
99    char auth_key[100];
100    POOL_MEM device_name, pool_name, pool_type, media_type;
101    int i;
102
103    sd = jcr->store_bsock;
104    /*
105     * Now send JobId and permissions, and get back the authorization key.
106     */
107    bash_spaces(jcr->job->hdr.name);
108    bash_spaces(jcr->client->hdr.name);
109    bash_spaces(jcr->fileset->hdr.name);
110    if (jcr->fileset->MD5[0] == 0) {
111       strcpy(jcr->fileset->MD5, "**Dummy**");
112    }
113    bnet_fsend(sd, jobcmd, jcr->JobId, jcr->Job, jcr->job->hdr.name,
114               jcr->client->hdr.name, jcr->JobType, jcr->JobLevel,
115               jcr->fileset->hdr.name, !jcr->pool->catalog_files,
116               jcr->job->SpoolAttributes, jcr->fileset->MD5, jcr->spool_data);
117    Dmsg1(200, "Jobcmd=%s\n", sd->msg);
118    unbash_spaces(jcr->job->hdr.name);
119    unbash_spaces(jcr->client->hdr.name);
120    unbash_spaces(jcr->fileset->hdr.name);
121    if (bget_dirmsg(sd) > 0) {
122        Dmsg1(110, "<stored: %s", sd->msg);
123        if (sscanf(sd->msg, OKjob, &jcr->VolSessionId,
124                   &jcr->VolSessionTime, &auth_key) != 3) {
125           Dmsg1(100, "BadJob=%s\n", sd->msg);
126           Jmsg(jcr, M_FATAL, 0, _("Storage daemon rejected Job command: %s\n"), sd->msg);
127           return 0;
128        } else {
129           jcr->sd_auth_key = bstrdup(auth_key);
130           Dmsg1(150, "sd_auth_key=%s\n", jcr->sd_auth_key);
131        }
132    } else {
133       Jmsg(jcr, M_FATAL, 0, _("<stored: bad response to Job command: %s\n"),
134          bnet_strerror(sd));
135       return 0;
136    }
137
138    /*
139     * Send use device = xxx media = yyy pool = zzz
140     */
141
142    for (i=0; i < MAX_STORE; i++) {
143       if (jcr->storage[i]) {
144          storage = (STORE *)jcr->storage[i]->first();
145          pm_strcpy(device_name, storage->dev_name);
146          pm_strcpy(media_type, storage->media_type);
147          pm_strcpy(pool_type, jcr->pool->pool_type);
148          pm_strcpy(pool_name, jcr->pool->hdr.name);
149          bash_spaces(device_name);
150          bash_spaces(media_type);
151          bash_spaces(pool_type);
152          bash_spaces(pool_name);
153          bnet_fsend(sd, use_device, device_name.c_str(),
154                     media_type.c_str(), pool_name.c_str(), pool_type.c_str());
155          Dmsg1(110, ">stored: %s", sd->msg);
156          status = response(jcr, sd, OK_device, "Use Device", NO_DISPLAY);
157          if (!status) {
158             pm_strcpy(pool_type, sd->msg); /* save message */
159             Jmsg(jcr, M_FATAL, 0, _("\n"
160                "     Storage daemon didn't accept Device \"%s\" because:\n     %s"),
161                device_name.c_str(), pool_type.c_str()/* sd->msg */);
162          }
163       }
164    }
165    return status;
166 }
167
168 /*
169  * Start a thread to handle Storage daemon messages and
170  *  Catalog requests.
171  */
172 int start_storage_daemon_message_thread(JCR *jcr)
173 {
174    int status;
175    pthread_t thid;
176
177    P(jcr->mutex);
178    jcr->use_count++;                  /* mark in use by msg thread */
179    jcr->sd_msg_thread_done = false;
180    jcr->SD_msg_chan = 0;
181    V(jcr->mutex);
182    Dmsg0(100, "Start SD msg_thread.\n");
183    if ((status=pthread_create(&thid, NULL, msg_thread, (void *)jcr)) != 0) {
184       Jmsg1(jcr, M_ABORT, 0, _("Cannot create message thread: %s\n"), strerror(status));
185    }
186    Dmsg0(100, "SD msg_thread started.\n");
187    /* Wait for thread to start */
188    while (jcr->SD_msg_chan == 0) {
189       bmicrosleep(0, 50);
190    }
191    return 1;
192 }
193
194 extern "C" void msg_thread_cleanup(void *arg)
195 {
196    JCR *jcr = (JCR *)arg;
197    Dmsg0(200, "End msg_thread\n");
198    db_end_transaction(jcr, jcr->db);       /* terminate any open transaction */
199    P(jcr->mutex);
200    jcr->sd_msg_thread_done = true;
201    pthread_cond_broadcast(&jcr->term_wait); /* wakeup any waiting threads */
202    jcr->SD_msg_chan = 0;
203    V(jcr->mutex);
204    free_jcr(jcr);                     /* release jcr */
205 }
206
207 /*
208  * Handle the message channel (i.e. requests from the
209  *  Storage daemon).
210  * Note, we are running in a separate thread.
211  */
212 extern "C"
213 void *msg_thread(void *arg)
214 {
215    JCR *jcr = (JCR *)arg;
216    BSOCK *sd;
217    int JobStatus;
218    char Job[MAX_NAME_LENGTH];
219    uint32_t JobFiles;
220    uint64_t JobBytes;
221    int stat;
222
223    pthread_detach(pthread_self());
224    jcr->SD_msg_chan = pthread_self();
225    pthread_cleanup_push(msg_thread_cleanup, arg);
226    sd = jcr->store_bsock;
227
228    /* Read the Storage daemon's output.
229     */
230    Dmsg0(100, "Start msg_thread loop\n");
231    while ((stat=bget_dirmsg(sd)) >= 0) {
232       Dmsg1(200, "<stored: %s", sd->msg);
233       if (sscanf(sd->msg, Job_start, &Job) == 1) {
234          continue;
235       }
236       if (sscanf(sd->msg, Job_end, &Job, &JobStatus, &JobFiles,
237                  &JobBytes) == 4) {
238          jcr->SDJobStatus = JobStatus; /* termination status */
239          jcr->SDJobFiles = JobFiles;
240          jcr->SDJobBytes = JobBytes;
241          break;
242       }
243       if (sscanf(sd->msg, Job_status, &Job, &JobStatus) == 2) {
244          jcr->SDJobStatus = JobStatus; /* current status */
245          continue;
246       }
247    }
248    if (is_bnet_error(sd)) {
249       jcr->SDJobStatus = JS_ErrorTerminated;
250    }
251    pthread_cleanup_pop(1);
252    return NULL;
253 }
254
255 void wait_for_storage_daemon_termination(JCR *jcr)
256 {
257    int cancel_count = 0;
258    /* Now wait for Storage daemon to terminate our message thread */
259    set_jcr_job_status(jcr, JS_WaitSD);
260    P(jcr->mutex);
261    while (!jcr->sd_msg_thread_done) {
262       struct timeval tv;
263       struct timezone tz;
264       struct timespec timeout;
265
266       gettimeofday(&tv, &tz);
267       timeout.tv_nsec = 0;
268       timeout.tv_sec = tv.tv_sec + 10; /* wait 10 seconds */
269       Dmsg0(300, "I'm waiting for message thread termination.\n");
270       pthread_cond_timedwait(&jcr->term_wait, &jcr->mutex, &timeout);
271       if (job_canceled(jcr)) {
272          cancel_count++;
273       }
274       /* Give SD 30 seconds to clean up after cancel */
275       if (cancel_count == 3) {
276          break;
277       }
278    }
279    V(jcr->mutex);
280    set_jcr_job_status(jcr, JS_Terminated);
281 }