]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/mountreq.c
35f57dfee8d971253aa554f9bc6844b8a0289c6e
[bacula/bacula] / bacula / src / dird / mountreq.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2001-2012 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *
30  *   Bacula Director -- mountreq.c -- handles the message channel
31  *    Mount request from the Storage daemon.
32  *
33  *     Kern Sibbald, March MMI
34  *
35  *    This routine runs as a thread and must be thread reentrant.
36  *
37  *  Basic tasks done here:
38  *      Handle Mount services.
39  *
40  */
41
42 #include "bacula.h"
43 #include "dird.h"
44
45 /*
46  * Handle mount request
47  *  For now, we put the bsock in the UA's queue
48  */
49
50 /* Requests from the Storage daemon */
51
52
53 /* Responses  sent to Storage daemon */
54 #ifdef xxx
55 static char OK_mount[]  = "1000 OK MountVolume\n";
56 #endif
57
58 static BQUEUE mountq = {&mountq, &mountq};
59 static int num_reqs = 0;
60 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
61
62 typedef struct mnt_req_s {
63    BQUEUE bq;
64    BSOCK *bs;
65    JCR *jcr;
66 } MNT_REQ;
67
68
69 void mount_request(JCR *jcr, BSOCK *bs, char *buf)
70 {
71    MNT_REQ *mreq;
72
73    mreq = (MNT_REQ *) malloc(sizeof(MNT_REQ));
74    memset(mreq, 0, sizeof(MNT_REQ));
75    mreq->jcr = jcr;
76    mreq->bs = bs;
77    P(mutex);
78    num_reqs++;
79    qinsert(&mountq, &mreq->bq);
80    V(mutex);
81    return;
82 }