]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/getmsg.c
New var.c file + implement multiple simultaneous jobs
[bacula/bacula] / bacula / src / dird / getmsg.c
1 /*
2  *
3  *   Bacula Director -- routines to receive network data and
4  *    handle network signals. These routines handle the connections
5  *    to the Storage daemon and the File daemon.
6  *
7  *     Kern Sibbald, August MM
8  *
9  *    This routine runs as a thread and must be thread reentrant.
10  *
11  *  Basic tasks done here:
12  *    Handle  network signals (signals).  
13  *       Signals always have return status 0 from bnet_recv() and
14  *       a zero or negative message length.
15  *    Pass appropriate messages back to the caller (responses).  
16  *       Responses always have a digit as the first character.
17  *    Handle requests for message and catalog services (requests).  
18  *       Requests are any message that does not begin with a digit.
19  *       In affect, they are commands.
20  *
21  *   Version $Id$
22  */
23 /*
24    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
25
26    This program is free software; you can redistribute it and/or
27    modify it under the terms of the GNU General Public License as
28    published by the Free Software Foundation; either version 2 of
29    the License, or (at your option) any later version.
30
31    This program is distributed in the hope that it will be useful,
32    but WITHOUT ANY WARRANTY; without even the implied warranty of
33    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34    General Public License for more details.
35
36    You should have received a copy of the GNU General Public
37    License along with this program; if not, write to the Free
38    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
39    MA 02111-1307, USA.
40
41  */
42
43 #include "bacula.h"
44 #include "dird.h"
45
46 /* Forward referenced functions */
47 static char *find_msg_start(char *msg);
48
49 static char OK_msg[] = "1000 OK\n";
50
51 /*
52  * Get a message
53  *  Call appropriate processing routine
54  *  If it is not a Jmsg or a ReqCat message,
55  *   return it to the caller.
56  *
57  *  This routine is called to get the next message from
58  *  another daemon. If the message is in canonical message
59  *  format and the type is known, it will be dispatched
60  *  to the appropriate handler.  If the message is
61  *  in any other format, it will be returned. 
62  *
63  *  E.g. any message beginning with a digit will be returned.
64  *       any message beginning with Jmsg will be processed.
65  *
66  */
67 int bget_dirmsg(BSOCK *bs)
68 {
69    int32_t n;
70    char Job[MAX_NAME_LENGTH];
71    char MsgType[20];
72    int type, level;
73    JCR *jcr;
74    char *msg;
75
76    for (;;) {
77       n = bnet_recv(bs);
78       Dmsg2(120, "bget_dirmsg %d: %s\n", n, bs->msg);
79
80       if (is_bnet_stop(bs)) {
81          return n;                    /* error or terminate */
82       }
83       if (n == BNET_SIGNAL) {          /* handle signal */
84          /* BNET_SIGNAL (-1) return from bnet_recv() => network signal */
85          switch (bs->msglen) {
86          case BNET_EOD:            /* end of data */
87             return n;
88          case BNET_EOD_POLL:
89             bnet_fsend(bs, OK_msg);/* send response */
90             return n;              /* end of data */
91          case BNET_TERMINATE:
92             bs->terminated = 1;
93             return n;
94          case BNET_POLL:
95             bnet_fsend(bs, OK_msg); /* send response */
96             break;
97          case BNET_HEARTBEAT:
98        /*   Dmsg0(000, "Got heartbeat.\n"); */
99             break;
100          case BNET_HB_RESPONSE:
101             break;
102          case BNET_STATUS:
103             /* *****FIXME***** Implement more completely */
104             bnet_fsend(bs, "Status OK\n");
105             bnet_sig(bs, BNET_EOD);
106             break;
107          default:
108             Emsg1(M_WARNING, 0, _("bget_dirmsg: unknown bnet signal %d\n"), bs->msglen);
109             return n;
110          }
111          continue;
112       }
113      
114       /* Handle normal data */
115
116       if (n > 0 && B_ISDIGIT(bs->msg[0])) {      /* response? */
117          return n;                    /* yes, return it */
118       }
119         
120       /*
121        * If we get here, it must be a request.  Either
122        *  a message to dispatch, or a catalog request.
123        *  Try to fulfill it.
124        */
125       if (sscanf(bs->msg, "%020s Job=%127s ", MsgType, Job) != 2) {
126          Emsg1(M_ERROR, 0, _("Malformed message: %s\n"), bs->msg);
127          continue;
128       }
129       if (!(jcr=get_jcr_by_full_name(Job))) {
130          Emsg1(M_ERROR, 0, _("Job not found: %s\n"), bs->msg);
131          continue;
132       }
133       Dmsg1(200, "Getmsg got jcr 0x%x\n", jcr);
134
135       /* Skip past "Jmsg Job=nnn" */
136       if (!(msg=find_msg_start(bs->msg))) {
137          Emsg1(M_ERROR, 0, _("Malformed message: %s\n"), bs->msg);
138          free_jcr(jcr);
139          continue;
140       }
141
142       /* 
143        * Here we are expecting a message of the following format:
144        *   Jmsg Job=nnn type=nnn level=nnn Message-string
145        */
146       if (bs->msg[0] == 'J') {           /* Job message */
147          if (sscanf(bs->msg, "Jmsg Job=%127s type=%d level=%d", 
148                     Job, &type, &level) != 3) {
149             Emsg1(M_ERROR, 0, _("Malformed message: %s\n"), bs->msg);
150             free_jcr(jcr);
151             continue;
152          }
153          Dmsg1(120, "Got msg: %s\n", bs->msg);
154          skip_spaces(&msg);
155          skip_nonspaces(&msg);        /* skip type=nnn */
156          skip_spaces(&msg);
157          skip_nonspaces(&msg);        /* skip level=nnn */
158          if (*msg == ' ') {
159             msg++;                    /* skip leading space */
160          }
161          Dmsg1(120, "Dispatch msg: %s", msg);
162          dispatch_message(jcr, type, level, msg);
163          free_jcr(jcr);
164          continue;
165       }
166       /* 
167        * Here we expact a CatReq message
168        *   CatReq Job=nn Catalog-Request-Message
169        */
170       if (bs->msg[0] == 'C') {        /* Catalog request */
171          Dmsg2(120, "Catalog req jcr 0x%x: %s", jcr, bs->msg);
172          catalog_request(jcr, bs, msg);
173          Dmsg1(200, "Calling freejcr 0x%x\n", jcr);
174          free_jcr(jcr);
175          continue;
176       }
177       if (bs->msg[0] == 'U') {        /* Catalog update */
178          Dmsg2(120, "Catalog upd jcr 0x%x: %s", jcr, bs->msg);
179          catalog_update(jcr, bs, msg);
180          Dmsg1(200, "Calling freejcr 0x%x\n", jcr);
181          free_jcr(jcr);
182          continue;
183       }
184       if (bs->msg[0] == 'M') {        /* Mount request */
185          Dmsg1(120, "Mount req: %s", bs->msg);
186          mount_request(jcr, bs, msg);
187          free_jcr(jcr);
188          continue;
189       }
190       return n;
191    }
192 }
193
194 static char *find_msg_start(char *msg)
195 {
196    char *p = msg;
197
198    skip_nonspaces(&p);                /* skip message type */
199    skip_spaces(&p);
200    skip_nonspaces(&p);                /* skip Job */
201    skip_spaces(&p);                   /* after spaces come the message */
202    return p;
203 }
204
205 /*
206  * Get response from File daemon to a command we
207  * sent. Check that the response agrees with what we expect.
208  *
209  *  Returns: 0 on failure
210  *           1 on success
211  */
212 int response(JCR *jcr, BSOCK *fd, char *resp, char *cmd, e_prtmsg prtmsg)
213 {
214    int n;
215
216    if (is_bnet_error(fd)) {
217       return 0;
218    }
219    if ((n = bget_dirmsg(fd)) >= 0) {
220       Dmsg0(110, fd->msg);
221       if (strcmp(fd->msg, resp) == 0) {
222          return 1;
223       }
224       if (prtmsg == DISPLAY_ERROR) {
225          Jmsg(jcr, M_FATAL, 0, _("FD gave bad response to %s command: wanted %s got: %s\n"),
226             cmd, resp, fd->msg);
227       }
228       return 0;
229    } 
230    Jmsg(jcr, M_FATAL, 0, _("Socket error from Filed on %s command: ERR=%s\n"),
231          cmd, bnet_strerror(fd));
232    return 0;
233 }