]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/bnet_server.c
Fix counter bugs reported by Chris Allen
[bacula/bacula] / bacula / src / lib / bnet_server.c
1 /*
2    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of
7    the License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public
15    License along with this program; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
17    MA 02111-1307, USA.
18
19  */
20  /* 
21   * Originally written by Kern Sibbald for inclusion in apcupsd,
22   *  but heavily modified for Bacula
23   *
24   *   Version $Id$
25   */
26
27 #include "bacula.h"
28 #undef DEV_BSIZE
29 #include <netinet/in.h>
30 #include <sys/socket.h>
31 #include <arpa/inet.h>
32 #include <netdb.h>
33 #ifdef HAVE_ARPA_NAMESER_H
34 #include <arpa/nameser.h>
35 #endif
36 #ifdef HAVE_RESOLV_H
37 #include <resolv.h>
38 #endif
39
40
41 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
42
43 #ifdef HAVE_LIBWRAP
44 #include "tcpd.h"
45 int allow_severity = LOG_NOTICE;
46 int deny_severity = LOG_WARNING;
47 #endif
48
49 /* Become Threaded Network Server */
50 void
51 bnet_thread_server(char *bind_addr, int port, int max_clients, workq_t *client_wq, 
52                    void *handle_client_request(void *bsock))
53 {
54    int newsockfd, sockfd, stat;
55    socklen_t clilen;
56    struct sockaddr_in cli_addr;       /* client's address */
57    struct sockaddr_in serv_addr;      /* our address */
58    struct in_addr bind_ip;            /* address to bind to */
59    int tlog;
60    fd_set ready, sockset;
61    int turnon = 1;
62    char *caller;
63 #ifdef HAVE_LIBWRAP
64    struct request_info request;
65 #endif
66
67    /*
68     * Open a TCP socket  
69     */
70    for (tlog=0; (sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0; tlog -= 10 ) {
71       if (tlog <= 0) {
72          tlog = 60; 
73          Emsg1(M_ERROR, 0, _("Cannot open stream socket: %s. Retrying ...\n"), strerror(errno));
74       }
75       bmicrosleep(10, 0);
76    }
77
78    /*
79     * Reuse old sockets 
80     */
81    if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
82       Emsg1(M_WARNING, 0, _("Cannot set SO_REUSEADDR on socket: %s\n"), strerror(errno));
83    }
84
85    /* 
86     * Bind our local address so that the client can send to us.
87     */
88    bind_ip.s_addr = htonl(INADDR_ANY);
89    if (bind_addr && bind_addr[0]) {
90 #ifdef HAVE_INET_PTON
91       if (inet_pton(AF_INET, bind_addr, &bind_ip) <= 0) {
92 #else
93       if (inet_aton(bind_addr, &bind_ip) <= 0) {
94 #endif
95          Emsg1(M_WARNING, 0, _("Invalid bind address: %s, using INADDR_ANY\n"),
96             bind_addr);
97          bind_ip.s_addr = htonl(INADDR_ANY);
98       }
99    }
100    memset((char *) &serv_addr, 0, sizeof(serv_addr));
101    serv_addr.sin_family = AF_INET;
102    serv_addr.sin_addr.s_addr = bind_ip.s_addr;
103    serv_addr.sin_port = htons(port);
104
105    int tmax = 30 * (60 / 5);          /* wait 30 minutes max */
106    for (tlog=0; bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0; tlog -= 5 ) {
107       if (tlog <= 0) {
108          tlog = 2*60;                 /* Complain every 2 minutes */
109          Emsg2(M_WARNING, 0, _("Cannot bind port %d: %s. Retrying ...\n"), port, strerror(errno));
110       }
111       bmicrosleep(5, 0);
112       if (--tmax <= 0) {
113          Emsg2(M_ABORT, 0, _("Cannot bind port %d: %s.\n"), port, strerror(errno));
114       }
115    }
116    listen(sockfd, 5);                 /* tell system we are ready */
117
118    FD_ZERO(&sockset);
119    FD_SET(sockfd, &sockset);
120
121    /* Start work queue thread */
122    if ((stat = workq_init(client_wq, max_clients, handle_client_request)) != 0) {
123       Emsg1(M_ABORT, 0, _("Could not init client queue: ERR=%s\n"), strerror(stat));
124    }
125
126    for (;;) {
127       /* 
128        * Wait for a connection from a client process.
129        */
130       ready = sockset;
131       if ((stat = select(sockfd+1, &ready, NULL, NULL, NULL)) < 0) {
132          if (errno == EINTR || errno == EAGAIN) {
133             errno = 0;
134             continue;
135          }
136          close(sockfd);
137          Emsg1(M_FATAL, 0, _("Error in select: %s\n"), strerror(errno));
138          break;
139       }
140       do {
141          clilen = sizeof(cli_addr);
142          newsockfd = accept(sockfd, (struct sockaddr *)&cli_addr, &clilen);
143       } while (newsockfd < 0 && errno == EINTR);
144       if (newsockfd < 0) {
145          continue;
146       }
147
148 #ifdef HAVE_LIBWRAP
149       P(mutex);                       /* hosts_access is not thread safe */
150       request_init(&request, RQ_DAEMON, my_name, RQ_FILE, newsockfd, 0);
151       fromhost(&request);
152       if (!hosts_access(&request)) {
153          V(mutex);
154          Jmsg2(NULL, M_WARNING, 0, _("Connection from %s:%d refused by hosts.access"),
155                inet_ntoa(cli_addr.sin_addr), ntohs(cli_addr.sin_port));
156          close(newsockfd);
157          continue;
158       }
159       V(mutex);
160 #endif
161
162       /*
163        * Receive notification when connection dies.
164        */
165       if (setsockopt(newsockfd, SOL_SOCKET, SO_KEEPALIVE, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
166          Emsg1(M_WARNING, 0, _("Cannot set SO_KEEPALIVE on socket: %s\n") , strerror(errno));
167       }
168
169       /* see who client is. i.e. who connected to us. */
170       P(mutex);
171       caller = inet_ntoa(cli_addr.sin_addr);  /* NOT thread safe, use mutex */
172       if (caller == NULL) {
173          caller = "unknown client";
174       }
175
176       /* Queue client to be served */
177       if ((stat = workq_add(client_wq, 
178             (void *)init_bsock(NULL, newsockfd, "client", caller, port), NULL, 0)) != 0) {
179          V(mutex);
180          Jmsg1(NULL, M_ABORT, 0, _("Could not add job to client queue: ERR=%s\n"), strerror(stat));
181       }
182       V(mutex);
183    }
184 }   
185
186
187 #ifdef REALLY_USED   
188 /*
189  * Bind an address so that we may accept connections
190  * one at a time.
191  */
192 BSOCK *
193 bnet_bind(int port)
194 {
195    int sockfd;
196    struct sockaddr_in serv_addr;      /* our address */
197    int tlog;
198    int turnon = 1;
199
200    /*
201     * Open a TCP socket  
202     */
203    for (tlog=0; (sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0; tlog -= 10 ) {
204       if (errno == EINTR) {
205          continue;
206       }
207       if (tlog <= 0) {
208          tlog = 2*60; 
209          Emsg1(M_ERROR, 0, _("Cannot open stream socket: %s\n"), strerror(errno));
210       }
211       bmicrosleep(60, 0);
212    }
213
214    /*
215     * Reuse old sockets 
216     */
217    if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
218       Emsg1(M_WARNING, 0, _("Cannot set SO_REUSEADDR on socket: %s\n") , strerror(errno));
219    }
220
221    /* 
222     * Bind our local address so that the client can send to us.
223     */
224    bzero((char *) &serv_addr, sizeof(serv_addr));
225    serv_addr.sin_family = AF_INET;
226    serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
227    serv_addr.sin_port = htons(port);
228
229    for (tlog=0; bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0; tlog -= 5 ) {
230       if (errno == EINTR) {
231          continue;
232       }
233       if (tlog <= 0) {
234          tlog = 2*60;
235          Emsg2(M_WARNING, 0, _("Cannot bind port %d: %s: retrying ...\n"), port, strerror(errno));
236       }
237       bmicrosleep(5, 0);
238    }
239    listen(sockfd, 1);                 /* tell system we are ready */
240    return init_bsock(NULL, sockfd, _("Server socket"), _("client"), port);
241 }
242
243 /*
244  * Accept a single connection 
245  */
246 BSOCK *
247 bnet_accept(BSOCK *bsock, char *who)
248 {
249    fd_set ready, sockset;
250    int newsockfd, stat, len;
251    socklen_t clilen;
252    struct sockaddr_in cli_addr;       /* client's address */
253    char *caller, *buf;
254    BSOCK *bs;
255    int turnon = 1;
256 #ifdef HAVE_LIBWRAP
257    struct request_info request;
258 #endif
259
260    /* 
261     * Wait for a connection from the client process.
262     */
263    FD_ZERO(&sockset);
264    FD_SET(bsock->fd, &sockset);
265
266    for (;;) {
267       /* 
268        * Wait for a connection from a client process.
269        */
270       ready = sockset;
271       if ((stat = select(bsock->fd+1, &ready, NULL, NULL, NULL)) < 0) {
272          if (errno == EINTR || errno == EAGAIN) {
273             errno = 0;
274             continue;
275          }
276          Emsg1(M_FATAL, 0, _("Error in select: %s\n"), strerror(errno));
277          newsockfd = -1;
278          break;
279       }
280       do {
281          clilen = sizeof(cli_addr);
282          newsockfd = accept(bsock->fd, (struct sockaddr *)&cli_addr, &clilen);
283       } while (newsockfd < 0 && errno == EINTR);
284       if (newsockfd >= 0) {
285          break;
286       }
287    }
288
289 #ifdef HAVE_LIBWRAP
290    P(mutex);
291    request_init(&request, RQ_DAEMON, my_name, RQ_FILE, newsockfd, 0);
292    fromhost(&request);
293    if (!hosts_access(&request)) {
294       V(mutex);
295       Emsg2(M_WARNING, 0, _("Connection from %s:%d refused by hosts.access"),
296             inet_ntoa(cli_addr.sin_addr), ntohs(cli_addr.sin_port));
297       close(newsockfd);
298       return NULL;
299    }
300    V(mutex);
301 #endif
302
303    /*
304     * Receive notification when connection dies.
305     */
306    if (setsockopt(newsockfd, SOL_SOCKET, SO_KEEPALIVE, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
307       Emsg1(M_WARNING, 0, _("Cannot set SO_KEEPALIVE on socket: %s\n"), strerror(errno));
308    }
309
310    /* see who client is. I.e. who connected to us.
311     * return it in the input message buffer.
312     */
313    if ((caller = inet_ntoa(cli_addr.sin_addr)) != NULL) {
314       pm_strcpy(&bsock->msg, caller);
315    } else {
316       bsock->msg[0] = 0;
317    }
318    bsock->msglen = strlen(bsock->msg);
319
320    if (newsockfd < 0) {
321       Emsg2(M_FATAL, 0, _("Socket accept error for %s. ERR=%s\n"), who,
322             strerror(errno));
323       return NULL;
324    } else {
325       if (caller == NULL) {
326          caller = "unknown";
327       }
328       len = strlen(caller) + strlen(who) + 3;
329       buf = (char *) malloc(len);
330       strcpy(buf, who);
331       strcat(buf, ": ");
332       strcat(buf, caller);
333       bs = init_bsock(NULL, newsockfd, "client", buf, bsock->port);
334       free(buf);
335       return bs;                      /* return new BSOCK */
336    }
337 }   
338
339 #endif