]> git.ipfire.org Git - thirdparty/squid.git/blob - src/comm.cc
Merged from trunk
[thirdparty/squid.git] / src / comm.cc
1 /*
2 * DEBUG: section 5 Socket Functions
3 * AUTHOR: Harvest Derived
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 *
32 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
33 */
34
35 #include "squid.h"
36 #include "StoreIOBuffer.h"
37 #include "comm.h"
38 #include "event.h"
39 #include "fde.h"
40 #include "CommIO.h"
41 #include "CommRead.h"
42 #include "ConnectionDetail.h"
43 #include "MemBuf.h"
44 #include "pconn.h"
45 #include "SquidTime.h"
46 #include "CommCalls.h"
47 #include "DescriptorSet.h"
48 #include "icmp/net_db.h"
49 #include "ip/IpAddress.h"
50 #include "ip/IpIntercept.h"
51
52 #if defined(_SQUID_CYGWIN_)
53 #include <sys/ioctl.h>
54 #endif
55 #ifdef HAVE_NETINET_TCP_H
56 #include <netinet/tcp.h>
57 #endif
58
59 /*
60 * New C-like simple comm code. This stuff is a mess and doesn't really buy us anything.
61 */
62
63 typedef enum {
64 IOCB_NONE,
65 IOCB_READ,
66 IOCB_WRITE
67 } iocb_type;
68
69 static void commStopHalfClosedMonitor(int fd);
70 static IOCB commHalfClosedReader;
71
72
73 struct comm_io_callback_t {
74 iocb_type type;
75 int fd;
76 AsyncCall::Pointer callback;
77 char *buf;
78 FREE *freefunc;
79 int size;
80 int offset;
81 comm_err_t errcode;
82 int xerrno;
83
84 bool active() const { return callback != NULL; }
85 };
86
87 struct _comm_fd {
88 int fd;
89 comm_io_callback_t readcb;
90 comm_io_callback_t writecb;
91 };
92 typedef struct _comm_fd comm_fd_t;
93 comm_fd_t *commfd_table;
94
95 // TODO: make this a comm_io_callback_t method?
96 bool
97 commio_has_callback(int fd, iocb_type type, comm_io_callback_t *ccb)
98 {
99 assert(ccb->fd == fd);
100 assert(ccb->type == type);
101 return ccb->active();
102 }
103
104 /*
105 * Configure comm_io_callback_t for I/O
106 *
107 * @param fd filedescriptor
108 * @param ccb comm io callback
109 * @param cb callback
110 * @param cbdata callback data (must be cbdata'ed)
111 * @param buf buffer, if applicable
112 * @param freefunc freefunc, if applicable
113 * @param size buffer size
114 */
115 static void
116 commio_set_callback(int fd, iocb_type type, comm_io_callback_t *ccb,
117 AsyncCall::Pointer &cb, char *buf, FREE *freefunc, int size)
118 {
119 assert(!ccb->active());
120 assert(ccb->type == type);
121 assert(cb != NULL);
122 ccb->fd = fd;
123 ccb->callback = cb;
124 ccb->buf = buf;
125 ccb->freefunc = freefunc;
126 ccb->size = size;
127 ccb->offset = 0;
128 }
129
130
131 // Schedule the callback call and clear the callback
132 static void
133 commio_finish_callback(int fd, comm_io_callback_t *ccb, comm_err_t code, int xerrno)
134 {
135 debugs(5, 3, "commio_finish_callback: called for FD " << fd << " (" <<
136 code << ", " << xerrno << ")");
137 assert(ccb->active());
138 assert(ccb->fd == fd);
139 ccb->errcode = code;
140 ccb->xerrno = xerrno;
141
142 comm_io_callback_t cb = *ccb;
143
144 /* We've got a copy; blow away the real one */
145 /* XXX duplicate code from commio_cancel_callback! */
146 ccb->xerrno = 0;
147 ccb->callback = NULL; // cb has it
148
149 /* free data */
150 if (cb.freefunc) {
151 cb.freefunc(cb.buf);
152 cb.buf = NULL;
153 }
154
155 if (cb.callback != NULL) {
156 typedef CommIoCbParams Params;
157 Params &params = GetCommParams<Params>(cb.callback);
158 params.fd = cb.fd;
159 params.buf = cb.buf;
160 params.size = cb.offset;
161 params.flag = cb.errcode;
162 params.xerrno = cb.xerrno;
163 ScheduleCallHere(cb.callback);
164 }
165 }
166
167
168 /*
169 * Cancel the given callback
170 *
171 * Remember that the data is cbdataRef'ed.
172 */
173 // TODO: make this a comm_io_callback_t method
174 static void
175 commio_cancel_callback(int fd, comm_io_callback_t *ccb)
176 {
177 debugs(5, 3, "commio_cancel_callback: called for FD " << fd);
178 assert(ccb->fd == fd);
179 assert(ccb->active());
180
181 ccb->xerrno = 0;
182 ccb->callback = NULL;
183 }
184
185 /*
186 * Call the given comm callback; assumes the callback is valid.
187 *
188 * @param ccb io completion callback
189 */
190 void
191 commio_call_callback(comm_io_callback_t *ccb)
192 {
193 }
194
195 class ConnectStateData
196 {
197
198 public:
199 void *operator new (size_t);
200 void operator delete (void *);
201 static void Connect (int fd, void *me);
202 void connect();
203 void callCallback(comm_err_t status, int xerrno);
204 void defaults();
205
206 // defaults given by client
207 char *host;
208 u_short default_port;
209 IpAddress default_addr;
210 // NP: CANNOT store the default addr:port together as it gets set/reset differently.
211
212 DnsLookupDetails dns; ///< host lookup details
213 IpAddress S;
214 AsyncCall::Pointer callback;
215
216 int fd;
217 int tries;
218 int addrcount;
219 int connstart;
220
221 private:
222 int commResetFD();
223 int commRetryConnect();
224 CBDATA_CLASS(ConnectStateData);
225 };
226
227 /* STATIC */
228
229 static DescriptorSet *TheHalfClosed = NULL; /// the set of half-closed FDs
230 static bool WillCheckHalfClosed = false; /// true if check is scheduled
231 static EVH commHalfClosedCheck;
232 static void commPlanHalfClosedCheck();
233
234 static comm_err_t commBind(int s, struct addrinfo &);
235 static void commSetReuseAddr(int);
236 static void commSetNoLinger(int);
237 #ifdef TCP_NODELAY
238 static void commSetTcpNoDelay(int);
239 #endif
240 static void commSetTcpRcvbuf(int, int);
241 static PF commConnectFree;
242 static PF commHandleWrite;
243 static IPH commConnectDnsHandle;
244
245 static PF comm_accept_try;
246
247 class AcceptFD
248 {
249
250 public:
251 AcceptFD(int aFd = -1): fd(aFd), theCallback(0), mayAcceptMore(false) {}
252
253 void subscribe(AsyncCall::Pointer &call);
254 void acceptNext();
255 void notify(int newfd, comm_err_t, int xerrno, const ConnectionDetail &);
256
257 int fd;
258
259 private:
260 bool acceptOne();
261
262 AsyncCall::Pointer theCallback;
263 bool mayAcceptMore;
264 };
265
266 typedef enum {
267 COMM_CB_READ = 1,
268 COMM_CB_DERIVED,
269 } comm_callback_t;
270
271 struct _fd_debug_t {
272 char const *close_file;
273 int close_line;
274 };
275
276 typedef struct _fd_debug_t fd_debug_t;
277
278 static MemAllocator *conn_close_pool = NULL;
279 AcceptFD *fdc_table = NULL; // TODO: rename. And use Vector<>?
280 fd_debug_t *fdd_table = NULL;
281
282 static bool
283 isOpen(const int fd)
284 {
285 return fd_table[fd].flags.open != 0;
286 }
287
288 /**
289 * Attempt a read
290 *
291 * If the read attempt succeeds or fails, call the callback.
292 * Else, wait for another IO notification.
293 */
294 void
295 commHandleRead(int fd, void *data)
296 {
297 comm_io_callback_t *ccb = (comm_io_callback_t *) data;
298
299 assert(data == COMMIO_FD_READCB(fd));
300 assert(commio_has_callback(fd, IOCB_READ, ccb));
301 /* Attempt a read */
302 statCounter.syscalls.sock.reads++;
303 errno = 0;
304 int retval;
305 retval = FD_READ_METHOD(fd, ccb->buf, ccb->size);
306 debugs(5, 3, "comm_read_try: FD " << fd << ", size " << ccb->size << ", retval " << retval << ", errno " << errno);
307
308 if (retval < 0 && !ignoreErrno(errno)) {
309 debugs(5, 3, "comm_read_try: scheduling COMM_ERROR");
310 ccb->offset = 0;
311 commio_finish_callback(fd, ccb, COMM_ERROR, errno);
312 return;
313 };
314
315 /* See if we read anything */
316 /* Note - read 0 == socket EOF, which is a valid read */
317 if (retval >= 0) {
318 fd_bytes(fd, retval, FD_READ);
319 ccb->offset = retval;
320 commio_finish_callback(fd, ccb, COMM_OK, errno);
321 return;
322 }
323
324 /* Nope, register for some more IO */
325 commSetSelect(fd, COMM_SELECT_READ, commHandleRead, data, 0);
326 }
327
328 /**
329 * Queue a read. handler/handler_data are called when the read
330 * completes, on error, or on file descriptor close.
331 */
332 void
333 comm_read(int fd, char *buf, int size, IOCB *handler, void *handler_data)
334 {
335 AsyncCall::Pointer call = commCbCall(5,4, "SomeCommReadHandler",
336 CommIoCbPtrFun(handler, handler_data));
337 comm_read(fd, buf, size, call);
338 }
339
340 void
341 comm_read(int fd, char *buf, int size, AsyncCall::Pointer &callback)
342 {
343 debugs(5, 5, "comm_read, queueing read for FD " << fd << "; asynCall " << callback);
344
345 /* Make sure we are open and not closing */
346 assert(isOpen(fd));
347 assert(!fd_table[fd].closing());
348 comm_io_callback_t *ccb = COMMIO_FD_READCB(fd);
349
350 // Make sure we are either not reading or just passively monitoring.
351 // Active/passive conflicts are OK and simply cancel passive monitoring.
352 if (ccb->active()) {
353 // if the assertion below fails, we have an active comm_read conflict
354 assert(fd_table[fd].halfClosedReader != NULL);
355 commStopHalfClosedMonitor(fd);
356 assert(!ccb->active());
357 }
358
359 /* Queue the read */
360 commio_set_callback(fd, IOCB_READ, ccb, callback, (char *)buf, NULL, size);
361 commSetSelect(fd, COMM_SELECT_READ, commHandleRead, ccb, 0);
362 }
363
364 /**
365 * Empty the read buffers
366 *
367 * This is a magical routine that empties the read buffers.
368 * Under some platforms (Linux) if a buffer has data in it before
369 * you call close(), the socket will hang and take quite a while
370 * to timeout.
371 */
372 static void
373 comm_empty_os_read_buffers(int fd)
374 {
375 #ifdef _SQUID_LINUX_
376 /* prevent those nasty RST packets */
377 char buf[SQUID_TCP_SO_RCVBUF];
378
379 if (fd_table[fd].flags.nonblocking == 1) {
380 while (FD_READ_METHOD(fd, buf, SQUID_TCP_SO_RCVBUF) > 0) {};
381 }
382 #endif
383 }
384
385
386 /**
387 * Return whether the FD has a pending completed callback.
388 */
389 int
390 comm_has_pending_read_callback(int fd)
391 {
392 assert(isOpen(fd));
393 // XXX: We do not know whether there is a read callback scheduled.
394 // This is used for pconn management that should probably be more
395 // tightly integrated into comm to minimize the chance that a
396 // closing pconn socket will be used for a new transaction.
397 return false;
398 }
399
400 // Does comm check this fd for read readiness?
401 // Note that when comm is not monitoring, there can be a pending callback
402 // call, which may resume comm monitoring once fired.
403 bool
404 comm_monitors_read(int fd)
405 {
406 assert(isOpen(fd));
407 // Being active is usually the same as monitoring because we always
408 // start monitoring the FD when we configure comm_io_callback_t for I/O
409 // and we usually configure comm_io_callback_t for I/O when we starting
410 // monitoring a FD for reading. TODO: replace with commio_has_callback
411 return COMMIO_FD_READCB(fd)->active();
412 }
413
414 /**
415 * Cancel a pending read. Assert that we have the right parameters,
416 * and that there are no pending read events!
417 *
418 * XXX: We do not assert that there are no pending read events and
419 * with async calls it becomes even more difficult.
420 * The whole interface should be reworked to do callback->cancel()
421 * instead of searching for places where the callback may be stored and
422 * updating the state of those places.
423 *
424 * AHC Don't call the comm handlers?
425 */
426 void
427 comm_read_cancel(int fd, IOCB *callback, void *data)
428 {
429 if (!isOpen(fd)) {
430 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " closed");
431 return;
432 }
433
434 comm_io_callback_t *cb = COMMIO_FD_READCB(fd);
435 // TODO: is "active" == "monitors FD"?
436 if (!cb->active()) {
437 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " inactive");
438 return;
439 }
440
441 typedef CommCbFunPtrCallT<CommIoCbPtrFun> Call;
442 Call *call = dynamic_cast<Call*>(cb->callback.getRaw());
443 if (!call) {
444 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " lacks callback");
445 return;
446 }
447
448 call->cancel("old comm_read_cancel");
449
450 typedef CommIoCbParams Params;
451 const Params &params = GetCommParams<Params>(cb->callback);
452
453 /* Ok, we can be reasonably sure we won't lose any data here! */
454 assert(call->dialer.handler == callback);
455 assert(params.data == data);
456
457 /* Delete the callback */
458 commio_cancel_callback(fd, cb);
459
460 /* And the IO event */
461 commSetSelect(fd, COMM_SELECT_READ, NULL, NULL, 0);
462 }
463
464 void
465 comm_read_cancel(int fd, AsyncCall::Pointer &callback)
466 {
467 callback->cancel("comm_read_cancel");
468
469 if (!isOpen(fd)) {
470 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " closed");
471 return;
472 }
473
474 comm_io_callback_t *cb = COMMIO_FD_READCB(fd);
475
476 if (!cb->active()) {
477 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " inactive");
478 return;
479 }
480
481 AsyncCall::Pointer call = cb->callback;
482 assert(call != NULL); // XXX: should never fail (active() checks for callback==NULL)
483
484 /* Ok, we can be reasonably sure we won't lose any data here! */
485 assert(call == callback);
486
487 /* Delete the callback */
488 commio_cancel_callback(fd, cb);
489
490 /* And the IO event */
491 commSetSelect(fd, COMM_SELECT_READ, NULL, NULL, 0);
492 }
493
494
495 /**
496 * synchronous wrapper around udp socket functions
497 */
498 int
499 comm_udp_recvfrom(int fd, void *buf, size_t len, int flags, IpAddress &from)
500 {
501 statCounter.syscalls.sock.recvfroms++;
502 int x = 0;
503 struct addrinfo *AI = NULL;
504
505 debugs(5,8, "comm_udp_recvfrom: FD " << fd << " from " << from);
506
507 assert( NULL == AI );
508
509 from.InitAddrInfo(AI);
510
511 x = recvfrom(fd, buf, len, flags, AI->ai_addr, &AI->ai_addrlen);
512
513 from = *AI;
514
515 from.FreeAddrInfo(AI);
516
517 return x;
518 }
519
520 int
521 comm_udp_recv(int fd, void *buf, size_t len, int flags)
522 {
523 IpAddress nul;
524 return comm_udp_recvfrom(fd, buf, len, flags, nul);
525 }
526
527 ssize_t
528 comm_udp_send(int s, const void *buf, size_t len, int flags)
529 {
530 return send(s, buf, len, flags);
531 }
532
533
534 bool
535 comm_has_incomplete_write(int fd)
536 {
537 assert(isOpen(fd));
538 return COMMIO_FD_WRITECB(fd)->active();
539 }
540
541 /**
542 * Queue a write. handler/handler_data are called when the write fully
543 * completes, on error, or on file descriptor close.
544 */
545
546 /* Return the local port associated with fd. */
547 u_short
548 comm_local_port(int fd)
549 {
550 IpAddress temp;
551 struct addrinfo *addr = NULL;
552 fde *F = &fd_table[fd];
553
554 /* If the fd is closed already, just return */
555
556 if (!F->flags.open) {
557 debugs(5, 0, "comm_local_port: FD " << fd << " has been closed.");
558 return 0;
559 }
560
561 if (F->local_addr.GetPort())
562 return F->local_addr.GetPort();
563
564 temp.InitAddrInfo(addr);
565
566 if (getsockname(fd, addr->ai_addr, &(addr->ai_addrlen)) ) {
567 debugs(50, 1, "comm_local_port: Failed to retrieve TCP/UDP port number for socket: FD " << fd << ": " << xstrerror());
568 temp.FreeAddrInfo(addr);
569 return 0;
570 }
571 temp = *addr;
572
573 temp.FreeAddrInfo(addr);
574
575 F->local_addr.SetPort(temp.GetPort());
576
577 // grab default socket information for this address
578 temp.GetAddrInfo(addr);
579
580 F->sock_family = addr->ai_family;
581
582 temp.FreeAddrInfo(addr);
583
584 debugs(5, 6, "comm_local_port: FD " << fd << ": port " << F->local_addr.GetPort());
585 return F->local_addr.GetPort();
586 }
587
588 static comm_err_t
589 commBind(int s, struct addrinfo &inaddr)
590 {
591 statCounter.syscalls.sock.binds++;
592
593 if (bind(s, inaddr.ai_addr, inaddr.ai_addrlen) == 0)
594 return COMM_OK;
595
596 debugs(50, 0, "commBind: Cannot bind socket FD " << s << " to " << fd_table[s].local_addr << ": " << xstrerror());
597
598 return COMM_ERROR;
599 }
600
601 /**
602 * Create a socket. Default is blocking, stream (TCP) socket. IO_TYPE
603 * is OR of flags specified in comm.h. Defaults TOS
604 */
605 int
606 comm_open(int sock_type,
607 int proto,
608 IpAddress &addr,
609 int flags,
610 const char *note)
611 {
612 return comm_openex(sock_type, proto, addr, flags, 0, note);
613 }
614
615 int
616 comm_open_listener(int sock_type,
617 int proto,
618 IpAddress &addr,
619 int flags,
620 const char *note)
621 {
622 int sock = -1;
623
624 /* attempt native enabled port. */
625 sock = comm_openex(sock_type, proto, addr, flags, 0, note);
626
627 #if USE_IPV6
628 /* under IPv6 there is the possibility IPv6 is present but disabled. */
629 /* try again as IPv4-native */
630 if ( sock < 0 && addr.IsIPv6() && addr.SetIPv4() ) {
631 /* attempt to open this IPv4-only. */
632 sock = comm_openex(sock_type, proto, addr, flags, 0, note);
633 debugs(50, 2, HERE << "attempt open " << note << " socket on: " << addr);
634 }
635 #endif
636
637 return sock;
638 }
639
640 static bool
641 limitError(int const anErrno)
642 {
643 return anErrno == ENFILE || anErrno == EMFILE;
644 }
645
646 int
647 comm_set_tos(int fd, int tos)
648 {
649 #ifdef IP_TOS
650 int x = setsockopt(fd, IPPROTO_IP, IP_TOS, (char *) &tos, sizeof(int));
651 if (x < 0)
652 debugs(50, 1, "comm_set_tos: setsockopt(IP_TOS) on FD " << fd << ": " << xstrerror());
653 return x;
654 #else
655 debugs(50, 0, "WARNING: setsockopt(IP_TOS) not supported on this platform");
656 return -1;
657 #endif
658 }
659
660 void
661 comm_set_v6only(int fd, int tos)
662 {
663 #ifdef IPV6_V6ONLY
664 if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, (char *) &tos, sizeof(int)) < 0) {
665 debugs(50, 1, "comm_open: setsockopt(IPV6_V6ONLY) on FD " << fd << ": " << xstrerror());
666 }
667 #else
668 debugs(50, 0, "WARNING: comm_open: setsockopt(IPV6_V6ONLY) not supported on this platform");
669 #endif /* sockopt */
670 }
671
672 /**
673 * Set the socket IP_TRANSPARENT option for Linux TPROXY v4 support.
674 */
675 void
676 comm_set_transparent(int fd)
677 {
678 #if defined(IP_TRANSPARENT)
679 int tos = 1;
680 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, (char *) &tos, sizeof(int)) < 0) {
681 debugs(50, DBG_IMPORTANT, "comm_open: setsockopt(IP_TRANSPARENT) on FD " << fd << ": " << xstrerror());
682 } else {
683 /* mark the socket as having transparent options */
684 fd_table[fd].flags.transparent = 1;
685 }
686 #else
687 debugs(50, DBG_CRITICAL, "WARNING: comm_open: setsockopt(IP_TRANSPARENT) not supported on this platform");
688 #endif /* sockopt */
689 }
690
691 /**
692 * Create a socket. Default is blocking, stream (TCP) socket. IO_TYPE
693 * is OR of flags specified in defines.h:COMM_*
694 */
695 int
696 comm_openex(int sock_type,
697 int proto,
698 IpAddress &addr,
699 int flags,
700 unsigned char TOS,
701 const char *note)
702 {
703 int new_socket;
704 fde *F = NULL;
705 int tos = 0;
706 struct addrinfo *AI = NULL;
707
708 PROF_start(comm_open);
709 /* Create socket for accepting new connections. */
710 statCounter.syscalls.sock.sockets++;
711
712 /* Setup the socket addrinfo details for use */
713 addr.GetAddrInfo(AI);
714 AI->ai_socktype = sock_type;
715 AI->ai_protocol = proto;
716
717 debugs(50, 3, "comm_openex: Attempt open socket for: " << addr );
718
719 if ((new_socket = socket(AI->ai_family, AI->ai_socktype, AI->ai_protocol)) < 0) {
720 /* Increase the number of reserved fd's if calls to socket()
721 * are failing because the open file table is full. This
722 * limits the number of simultaneous clients */
723
724 if (limitError(errno)) {
725 debugs(50, DBG_IMPORTANT, "comm_open: socket failure: " << xstrerror());
726 fdAdjustReserved();
727 } else {
728 debugs(50, DBG_CRITICAL, "comm_open: socket failure: " << xstrerror());
729 }
730
731 addr.FreeAddrInfo(AI);
732
733 PROF_stop(comm_open);
734 return -1;
735 }
736
737 debugs(50, 3, "comm_openex: Opened socket FD " << new_socket << " : family=" << AI->ai_family << ", type=" << AI->ai_socktype << ", protocol=" << AI->ai_protocol );
738
739 /* set TOS if needed */
740 if (TOS && comm_set_tos(new_socket, TOS) ) {
741 tos = TOS;
742 }
743
744 #if IPV6_SPECIAL_SPLITSTACK
745
746 if ( addr.IsIPv6() )
747 comm_set_v6only(new_socket, tos);
748
749 #endif
750
751 #if IPV6_SPECIAL_V4MAPPED
752
753 /* Windows Vista supports Dual-Sockets. BUT defaults them to V6ONLY. Turn it OFF. */
754 /* Other OS may have this administratively disabled for general use. Same deal. */
755 if ( addr.IsIPv6() )
756 comm_set_v6only(new_socket, 0);
757
758 #endif
759
760 /* update fdstat */
761 debugs(5, 5, "comm_open: FD " << new_socket << " is a new socket");
762
763 assert(!isOpen(new_socket));
764 fd_open(new_socket, FD_SOCKET, note);
765
766 fdd_table[new_socket].close_file = NULL;
767
768 fdd_table[new_socket].close_line = 0;
769
770 F = &fd_table[new_socket];
771
772 F->local_addr = addr;
773
774 F->tos = TOS;
775
776 F->sock_family = AI->ai_family;
777
778 if (!(flags & COMM_NOCLOEXEC))
779 commSetCloseOnExec(new_socket);
780
781 if ((flags & COMM_REUSEADDR))
782 commSetReuseAddr(new_socket);
783
784 if (addr.GetPort() > (u_short) 0) {
785 #ifdef _SQUID_MSWIN_
786
787 if (sock_type != SOCK_DGRAM)
788 #endif
789
790 commSetNoLinger(new_socket);
791
792 if (opt_reuseaddr)
793 commSetReuseAddr(new_socket);
794 }
795
796 /* MUST be done before binding or face OS Error: "(99) Cannot assign requested address"... */
797 if ((flags & COMM_TRANSPARENT)) {
798 comm_set_transparent(new_socket);
799 }
800
801 if (!addr.IsNoAddr()) {
802 if (commBind(new_socket, *AI) != COMM_OK) {
803 comm_close(new_socket);
804 addr.FreeAddrInfo(AI);
805 return -1;
806 PROF_stop(comm_open);
807 }
808 }
809
810 addr.FreeAddrInfo(AI);
811
812 if (flags & COMM_NONBLOCKING)
813 if (commSetNonBlocking(new_socket) == COMM_ERROR) {
814 return -1;
815 PROF_stop(comm_open);
816 }
817
818 #ifdef TCP_NODELAY
819 if (sock_type == SOCK_STREAM)
820 commSetTcpNoDelay(new_socket);
821
822 #endif
823
824 if (Config.tcpRcvBufsz > 0 && sock_type == SOCK_STREAM)
825 commSetTcpRcvbuf(new_socket, Config.tcpRcvBufsz);
826
827 PROF_stop(comm_open);
828
829 return new_socket;
830 }
831
832 CBDATA_CLASS_INIT(ConnectStateData);
833
834 void *
835 ConnectStateData::operator new (size_t size)
836 {
837 CBDATA_INIT_TYPE(ConnectStateData);
838 return cbdataAlloc(ConnectStateData);
839 }
840
841 void
842 ConnectStateData::operator delete (void *address)
843 {
844 cbdataFree(address);
845 }
846
847
848
849 void
850 commConnectStart(int fd, const char *host, u_short port, AsyncCall::Pointer &cb)
851 {
852 debugs(cb->debugSection, cb->debugLevel, "commConnectStart: FD " << fd <<
853 ", cb " << cb << ", " << host << ":" << port); // TODO: just print *cb
854
855 ConnectStateData *cs;
856 cs = new ConnectStateData;
857 cs->fd = fd;
858 cs->host = xstrdup(host);
859 cs->default_port = port;
860 cs->callback = cb;
861
862 comm_add_close_handler(fd, commConnectFree, cs);
863 ipcache_nbgethostbyname(host, commConnectDnsHandle, cs);
864 }
865
866 // TODO: Remove this and similar callback registration functions by replacing
867 // (callback,data) parameters with an AsyncCall so that we do not have to use
868 // a generic call name and debug level when creating an AsyncCall. This will
869 // also cut the number of callback registration routines in half.
870 void
871 commConnectStart(int fd, const char *host, u_short port, CNCB * callback, void *data)
872 {
873 debugs(5, 5, "commConnectStart: FD " << fd << ", data " << data << ", " << host << ":" << port);
874 AsyncCall::Pointer call = commCbCall(5,3,
875 "SomeCommConnectHandler", CommConnectCbPtrFun(callback, data));
876 commConnectStart(fd, host, port, call);
877 }
878
879 static void
880 commConnectDnsHandle(const ipcache_addrs *ia, const DnsLookupDetails &details, void *data)
881 {
882 ConnectStateData *cs = (ConnectStateData *)data;
883 cs->dns = details;
884
885 if (ia == NULL) {
886 debugs(5, 3, "commConnectDnsHandle: Unknown host: " << cs->host);
887 cs->callCallback(COMM_ERR_DNS, 0);
888 return;
889 }
890
891 assert(ia->cur < ia->count);
892
893 cs->default_addr = ia->in_addrs[ia->cur];
894
895 if (Config.onoff.balance_on_multiple_ip)
896 ipcacheCycleAddr(cs->host, NULL);
897
898 cs->addrcount = ia->count;
899
900 cs->connstart = squid_curtime;
901
902 cs->connect();
903 }
904
905 void
906 ConnectStateData::callCallback(comm_err_t status, int xerrno)
907 {
908 debugs(5, 3, "commConnectCallback: FD " << fd);
909
910 comm_remove_close_handler(fd, commConnectFree, this);
911 commSetTimeout(fd, -1, NULL, NULL);
912
913 typedef CommConnectCbParams Params;
914 Params &params = GetCommParams<Params>(callback);
915 params.fd = fd;
916 params.dns = dns;
917 params.flag = status;
918 params.xerrno = xerrno;
919 ScheduleCallHere(callback);
920 callback = NULL;
921
922 commConnectFree(fd, this);
923 }
924
925 static void
926 commConnectFree(int fd, void *data)
927 {
928 ConnectStateData *cs = (ConnectStateData *)data;
929 debugs(5, 3, "commConnectFree: FD " << fd);
930 // delete cs->callback;
931 cs->callback = NULL;
932 safe_free(cs->host);
933 delete cs;
934 }
935
936 static void
937 copyFDFlags(int to, fde *F)
938 {
939 if (F->flags.close_on_exec)
940 commSetCloseOnExec(to);
941
942 if (F->flags.nonblocking)
943 commSetNonBlocking(to);
944
945 #ifdef TCP_NODELAY
946
947 if (F->flags.nodelay)
948 commSetTcpNoDelay(to);
949
950 #endif
951
952 if (Config.tcpRcvBufsz > 0)
953 commSetTcpRcvbuf(to, Config.tcpRcvBufsz);
954 }
955
956 /* Reset FD so that we can connect() again */
957 int
958 ConnectStateData::commResetFD()
959 {
960 struct addrinfo *AI = NULL;
961 IpAddress nul;
962 int new_family = AF_UNSPEC;
963
964 // XXX: do we have to check this?
965 //
966 // if (!cbdataReferenceValid(callback.data))
967 // return 0;
968
969 statCounter.syscalls.sock.sockets++;
970
971 /* setup a bare-bones addrinfo */
972 /* TODO INET6: for WinXP we may need to check the local_addr type and setup the family properly. */
973 nul.GetAddrInfo(AI);
974 new_family = AI->ai_family;
975
976 int fd2 = socket(AI->ai_family, AI->ai_socktype, AI->ai_protocol);
977
978 nul.FreeAddrInfo(AI);
979
980 if (fd2 < 0) {
981 debugs(5, DBG_CRITICAL, HERE << "WARNING: FD " << fd2 << " socket failed to allocate: " << xstrerror());
982
983 if (ENFILE == errno || EMFILE == errno)
984 fdAdjustReserved();
985
986 return 0;
987 }
988
989 #ifdef _SQUID_MSWIN_
990
991 /* On Windows dup2() can't work correctly on Sockets, the */
992 /* workaround is to close the destination Socket before call them. */
993 close(fd);
994
995 #endif
996
997 if (dup2(fd2, fd) < 0) {
998 debugs(5, DBG_CRITICAL, HERE << "WARNING: dup2(FD " << fd2 << ", FD " << fd << ") failed: " << xstrerror());
999
1000 if (ENFILE == errno || EMFILE == errno)
1001 fdAdjustReserved();
1002
1003 close(fd2);
1004
1005 return 0;
1006 }
1007 commResetSelect(fd);
1008
1009 close(fd2);
1010 fde *F = &fd_table[fd];
1011
1012 /* INET6: copy the new sockets family type to the FDE table */
1013 fd_table[fd].sock_family = new_family;
1014
1015 fd_table[fd].flags.called_connect = 0;
1016 /*
1017 * yuck, this has assumptions about comm_open() arguments for
1018 * the original socket
1019 */
1020
1021 /* MUST be done before binding or face OS Error: "(99) Cannot assign requested address"... */
1022 if ( F->flags.transparent ) {
1023 comm_set_transparent(fd);
1024 }
1025
1026 AI = NULL;
1027 F->local_addr.GetAddrInfo(AI);
1028
1029 if (commBind(fd, *AI) != COMM_OK) {
1030 debugs(5, DBG_CRITICAL, "WARNING: Reset of FD " << fd << " for " << F->local_addr << " failed to bind: " << xstrerror());
1031 F->local_addr.FreeAddrInfo(AI);
1032 return 0;
1033 }
1034 F->local_addr.FreeAddrInfo(AI);
1035
1036 if (F->tos)
1037 comm_set_tos(fd, F->tos);
1038
1039 #if IPV6_SPECIAL_SPLITSTACK
1040
1041 if ( F->local_addr.IsIPv6() )
1042 comm_set_v6only(fd, F->tos);
1043
1044 #endif
1045
1046 copyFDFlags(fd, F);
1047
1048 return 1;
1049 }
1050
1051 int
1052 ConnectStateData::commRetryConnect()
1053 {
1054 assert(addrcount > 0);
1055
1056 if (addrcount == 1) {
1057 if (tries >= Config.retry.maxtries)
1058 return 0;
1059
1060 if (squid_curtime - connstart > Config.Timeout.connect)
1061 return 0;
1062 } else {
1063 if (tries > addrcount)
1064 return 0;
1065 }
1066
1067 return commResetFD();
1068 }
1069
1070 static void
1071 commReconnect(void *data)
1072 {
1073 ConnectStateData *cs = (ConnectStateData *)data;
1074 ipcache_nbgethostbyname(cs->host, commConnectDnsHandle, cs);
1075 }
1076
1077 /** Connect SOCK to specified DEST_PORT at DEST_HOST. */
1078 void
1079 ConnectStateData::Connect(int fd, void *me)
1080 {
1081 ConnectStateData *cs = (ConnectStateData *)me;
1082 assert (cs->fd == fd);
1083 cs->connect();
1084 }
1085
1086 void
1087 ConnectStateData::defaults()
1088 {
1089 S = default_addr;
1090 S.SetPort(default_port);
1091 }
1092
1093 void
1094 ConnectStateData::connect()
1095 {
1096 if (S.IsAnyAddr())
1097 defaults();
1098
1099 debugs(5,5, HERE << "to " << S);
1100
1101 switch (comm_connect_addr(fd, S) ) {
1102
1103 case COMM_INPROGRESS:
1104 debugs(5, 5, HERE << "FD " << fd << ": COMM_INPROGRESS");
1105 commSetSelect(fd, COMM_SELECT_WRITE, ConnectStateData::Connect, this, 0);
1106 break;
1107
1108 case COMM_OK:
1109 debugs(5, 5, HERE << "FD " << fd << ": COMM_OK - connected");
1110 ipcacheMarkGoodAddr(host, S);
1111 callCallback(COMM_OK, 0);
1112 break;
1113
1114 #if USE_IPV6
1115 case COMM_ERR_PROTOCOL:
1116 /* problem using the desired protocol over this socket.
1117 * count the connection attempt, reset the socket, and immediately try again */
1118 tries++;
1119 commResetFD();
1120 connect();
1121 break;
1122 #endif
1123
1124 default:
1125 debugs(5, 5, HERE "FD " << fd << ": * - try again");
1126 tries++;
1127 ipcacheMarkBadAddr(host, S);
1128
1129 #if USE_ICMP
1130 if (Config.onoff.test_reachability)
1131 netdbDeleteAddrNetwork(S);
1132 #endif
1133
1134 if (commRetryConnect()) {
1135 eventAdd("commReconnect", commReconnect, this, this->addrcount == 1 ? 0.05 : 0.0, 0);
1136 } else {
1137 debugs(5, 5, HERE << "FD " << fd << ": * - ERR tried too many times already.");
1138 callCallback(COMM_ERR_CONNECT, errno);
1139 }
1140 }
1141 }
1142 /*
1143 int
1144 commSetTimeout_old(int fd, int timeout, PF * handler, void *data)
1145 {
1146 debugs(5, 3, HERE << "FD " << fd << " timeout " << timeout);
1147 assert(fd >= 0);
1148 assert(fd < Squid_MaxFD);
1149 fde *F = &fd_table[fd];
1150 assert(F->flags.open);
1151
1152 if (timeout < 0) {
1153 cbdataReferenceDone(F->timeout_data);
1154 F->timeout_handler = NULL;
1155 F->timeout = 0;
1156 } else {
1157 if (handler) {
1158 cbdataReferenceDone(F->timeout_data);
1159 F->timeout_handler = handler;
1160 F->timeout_data = cbdataReference(data);
1161 }
1162
1163 F->timeout = squid_curtime + (time_t) timeout;
1164 }
1165
1166 return F->timeout;
1167 }
1168 */
1169
1170 int
1171 commSetTimeout(int fd, int timeout, PF * handler, void *data)
1172 {
1173 AsyncCall::Pointer call;
1174 debugs(5, 3, HERE << "FD " << fd << " timeout " << timeout);
1175 if (handler != NULL)
1176 call=commCbCall(5,4, "SomeTimeoutHandler", CommTimeoutCbPtrFun(handler, data));
1177 else
1178 call = NULL;
1179 return commSetTimeout(fd, timeout, call);
1180 }
1181
1182
1183 int commSetTimeout(int fd, int timeout, AsyncCall::Pointer &callback)
1184 {
1185 debugs(5, 3, HERE << "FD " << fd << " timeout " << timeout);
1186 assert(fd >= 0);
1187 assert(fd < Squid_MaxFD);
1188 fde *F = &fd_table[fd];
1189 assert(F->flags.open);
1190
1191 if (timeout < 0) {
1192 F->timeoutHandler = NULL;
1193 F->timeout = 0;
1194 } else {
1195 if (callback != NULL) {
1196 typedef CommTimeoutCbParams Params;
1197 Params &params = GetCommParams<Params>(callback);
1198 params.fd = fd;
1199 F->timeoutHandler = callback;
1200 }
1201
1202 F->timeout = squid_curtime + (time_t) timeout;
1203 }
1204
1205 return F->timeout;
1206
1207 }
1208
1209 int
1210 comm_connect_addr(int sock, const IpAddress &address)
1211 {
1212 comm_err_t status = COMM_OK;
1213 fde *F = &fd_table[sock];
1214 int x = 0;
1215 int err = 0;
1216 socklen_t errlen;
1217 struct addrinfo *AI = NULL;
1218 PROF_start(comm_connect_addr);
1219
1220 assert(address.GetPort() != 0);
1221
1222 debugs(5, 9, "comm_connect_addr: connecting socket " << sock << " to " << address << " (want family: " << F->sock_family << ")");
1223
1224 /* BUG 2222 FIX: reset the FD when its found to be IPv4 in IPv6 mode */
1225 /* inverse case of IPv4 failing to connect on IPv6 socket is handeld post-connect.
1226 * this case must presently be handled here since the GetAddrInfo asserts on bad mappings.
1227 * eventually we want it to throw a Must() that gets handled there instead of this if.
1228 * NP: because commresetFD is private to ConnStateData we have to return an error and
1229 * trust its handled properly.
1230 */
1231 #if USE_IPV6
1232 if (F->sock_family == AF_INET && !address.IsIPv4()) {
1233 return COMM_ERR_PROTOCOL;
1234 }
1235 #endif
1236
1237 address.GetAddrInfo(AI, F->sock_family);
1238
1239 /* Establish connection. */
1240 errno = 0;
1241
1242 if (!F->flags.called_connect) {
1243 F->flags.called_connect = 1;
1244 statCounter.syscalls.sock.connects++;
1245
1246 x = connect(sock, AI->ai_addr, AI->ai_addrlen);
1247
1248 // XXX: ICAP code refuses callbacks during a pending comm_ call
1249 // Async calls development will fix this.
1250 if (x == 0) {
1251 x = -1;
1252 errno = EINPROGRESS;
1253 }
1254
1255 if (x < 0) {
1256 debugs(5,5, "comm_connect_addr: sock=" << sock << ", addrinfo( " <<
1257 " flags=" << AI->ai_flags <<
1258 ", family=" << AI->ai_family <<
1259 ", socktype=" << AI->ai_socktype <<
1260 ", protocol=" << AI->ai_protocol <<
1261 ", &addr=" << AI->ai_addr <<
1262 ", addrlen=" << AI->ai_addrlen <<
1263 " )" );
1264 debugs(5, 9, "connect FD " << sock << ": (" << x << ") " << xstrerror());
1265 debugs(14,9, "connecting to: " << address );
1266 }
1267 } else {
1268 #if defined(_SQUID_NEWSOS6_)
1269 /* Makoto MATSUSHITA <matusita@ics.es.osaka-u.ac.jp> */
1270
1271 connect(sock, AI->ai_addr, AI->ai_addrlen);
1272
1273 if (errno == EINVAL) {
1274 errlen = sizeof(err);
1275 x = getsockopt(sock, SOL_SOCKET, SO_ERROR, &err, &errlen);
1276
1277 if (x >= 0)
1278 errno = x;
1279 }
1280
1281 #else
1282 errlen = sizeof(err);
1283
1284 x = getsockopt(sock, SOL_SOCKET, SO_ERROR, &err, &errlen);
1285
1286 if (x == 0)
1287 errno = err;
1288
1289 #if defined(_SQUID_SOLARIS_)
1290 /*
1291 * Solaris 2.4's socket emulation doesn't allow you
1292 * to determine the error from a failed non-blocking
1293 * connect and just returns EPIPE. Create a fake
1294 * error message for connect. -- fenner@parc.xerox.com
1295 */
1296 if (x < 0 && errno == EPIPE)
1297 errno = ENOTCONN;
1298
1299 #endif
1300 #endif
1301
1302 }
1303
1304 /* Squid seems to be working fine without this code. With this code,
1305 * we leak memory on many connect requests because of EINPROGRESS.
1306 * If you find that this code is needed, please file a bug report. */
1307 #if 0
1308 #ifdef _SQUID_LINUX_
1309 /* 2007-11-27:
1310 * Linux Debian replaces our allocated AI pointer with garbage when
1311 * connect() fails. This leads to segmentation faults deallocating
1312 * the system-allocated memory when we go to clean up our pointer.
1313 * HACK: is to leak the memory returned since we can't deallocate.
1314 */
1315 if (errno != 0) {
1316 AI = NULL;
1317 }
1318 #endif
1319 #endif
1320
1321 address.FreeAddrInfo(AI);
1322
1323 PROF_stop(comm_connect_addr);
1324
1325 if (errno == 0 || errno == EISCONN)
1326 status = COMM_OK;
1327 else if (ignoreErrno(errno))
1328 status = COMM_INPROGRESS;
1329 else
1330 #if USE_IPV6
1331 if ( address.IsIPv4() && F->sock_family == AF_INET6 ) {
1332
1333 /* failover to trying IPv4-only link if an IPv6 one fails */
1334 /* to catch the edge case of apps listening on IPv4-localhost */
1335 F->sock_family = AF_INET;
1336 int res = comm_connect_addr(sock, address);
1337
1338 /* if that fails too, undo our temporary socktype hack so the repeat works properly. */
1339 if (res == COMM_ERROR)
1340 F->sock_family = AF_INET6;
1341
1342 return res;
1343 } else
1344 #endif
1345 return COMM_ERROR;
1346
1347 address.NtoA(F->ipaddr, MAX_IPSTRLEN);
1348
1349 F->remote_port = address.GetPort(); /* remote_port is HS */
1350
1351 if (status == COMM_OK) {
1352 debugs(5, 10, "comm_connect_addr: FD " << sock << " connected to " << address);
1353 } else if (status == COMM_INPROGRESS) {
1354 debugs(5, 10, "comm_connect_addr: FD " << sock << " connection pending");
1355 }
1356
1357 return status;
1358 }
1359
1360 /* Wait for an incoming connection on FD. FD should be a socket returned
1361 * from comm_listen. */
1362 static int
1363 comm_old_accept(int fd, ConnectionDetail &details)
1364 {
1365 PROF_start(comm_accept);
1366 statCounter.syscalls.sock.accepts++;
1367 int sock;
1368 struct addrinfo *gai = NULL;
1369 details.me.InitAddrInfo(gai);
1370
1371 if ((sock = accept(fd, gai->ai_addr, &gai->ai_addrlen)) < 0) {
1372
1373 details.me.FreeAddrInfo(gai);
1374
1375 PROF_stop(comm_accept);
1376
1377 if (ignoreErrno(errno)) {
1378 debugs(50, 5, "comm_old_accept: FD " << fd << ": " << xstrerror());
1379 return COMM_NOMESSAGE;
1380 } else if (ENFILE == errno || EMFILE == errno) {
1381 debugs(50, 3, "comm_old_accept: FD " << fd << ": " << xstrerror());
1382 return COMM_ERROR;
1383 } else {
1384 debugs(50, 1, "comm_old_accept: FD " << fd << ": " << xstrerror());
1385 return COMM_ERROR;
1386 }
1387 }
1388
1389 details.peer = *gai;
1390
1391 details.me.InitAddrInfo(gai);
1392
1393 details.me.SetEmpty();
1394 getsockname(sock, gai->ai_addr, &gai->ai_addrlen);
1395 details.me = *gai;
1396
1397 commSetCloseOnExec(sock);
1398
1399 /* fdstat update */
1400 fd_open(sock, FD_SOCKET, "HTTP Request");
1401 fdd_table[sock].close_file = NULL;
1402 fdd_table[sock].close_line = 0;
1403 fde *F = &fd_table[sock];
1404 details.peer.NtoA(F->ipaddr,MAX_IPSTRLEN);
1405 F->remote_port = details.peer.GetPort();
1406 F->local_addr.SetPort(details.me.GetPort());
1407 #if USE_IPV6
1408 F->sock_family = AF_INET;
1409 #else
1410 F->sock_family = details.me.IsIPv4()?AF_INET:AF_INET6;
1411 #endif
1412 details.me.FreeAddrInfo(gai);
1413
1414 commSetNonBlocking(sock);
1415
1416 /* IFF the socket is (tproxy) transparent, pass the flag down to allow spoofing */
1417 F->flags.transparent = fd_table[fd].flags.transparent;
1418
1419 PROF_stop(comm_accept);
1420 return sock;
1421 }
1422
1423 void
1424 commCallCloseHandlers(int fd)
1425 {
1426 fde *F = &fd_table[fd];
1427 debugs(5, 5, "commCallCloseHandlers: FD " << fd);
1428
1429 while (F->closeHandler != NULL) {
1430 AsyncCall::Pointer call = F->closeHandler;
1431 F->closeHandler = call->Next();
1432 call->setNext(NULL);
1433 // If call is not canceled schedule it for execution else ignore it
1434 if (!call->canceled()) {
1435 debugs(5, 5, "commCallCloseHandlers: ch->handler=" << call);
1436 typedef CommCloseCbParams Params;
1437 Params &params = GetCommParams<Params>(call);
1438 params.fd = fd;
1439 ScheduleCallHere(call);
1440 }
1441 }
1442 }
1443
1444 #if LINGERING_CLOSE
1445 static void
1446 commLingerClose(int fd, void *unused)
1447 {
1448 LOCAL_ARRAY(char, buf, 1024);
1449 int n;
1450 n = FD_READ_METHOD(fd, buf, 1024);
1451
1452 if (n < 0)
1453 debugs(5, 3, "commLingerClose: FD " << fd << " read: " << xstrerror());
1454
1455 comm_close(fd);
1456 }
1457
1458 static void
1459 commLingerTimeout(int fd, void *unused)
1460 {
1461 debugs(5, 3, "commLingerTimeout: FD " << fd);
1462 comm_close(fd);
1463 }
1464
1465 /*
1466 * Inspired by apache
1467 */
1468 void
1469 comm_lingering_close(int fd)
1470 {
1471 #if USE_SSL
1472
1473 if (fd_table[fd].ssl)
1474 ssl_shutdown_method(fd);
1475
1476 #endif
1477
1478 if (shutdown(fd, 1) < 0) {
1479 comm_close(fd);
1480 return;
1481 }
1482
1483 fd_note(fd, "lingering close");
1484 commSetTimeout(fd, 10, commLingerTimeout, NULL);
1485 commSetSelect(fd, COMM_SELECT_READ, commLingerClose, NULL, 0);
1486 }
1487
1488 #endif
1489
1490 /*
1491 * enable linger with time of 0 so that when the socket is
1492 * closed, TCP generates a RESET
1493 */
1494 void
1495 comm_reset_close(int fd)
1496 {
1497
1498 struct linger L;
1499 L.l_onoff = 1;
1500 L.l_linger = 0;
1501
1502 if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char *) &L, sizeof(L)) < 0)
1503 debugs(50, 0, "commResetTCPClose: FD " << fd << ": " << xstrerror());
1504
1505 comm_close(fd);
1506 }
1507
1508 void
1509 comm_close_start(int fd, void *data)
1510 {
1511 #if USE_SSL
1512 fde *F = &fd_table[fd];
1513 if (F->ssl)
1514 ssl_shutdown_method(fd);
1515
1516 #endif
1517
1518 }
1519
1520
1521 void
1522 comm_close_complete(int fd, void *data)
1523 {
1524 #if USE_SSL
1525 fde *F = &fd_table[fd];
1526
1527 if (F->ssl) {
1528 SSL_free(F->ssl);
1529 F->ssl = NULL;
1530 }
1531
1532 #endif
1533 fd_close(fd); /* update fdstat */
1534
1535 close(fd);
1536
1537 fdc_table[fd] = AcceptFD(fd);
1538
1539 statCounter.syscalls.sock.closes++;
1540
1541 /* When an fd closes, give accept() a chance, if need be */
1542
1543 if (fdNFree() >= RESERVED_FD)
1544 AcceptLimiter::Instance().kick();
1545
1546 }
1547
1548 /*
1549 * Close the socket fd.
1550 *
1551 * + call write handlers with ERR_CLOSING
1552 * + call read handlers with ERR_CLOSING
1553 * + call closing handlers
1554 *
1555 * NOTE: COMM_ERR_CLOSING will NOT be called for CommReads' sitting in a
1556 * DeferredReadManager.
1557 */
1558 void
1559 _comm_close(int fd, char const *file, int line)
1560 {
1561 debugs(5, 3, "comm_close: start closing FD " << fd);
1562 assert(fd >= 0);
1563 assert(fd < Squid_MaxFD);
1564
1565 fde *F = &fd_table[fd];
1566 fdd_table[fd].close_file = file;
1567 fdd_table[fd].close_line = line;
1568
1569 if (F->closing())
1570 return;
1571
1572 /* XXX: is this obsolete behind F->closing() ? */
1573 if ( (shutting_down || reconfiguring) && (!F->flags.open || F->type == FD_FILE))
1574 return;
1575
1576 /* The following fails because ipc.c is doing calls to pipe() to create sockets! */
1577 assert(isOpen(fd));
1578
1579 assert(F->type != FD_FILE);
1580
1581 PROF_start(comm_close);
1582
1583 F->flags.close_request = 1;
1584
1585 AsyncCall::Pointer startCall=commCbCall(5,4, "comm_close_start",
1586 CommCloseCbPtrFun(comm_close_start, NULL));
1587 typedef CommCloseCbParams Params;
1588 Params &startParams = GetCommParams<Params>(startCall);
1589 startParams.fd = fd;
1590 ScheduleCallHere(startCall);
1591
1592 // a half-closed fd may lack a reader, so we stop monitoring explicitly
1593 if (commHasHalfClosedMonitor(fd))
1594 commStopHalfClosedMonitor(fd);
1595 commSetTimeout(fd, -1, NULL, NULL);
1596
1597 // notify read/write handlers
1598 if (commio_has_callback(fd, IOCB_WRITE, COMMIO_FD_WRITECB(fd))) {
1599 commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), COMM_ERR_CLOSING, errno);
1600 }
1601 if (commio_has_callback(fd, IOCB_READ, COMMIO_FD_READCB(fd))) {
1602 commio_finish_callback(fd, COMMIO_FD_READCB(fd), COMM_ERR_CLOSING, errno);
1603 }
1604
1605 // notify accept handlers
1606 fdc_table[fd].notify(-1, COMM_ERR_CLOSING, 0, ConnectionDetail());
1607
1608 commCallCloseHandlers(fd);
1609
1610 if (F->pconn.uses)
1611 F->pconn.pool->count(F->pconn.uses);
1612
1613 comm_empty_os_read_buffers(fd);
1614
1615
1616 AsyncCall::Pointer completeCall=commCbCall(5,4, "comm_close_complete",
1617 CommCloseCbPtrFun(comm_close_complete, NULL));
1618 Params &completeParams = GetCommParams<Params>(completeCall);
1619 completeParams.fd = fd;
1620 // must use async call to wait for all callbacks
1621 // scheduled before comm_close() to finish
1622 ScheduleCallHere(completeCall);
1623
1624 PROF_stop(comm_close);
1625 }
1626
1627 /* Send a udp datagram to specified TO_ADDR. */
1628 int
1629 comm_udp_sendto(int fd,
1630 const IpAddress &to_addr,
1631 const void *buf,
1632 int len)
1633 {
1634 int x = 0;
1635 struct addrinfo *AI = NULL;
1636
1637 PROF_start(comm_udp_sendto);
1638 statCounter.syscalls.sock.sendtos++;
1639
1640 debugs(50, 3, "comm_udp_sendto: Attempt to send UDP packet to " << to_addr <<
1641 " using FD " << fd << " using Port " << comm_local_port(fd) );
1642
1643 /* BUG: something in the above macro appears to occasionally be setting AI to garbage. */
1644 /* AYJ: 2007-08-27 : or was it because I wasn't then setting 'fd_table[fd].sock_family' to fill properly. */
1645 assert( NULL == AI );
1646
1647 to_addr.GetAddrInfo(AI, fd_table[fd].sock_family);
1648
1649 x = sendto(fd, buf, len, 0, AI->ai_addr, AI->ai_addrlen);
1650
1651 to_addr.FreeAddrInfo(AI);
1652
1653 PROF_stop(comm_udp_sendto);
1654
1655 if (x >= 0)
1656 return x;
1657
1658 #ifdef _SQUID_LINUX_
1659
1660 if (ECONNREFUSED != errno)
1661 #endif
1662
1663 debugs(50, 1, "comm_udp_sendto: FD " << fd << ", (family=" << fd_table[fd].sock_family << ") " << to_addr << ": " << xstrerror());
1664
1665 return COMM_ERROR;
1666 }
1667
1668 void
1669 comm_add_close_handler(int fd, PF * handler, void *data)
1670 {
1671 debugs(5, 5, "comm_add_close_handler: FD " << fd << ", handler=" <<
1672 handler << ", data=" << data);
1673
1674 AsyncCall::Pointer call=commCbCall(5,4, "SomeCloseHandler",
1675 CommCloseCbPtrFun(handler, data));
1676 comm_add_close_handler(fd, call);
1677 }
1678
1679 void
1680 comm_add_close_handler(int fd, AsyncCall::Pointer &call)
1681 {
1682 debugs(5, 5, "comm_add_close_handler: FD " << fd << ", AsyncCall=" << call);
1683
1684 /*TODO:Check for a similar scheduled AsyncCall*/
1685 // for (c = fd_table[fd].closeHandler; c; c = c->next)
1686 // assert(c->handler != handler || c->data != data);
1687
1688 call->setNext(fd_table[fd].closeHandler);
1689
1690 fd_table[fd].closeHandler = call;
1691 }
1692
1693
1694 // remove function-based close handler
1695 void
1696 comm_remove_close_handler(int fd, PF * handler, void *data)
1697 {
1698 assert (isOpen(fd));
1699 /* Find handler in list */
1700 debugs(5, 5, "comm_remove_close_handler: FD " << fd << ", handler=" <<
1701 handler << ", data=" << data);
1702
1703 AsyncCall::Pointer p;
1704 for (p = fd_table[fd].closeHandler; p != NULL; p = p->Next()) {
1705 typedef CommCbFunPtrCallT<CommCloseCbPtrFun> Call;
1706 const Call *call = dynamic_cast<const Call*>(p.getRaw());
1707 if (!call) // method callbacks have their own comm_remove_close_handler
1708 continue;
1709
1710 typedef CommCloseCbParams Params;
1711 const Params &params = GetCommParams<Params>(p);
1712 if (call->dialer.handler == handler && params.data == data)
1713 break; /* This is our handler */
1714 }
1715
1716 // comm_close removes all close handlers so our handler may be gone
1717 if (p != NULL)
1718 p->cancel("comm_remove_close_handler");
1719 // TODO: should we remove the handler from the close handlers list?
1720 }
1721
1722 // remove method-based close handler
1723 void
1724 comm_remove_close_handler(int fd, AsyncCall::Pointer &call)
1725 {
1726 assert (isOpen(fd));
1727 debugs(5, 5, "comm_remove_close_handler: FD " << fd << ", AsyncCall=" << call);
1728
1729 // comm_close removes all close handlers so our handler may be gone
1730 // TODO: should we remove the handler from the close handlers list?
1731 #if 0
1732 // Check to see if really exist the given AsyncCall in comm_close handlers
1733 // TODO: optimize: this slow code is only needed for the assert() below
1734 AsyncCall::Pointer p;
1735 for (p = fd_table[fd].closeHandler; p != NULL && p != call; p = p->Next());
1736 assert(p == call);
1737 #endif
1738
1739 call->cancel("comm_remove_close_handler");
1740 }
1741
1742 static void
1743 commSetNoLinger(int fd)
1744 {
1745
1746 struct linger L;
1747 L.l_onoff = 0; /* off */
1748 L.l_linger = 0;
1749
1750 if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char *) &L, sizeof(L)) < 0)
1751 debugs(50, 0, "commSetNoLinger: FD " << fd << ": " << xstrerror());
1752
1753 fd_table[fd].flags.nolinger = 1;
1754 }
1755
1756 static void
1757 commSetReuseAddr(int fd)
1758 {
1759 int on = 1;
1760
1761 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &on, sizeof(on)) < 0)
1762 debugs(50, 1, "commSetReuseAddr: FD " << fd << ": " << xstrerror());
1763 }
1764
1765 static void
1766 commSetTcpRcvbuf(int fd, int size)
1767 {
1768 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (char *) &size, sizeof(size)) < 0)
1769 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
1770 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (char *) &size, sizeof(size)) < 0)
1771 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
1772 #ifdef TCP_WINDOW_CLAMP
1773 if (setsockopt(fd, SOL_TCP, TCP_WINDOW_CLAMP, (char *) &size, sizeof(size)) < 0)
1774 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
1775 #endif
1776 }
1777
1778 int
1779 commSetNonBlocking(int fd)
1780 {
1781 #ifndef _SQUID_MSWIN_
1782 int flags;
1783 int dummy = 0;
1784 #endif
1785 #ifdef _SQUID_WIN32_
1786
1787 int nonblocking = TRUE;
1788
1789 #ifdef _SQUID_CYGWIN_
1790
1791 if (fd_table[fd].type != FD_PIPE) {
1792 #endif
1793
1794 if (ioctl(fd, FIONBIO, &nonblocking) < 0) {
1795 debugs(50, 0, "commSetNonBlocking: FD " << fd << ": " << xstrerror() << " " << fd_table[fd].type);
1796 return COMM_ERROR;
1797 }
1798
1799 #ifdef _SQUID_CYGWIN_
1800
1801 } else {
1802 #endif
1803 #endif
1804 #ifndef _SQUID_MSWIN_
1805
1806 if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
1807 debugs(50, 0, "FD " << fd << ": fcntl F_GETFL: " << xstrerror());
1808 return COMM_ERROR;
1809 }
1810
1811 if (fcntl(fd, F_SETFL, flags | SQUID_NONBLOCK) < 0) {
1812 debugs(50, 0, "commSetNonBlocking: FD " << fd << ": " << xstrerror());
1813 return COMM_ERROR;
1814 }
1815
1816 #endif
1817 #ifdef _SQUID_CYGWIN_
1818
1819 }
1820
1821 #endif
1822 fd_table[fd].flags.nonblocking = 1;
1823
1824 return 0;
1825 }
1826
1827 int
1828 commUnsetNonBlocking(int fd)
1829 {
1830 #ifdef _SQUID_MSWIN_
1831 int nonblocking = FALSE;
1832
1833 if (ioctlsocket(fd, FIONBIO, (unsigned long *) &nonblocking) < 0) {
1834 #else
1835 int flags;
1836 int dummy = 0;
1837
1838 if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
1839 debugs(50, 0, "FD " << fd << ": fcntl F_GETFL: " << xstrerror());
1840 return COMM_ERROR;
1841 }
1842
1843 if (fcntl(fd, F_SETFL, flags & (~SQUID_NONBLOCK)) < 0) {
1844 #endif
1845 debugs(50, 0, "commUnsetNonBlocking: FD " << fd << ": " << xstrerror());
1846 return COMM_ERROR;
1847 }
1848
1849 fd_table[fd].flags.nonblocking = 0;
1850 return 0;
1851 }
1852
1853 void
1854 commSetCloseOnExec(int fd) {
1855 #ifdef FD_CLOEXEC
1856 int flags;
1857 int dummy = 0;
1858
1859 if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
1860 debugs(50, 0, "FD " << fd << ": fcntl F_GETFL: " << xstrerror());
1861 return;
1862 }
1863
1864 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)
1865 debugs(50, 0, "FD " << fd << ": set close-on-exec failed: " << xstrerror());
1866
1867 fd_table[fd].flags.close_on_exec = 1;
1868
1869 #endif
1870 }
1871
1872 #ifdef TCP_NODELAY
1873 static void
1874 commSetTcpNoDelay(int fd) {
1875 int on = 1;
1876
1877 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &on, sizeof(on)) < 0)
1878 debugs(50, 1, "commSetTcpNoDelay: FD " << fd << ": " << xstrerror());
1879
1880 fd_table[fd].flags.nodelay = 1;
1881 }
1882
1883 #endif
1884
1885 void
1886 commSetTcpKeepalive(int fd, int idle, int interval, int timeout) {
1887 int on = 1;
1888 #ifdef TCP_KEEPCNT
1889 if (timeout && interval) {
1890 int count = (timeout + interval - 1) / interval;
1891 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT, &count, sizeof(on)) < 0)
1892 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
1893 }
1894 #endif
1895 #ifdef TCP_KEEPIDLE
1896 if (idle) {
1897 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &idle, sizeof(on)) < 0)
1898 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
1899 }
1900 #endif
1901 #ifdef TCP_KEEPINTVL
1902 if (interval) {
1903 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &interval, sizeof(on)) < 0)
1904 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
1905 }
1906 #endif
1907 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (char *) &on, sizeof(on)) < 0)
1908 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
1909 }
1910
1911 void
1912 comm_init(void) {
1913 fd_table =(fde *) xcalloc(Squid_MaxFD, sizeof(fde));
1914 fdd_table = (fd_debug_t *)xcalloc(Squid_MaxFD, sizeof(fd_debug_t));
1915
1916 fdc_table = new AcceptFD[Squid_MaxFD];
1917 for (int pos = 0; pos < Squid_MaxFD; ++pos) {
1918 fdc_table[pos] = AcceptFD(pos);
1919 }
1920
1921 commfd_table = (comm_fd_t *) xcalloc(Squid_MaxFD, sizeof(comm_fd_t));
1922 for (int pos = 0; pos < Squid_MaxFD; pos++) {
1923 commfd_table[pos].fd = pos;
1924 commfd_table[pos].readcb.fd = pos;
1925 commfd_table[pos].readcb.type = IOCB_READ;
1926 commfd_table[pos].writecb.fd = pos;
1927 commfd_table[pos].writecb.type = IOCB_WRITE;
1928 }
1929
1930 /* XXX account fd_table */
1931 /* Keep a few file descriptors free so that we don't run out of FD's
1932 * after accepting a client but before it opens a socket or a file.
1933 * Since Squid_MaxFD can be as high as several thousand, don't waste them */
1934 RESERVED_FD = min(100, Squid_MaxFD / 4);
1935
1936 conn_close_pool = memPoolCreate("close_handler", sizeof(close_handler));
1937
1938 TheHalfClosed = new DescriptorSet;
1939 }
1940
1941 void
1942 comm_exit(void) {
1943 delete TheHalfClosed;
1944 TheHalfClosed = NULL;
1945
1946 safe_free(fd_table);
1947 safe_free(fdd_table);
1948 if (fdc_table) {
1949 delete[] fdc_table;
1950 fdc_table = NULL;
1951 }
1952 safe_free(commfd_table);
1953 }
1954
1955 /* Write to FD. */
1956 static void
1957 commHandleWrite(int fd, void *data) {
1958 comm_io_callback_t *state = (comm_io_callback_t *)data;
1959 int len = 0;
1960 int nleft;
1961
1962 assert(state == COMMIO_FD_WRITECB(fd));
1963
1964 PROF_start(commHandleWrite);
1965 debugs(5, 5, "commHandleWrite: FD " << fd << ": off " <<
1966 (long int) state->offset << ", sz " << (long int) state->size << ".");
1967
1968 nleft = state->size - state->offset;
1969 len = FD_WRITE_METHOD(fd, state->buf + state->offset, nleft);
1970 debugs(5, 5, "commHandleWrite: write() returns " << len);
1971 fd_bytes(fd, len, FD_WRITE);
1972 statCounter.syscalls.sock.writes++;
1973
1974 if (len == 0) {
1975 /* Note we even call write if nleft == 0 */
1976 /* We're done */
1977
1978 if (nleft != 0)
1979 debugs(5, 1, "commHandleWrite: FD " << fd << ": write failure: connection closed with " << nleft << " bytes remaining.");
1980
1981 commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), nleft ? COMM_ERROR : COMM_OK, errno);
1982 } else if (len < 0) {
1983 /* An error */
1984
1985 if (fd_table[fd].flags.socket_eof) {
1986 debugs(50, 2, "commHandleWrite: FD " << fd << ": write failure: " << xstrerror() << ".");
1987 commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), nleft ? COMM_ERROR : COMM_OK, errno);
1988 } else if (ignoreErrno(errno)) {
1989 debugs(50, 10, "commHandleWrite: FD " << fd << ": write failure: " << xstrerror() << ".");
1990 commSetSelect(fd,
1991 COMM_SELECT_WRITE,
1992 commHandleWrite,
1993 state,
1994 0);
1995 } else {
1996 debugs(50, 2, "commHandleWrite: FD " << fd << ": write failure: " << xstrerror() << ".");
1997 commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), nleft ? COMM_ERROR : COMM_OK, errno);
1998 }
1999 } else {
2000 /* A successful write, continue */
2001 state->offset += len;
2002
2003 if (state->offset < state->size) {
2004 /* Not done, reinstall the write handler and write some more */
2005 commSetSelect(fd,
2006 COMM_SELECT_WRITE,
2007 commHandleWrite,
2008 state,
2009 0);
2010 } else {
2011 commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), nleft ? COMM_OK : COMM_ERROR, errno);
2012 }
2013 }
2014
2015 PROF_stop(commHandleWrite);
2016 }
2017
2018 /*
2019 * Queue a write. handler/handler_data are called when the write
2020 * completes, on error, or on file descriptor close.
2021 *
2022 * free_func is used to free the passed buffer when the write has completed.
2023 */
2024 void
2025 comm_write(int fd, const char *buf, int size, IOCB * handler, void *handler_data, FREE * free_func) {
2026 AsyncCall::Pointer call = commCbCall(5,5, "SomeCommWriteHander",
2027 CommIoCbPtrFun(handler, handler_data));
2028
2029 comm_write(fd, buf, size, call, free_func);
2030 }
2031
2032 void
2033 comm_write(int fd, const char *buf, int size, AsyncCall::Pointer &callback, FREE * free_func) {
2034 debugs(5, 5, "comm_write: FD " << fd << ": sz " << size << ": asynCall " << callback);
2035
2036 /* Make sure we are open, not closing, and not writing */
2037 assert(isOpen(fd));
2038 assert(!fd_table[fd].closing());
2039 comm_io_callback_t *ccb = COMMIO_FD_WRITECB(fd);
2040 assert(!ccb->active());
2041
2042 /* Queue the write */
2043 commio_set_callback(fd, IOCB_WRITE, ccb, callback,
2044 (char *)buf, free_func, size);
2045 commSetSelect(fd, COMM_SELECT_WRITE, commHandleWrite, ccb, 0);
2046 }
2047
2048
2049 /* a wrapper around comm_write to allow for MemBuf to be comm_written in a snap */
2050 void
2051 comm_write_mbuf(int fd, MemBuf *mb, IOCB * handler, void *handler_data) {
2052 comm_write(fd, mb->buf, mb->size, handler, handler_data, mb->freeFunc());
2053 }
2054
2055 void
2056 comm_write_mbuf(int fd, MemBuf *mb, AsyncCall::Pointer &callback) {
2057 comm_write(fd, mb->buf, mb->size, callback, mb->freeFunc());
2058 }
2059
2060
2061 /*
2062 * hm, this might be too general-purpose for all the places we'd
2063 * like to use it.
2064 */
2065 int
2066 ignoreErrno(int ierrno) {
2067 switch (ierrno) {
2068
2069 case EINPROGRESS:
2070
2071 case EWOULDBLOCK:
2072 #if EAGAIN != EWOULDBLOCK
2073
2074 case EAGAIN:
2075 #endif
2076
2077 case EALREADY:
2078
2079 case EINTR:
2080 #ifdef ERESTART
2081
2082 case ERESTART:
2083 #endif
2084
2085 return 1;
2086
2087 default:
2088 return 0;
2089 }
2090
2091 /* NOTREACHED */
2092 }
2093
2094 void
2095 commCloseAllSockets(void) {
2096 int fd;
2097 fde *F = NULL;
2098
2099 for (fd = 0; fd <= Biggest_FD; fd++) {
2100 F = &fd_table[fd];
2101
2102 if (!F->flags.open)
2103 continue;
2104
2105 if (F->type != FD_SOCKET)
2106 continue;
2107
2108 if (F->flags.ipc) /* don't close inter-process sockets */
2109 continue;
2110
2111 if (F->timeoutHandler != NULL) {
2112 AsyncCall::Pointer callback = F->timeoutHandler;
2113 F->timeoutHandler = NULL;
2114 debugs(5, 5, "commCloseAllSockets: FD " << fd << ": Calling timeout handler");
2115 ScheduleCallHere(callback);
2116 } else {
2117 debugs(5, 5, "commCloseAllSockets: FD " << fd << ": calling comm_close()");
2118 comm_close(fd);
2119 }
2120 }
2121 }
2122
2123 static bool
2124 AlreadyTimedOut(fde *F) {
2125 if (!F->flags.open)
2126 return true;
2127
2128 if (F->timeout == 0)
2129 return true;
2130
2131 if (F->timeout > squid_curtime)
2132 return true;
2133
2134 return false;
2135 }
2136
2137 void
2138 checkTimeouts(void) {
2139 int fd;
2140 fde *F = NULL;
2141 AsyncCall::Pointer callback;
2142
2143 for (fd = 0; fd <= Biggest_FD; fd++) {
2144 F = &fd_table[fd];
2145
2146 if (AlreadyTimedOut(F))
2147 continue;
2148
2149 debugs(5, 5, "checkTimeouts: FD " << fd << " Expired");
2150
2151 if (F->timeoutHandler != NULL) {
2152 debugs(5, 5, "checkTimeouts: FD " << fd << ": Call timeout handler");
2153 callback = F->timeoutHandler;
2154 F->timeoutHandler = NULL;
2155 ScheduleCallHere(callback);
2156 } else {
2157 debugs(5, 5, "checkTimeouts: FD " << fd << ": Forcing comm_close()");
2158 comm_close(fd);
2159 }
2160 }
2161 }
2162
2163 /*
2164 * New-style listen and accept routines
2165 *
2166 * Listen simply registers our interest in an FD for listening,
2167 * and accept takes a callback to call when an FD has been
2168 * accept()ed.
2169 */
2170 int
2171 comm_listen(int sock) {
2172 int x;
2173
2174 if ((x = listen(sock, Squid_MaxFD >> 2)) < 0) {
2175 debugs(50, 0, "comm_listen: listen(" << (Squid_MaxFD >> 2) << ", " << sock << "): " << xstrerror());
2176 return x;
2177 }
2178
2179 if (Config.accept_filter && strcmp(Config.accept_filter, "none") != 0) {
2180 #ifdef SO_ACCEPTFILTER
2181 struct accept_filter_arg afa;
2182 bzero(&afa, sizeof(afa));
2183 debugs(5, DBG_CRITICAL, "Installing accept filter '" << Config.accept_filter << "' on FD " << sock);
2184 xstrncpy(afa.af_name, Config.accept_filter, sizeof(afa.af_name));
2185 x = setsockopt(sock, SOL_SOCKET, SO_ACCEPTFILTER, &afa, sizeof(afa));
2186 if (x < 0)
2187 debugs(5, 0, "SO_ACCEPTFILTER '" << Config.accept_filter << "': '" << xstrerror());
2188 #elif defined(TCP_DEFER_ACCEPT)
2189 int seconds = 30;
2190 if (strncmp(Config.accept_filter, "data=", 5) == 0)
2191 seconds = atoi(Config.accept_filter + 5);
2192 x = setsockopt(sock, IPPROTO_TCP, TCP_DEFER_ACCEPT, &seconds, sizeof(seconds));
2193 if (x < 0)
2194 debugs(5, 0, "TCP_DEFER_ACCEPT '" << Config.accept_filter << "': '" << xstrerror());
2195 #else
2196 debugs(5, 0, "accept_filter not supported on your OS");
2197 #endif
2198 }
2199
2200 return sock;
2201 }
2202
2203 void
2204 comm_accept(int fd, IOACB *handler, void *handler_data) {
2205 debugs(5, 5, "comm_accept: FD " << fd << " handler: " << (void*)handler);
2206 assert(isOpen(fd));
2207
2208 AsyncCall::Pointer call = commCbCall(5,5, "SomeCommAcceptHandler",
2209 CommAcceptCbPtrFun(handler, handler_data));
2210 fdc_table[fd].subscribe(call);
2211 }
2212
2213 void
2214 comm_accept(int fd, AsyncCall::Pointer &call) {
2215 debugs(5, 5, "comm_accept: FD " << fd << " AsyncCall: " << call);
2216 assert(isOpen(fd));
2217
2218 fdc_table[fd].subscribe(call);
2219 }
2220
2221 // Called when somebody wants to be notified when our socket accepts new
2222 // connection. We do not probe the FD until there is such interest.
2223 void
2224 AcceptFD::subscribe(AsyncCall::Pointer &call) {
2225 /* make sure we're not pending! */
2226 assert(!theCallback);
2227 theCallback = call;
2228
2229 #if OPTIMISTIC_IO
2230 mayAcceptMore = true; // even if we failed to accept last time
2231 #endif
2232
2233 if (mayAcceptMore)
2234 acceptNext();
2235 else
2236 commSetSelect(fd, COMM_SELECT_READ, comm_accept_try, NULL, 0);
2237 }
2238
2239 bool
2240 AcceptFD::acceptOne() {
2241 // If there is no callback and we accept, we will leak the accepted FD.
2242 // When we are running out of FDs, there is often no callback.
2243 if (!theCallback) {
2244 debugs(5, 5, "AcceptFD::acceptOne orphaned: FD " << fd);
2245 // XXX: can we remove this and similar "just in case" calls and
2246 // either listen always or listen only when there is a callback?
2247 if (!AcceptLimiter::Instance().deferring())
2248 commSetSelect(fd, COMM_SELECT_READ, comm_accept_try, NULL, 0);
2249 return false;
2250 }
2251
2252 /*
2253 * We don't worry about running low on FDs here. Instead,
2254 * httpAccept() will use AcceptLimiter if we reach the limit
2255 * there.
2256 */
2257
2258 /* Accept a new connection */
2259 ConnectionDetail connDetails;
2260 int newfd = comm_old_accept(fd, connDetails);
2261
2262 /* Check for errors */
2263
2264 if (newfd < 0) {
2265 assert(theCallback != NULL);
2266
2267 if (newfd == COMM_NOMESSAGE) {
2268 /* register interest again */
2269 debugs(5, 5, HERE << "try later: FD " << fd <<
2270 " handler: " << *theCallback);
2271 commSetSelect(fd, COMM_SELECT_READ, comm_accept_try, NULL, 0);
2272 return false;
2273 }
2274
2275 // A non-recoverable error; notify the caller */
2276 notify(-1, COMM_ERROR, errno, connDetails);
2277 return false;
2278 }
2279
2280 assert(theCallback != NULL);
2281 debugs(5, 5, "AcceptFD::acceptOne accepted: FD " << fd <<
2282 " newfd: " << newfd << " from: " << connDetails.peer <<
2283 " handler: " << *theCallback);
2284 notify(newfd, COMM_OK, 0, connDetails);
2285 return true;
2286 }
2287
2288 void
2289 AcceptFD::acceptNext() {
2290 mayAcceptMore = acceptOne();
2291 }
2292
2293 void
2294 AcceptFD::notify(int newfd, comm_err_t errcode, int xerrno, const ConnectionDetail &connDetails) {
2295 if (theCallback != NULL) {
2296 typedef CommAcceptCbParams Params;
2297 Params &params = GetCommParams<Params>(theCallback);
2298 params.fd = fd;
2299 params.nfd = newfd;
2300 params.details = connDetails;
2301 params.flag = errcode;
2302 params.xerrno = xerrno;
2303 ScheduleCallHere(theCallback);
2304 theCallback = NULL;
2305 }
2306 }
2307
2308 /*
2309 * This callback is called whenever a filedescriptor is ready
2310 * to dupe itself and fob off an accept()ed connection
2311 */
2312 static void
2313 comm_accept_try(int fd, void *) {
2314 assert(isOpen(fd));
2315 fdc_table[fd].acceptNext();
2316 }
2317
2318 void CommIO::Initialise() {
2319 /* Initialize done pipe signal */
2320 int DonePipe[2];
2321 if (pipe(DonePipe)) {}
2322 DoneFD = DonePipe[1];
2323 DoneReadFD = DonePipe[0];
2324 fd_open(DoneReadFD, FD_PIPE, "async-io completetion event: main");
2325 fd_open(DoneFD, FD_PIPE, "async-io completetion event: threads");
2326 commSetNonBlocking(DoneReadFD);
2327 commSetNonBlocking(DoneFD);
2328 commSetSelect(DoneReadFD, COMM_SELECT_READ, NULLFDHandler, NULL, 0);
2329 Initialised = true;
2330 }
2331
2332 void CommIO::NotifyIOClose() {
2333 /* Close done pipe signal */
2334 FlushPipe();
2335 close(DoneFD);
2336 close(DoneReadFD);
2337 fd_close(DoneFD);
2338 fd_close(DoneReadFD);
2339 Initialised = false;
2340 }
2341
2342 bool CommIO::Initialised = false;
2343 bool CommIO::DoneSignalled = false;
2344 int CommIO::DoneFD = -1;
2345 int CommIO::DoneReadFD = -1;
2346
2347 void
2348 CommIO::FlushPipe() {
2349 char buf[256];
2350 FD_READ_METHOD(DoneReadFD, buf, sizeof(buf));
2351 }
2352
2353 void
2354 CommIO::NULLFDHandler(int fd, void *data) {
2355 FlushPipe();
2356 commSetSelect(fd, COMM_SELECT_READ, NULLFDHandler, NULL, 0);
2357 }
2358
2359 void
2360 CommIO::ResetNotifications() {
2361 if (DoneSignalled) {
2362 FlushPipe();
2363 DoneSignalled = false;
2364 }
2365 }
2366
2367 AcceptLimiter AcceptLimiter::Instance_;
2368
2369 AcceptLimiter &AcceptLimiter::Instance() {
2370 return Instance_;
2371 }
2372
2373 bool
2374 AcceptLimiter::deferring() const {
2375 return deferred.size() > 0;
2376 }
2377
2378 void
2379 AcceptLimiter::defer (int fd, Acceptor::AcceptorFunction *aFunc, void *data) {
2380 debugs(5, 5, "AcceptLimiter::defer: FD " << fd << " handler: " << (void*)aFunc);
2381 Acceptor temp;
2382 temp.theFunction = aFunc;
2383 temp.acceptFD = fd;
2384 temp.theData = data;
2385 deferred.push_back(temp);
2386 }
2387
2388 void
2389 AcceptLimiter::kick() {
2390 if (!deferring())
2391 return;
2392
2393 /* Yes, this means the first on is the last off....
2394 * If the list container was a little more friendly, we could sensibly us it.
2395 */
2396 Acceptor temp = deferred.pop_back();
2397
2398 comm_accept (temp.acceptFD, temp.theFunction, temp.theData);
2399 }
2400
2401 /// Start waiting for a possibly half-closed connection to close
2402 // by scheduling a read callback to a monitoring handler that
2403 // will close the connection on read errors.
2404 void
2405 commStartHalfClosedMonitor(int fd) {
2406 debugs(5, 5, HERE << "adding FD " << fd << " to " << *TheHalfClosed);
2407 assert(isOpen(fd));
2408 assert(!commHasHalfClosedMonitor(fd));
2409 (void)TheHalfClosed->add(fd); // could also assert the result
2410 commPlanHalfClosedCheck(); // may schedule check if we added the first FD
2411 }
2412
2413 static
2414 void
2415 commPlanHalfClosedCheck() {
2416 if (!WillCheckHalfClosed && !TheHalfClosed->empty()) {
2417 eventAdd("commHalfClosedCheck", &commHalfClosedCheck, NULL, 1.0, 1);
2418 WillCheckHalfClosed = true;
2419 }
2420 }
2421
2422 /// iterates over all descriptors that may need half-closed tests and
2423 /// calls comm_read for those that do; re-schedules the check if needed
2424 static
2425 void
2426 commHalfClosedCheck(void *) {
2427 debugs(5, 5, HERE << "checking " << *TheHalfClosed);
2428
2429 typedef DescriptorSet::const_iterator DSCI;
2430 const DSCI end = TheHalfClosed->end();
2431 for (DSCI i = TheHalfClosed->begin(); i != end; ++i) {
2432 const int fd = *i;
2433 if (!fd_table[fd].halfClosedReader) { // not reading already
2434 AsyncCall::Pointer call = commCbCall(5,4, "commHalfClosedReader",
2435 CommIoCbPtrFun(&commHalfClosedReader, NULL));
2436 comm_read(fd, NULL, 0, call);
2437 fd_table[fd].halfClosedReader = call;
2438 }
2439 }
2440
2441 WillCheckHalfClosed = false; // as far as we know
2442 commPlanHalfClosedCheck(); // may need to check again
2443 }
2444
2445 /// checks whether we are waiting for possibly half-closed connection to close
2446 // We are monitoring if the read handler for the fd is the monitoring handler.
2447 bool
2448 commHasHalfClosedMonitor(int fd) {
2449 return TheHalfClosed->has(fd);
2450 }
2451
2452 /// stop waiting for possibly half-closed connection to close
2453 static void
2454 commStopHalfClosedMonitor(int const fd) {
2455 debugs(5, 5, HERE << "removing FD " << fd << " from " << *TheHalfClosed);
2456
2457 // cancel the read if one was scheduled
2458 AsyncCall::Pointer reader = fd_table[fd].halfClosedReader;
2459 if (reader != NULL)
2460 comm_read_cancel(fd, reader);
2461 fd_table[fd].halfClosedReader = NULL;
2462
2463 TheHalfClosed->del(fd);
2464 }
2465
2466 /// I/O handler for the possibly half-closed connection monitoring code
2467 static void
2468 commHalfClosedReader(int fd, char *, size_t size, comm_err_t flag, int, void *) {
2469 // there cannot be more data coming in on half-closed connections
2470 assert(size == 0);
2471 assert(commHasHalfClosedMonitor(fd)); // or we would have canceled the read
2472
2473 fd_table[fd].halfClosedReader = NULL; // done reading, for now
2474
2475 // nothing to do if fd is being closed
2476 if (flag == COMM_ERR_CLOSING)
2477 return;
2478
2479 // if read failed, close the connection
2480 if (flag != COMM_OK) {
2481 debugs(5, 3, "commHalfClosedReader: closing FD " << fd);
2482 comm_close(fd);
2483 return;
2484 }
2485
2486 // continue waiting for close or error
2487 commPlanHalfClosedCheck(); // make sure this fd will be checked again
2488 }
2489
2490
2491 CommRead::CommRead() : fd(-1), buf(NULL), len(0), callback(NULL) {}
2492
2493 CommRead::CommRead(int fd_, char *buf_, int len_, AsyncCall::Pointer &callback_)
2494 : fd(fd_), buf(buf_), len(len_), callback(callback_) {}
2495
2496 DeferredRead::DeferredRead () : theReader(NULL), theContext(NULL), theRead(), cancelled(false) {}
2497
2498 DeferredRead::DeferredRead (DeferrableRead *aReader, void *data, CommRead const &aRead) : theReader(aReader), theContext (data), theRead(aRead), cancelled(false) {}
2499
2500 DeferredReadManager::~DeferredReadManager() {
2501 flushReads();
2502 assert (deferredReads.empty());
2503 }
2504
2505 /* explicit instantiation required for some systems */
2506
2507 /// \cond AUTODOCS-IGNORE
2508 template cbdata_type CbDataList<DeferredRead>::CBDATA_CbDataList;
2509 /// \endcond
2510
2511 void
2512 DeferredReadManager::delayRead(DeferredRead const &aRead) {
2513 debugs(5, 3, "Adding deferred read on FD " << aRead.theRead.fd);
2514 CbDataList<DeferredRead> *temp = deferredReads.push_back(aRead);
2515
2516 // We have to use a global function as a closer and point to temp
2517 // instead of "this" because DeferredReadManager is not a job and
2518 // is not even cbdata protected
2519 AsyncCall::Pointer closer = commCbCall(5,4,
2520 "DeferredReadManager::CloseHandler",
2521 CommCloseCbPtrFun(&CloseHandler, temp));
2522 comm_add_close_handler(aRead.theRead.fd, closer);
2523 temp->element.closer = closer; // remeber so that we can cancel
2524 }
2525
2526 void
2527 DeferredReadManager::CloseHandler(int fd, void *thecbdata) {
2528 if (!cbdataReferenceValid (thecbdata))
2529 return;
2530
2531 CbDataList<DeferredRead> *temp = (CbDataList<DeferredRead> *)thecbdata;
2532
2533 temp->element.closer = NULL;
2534 temp->element.markCancelled();
2535 }
2536
2537 DeferredRead
2538 DeferredReadManager::popHead(CbDataListContainer<DeferredRead> &deferredReads) {
2539 assert (!deferredReads.empty());
2540
2541 DeferredRead &read = deferredReads.head->element;
2542 if (!read.cancelled) {
2543 comm_remove_close_handler(read.theRead.fd, read.closer);
2544 read.closer = NULL;
2545 }
2546
2547 DeferredRead result = deferredReads.pop_front();
2548
2549 return result;
2550 }
2551
2552 void
2553 DeferredReadManager::kickReads(int const count) {
2554 /* if we had CbDataList::size() we could consolidate this and flushReads */
2555
2556 if (count < 1) {
2557 flushReads();
2558 return;
2559 }
2560
2561 size_t remaining = count;
2562
2563 while (!deferredReads.empty() && remaining) {
2564 DeferredRead aRead = popHead(deferredReads);
2565 kickARead(aRead);
2566
2567 if (!aRead.cancelled)
2568 --remaining;
2569 }
2570 }
2571
2572 void
2573 DeferredReadManager::flushReads() {
2574 CbDataListContainer<DeferredRead> reads;
2575 reads = deferredReads;
2576 deferredReads = CbDataListContainer<DeferredRead>();
2577
2578 // XXX: For fairness this SHOULD randomize the order
2579 while (!reads.empty()) {
2580 DeferredRead aRead = popHead(reads);
2581 kickARead(aRead);
2582 }
2583 }
2584
2585 void
2586 DeferredReadManager::kickARead(DeferredRead const &aRead) {
2587 if (aRead.cancelled)
2588 return;
2589
2590 if (aRead.theRead.fd>=0 && fd_table[aRead.theRead.fd].closing())
2591 return;
2592
2593 debugs(5, 3, "Kicking deferred read on FD " << aRead.theRead.fd);
2594
2595 aRead.theReader(aRead.theContext, aRead.theRead);
2596 }
2597
2598 void
2599 DeferredRead::markCancelled() {
2600 cancelled = true;
2601 }
2602
2603 ConnectionDetail::ConnectionDetail() : me(), peer() {
2604 }
2605
2606 int
2607 CommSelectEngine::checkEvents(int timeout) {
2608 static time_t last_timeout = 0;
2609
2610 /* No, this shouldn't be here. But it shouldn't be in each comm handler. -adrian */
2611 if (squid_curtime > last_timeout) {
2612 last_timeout = squid_curtime;
2613 checkTimeouts();
2614 }
2615
2616 switch (comm_select(timeout)) {
2617
2618 case COMM_OK:
2619
2620 case COMM_TIMEOUT:
2621 return 0;
2622
2623 case COMM_IDLE:
2624
2625 case COMM_SHUTDOWN:
2626 return EVENT_IDLE;
2627
2628 case COMM_ERROR:
2629 return EVENT_ERROR;
2630
2631 default:
2632 fatal_dump("comm.cc: Internal error -- this should never happen.");
2633 return EVENT_ERROR;
2634 };
2635 }