]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/heartbeat.c
Add extern C to callback functions
[bacula/bacula] / bacula / src / filed / heartbeat.c
1 /*
2  *  Bacula File Daemon heartbeat routines
3  *    Listens for heartbeats coming from the SD
4  *    If configured, sends heartbeats to Dir
5  *
6  *    Kern Sibbald, May MMIII
7  *
8  *   Version $Id$
9  *
10  */
11 /*
12    Copyright (C) 2000-2003 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 "filed.h"
33
34 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
35 /* pthread_kill() dies on Cygwin, so disable it */
36 #define pthread_kill(x, y)
37 /* Use shorter wait interval on Cygwin because no kill */
38 #define WAIT_INTERVAL 10
39  
40 #else   /* Unix systems */
41 #define WAIT_INTERVAL 60
42 #endif
43
44 extern "C" void *sd_heartbeat_thread(void *arg);
45 extern "C" void *dir_heartbeat_thread(void *arg);
46
47
48 /* 
49  * Listen on the SD socket for heartbeat signals.
50  * Send heartbeats to the Director every HB_TIME
51  *   seconds.
52  */
53 extern "C" void *sd_heartbeat_thread(void *arg)
54 {
55    int32_t n;
56    JCR *jcr = (JCR *)arg;
57    BSOCK *sd, *dir;
58    time_t last_heartbeat = time(NULL);
59    time_t now;
60
61    pthread_detach(pthread_self());
62
63    /* Get our own local copy */
64    sd = dup_bsock(jcr->store_bsock);
65    dir = dup_bsock(jcr->dir_bsock);
66
67    jcr->hb_bsock = sd;
68
69    /* Hang reading the socket to the SD, and every time we get
70     *   a heartbeat or we get a wait timeout (1 minute), we
71     *   check to see if we need to send a heartbeat to the
72     *   Directory.
73     */
74    for ( ; !is_bnet_stop(sd); ) {
75       n = bnet_wait_data_intr(sd, WAIT_INTERVAL);
76       if (me->heartbeat_interval) {
77          now = time(NULL);
78          if (now-last_heartbeat >= me->heartbeat_interval) {
79             bnet_sig(dir, BNET_HEARTBEAT);
80             last_heartbeat = now;
81          }
82       }
83       if (n == 1) {                   /* input waiting */
84          bnet_recv(sd);               /* read it -- probably heartbeat from sd */
85          Dmsg1(100, "Got %d from SD\n", sd->msglen);     
86       }
87    }
88    bnet_close(sd);
89    bnet_close(dir);
90    jcr->hb_bsock = NULL;
91    return NULL;
92 }
93
94 /* Startup the heartbeat thread -- see above */
95 void start_heartbeat_monitor(JCR *jcr)
96 {
97    jcr->hb_bsock = NULL;
98    pthread_create(&jcr->heartbeat_id, NULL, sd_heartbeat_thread, (void *)jcr);
99 }
100
101 /* Terminate the heartbeat thread. Used for both SD and DIR */
102 void stop_heartbeat_monitor(JCR *jcr) 
103 {
104    int cnt = 0;
105    /* Wait max 10 secs for heartbeat thread to start */
106    while (jcr->hb_bsock == NULL && cnt++ < 200) {
107       bmicrosleep(0, 50);             /* avoid race */
108    }
109
110    if (jcr->hb_bsock) {
111       jcr->hb_bsock->timed_out = 1;   /* set timed_out to terminate read */
112       jcr->hb_bsock->terminated = 1;  /* set to terminate read */
113    }
114    cnt = 0;
115    /* Wait max 100 secs for heartbeat thread to stop */
116    while (jcr->hb_bsock && cnt++ < 200) {
117       /* Naturally, Cygwin 1.3.20 craps out on the following */
118       pthread_kill(jcr->heartbeat_id, TIMEOUT_SIGNAL);  /* make heartbeat thread go away */
119       bmicrosleep(0, 500);
120    }
121 }
122
123 /*
124  * Thread for sending heartbeats to the Director when there
125  *   is no SD monitoring needed -- e.g. restore and verify Vol
126  *   both do their own read() on the SD socket.
127  */
128 extern "C" void *dir_heartbeat_thread(void *arg)
129 {
130    JCR *jcr = (JCR *)arg;
131    BSOCK *dir;
132    time_t last_heartbeat = time(NULL);
133
134    pthread_detach(pthread_self());
135
136    /* Get our own local copy */
137    dir = dup_bsock(jcr->dir_bsock);
138
139    jcr->hb_bsock = dir;
140
141    for ( ; !is_bnet_stop(dir); ) {
142       time_t now, next;
143
144       now = time(NULL);
145       next = now - last_heartbeat;
146       if (next >= me->heartbeat_interval) {
147          bnet_sig(dir, BNET_HEARTBEAT);
148          last_heartbeat = now;
149       }
150       bmicrosleep(next, 0);
151    }
152    bnet_close(dir);
153    jcr->hb_bsock = NULL;
154    return NULL;
155 }
156
157 /*
158  * Same as above but we don't listen to the SD
159  */
160 void start_dir_heartbeat(JCR *jcr)
161 {
162    if (me->heartbeat_interval) {
163       pthread_create(&jcr->heartbeat_id, NULL, dir_heartbeat_thread, (void *)jcr);
164    }
165 }
166
167 void stop_dir_heartbeat(JCR *jcr)
168 {
169    if (me->heartbeat_interval) {
170       stop_heartbeat_monitor(jcr);
171    }
172 }