]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/bnet_server.c
Implement Win32 data detection code
[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       clilen = sizeof(cli_addr);
141       newsockfd = accept(sockfd, (struct sockaddr *)&cli_addr, &clilen);
142
143 #ifdef HAVE_LIBWRAP
144       P(mutex);                       /* hosts_access is not thread safe */
145       request_init(&request, RQ_DAEMON, my_name, RQ_FILE, newsockfd, 0);
146       fromhost(&request);
147       if (!hosts_access(&request)) {
148          V(mutex);
149          Jmsg2(NULL, M_WARNING, 0, _("Connection from %s:%d refused by hosts.access"),
150                inet_ntoa(cli_addr.sin_addr), ntohs(cli_addr.sin_port));
151          close(newsockfd);
152          continue;
153       }
154       V(mutex);
155 #endif
156
157       /*
158        * Receive notification when connection dies.
159        */
160       if (setsockopt(newsockfd, SOL_SOCKET, SO_KEEPALIVE, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
161          Emsg1(M_WARNING, 0, _("Cannot set SO_KEEPALIVE on socket: %s\n") , strerror(errno));
162       }
163
164       /* see who client is. i.e. who connected to us. */
165       P(mutex);
166       caller = inet_ntoa(cli_addr.sin_addr);  /* NOT thread safe, use mutex */
167       if (caller == NULL) {
168          caller = "unknown client";
169       }
170
171       /* Queue client to be served */
172       if ((stat = workq_add(client_wq, 
173             (void *)init_bsock(NULL, newsockfd, "client", caller, port), NULL, 0)) != 0) {
174          V(mutex);
175          Jmsg1(NULL, M_ABORT, 0, _("Could not add job to client queue: ERR=%s\n"), strerror(stat));
176       }
177       V(mutex);
178    }
179 }   
180
181
182 #ifdef REALLY_USED   
183 /*
184  * Bind an address so that we may accept connections
185  * one at a time.
186  */
187 BSOCK *
188 bnet_bind(int port)
189 {
190    int sockfd;
191    struct sockaddr_in serv_addr;      /* our address */
192    int tlog;
193    int turnon = 1;
194
195    /*
196     * Open a TCP socket  
197     */
198    for (tlog=0; (sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0; tlog -= 10 ) {
199       if (tlog <= 0) {
200          tlog = 2*60; 
201          Emsg1(M_ERROR, 0, _("Cannot open stream socket: %s\n"), strerror(errno));
202       }
203       bmicrosleep(60, 0);
204    }
205
206    /*
207     * Reuse old sockets 
208     */
209    if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
210       Emsg1(M_WARNING, 0, _("Cannot set SO_REUSEADDR on socket: %s\n") , strerror(errno));
211    }
212
213    /* 
214     * Bind our local address so that the client can send to us.
215     */
216    bzero((char *) &serv_addr, sizeof(serv_addr));
217    serv_addr.sin_family = AF_INET;
218    serv_addr.sin_addr.s_addr = htonl(INADDR_ANY);
219    serv_addr.sin_port = htons(port);
220
221    for (tlog=0; bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0; tlog -= 5 ) {
222       if (tlog <= 0) {
223          tlog = 2*60;
224          Emsg2(M_WARNING, 0, _("Cannot bind port %d: %s: retrying ...\n"), port, strerror(errno));
225       }
226       bmicrosleep(5, 0);
227    }
228    listen(sockfd, 1);                 /* tell system we are ready */
229    return init_bsock(NULL, sockfd, _("Server socket"), _("client"), port);
230 }
231
232 /*
233  * Accept a single connection 
234  */
235 BSOCK *
236 bnet_accept(BSOCK *bsock, char *who)
237 {
238    fd_set ready, sockset;
239    int newsockfd, stat, len;
240    socklen_t clilen;
241    struct sockaddr_in cli_addr;       /* client's address */
242    char *caller, *buf;
243    BSOCK *bs;
244    int turnon = 1;
245 #ifdef HAVE_LIBWRAP
246    struct request_info request;
247 #endif
248
249    /* 
250     * Wait for a connection from the client process.
251     */
252    FD_ZERO(&sockset);
253    FD_SET(bsock->fd, &sockset);
254
255    for (;;) {
256       /* 
257        * Wait for a connection from a client process.
258        */
259       ready = sockset;
260       if ((stat = select(bsock->fd+1, &ready, NULL, NULL, NULL)) < 0) {
261          if (errno == EINTR || errno == EAGAIN) {
262             errno = 0;
263             continue;
264          }
265          Emsg1(M_FATAL, 0, _("Error in select: %s\n"), strerror(errno));
266          newsockfd = -1;
267          break;
268       }
269       clilen = sizeof(cli_addr);
270       newsockfd = accept(bsock->fd, (struct sockaddr *)&cli_addr, &clilen);
271       break;
272    }
273
274 #ifdef HAVE_LIBWRAP
275    P(mutex);
276    request_init(&request, RQ_DAEMON, my_name, RQ_FILE, newsockfd, 0);
277    fromhost(&request);
278    if (!hosts_access(&request)) {
279       V(mutex);
280       Emsg2(M_WARNING, 0, _("Connection from %s:%d refused by hosts.access"),
281             inet_ntoa(cli_addr.sin_addr), ntohs(cli_addr.sin_port));
282       close(newsockfd);
283       return NULL;
284    }
285    V(mutex);
286 #endif
287
288    /*
289     * Receive notification when connection dies.
290     */
291    if (setsockopt(newsockfd, SOL_SOCKET, SO_KEEPALIVE, (sockopt_val_t)&turnon, sizeof(turnon)) < 0) {
292       Emsg1(M_WARNING, 0, _("Cannot set SO_KEEPALIVE on socket: %s\n"), strerror(errno));
293    }
294
295    /* see who client is. I.e. who connected to us.
296     * return it in the input message buffer.
297     */
298    if ((caller = inet_ntoa(cli_addr.sin_addr)) != NULL) {
299       pm_strcpy(&bsock->msg, caller);
300    } else {
301       bsock->msg[0] = 0;
302    }
303    bsock->msglen = strlen(bsock->msg);
304
305    if (newsockfd < 0) {
306       Emsg2(M_FATAL, 0, _("Socket accept error for %s. ERR=%s\n"), who,
307             strerror(errno));
308       return NULL;
309    } else {
310       if (caller == NULL) {
311          caller = "unknown";
312       }
313       len = strlen(caller) + strlen(who) + 3;
314       buf = (char *) malloc(len);
315       strcpy(buf, who);
316       strcat(buf, ": ");
317       strcat(buf, caller);
318       bs = init_bsock(NULL, newsockfd, "client", buf, bsock->port);
319       free(buf);
320       return bs;                      /* return new BSOCK */
321    }
322 }   
323
324 #endif