]> git.ipfire.org Git - thirdparty/squid.git/blame - src/comm.cc
Log ICAP_ERR_GONE ICAP transaction outcome when ICAP initiator disappears early.
[thirdparty/squid.git] / src / comm.cc
CommitLineData
30a4f2a8 1/*
b510f3a1 2 * DEBUG: section 05 Socket Functions
30a4f2a8 3 * AUTHOR: Harvest Derived
4 *
2b6662ba 5 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 6 * ----------------------------------------------------------
30a4f2a8 7 *
2b6662ba 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.
30a4f2a8 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.
9e008dda 21 *
30a4f2a8 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.
9e008dda 26 *
30a4f2a8 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
cbdec147 29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 30 *
2d8c0b1a 31 *
32 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
30a4f2a8 33 */
090089c4 34
44a47c6e 35#include "squid.h"
cfd66529 36#include "base/AsyncCall.h"
c4b7a5a9 37#include "StoreIOBuffer.h"
38#include "comm.h"
a553a5a3 39#include "event.h"
528b2c61 40#include "fde.h"
04f55905
AJ
41#include "comm/AcceptLimiter.h"
42#include "comm/comm_internal.h"
cfd66529 43#include "comm/Connection.h"
ec41b64c 44#include "comm/IoCallback.h"
d841c88d 45#include "comm/Loops.h"
ec41b64c 46#include "comm/Write.h"
cbff89ba 47#include "comm/TcpAcceptor.h"
56410c89 48#include "CommIO.h"
a553a5a3 49#include "CommRead.h"
0eb49b6d 50#include "MemBuf.h"
781ce8ff 51#include "pconn.h"
985c86bc 52#include "SquidTime.h"
b0469965 53#include "CommCalls.h"
74257126 54#include "DescriptorSet.h"
9b5c4a9a 55#include "icmp/net_db.h"
96d89ea0
HN
56#include "ip/Address.h"
57#include "ip/Intercept.h"
425de4c8 58#include "ip/QosConfig.h"
055421ee 59#include "ip/tools.h"
b4cd430a 60#include "ClientInfo.h"
4db984be
CT
61#if USE_SSL
62#include "ssl/support.h"
63#endif
090089c4 64
b4cd430a 65#include "cbdata.h"
be266cb2 66#if _SQUID_CYGWIN_
b671cc68 67#include <sys/ioctl.h>
68#endif
30a4f2a8 69#ifdef HAVE_NETINET_TCP_H
70#include <netinet/tcp.h>
71#endif
090089c4 72
2b663917 73/*
74 * New C-like simple comm code. This stuff is a mess and doesn't really buy us anything.
75 */
76
82ec8dfc
AR
77static void commStopHalfClosedMonitor(int fd);
78static IOCB commHalfClosedReader;
9c8a6c3b 79static void comm_init_opened(const Comm::ConnectionPointer &conn, tos_t tos, nfmark_t nfmark, const char *note, struct addrinfo *AI);
a67d2b2e 80static int comm_apply_flags(int new_socket, Ip::Address &addr, int flags, struct addrinfo *AI);
82ec8dfc 81
9a0a18de 82#if USE_DELAY_POOLS
b4cd430a
CT
83CBDATA_CLASS_INIT(CommQuotaQueue);
84
85static void commHandleWriteHelper(void * data);
86#endif
87
090089c4 88/* STATIC */
62e76326 89
74257126
AR
90static DescriptorSet *TheHalfClosed = NULL; /// the set of half-closed FDs
91static bool WillCheckHalfClosed = false; /// true if check is scheduled
92static EVH commHalfClosedCheck;
93static void commPlanHalfClosedCheck();
94
cc192b50 95static comm_err_t commBind(int s, struct addrinfo &);
f5b8bbc4 96static void commSetReuseAddr(int);
97static void commSetNoLinger(int);
30a4f2a8 98#ifdef TCP_NODELAY
f5b8bbc4 99static void commSetTcpNoDelay(int);
30a4f2a8 100#endif
f5b8bbc4 101static void commSetTcpRcvbuf(int, int);
723123a9 102
b001e822 103static MemAllocator *conn_close_pool = NULL;
c4b7a5a9 104fd_debug_t *fdd_table = NULL;
62e76326 105
04f55905 106bool
b0469965 107isOpen(const int fd)
b300c36d 108{
cbff89ba 109 return fd >= 0 && fd_table[fd].flags.open != 0;
b300c36d 110}
111
e1a88700 112/**
c4b7a5a9 113 * Attempt a read
114 *
115 * If the read attempt succeeds or fails, call the callback.
116 * Else, wait for another IO notification.
117 */
2d8c0b1a 118void
2b663917 119commHandleRead(int fd, void *data)
2d8c0b1a 120{
ec41b64c 121 Comm::IoCallback *ccb = (Comm::IoCallback *) data;
9e008dda 122
2b663917 123 assert(data == COMMIO_FD_READCB(fd));
ec41b64c 124 assert(ccb->active());
62e76326 125 /* Attempt a read */
126 statCounter.syscalls.sock.reads++;
127 errno = 0;
2d8c0b1a 128 int retval;
2b663917 129 retval = FD_READ_METHOD(fd, ccb->buf, ccb->size);
bf8fe701 130 debugs(5, 3, "comm_read_try: FD " << fd << ", size " << ccb->size << ", retval " << retval << ", errno " << errno);
62e76326 131
132 if (retval < 0 && !ignoreErrno(errno)) {
bf8fe701 133 debugs(5, 3, "comm_read_try: scheduling COMM_ERROR");
9e008dda 134 ccb->offset = 0;
ec41b64c 135 ccb->finish(COMM_ERROR, errno);
62e76326 136 return;
137 };
138
139 /* See if we read anything */
140 /* Note - read 0 == socket EOF, which is a valid read */
141 if (retval >= 0) {
142 fd_bytes(fd, retval, FD_READ);
9e008dda 143 ccb->offset = retval;
ec41b64c 144 ccb->finish(COMM_OK, errno);
62e76326 145 return;
146 }
c4b7a5a9 147
62e76326 148 /* Nope, register for some more IO */
d841c88d 149 Comm::SetSelect(fd, COMM_SELECT_READ, commHandleRead, data, 0);
c4b7a5a9 150}
151
abd8f140
AJ
152/**
153 * Queue a read. handler/handler_data are called when the read
154 * completes, on error, or on file descriptor close.
155 */
b0469965 156void
ec20038e 157comm_read(const Comm::ConnectionPointer &conn, char *buf, int size, AsyncCall::Pointer &callback)
c4b7a5a9 158{
ec20038e 159 debugs(5, 5, "comm_read, queueing read for " << conn << "; asynCall " << callback);
c4b7a5a9 160
82ec8dfc 161 /* Make sure we are open and not closing */
ec20038e
AJ
162 assert(Comm::IsConnOpen(conn));
163 assert(!fd_table[conn->fd].closing());
b0388924 164 Comm::IoCallback *ccb = COMMIO_FD_READCB(conn->fd);
82ec8dfc
AR
165
166 // Make sure we are either not reading or just passively monitoring.
167 // Active/passive conflicts are OK and simply cancel passive monitoring.
168 if (ccb->active()) {
169 // if the assertion below fails, we have an active comm_read conflict
ec20038e
AJ
170 assert(fd_table[conn->fd].halfClosedReader != NULL);
171 commStopHalfClosedMonitor(conn->fd);
82ec8dfc
AR
172 assert(!ccb->active());
173 }
b0388924 174 ccb->conn = conn;
528b2c61 175
2b663917 176 /* Queue the read */
ec41b64c 177 ccb->setCallback(Comm::IOCB_READ, callback, (char *)buf, NULL, size);
8bbb16e3 178 Comm::SetSelect(conn->fd, COMM_SELECT_READ, commHandleRead, ccb, 0);
c4b7a5a9 179}
180
e1a88700 181/**
c4b7a5a9 182 * Empty the read buffers
183 *
184 * This is a magical routine that empties the read buffers.
185 * Under some platforms (Linux) if a buffer has data in it before
186 * you call close(), the socket will hang and take quite a while
187 * to timeout.
188 */
189static void
190comm_empty_os_read_buffers(int fd)
191{
1191b93b 192#if _SQUID_LINUX_
c4b7a5a9 193 /* prevent those nasty RST packets */
194 char buf[SQUID_TCP_SO_RCVBUF];
62e76326 195
cc192b50 196 if (fd_table[fd].flags.nonblocking == 1) {
197 while (FD_READ_METHOD(fd, buf, SQUID_TCP_SO_RCVBUF) > 0) {};
198 }
c4b7a5a9 199#endif
200}
201
202
e1a88700 203/**
2b663917 204 * Return whether the FD has a pending completed callback.
e884bbde 205 * NP: does not work.
c4b7a5a9 206 */
207int
208comm_has_pending_read_callback(int fd)
209{
b0469965 210 assert(isOpen(fd));
211 // XXX: We do not know whether there is a read callback scheduled.
212 // This is used for pconn management that should probably be more
213 // tightly integrated into comm to minimize the chance that a
214 // closing pconn socket will be used for a new transaction.
545d554b 215 return false;
c4b7a5a9 216}
217
b0469965 218// Does comm check this fd for read readiness?
219// Note that when comm is not monitoring, there can be a pending callback
220// call, which may resume comm monitoring once fired.
528b2c61 221bool
b0469965 222comm_monitors_read(int fd)
c4b7a5a9 223{
b0469965 224 assert(isOpen(fd));
225 // Being active is usually the same as monitoring because we always
ec41b64c
AJ
226 // start monitoring the FD when we configure Comm::IoCallback for I/O
227 // and we usually configure Comm::IoCallback for I/O when we starting
228 // monitoring a FD for reading.
b0469965 229 return COMMIO_FD_READCB(fd)->active();
c4b7a5a9 230}
231
e1a88700 232/**
c4b7a5a9 233 * Cancel a pending read. Assert that we have the right parameters,
234 * and that there are no pending read events!
2b663917 235 *
b0469965 236 * XXX: We do not assert that there are no pending read events and
237 * with async calls it becomes even more difficult.
238 * The whole interface should be reworked to do callback->cancel()
239 * instead of searching for places where the callback may be stored and
240 * updating the state of those places.
241 *
2b663917 242 * AHC Don't call the comm handlers?
c4b7a5a9 243 */
244void
245comm_read_cancel(int fd, IOCB *callback, void *data)
246{
b0469965 247 if (!isOpen(fd)) {
248 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " closed");
249 return;
9e008dda 250 }
b0469965 251
ec41b64c 252 Comm::IoCallback *cb = COMMIO_FD_READCB(fd);
b0469965 253 // TODO: is "active" == "monitors FD"?
254 if (!cb->active()) {
255 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " inactive");
256 return;
9e008dda 257 }
b0469965 258
259 typedef CommCbFunPtrCallT<CommIoCbPtrFun> Call;
260 Call *call = dynamic_cast<Call*>(cb->callback.getRaw());
261 if (!call) {
262 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " lacks callback");
263 return;
9e008dda 264 }
b0469965 265
82ec8dfc
AR
266 call->cancel("old comm_read_cancel");
267
b0469965 268 typedef CommIoCbParams Params;
269 const Params &params = GetCommParams<Params>(cb->callback);
c4b7a5a9 270
c4b7a5a9 271 /* Ok, we can be reasonably sure we won't lose any data here! */
b0469965 272 assert(call->dialer.handler == callback);
273 assert(params.data == data);
c4b7a5a9 274
275 /* Delete the callback */
ec41b64c 276 cb->cancel("old comm_read_cancel");
420f2ac8 277
278 /* And the IO event */
d841c88d 279 Comm::SetSelect(fd, COMM_SELECT_READ, NULL, NULL, 0);
c4b7a5a9 280}
281
c4b7a5a9 282void
b0469965 283comm_read_cancel(int fd, AsyncCall::Pointer &callback)
c4b7a5a9 284{
b0469965 285 callback->cancel("comm_read_cancel");
9e008dda 286
b0469965 287 if (!isOpen(fd)) {
288 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " closed");
289 return;
290 }
291
ec41b64c 292 Comm::IoCallback *cb = COMMIO_FD_READCB(fd);
b0469965 293
294 if (!cb->active()) {
295 debugs(5, 4, "comm_read_cancel fails: FD " << fd << " inactive");
296 return;
297 }
298
299 AsyncCall::Pointer call = cb->callback;
82ec8dfc 300 assert(call != NULL); // XXX: should never fail (active() checks for callback==NULL)
9e008dda 301
b0469965 302 /* Ok, we can be reasonably sure we won't lose any data here! */
303 assert(call == callback);
c4b7a5a9 304
b0469965 305 /* Delete the callback */
ec41b64c 306 cb->cancel("comm_read_cancel");
b0469965 307
308 /* And the IO event */
d841c88d 309 Comm::SetSelect(fd, COMM_SELECT_READ, NULL, NULL, 0);
c4b7a5a9 310}
311
312
e1a88700 313/**
ce767c23 314 * synchronous wrapper around udp socket functions
315 */
ce767c23 316int
b7ac5457 317comm_udp_recvfrom(int fd, void *buf, size_t len, int flags, Ip::Address &from)
ce767c23 318{
62e76326 319 statCounter.syscalls.sock.recvfroms++;
cc192b50 320 int x = 0;
321 struct addrinfo *AI = NULL;
322
323 debugs(5,8, "comm_udp_recvfrom: FD " << fd << " from " << from);
324
325 assert( NULL == AI );
326
327 from.InitAddrInfo(AI);
328
329 x = recvfrom(fd, buf, len, flags, AI->ai_addr, &AI->ai_addrlen);
330
331 from = *AI;
332
333 from.FreeAddrInfo(AI);
334
335 return x;
ce767c23 336}
337
365f12a9 338int
7d21986b 339comm_udp_recv(int fd, void *buf, size_t len, int flags)
365f12a9 340{
b7ac5457 341 Ip::Address nul;
cc192b50 342 return comm_udp_recvfrom(fd, buf, len, flags, nul);
365f12a9 343}
344
f71da12c 345ssize_t
7d21986b 346comm_udp_send(int s, const void *buf, size_t len, int flags)
f71da12c 347{
62e76326 348 return send(s, buf, len, flags);
f71da12c 349}
ce767c23 350
351
545d554b 352bool
353comm_has_incomplete_write(int fd)
354{
b0469965 355 assert(isOpen(fd));
356 return COMMIO_FD_WRITECB(fd)->active();
d4cb310b 357}
358
e1a88700 359/**
cf3c0ee3 360 * Queue a write. handler/handler_data are called when the write fully
361 * completes, on error, or on file descriptor close.
362 */
9864ee44 363
090089c4 364/* Return the local port associated with fd. */
f45dd259 365unsigned short
b8d8561b 366comm_local_port(int fd)
090089c4 367{
b7ac5457 368 Ip::Address temp;
cc192b50 369 struct addrinfo *addr = NULL;
76f87348 370 fde *F = &fd_table[fd];
090089c4 371
090089c4 372 /* If the fd is closed already, just return */
62e76326 373
60c0b5a2 374 if (!F->flags.open) {
bf8fe701 375 debugs(5, 0, "comm_local_port: FD " << fd << " has been closed.");
62e76326 376 return 0;
090089c4 377 }
62e76326 378
cc192b50 379 if (F->local_addr.GetPort())
380 return F->local_addr.GetPort();
62e76326 381
6084c0b6
AJ
382 if (F->sock_family == AF_INET)
383 temp.SetIPv4();
6084c0b6 384
cc192b50 385 temp.InitAddrInfo(addr);
62e76326 386
cc192b50 387 if (getsockname(fd, addr->ai_addr, &(addr->ai_addrlen)) ) {
bf8fe701 388 debugs(50, 1, "comm_local_port: Failed to retrieve TCP/UDP port number for socket: FD " << fd << ": " << xstrerror());
cc192b50 389 temp.FreeAddrInfo(addr);
62e76326 390 return 0;
090089c4 391 }
cc192b50 392 temp = *addr;
393
394 temp.FreeAddrInfo(addr);
395
3d031c35
AJ
396 if (F->local_addr.IsAnyAddr()) {
397 /* save the whole local address, not just the port. */
398 F->local_addr = temp;
399 } else {
400 F->local_addr.SetPort(temp.GetPort());
401 }
62e76326 402
6084c0b6 403 debugs(5, 6, "comm_local_port: FD " << fd << ": port " << F->local_addr.GetPort() << "(family=" << F->sock_family << ")");
cc192b50 404 return F->local_addr.GetPort();
090089c4 405}
406
3d7e9d7c 407static comm_err_t
cc192b50 408commBind(int s, struct addrinfo &inaddr)
090089c4 409{
83704487 410 statCounter.syscalls.sock.binds++;
62e76326 411
ac760b5e
AJ
412 if (bind(s, inaddr.ai_addr, inaddr.ai_addrlen) == 0) {
413 debugs(50, 6, "commBind: bind socket FD " << s << " to " << fd_table[s].local_addr);
62e76326 414 return COMM_OK;
ac760b5e 415 }
62e76326 416
cc192b50 417 debugs(50, 0, "commBind: Cannot bind socket FD " << s << " to " << fd_table[s].local_addr << ": " << xstrerror());
62e76326 418
090089c4 419 return COMM_ERROR;
420}
421
e1a88700 422/**
423 * Create a socket. Default is blocking, stream (TCP) socket. IO_TYPE
424 * is OR of flags specified in comm.h. Defaults TOS
425 */
b8d8561b 426int
16b204c4 427comm_open(int sock_type,
62e76326 428 int proto,
b7ac5457 429 Ip::Address &addr,
62e76326 430 int flags,
431 const char *note)
d6827718 432{
425de4c8 433 return comm_openex(sock_type, proto, addr, flags, 0, 0, note);
d6827718 434}
435
e0d28505
AJ
436void
437comm_open_listener(int sock_type,
438 int proto,
439 Comm::ConnectionPointer &conn,
440 const char *note)
441{
442 /* all listener sockets require bind() */
443 conn->flags |= COMM_DOBIND;
444
445 /* attempt native enabled port. */
b5523edc 446 conn->fd = comm_openex(sock_type, proto, conn->local, conn->flags, 0, 0, note);
e0d28505
AJ
447}
448
31be869c
AJ
449int
450comm_open_listener(int sock_type,
04f7fd38 451 int proto,
b7ac5457 452 Ip::Address &addr,
04f7fd38
AJ
453 int flags,
454 const char *note)
31be869c
AJ
455{
456 int sock = -1;
457
ac760b5e
AJ
458 /* all listener sockets require bind() */
459 flags |= COMM_DOBIND;
460
31be869c 461 /* attempt native enabled port. */
425de4c8 462 sock = comm_openex(sock_type, proto, addr, flags, 0, 0, note);
31be869c 463
31be869c
AJ
464 return sock;
465}
466
2d8c0b1a 467static bool
468limitError(int const anErrno)
469{
470 return anErrno == ENFILE || anErrno == EMFILE;
471}
d6827718 472
cc192b50 473void
474comm_set_v6only(int fd, int tos)
475{
476#ifdef IPV6_V6ONLY
477 if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, (char *) &tos, sizeof(int)) < 0) {
7e07ced1 478 debugs(50, 1, "comm_open: setsockopt(IPV6_V6ONLY) " << (tos?"ON":"OFF") << " for FD " << fd << ": " << xstrerror());
cc192b50 479 }
480#else
481 debugs(50, 0, "WARNING: comm_open: setsockopt(IPV6_V6ONLY) not supported on this platform");
482#endif /* sockopt */
483}
057f5854 484
40d6264d
AJ
485/**
486 * Set the socket IP_TRANSPARENT option for Linux TPROXY v4 support.
487 */
f1e0717c 488void
e950e673 489comm_set_transparent(int fd)
f1e0717c 490{
2ad20b4f 491#if defined(IP_TRANSPARENT)
e950e673 492 int tos = 1;
ef88b51d
AJ
493 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, (char *) &tos, sizeof(int)) < 0) {
494 debugs(50, DBG_IMPORTANT, "comm_open: setsockopt(IP_TRANSPARENT) on FD " << fd << ": " << xstrerror());
9e008dda 495 } else {
3949d8b7
AJ
496 /* mark the socket as having transparent options */
497 fd_table[fd].flags.transparent = 1;
498 }
f1e0717c 499#else
ef88b51d 500 debugs(50, DBG_CRITICAL, "WARNING: comm_open: setsockopt(IP_TRANSPARENT) not supported on this platform");
f1e0717c
AJ
501#endif /* sockopt */
502}
503
e1a88700 504/**
505 * Create a socket. Default is blocking, stream (TCP) socket. IO_TYPE
506 * is OR of flags specified in defines.h:COMM_*
507 */
d6827718 508int
509comm_openex(int sock_type,
62e76326 510 int proto,
b7ac5457 511 Ip::Address &addr,
62e76326 512 int flags,
425de4c8
AJ
513 tos_t tos,
514 nfmark_t nfmark,
62e76326 515 const char *note)
090089c4 516{
517 int new_socket;
cc192b50 518 struct addrinfo *AI = NULL;
090089c4 519
88bfe092 520 PROF_start(comm_open);
090089c4 521 /* Create socket for accepting new connections. */
83704487 522 statCounter.syscalls.sock.sockets++;
62e76326 523
cc192b50 524 /* Setup the socket addrinfo details for use */
525 addr.GetAddrInfo(AI);
526 AI->ai_socktype = sock_type;
527 AI->ai_protocol = proto;
cc192b50 528
e884bbde 529 debugs(50, 3, "comm_openex: Attempt open socket for: " << addr );
cc192b50 530
0eb08770 531 new_socket = socket(AI->ai_family, AI->ai_socktype, AI->ai_protocol);
055421ee 532
0eb08770
HN
533 /* under IPv6 there is the possibility IPv6 is present but disabled. */
534 /* try again as IPv4-native if possible */
055421ee 535 if ( new_socket < 0 && Ip::EnableIpv6 && addr.IsIPv6() && addr.SetIPv4() ) {
0eb08770
HN
536 /* attempt to open this IPv4-only. */
537 addr.FreeAddrInfo(AI);
538 /* Setup the socket addrinfo details for use */
539 addr.GetAddrInfo(AI);
540 AI->ai_socktype = sock_type;
541 AI->ai_protocol = proto;
542 debugs(50, 3, "comm_openex: Attempt fallback open socket for: " << addr );
ec505200 543 new_socket = socket(AI->ai_family, AI->ai_socktype, AI->ai_protocol);
0eb08770
HN
544 debugs(50, 2, HERE << "attempt open " << note << " socket on: " << addr);
545 }
0eb08770
HN
546
547 if (new_socket < 0) {
62e76326 548 /* Increase the number of reserved fd's if calls to socket()
549 * are failing because the open file table is full. This
550 * limits the number of simultaneous clients */
551
2d8c0b1a 552 if (limitError(errno)) {
dd4e714f 553 debugs(50, DBG_IMPORTANT, "comm_open: socket failure: " << xstrerror());
62e76326 554 fdAdjustReserved();
2d8c0b1a 555 } else {
8ca8bd92 556 debugs(50, DBG_CRITICAL, "comm_open: socket failure: " << xstrerror());
62e76326 557 }
558
cc192b50 559 addr.FreeAddrInfo(AI);
560
62e76326 561 PROF_stop(comm_open);
562 return -1;
090089c4 563 }
62e76326 564
1b76e6c1 565 // XXX: temporary for the transition. comm_openex will eventually have a conn to play with.
e884bbde
AJ
566 Comm::ConnectionPointer conn = new Comm::Connection;
567 conn->local = addr;
b5523edc
AJ
568 conn->fd = new_socket;
569
570 debugs(50, 3, "comm_openex: Opened socket " << conn << " : family=" << AI->ai_family << ", type=" << AI->ai_socktype << ", protocol=" << AI->ai_protocol );
cc192b50 571
d6827718 572 /* set TOS if needed */
425de4c8 573 if (tos)
b5523edc 574 Ip::Qos::setSockTos(conn, tos);
425de4c8
AJ
575
576 /* set netfilter mark if needed */
577 if (nfmark)
b5523edc 578 Ip::Qos::setSockNfmark(conn, nfmark);
62e76326 579
055421ee 580 if ( Ip::EnableIpv6&IPV6_SPECIAL_SPLITSTACK && addr.IsIPv6() )
b5523edc 581 comm_set_v6only(conn->fd, 1);
62e76326 582
cc192b50 583 /* Windows Vista supports Dual-Sockets. BUT defaults them to V6ONLY. Turn it OFF. */
9b1f7ee8 584 /* Other OS may have this administratively disabled for general use. Same deal. */
055421ee 585 if ( Ip::EnableIpv6&IPV6_SPECIAL_V4MAPPING && addr.IsIPv6() )
b5523edc 586 comm_set_v6only(conn->fd, 0);
cc192b50 587
b5523edc
AJ
588 comm_init_opened(conn, tos, nfmark, note, AI);
589 new_socket = comm_apply_flags(conn->fd, addr, flags, AI);
38344a8e
AR
590
591 addr.FreeAddrInfo(AI);
592
593 PROF_stop(comm_open);
594
1b76e6c1 595 // XXX transition only. prevent conn from closing the new FD on function exit.
b5523edc 596 conn->fd = -1;
38344a8e
AR
597 return new_socket;
598}
599
600/// update FD tables after a local or remote (IPC) comm_openex();
601void
e0d28505 602comm_init_opened(const Comm::ConnectionPointer &conn,
425de4c8
AJ
603 tos_t tos,
604 nfmark_t nfmark,
5667a628
AR
605 const char *note,
606 struct addrinfo *AI)
38344a8e 607{
e0d28505 608 assert(Comm::IsConnOpen(conn));
38344a8e
AR
609 assert(AI);
610
090089c4 611 /* update fdstat */
e0d28505 612 debugs(5, 5, HERE << conn << " is a new socket");
62e76326 613
e0d28505
AJ
614 assert(!isOpen(conn->fd)); // NP: global isOpen checks the fde entry for openness not the Comm::Connection
615 fd_open(conn->fd, FD_SOCKET, note);
62e76326 616
e0d28505
AJ
617 fdd_table[conn->fd].close_file = NULL;
618 fdd_table[conn->fd].close_line = 0;
62e76326 619
e0d28505
AJ
620 fde *F = &fd_table[conn->fd];
621 F->local_addr = conn->local;
425de4c8
AJ
622 F->tosToServer = tos;
623
624 F->nfmarkToServer = nfmark;
cc192b50 625
626 F->sock_family = AI->ai_family;
38344a8e
AR
627}
628
629/// apply flags after a local comm_open*() call;
630/// returns new_socket or -1 on error
631static int
632comm_apply_flags(int new_socket,
a67d2b2e 633 Ip::Address &addr,
5667a628
AR
634 int flags,
635 struct addrinfo *AI)
38344a8e
AR
636{
637 assert(new_socket >= 0);
638 assert(AI);
639 const int sock_type = AI->ai_socktype;
62e76326 640
79a15e0a 641 if (!(flags & COMM_NOCLOEXEC))
62e76326 642 commSetCloseOnExec(new_socket);
643
cdc33f35 644 if ((flags & COMM_REUSEADDR))
62e76326 645 commSetReuseAddr(new_socket);
646
f45dd259 647 if (addr.GetPort() > (unsigned short) 0) {
1191b93b 648#if _SQUID_MSWIN_
a50bfe93 649 if (sock_type != SOCK_DGRAM)
650#endif
a50bfe93 651 commSetNoLinger(new_socket);
62e76326 652
653 if (opt_reuseaddr)
654 commSetReuseAddr(new_socket);
090089c4 655 }
62e76326 656
a35595cd 657 /* MUST be done before binding or face OS Error: "(99) Cannot assign requested address"... */
9e008dda 658 if ((flags & COMM_TRANSPARENT)) {
a35595cd
AJ
659 comm_set_transparent(new_socket);
660 }
a35595cd 661
ac760b5e
AJ
662 if ( (flags & COMM_DOBIND) || addr.GetPort() > 0 || !addr.IsAnyAddr() ) {
663 if ( !(flags & COMM_DOBIND) && addr.IsAnyAddr() )
664 debugs(5,1,"WARNING: Squid is attempting to bind() port " << addr << " without being a listener.");
665 if ( addr.IsNoAddr() )
666 debugs(5,0,"CRITICAL: Squid is attempting to bind() port " << addr << "!!");
667
cc192b50 668 if (commBind(new_socket, *AI) != COMM_OK) {
62e76326 669 comm_close(new_socket);
670 return -1;
62e76326 671 }
23ff6968 672 }
62e76326 673
79a15e0a 674 if (flags & COMM_NONBLOCKING)
9e008dda 675 if (commSetNonBlocking(new_socket) == COMM_ERROR) {
38344a8e 676 comm_close(new_socket);
62e76326 677 return -1;
62e76326 678 }
679
30a4f2a8 680#ifdef TCP_NODELAY
681 if (sock_type == SOCK_STREAM)
62e76326 682 commSetTcpNoDelay(new_socket);
683
30a4f2a8 684#endif
62e76326 685
1241e63e 686 if (Config.tcpRcvBufsz > 0 && sock_type == SOCK_STREAM)
62e76326 687 commSetTcpRcvbuf(new_socket, Config.tcpRcvBufsz);
688
090089c4 689 return new_socket;
690}
691
a4c0f9c6 692void
e0d28505 693comm_import_opened(const Comm::ConnectionPointer &conn,
5667a628
AR
694 const char *note,
695 struct addrinfo *AI)
a4c0f9c6 696{
e0d28505
AJ
697 debugs(5, 2, HERE << conn);
698 assert(Comm::IsConnOpen(conn));
a4c0f9c6
AR
699 assert(AI);
700
9c8a6c3b 701 comm_init_opened(conn, 0, 0, note, AI);
a4c0f9c6 702
e0d28505
AJ
703 if (!(conn->flags & COMM_NOCLOEXEC))
704 fd_table[conn->fd].flags.close_on_exec = 1;
a4c0f9c6 705
f45dd259 706 if (conn->local.GetPort() > (unsigned short) 0) {
1191b93b 707#if _SQUID_MSWIN_
e0d28505 708 if (AI->ai_socktype != SOCK_DGRAM)
a4c0f9c6 709#endif
e0d28505 710 fd_table[conn->fd].flags.nolinger = 1;
a4c0f9c6
AR
711 }
712
e0d28505
AJ
713 if ((conn->flags & COMM_TRANSPARENT))
714 fd_table[conn->fd].flags.transparent = 1;
a4c0f9c6 715
e0d28505
AJ
716 if (conn->flags & COMM_NONBLOCKING)
717 fd_table[conn->fd].flags.nonblocking = 1;
a4c0f9c6
AR
718
719#ifdef TCP_NODELAY
720 if (AI->ai_socktype == SOCK_STREAM)
e0d28505 721 fd_table[conn->fd].flags.nodelay = 1;
a4c0f9c6
AR
722#endif
723
724 /* no fd_table[fd].flags. updates needed for these conditions:
725 * if ((flags & COMM_REUSEADDR)) ...
726 * if ((flags & COMM_DOBIND) ...) ...
727 */
728}
729
7957e704 730// Legacy pre-AsyncCalls API for FD timeouts.
b0469965 731int
8d77a37c 732commSetTimeout(int fd, int timeout, CTCB * handler, void *data)
b0469965 733{
734 AsyncCall::Pointer call;
f3767a6a 735 debugs(5, 3, HERE << "FD " << fd << " timeout " << timeout);
9e008dda
AJ
736 if (handler != NULL)
737 call=commCbCall(5,4, "SomeTimeoutHandler", CommTimeoutCbPtrFun(handler, data));
b0469965 738 else
9e008dda 739 call = NULL;
b0469965 740 return commSetTimeout(fd, timeout, call);
741}
742
7957e704
AJ
743// Legacy pre-Comm::Connection API for FD timeouts
744// still used by non-socket FD code dealing with pipes and IPC sockets.
cfd66529
AJ
745int
746commSetTimeout(int fd, int timeout, AsyncCall::Pointer &callback)
b0469965 747{
f3767a6a 748 debugs(5, 3, HERE << "FD " << fd << " timeout " << timeout);
b0469965 749 assert(fd >= 0);
750 assert(fd < Squid_MaxFD);
751 fde *F = &fd_table[fd];
752 assert(F->flags.open);
753
754 if (timeout < 0) {
755 F->timeoutHandler = NULL;
756 F->timeout = 0;
757 } else {
758 if (callback != NULL) {
9e008dda
AJ
759 typedef CommTimeoutCbParams Params;
760 Params &params = GetCommParams<Params>(callback);
761 params.fd = fd;
b0469965 762 F->timeoutHandler = callback;
763 }
764
765 F->timeout = squid_curtime + (time_t) timeout;
766 }
767
768 return F->timeout;
7957e704
AJ
769}
770
771int
772commSetConnTimeout(const Comm::ConnectionPointer &conn, int timeout, AsyncCall::Pointer &callback)
773{
774 debugs(5, 3, HERE << conn << " timeout " << timeout);
775 assert(Comm::IsConnOpen(conn));
776 assert(conn->fd < Squid_MaxFD);
777 fde *F = &fd_table[conn->fd];
778 assert(F->flags.open);
779
780 if (timeout < 0) {
781 F->timeoutHandler = NULL;
782 F->timeout = 0;
783 } else {
784 if (callback != NULL) {
785 typedef CommTimeoutCbParams Params;
786 Params &params = GetCommParams<Params>(callback);
787 params.conn = conn;
788 F->timeoutHandler = callback;
789 }
b0469965 790
7957e704
AJ
791 F->timeout = squid_curtime + (time_t) timeout;
792 }
793
794 return F->timeout;
b0469965 795}
090089c4 796
8d77a37c
AJ
797int
798commUnsetConnTimeout(const Comm::ConnectionPointer &conn)
799{
800 debugs(5, 3, HERE << "Remove timeout for " << conn);
801 AsyncCall::Pointer nil;
802 return commSetConnTimeout(conn, -1, nil);
803}
804
b8d8561b 805int
b7ac5457 806comm_connect_addr(int sock, const Ip::Address &address)
090089c4 807{
3d7e9d7c 808 comm_err_t status = COMM_OK;
76f87348 809 fde *F = &fd_table[sock];
cc192b50 810 int x = 0;
b5568a61 811 int err = 0;
9689d97c 812 socklen_t errlen;
feca3b9a 813 struct addrinfo *AI = NULL;
88bfe092 814 PROF_start(comm_connect_addr);
cc192b50 815
816 assert(address.GetPort() != 0);
817
fa6a39d7 818 debugs(5, 9, HERE << "connecting socket FD " << sock << " to " << address << " (want family: " << F->sock_family << ")");
cc192b50 819
3d98ff81 820 /* Handle IPv6 over IPv4-only socket case.
9d92af86 821 * this case must presently be handled here since the GetAddrInfo asserts on bad mappings.
3d98ff81 822 * NP: because commResetFD is private to ConnStateData we have to return an error and
9d92af86
AJ
823 * trust its handled properly.
824 */
9e008dda 825 if (F->sock_family == AF_INET && !address.IsIPv4()) {
3d98ff81
HN
826 errno = ENETUNREACH;
827 return COMM_ERR_PROTOCOL;
828 }
829
830 /* Handle IPv4 over IPv6-only socket case.
831 * This case is presently handled here as it's both a known case and it's
832 * uncertain what error will be returned by the IPv6 stack in such case. It's
833 * possible this will also be handled by the errno checks below after connect()
834 * but needs carefull cross-platform verification, and verifying the address
835 * condition here is simple.
836 */
837 if (!F->local_addr.IsIPv4() && address.IsIPv4()) {
838 errno = ENETUNREACH;
9d92af86
AJ
839 return COMM_ERR_PROTOCOL;
840 }
9d92af86 841
feca3b9a 842 address.GetAddrInfo(AI, F->sock_family);
cc192b50 843
090089c4 844 /* Establish connection. */
b5568a61 845 errno = 0;
62e76326 846
9e008dda 847 if (!F->flags.called_connect) {
62e76326 848 F->flags.called_connect = 1;
849 statCounter.syscalls.sock.connects++;
850
feca3b9a 851 x = connect(sock, AI->ai_addr, AI->ai_addrlen);
62e76326 852
5a33a66a 853 // XXX: ICAP code refuses callbacks during a pending comm_ call
854 // Async calls development will fix this.
855 if (x == 0) {
856 x = -1;
857 errno = EINPROGRESS;
858 }
859
9e008dda 860 if (x < 0) {
cc192b50 861 debugs(5,5, "comm_connect_addr: sock=" << sock << ", addrinfo( " <<
9e008dda
AJ
862 " flags=" << AI->ai_flags <<
863 ", family=" << AI->ai_family <<
864 ", socktype=" << AI->ai_socktype <<
865 ", protocol=" << AI->ai_protocol <<
866 ", &addr=" << AI->ai_addr <<
867 ", addrlen=" << AI->ai_addrlen <<
868 " )" );
cc192b50 869 debugs(5, 9, "connect FD " << sock << ": (" << x << ") " << xstrerror());
870 debugs(14,9, "connecting to: " << address );
871 }
9e008dda 872 } else {
140e2c0b 873#if defined(_SQUID_NEWSOS6_)
62e76326 874 /* Makoto MATSUSHITA <matusita@ics.es.osaka-u.ac.jp> */
875
feca3b9a 876 connect(sock, AI->ai_addr, AI->ai_addrlen);
62e76326 877
878 if (errno == EINVAL) {
879 errlen = sizeof(err);
880 x = getsockopt(sock, SOL_SOCKET, SO_ERROR, &err, &errlen);
881
882 if (x >= 0)
883 errno = x;
884 }
885
33ac9442 886#else
62e76326 887 errlen = sizeof(err);
888
889 x = getsockopt(sock, SOL_SOCKET, SO_ERROR, &err, &errlen);
890
891 if (x == 0)
892 errno = err;
893
b5568a61 894#if defined(_SQUID_SOLARIS_)
62e76326 895 /*
896 * Solaris 2.4's socket emulation doesn't allow you
897 * to determine the error from a failed non-blocking
898 * connect and just returns EPIPE. Create a fake
899 * error message for connect. -- fenner@parc.xerox.com
900 */
901 if (x < 0 && errno == EPIPE)
902 errno = ENOTCONN;
903
33ac9442 904#endif
30a4f2a8 905#endif
62e76326 906
e5f6c5c2 907 }
62e76326 908
9e008dda
AJ
909 /* Squid seems to be working fine without this code. With this code,
910 * we leak memory on many connect requests because of EINPROGRESS.
911 * If you find that this code is needed, please file a bug report. */
82ec8dfc 912#if 0
1191b93b 913#if _SQUID_LINUX_
feca3b9a 914 /* 2007-11-27:
9e008dda 915 * Linux Debian replaces our allocated AI pointer with garbage when
feca3b9a
AJ
916 * connect() fails. This leads to segmentation faults deallocating
917 * the system-allocated memory when we go to clean up our pointer.
918 * HACK: is to leak the memory returned since we can't deallocate.
919 */
9e008dda 920 if (errno != 0) {
feca3b9a
AJ
921 AI = NULL;
922 }
82ec8dfc 923#endif
feca3b9a
AJ
924#endif
925
926 address.FreeAddrInfo(AI);
927
88bfe092 928 PROF_stop(comm_connect_addr);
62e76326 929
b5568a61 930 if (errno == 0 || errno == EISCONN)
62e76326 931 status = COMM_OK;
b5568a61 932 else if (ignoreErrno(errno))
62e76326 933 status = COMM_INPROGRESS;
3d98ff81
HN
934 else if (errno == EAFNOSUPPORT || errno == EINVAL)
935 return COMM_ERR_PROTOCOL;
b5568a61 936 else
3d98ff81 937 return COMM_ERROR;
62e76326 938
cc192b50 939 address.NtoA(F->ipaddr, MAX_IPSTRLEN);
62e76326 940
cc192b50 941 F->remote_port = address.GetPort(); /* remote_port is HS */
62e76326 942
9e008dda 943 if (status == COMM_OK) {
cc192b50 944 debugs(5, 10, "comm_connect_addr: FD " << sock << " connected to " << address);
9e008dda 945 } else if (status == COMM_INPROGRESS) {
bf8fe701 946 debugs(5, 10, "comm_connect_addr: FD " << sock << " connection pending");
090089c4 947 }
62e76326 948
090089c4 949 return status;
950}
951
cb201b7e 952void
953commCallCloseHandlers(int fd)
954{
76f87348 955 fde *F = &fd_table[fd];
bf8fe701 956 debugs(5, 5, "commCallCloseHandlers: FD " << fd);
62e76326 957
8000a965 958 while (F->closeHandler != NULL) {
b0469965 959 AsyncCall::Pointer call = F->closeHandler;
9e008dda
AJ
960 F->closeHandler = call->Next();
961 call->setNext(NULL);
962 // If call is not canceled schedule it for execution else ignore it
963 if (!call->canceled()) {
964 debugs(5, 5, "commCallCloseHandlers: ch->handler=" << call);
965 typedef CommCloseCbParams Params;
966 Params &params = GetCommParams<Params>(call);
967 params.fd = fd;
968 ScheduleCallHere(call);
969 }
cb201b7e 970 }
971}
972
5492ad1d 973#if LINGERING_CLOSE
974static void
975commLingerClose(int fd, void *unused)
976{
977 LOCAL_ARRAY(char, buf, 1024);
978 int n;
1f7c9178 979 n = FD_READ_METHOD(fd, buf, 1024);
62e76326 980
5492ad1d 981 if (n < 0)
bf8fe701 982 debugs(5, 3, "commLingerClose: FD " << fd << " read: " << xstrerror());
62e76326 983
5492ad1d 984 comm_close(fd);
985}
986
987static void
988commLingerTimeout(int fd, void *unused)
989{
bf8fe701 990 debugs(5, 3, "commLingerTimeout: FD " << fd);
5492ad1d 991 comm_close(fd);
992}
993
994/*
995 * Inspired by apache
996 */
997void
998comm_lingering_close(int fd)
999{
d4c19b39 1000#if USE_SSL
62e76326 1001
d4c19b39 1002 if (fd_table[fd].ssl)
62e76326 1003 ssl_shutdown_method(fd);
1004
d4c19b39 1005#endif
62e76326 1006
5492ad1d 1007 if (shutdown(fd, 1) < 0) {
62e76326 1008 comm_close(fd);
1009 return;
5492ad1d 1010 }
62e76326 1011
5492ad1d 1012 fd_note(fd, "lingering close");
1013 commSetTimeout(fd, 10, commLingerTimeout, NULL);
d841c88d 1014 Comm::SetSelect(fd, COMM_SELECT_READ, commLingerClose, NULL, 0);
5492ad1d 1015}
62e76326 1016
5492ad1d 1017#endif
1018
27774cee 1019/**
98264874 1020 * enable linger with time of 0 so that when the socket is
1021 * closed, TCP generates a RESET
1022 */
1023void
5c336a3b 1024comm_reset_close(Comm::ConnectionPointer &conn)
98264874 1025{
5c336a3b
AJ
1026 struct linger L;
1027 L.l_onoff = 1;
1028 L.l_linger = 0;
62e76326 1029
5c336a3b 1030 if (setsockopt(conn->fd, SOL_SOCKET, SO_LINGER, (char *) &L, sizeof(L)) < 0)
1b76e6c1 1031 debugs(50, DBG_CRITICAL, "ERROR: Closing " << conn << " with TCP RST: " << xstrerror());
5c336a3b
AJ
1032
1033 conn->close();
1034}
1035
1036// Legacy close function.
1037void
1038old_comm_reset_close(int fd)
1039{
98264874 1040 struct linger L;
1041 L.l_onoff = 1;
1042 L.l_linger = 0;
62e76326 1043
98264874 1044 if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char *) &L, sizeof(L)) < 0)
468fe1b5 1045 debugs(50, DBG_CRITICAL, "ERROR: Closing FD " << fd << " with TCP RST: " << xstrerror());
62e76326 1046
98264874 1047 comm_close(fd);
1048}
1049
9e008dda 1050void
10b06767
AJ
1051comm_close_start(int fd, void *data)
1052{
10b06767 1053#if USE_SSL
86dedcc1 1054 fde *F = &fd_table[fd];
10b06767
AJ
1055 if (F->ssl)
1056 ssl_shutdown_method(fd);
1057
1058#endif
1059
1060}
1061
9e008dda 1062void
b0469965 1063comm_close_complete(int fd, void *data)
2d8c0b1a 1064{
b0469965 1065#if USE_SSL
1066 fde *F = &fd_table[fd];
2d8c0b1a 1067
b0469965 1068 if (F->ssl) {
1069 SSL_free(F->ssl);
1070 F->ssl = NULL;
1071 }
2d8c0b1a 1072
95d2589c
CT
1073 if (F->dynamicSslContext) {
1074 SSL_CTX_free(F->dynamicSslContext);
1075 F->dynamicSslContext = NULL;
1076 }
b0469965 1077#endif
1078 fd_close(fd); /* update fdstat */
1079
1080 close(fd);
1081
b0469965 1082 statCounter.syscalls.sock.closes++;
1083
1084 /* When an fd closes, give accept() a chance, if need be */
04f55905 1085 Comm::AcceptLimiter::Instance().kick();
2d8c0b1a 1086}
c4b7a5a9 1087
1088/*
1089 * Close the socket fd.
1090 *
1091 * + call write handlers with ERR_CLOSING
1092 * + call read handlers with ERR_CLOSING
1093 * + call closing handlers
a46d2c0e 1094 *
9e008dda 1095 * NOTE: COMM_ERR_CLOSING will NOT be called for CommReads' sitting in a
a46d2c0e 1096 * DeferredReadManager.
c4b7a5a9 1097 */
b8d8561b 1098void
43ae1d95 1099_comm_close(int fd, char const *file, int line)
090089c4 1100{
82ec8dfc 1101 debugs(5, 3, "comm_close: start closing FD " << fd);
03eb2f01 1102 assert(fd >= 0);
1103 assert(fd < Squid_MaxFD);
82ec8dfc
AR
1104
1105 fde *F = &fd_table[fd];
c4b7a5a9 1106 fdd_table[fd].close_file = file;
1107 fdd_table[fd].close_line = line;
1f7c9178 1108
82ec8dfc 1109 if (F->closing())
62e76326 1110 return;
1111
36afac26 1112 /* XXX: is this obsolete behind F->closing() ? */
b8869bcf 1113 if ( (shutting_down || reconfiguring) && (!F->flags.open || F->type == FD_FILE))
62e76326 1114 return;
1115
c4b7a5a9 1116 /* The following fails because ipc.c is doing calls to pipe() to create sockets! */
b0469965 1117 assert(isOpen(fd));
62e76326 1118
76f87348 1119 assert(F->type != FD_FILE);
62e76326 1120
88bfe092 1121 PROF_start(comm_close);
62e76326 1122
10b06767 1123 F->flags.close_request = 1;
62e76326 1124
10b06767 1125 AsyncCall::Pointer startCall=commCbCall(5,4, "comm_close_start",
9e008dda 1126 CommCloseCbPtrFun(comm_close_start, NULL));
10b06767
AJ
1127 typedef CommCloseCbParams Params;
1128 Params &startParams = GetCommParams<Params>(startCall);
1129 startParams.fd = fd;
1130 ScheduleCallHere(startCall);
62e76326 1131
74257126
AR
1132 // a half-closed fd may lack a reader, so we stop monitoring explicitly
1133 if (commHasHalfClosedMonitor(fd))
1134 commStopHalfClosedMonitor(fd);
fa80a8ef 1135 commSetTimeout(fd, -1, NULL, NULL);
62e76326 1136
a6351f16 1137 // notify read/write handlers after canceling select reservations, if any
ec41b64c 1138 if (COMMIO_FD_WRITECB(fd)->active()) {
d841c88d 1139 Comm::SetSelect(fd, COMM_SELECT_WRITE, NULL, NULL, 0);
ec41b64c 1140 COMMIO_FD_WRITECB(fd)->finish(COMM_ERR_CLOSING, errno);
2b663917 1141 }
ec41b64c 1142 if (COMMIO_FD_READCB(fd)->active()) {
d841c88d 1143 Comm::SetSelect(fd, COMM_SELECT_READ, NULL, NULL, 0);
ec41b64c 1144 COMMIO_FD_READCB(fd)->finish(COMM_ERR_CLOSING, errno);
2b663917 1145 }
2d8c0b1a 1146
9a0a18de 1147#if USE_DELAY_POOLS
b4cd430a
CT
1148 if (ClientInfo *clientInfo = F->clientInfo) {
1149 if (clientInfo->selectWaiting) {
1150 clientInfo->selectWaiting = false;
1151 // kick queue or it will get stuck as commWriteHandle is not called
1152 clientInfo->kickQuotaQueue();
1153 }
f33d34a8 1154 }
b4cd430a
CT
1155#endif
1156
cb201b7e 1157 commCallCloseHandlers(fd);
62e76326 1158
fb505fa1 1159 if (F->pconn.uses && F->pconn.pool)
2dba5b8e 1160 F->pconn.pool->noteUses(F->pconn.uses);
62e76326 1161
a7ad6e4e 1162 comm_empty_os_read_buffers(fd);
9e008dda 1163
62e76326 1164
10b06767 1165 AsyncCall::Pointer completeCall=commCbCall(5,4, "comm_close_complete",
9e008dda 1166 CommCloseCbPtrFun(comm_close_complete, NULL));
10b06767
AJ
1167 Params &completeParams = GetCommParams<Params>(completeCall);
1168 completeParams.fd = fd;
9e008dda 1169 // must use async call to wait for all callbacks
82ec8dfc 1170 // scheduled before comm_close() to finish
10b06767 1171 ScheduleCallHere(completeCall);
62e76326 1172
88bfe092 1173 PROF_stop(comm_close);
090089c4 1174}
1175
090089c4 1176/* Send a udp datagram to specified TO_ADDR. */
b8d8561b 1177int
5df61230 1178comm_udp_sendto(int fd,
b7ac5457 1179 const Ip::Address &to_addr,
62e76326 1180 const void *buf,
1181 int len)
090089c4 1182{
cc192b50 1183 int x = 0;
1184 struct addrinfo *AI = NULL;
1185
88bfe092 1186 PROF_start(comm_udp_sendto);
83704487 1187 statCounter.syscalls.sock.sendtos++;
62e76326 1188
cc192b50 1189 debugs(50, 3, "comm_udp_sendto: Attempt to send UDP packet to " << to_addr <<
9e008dda 1190 " using FD " << fd << " using Port " << comm_local_port(fd) );
cc192b50 1191
1192 /* BUG: something in the above macro appears to occasionally be setting AI to garbage. */
1193 /* AYJ: 2007-08-27 : or was it because I wasn't then setting 'fd_table[fd].sock_family' to fill properly. */
1194 assert( NULL == AI );
1195
1196 to_addr.GetAddrInfo(AI, fd_table[fd].sock_family);
1197
1198 x = sendto(fd, buf, len, 0, AI->ai_addr, AI->ai_addrlen);
1199
1200 to_addr.FreeAddrInfo(AI);
1201
88bfe092 1202 PROF_stop(comm_udp_sendto);
62e76326 1203
2d8c0b1a 1204 if (x >= 0)
1205 return x;
1206
1191b93b 1207#if _SQUID_LINUX_
62e76326 1208
2d8c0b1a 1209 if (ECONNREFUSED != errno)
17d51783 1210#endif
62e76326 1211
cc192b50 1212 debugs(50, 1, "comm_udp_sendto: FD " << fd << ", (family=" << fd_table[fd].sock_family << ") " << to_addr << ": " << xstrerror());
62e76326 1213
2d8c0b1a 1214 return COMM_ERROR;
090089c4 1215}
1216
b8d8561b 1217void
582b6456 1218comm_add_close_handler(int fd, PF * handler, void *data)
30a4f2a8 1219{
bf8fe701 1220 debugs(5, 5, "comm_add_close_handler: FD " << fd << ", handler=" <<
1221 handler << ", data=" << data);
62e76326 1222
b0469965 1223 AsyncCall::Pointer call=commCbCall(5,4, "SomeCloseHandler",
9e008dda 1224 CommCloseCbPtrFun(handler, data));
b0469965 1225 comm_add_close_handler(fd, call);
1226}
62e76326 1227
b0469965 1228void
1229comm_add_close_handler(int fd, AsyncCall::Pointer &call)
1230{
1231 debugs(5, 5, "comm_add_close_handler: FD " << fd << ", AsyncCall=" << call);
62e76326 1232
b0469965 1233 /*TODO:Check for a similar scheduled AsyncCall*/
1234// for (c = fd_table[fd].closeHandler; c; c = c->next)
1235// assert(c->handler != handler || c->data != data);
62e76326 1236
b0469965 1237 call->setNext(fd_table[fd].closeHandler);
62e76326 1238
b0469965 1239 fd_table[fd].closeHandler = call;
30a4f2a8 1240}
1241
b0469965 1242
1243// remove function-based close handler
b8d8561b 1244void
582b6456 1245comm_remove_close_handler(int fd, PF * handler, void *data)
090089c4 1246{
b0469965 1247 assert (isOpen(fd));
30a4f2a8 1248 /* Find handler in list */
bf8fe701 1249 debugs(5, 5, "comm_remove_close_handler: FD " << fd << ", handler=" <<
1250 handler << ", data=" << data);
62e76326 1251
37cba319
AR
1252 AsyncCall::Pointer p, prev = NULL;
1253 for (p = fd_table[fd].closeHandler; p != NULL; prev = p, p = p->Next()) {
b0469965 1254 typedef CommCbFunPtrCallT<CommCloseCbPtrFun> Call;
1255 const Call *call = dynamic_cast<const Call*>(p.getRaw());
1256 if (!call) // method callbacks have their own comm_remove_close_handler
1257 continue;
62e76326 1258
b0469965 1259 typedef CommCloseCbParams Params;
1260 const Params &params = GetCommParams<Params>(p);
1261 if (call->dialer.handler == handler && params.data == data)
1262 break; /* This is our handler */
1263 }
7828df5b
CT
1264
1265 // comm_close removes all close handlers so our handler may be gone
37cba319
AR
1266 if (p != NULL) {
1267 p->dequeue(fd_table[fd].closeHandler, prev);
7828df5b 1268 p->cancel("comm_remove_close_handler");
37cba319 1269 }
b0469965 1270}
62e76326 1271
b0469965 1272// remove method-based close handler
1273void
1274comm_remove_close_handler(int fd, AsyncCall::Pointer &call)
1275{
1276 assert (isOpen(fd));
b0469965 1277 debugs(5, 5, "comm_remove_close_handler: FD " << fd << ", AsyncCall=" << call);
62e76326 1278
7828df5b 1279 // comm_close removes all close handlers so our handler may be gone
37cba319
AR
1280 AsyncCall::Pointer p, prev = NULL;
1281 for (p = fd_table[fd].closeHandler; p != NULL && p != call; prev = p, p = p->Next());
62e76326 1282
37cba319
AR
1283 if (p != NULL)
1284 p->dequeue(fd_table[fd].closeHandler, prev);
b0469965 1285 call->cancel("comm_remove_close_handler");
30a4f2a8 1286}
090089c4 1287
b8d8561b 1288static void
1289commSetNoLinger(int fd)
30a4f2a8 1290{
62e76326 1291
30a4f2a8 1292 struct linger L;
090089c4 1293 L.l_onoff = 0; /* off */
1294 L.l_linger = 0;
62e76326 1295
30a4f2a8 1296 if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char *) &L, sizeof(L)) < 0)
bf8fe701 1297 debugs(50, 0, "commSetNoLinger: FD " << fd << ": " << xstrerror());
62e76326 1298
58a6c186 1299 fd_table[fd].flags.nolinger = 1;
090089c4 1300}
1301
b8d8561b 1302static void
1303commSetReuseAddr(int fd)
090089c4 1304{
1305 int on = 1;
62e76326 1306
30a4f2a8 1307 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &on, sizeof(on)) < 0)
bf8fe701 1308 debugs(50, 1, "commSetReuseAddr: FD " << fd << ": " << xstrerror());
090089c4 1309}
1310
b8d8561b 1311static void
1312commSetTcpRcvbuf(int fd, int size)
f868539a 1313{
1314 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (char *) &size, sizeof(size)) < 0)
bf8fe701 1315 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
8f0d53ef 1316 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, (char *) &size, sizeof(size)) < 0)
1317 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
1318#ifdef TCP_WINDOW_CLAMP
1319 if (setsockopt(fd, SOL_TCP, TCP_WINDOW_CLAMP, (char *) &size, sizeof(size)) < 0)
1320 debugs(50, 1, "commSetTcpRcvbuf: FD " << fd << ", SIZE " << size << ": " << xstrerror());
1321#endif
f868539a 1322}
1323
b8d8561b 1324int
1325commSetNonBlocking(int fd)
30a4f2a8 1326{
1191b93b 1327#if !_SQUID_MSWIN_
731e4d49 1328 int flags;
9e205701 1329 int dummy = 0;
a50bfe93 1330#endif
be266cb2 1331#if _SQUID_WINDOWS_
b05490a8 1332 int nonblocking = TRUE;
62e76326 1333
be266cb2 1334#if _SQUID_CYGWIN_
7f6ffd15 1335 if (fd_table[fd].type != FD_PIPE) {
629b5f75 1336#endif
1337
62e76326 1338 if (ioctl(fd, FIONBIO, &nonblocking) < 0) {
bf8fe701 1339 debugs(50, 0, "commSetNonBlocking: FD " << fd << ": " << xstrerror() << " " << fd_table[fd].type);
62e76326 1340 return COMM_ERROR;
1341 }
629b5f75 1342
be266cb2 1343#if _SQUID_CYGWIN_
7f6ffd15 1344 } else {
1345#endif
629b5f75 1346#endif
1191b93b 1347#if !_SQUID_MSWIN_
62e76326 1348
1349 if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
bf8fe701 1350 debugs(50, 0, "FD " << fd << ": fcntl F_GETFL: " << xstrerror());
62e76326 1351 return COMM_ERROR;
1352 }
1353
1354 if (fcntl(fd, F_SETFL, flags | SQUID_NONBLOCK) < 0) {
bf8fe701 1355 debugs(50, 0, "commSetNonBlocking: FD " << fd << ": " << xstrerror());
62e76326 1356 return COMM_ERROR;
1357 }
1358
a50bfe93 1359#endif
be266cb2 1360#if _SQUID_CYGWIN_
090089c4 1361 }
7f6ffd15 1362#endif
58a6c186 1363 fd_table[fd].flags.nonblocking = 1;
62e76326 1364
090089c4 1365 return 0;
1366}
1367
7e3ce7b9 1368int
1369commUnsetNonBlocking(int fd)
1370{
1191b93b 1371#if _SQUID_MSWIN_
a50bfe93 1372 int nonblocking = FALSE;
1373
1374 if (ioctlsocket(fd, FIONBIO, (unsigned long *) &nonblocking) < 0) {
1375#else
7e3ce7b9 1376 int flags;
1377 int dummy = 0;
62e76326 1378
7e3ce7b9 1379 if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
bf8fe701 1380 debugs(50, 0, "FD " << fd << ": fcntl F_GETFL: " << xstrerror());
62e76326 1381 return COMM_ERROR;
7e3ce7b9 1382 }
62e76326 1383
7e3ce7b9 1384 if (fcntl(fd, F_SETFL, flags & (~SQUID_NONBLOCK)) < 0) {
a50bfe93 1385#endif
bf8fe701 1386 debugs(50, 0, "commUnsetNonBlocking: FD " << fd << ": " << xstrerror());
62e76326 1387 return COMM_ERROR;
7e3ce7b9 1388 }
62e76326 1389
7e3ce7b9 1390 fd_table[fd].flags.nonblocking = 0;
1391 return 0;
1392}
1393
b8d8561b 1394void
e1381638
AJ
1395commSetCloseOnExec(int fd)
1396{
3ca60c86 1397#ifdef FD_CLOEXEC
731e4d49 1398 int flags;
7a18b487 1399 int dummy = 0;
62e76326 1400
2209fe19
AJ
1401 if ((flags = fcntl(fd, F_GETFD, dummy)) < 0) {
1402 debugs(50, 0, "FD " << fd << ": fcntl F_GETFD: " << xstrerror());
62e76326 1403 return;
3ca60c86 1404 }
62e76326 1405
24382924 1406 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)
bf8fe701 1407 debugs(50, 0, "FD " << fd << ": set close-on-exec failed: " << xstrerror());
62e76326 1408
d6827718 1409 fd_table[fd].flags.close_on_exec = 1;
62e76326 1410
3ca60c86 1411#endif
1412}
1413
e90100aa 1414#ifdef TCP_NODELAY
1415static void
e1381638
AJ
1416commSetTcpNoDelay(int fd)
1417{
e90100aa 1418 int on = 1;
62e76326 1419
e90100aa 1420 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &on, sizeof(on)) < 0)
bf8fe701 1421 debugs(50, 1, "commSetTcpNoDelay: FD " << fd << ": " << xstrerror());
62e76326 1422
d6827718 1423 fd_table[fd].flags.nodelay = 1;
e90100aa 1424}
62e76326 1425
e90100aa 1426#endif
1427
b2130d58 1428void
e1381638
AJ
1429commSetTcpKeepalive(int fd, int idle, int interval, int timeout)
1430{
b2130d58 1431 int on = 1;
1432#ifdef TCP_KEEPCNT
1433 if (timeout && interval) {
9e008dda
AJ
1434 int count = (timeout + interval - 1) / interval;
1435 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT, &count, sizeof(on)) < 0)
1436 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
b2130d58 1437 }
1438#endif
1439#ifdef TCP_KEEPIDLE
1440 if (idle) {
9e008dda
AJ
1441 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &idle, sizeof(on)) < 0)
1442 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
b2130d58 1443 }
1444#endif
1445#ifdef TCP_KEEPINTVL
1446 if (interval) {
9e008dda
AJ
1447 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &interval, sizeof(on)) < 0)
1448 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
b2130d58 1449 }
1450#endif
1451 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (char *) &on, sizeof(on)) < 0)
9e008dda 1452 debugs(5, 1, "commSetKeepalive: FD " << fd << ": " << xstrerror());
b2130d58 1453}
6a988308 1454
d86b3703 1455void
e1381638
AJ
1456comm_init(void)
1457{
c4b7a5a9 1458 fd_table =(fde *) xcalloc(Squid_MaxFD, sizeof(fde));
1459 fdd_table = (fd_debug_t *)xcalloc(Squid_MaxFD, sizeof(fd_debug_t));
2d8c0b1a 1460
04f55905
AJ
1461 /* make sure the accept() socket FIFO delay queue exists */
1462 Comm::AcceptLimiter::Instance();
b0469965 1463
ec41b64c
AJ
1464 // make sure the IO pending callback table exists
1465 Comm::CallbackTableInit();
2d8c0b1a 1466
59c4d35b 1467 /* XXX account fd_table */
090089c4 1468 /* Keep a few file descriptors free so that we don't run out of FD's
1469 * after accepting a client but before it opens a socket or a file.
e83892e9 1470 * Since Squid_MaxFD can be as high as several thousand, don't waste them */
d85c3078 1471 RESERVED_FD = min(100, Squid_MaxFD / 4);
2d8c0b1a 1472
04eb0689 1473 conn_close_pool = memPoolCreate("close_handler", sizeof(close_handler));
74257126
AR
1474
1475 TheHalfClosed = new DescriptorSet;
d841c88d
AJ
1476
1477 /* setup the select loop module */
1478 Comm::SelectLoopInit();
090089c4 1479}
1480
236d1779 1481void
e1381638
AJ
1482comm_exit(void)
1483{
74257126
AR
1484 delete TheHalfClosed;
1485 TheHalfClosed = NULL;
1486
236d1779 1487 safe_free(fd_table);
1488 safe_free(fdd_table);
ec41b64c 1489 Comm::CallbackTableDestruct();
236d1779 1490}
1491
9a0a18de 1492#if USE_DELAY_POOLS
b4cd430a 1493// called when the queue is done waiting for the client bucket to fill
ec41b64c 1494void
b4cd430a
CT
1495commHandleWriteHelper(void * data)
1496{
1497 CommQuotaQueue *queue = static_cast<CommQuotaQueue*>(data);
1498 assert(queue);
1499
1500 ClientInfo *clientInfo = queue->clientInfo;
1501 // ClientInfo invalidates queue if freed, so if we got here through,
1502 // evenAdd cbdata protections, everything should be valid and consistent
f33d34a8 1503 assert(clientInfo);
b4cd430a
CT
1504 assert(clientInfo->hasQueue());
1505 assert(clientInfo->hasQueue(queue));
1506 assert(!clientInfo->selectWaiting);
1507 assert(clientInfo->eventWaiting);
1508 clientInfo->eventWaiting = false;
1509
1510 do {
1511 // check that the head descriptor is still relevant
1512 const int head = clientInfo->quotaPeekFd();
ec41b64c 1513 Comm::IoCallback *ccb = COMMIO_FD_WRITECB(head);
b4cd430a
CT
1514
1515 if (fd_table[head].clientInfo == clientInfo &&
f33d34a8
A
1516 clientInfo->quotaPeekReserv() == ccb->quotaQueueReserv &&
1517 !fd_table[head].closing()) {
b4cd430a
CT
1518
1519 // wait for the head descriptor to become ready for writing
d841c88d 1520 Comm::SetSelect(head, COMM_SELECT_WRITE, Comm::HandleWrite, ccb, 0);
b4cd430a
CT
1521 clientInfo->selectWaiting = true;
1522 return;
f33d34a8 1523 }
b4cd430a 1524
f33d34a8
A
1525 clientInfo->quotaDequeue(); // remove the no longer relevant descriptor
1526 // and continue looking for a relevant one
b4cd430a
CT
1527 } while (clientInfo->hasQueue());
1528
1529 debugs(77,3, HERE << "emptied queue");
1530}
1531
1532bool
1533ClientInfo::hasQueue() const
1534{
1535 assert(quotaQueue);
1536 return !quotaQueue->empty();
1537}
1538
1539bool
1540ClientInfo::hasQueue(const CommQuotaQueue *q) const
1541{
1542 assert(quotaQueue);
1543 return quotaQueue == q;
1544}
1545
1546/// returns the first descriptor to be dequeued
1547int
1548ClientInfo::quotaPeekFd() const
1549{
1550 assert(quotaQueue);
1551 return quotaQueue->front();
1552}
1553
1554/// returns the reservation ID of the first descriptor to be dequeued
1555unsigned int
1556ClientInfo::quotaPeekReserv() const
1557{
1558 assert(quotaQueue);
1559 return quotaQueue->outs + 1;
1560}
1561
1562/// queues a given fd, creating the queue if necessary; returns reservation ID
1563unsigned int
1564ClientInfo::quotaEnqueue(int fd)
1565{
1566 assert(quotaQueue);
1567 return quotaQueue->enqueue(fd);
1568}
1569
1570/// removes queue head
1571void
1572ClientInfo::quotaDequeue()
1573{
1574 assert(quotaQueue);
1575 quotaQueue->dequeue();
1576}
1577
1578void
1579ClientInfo::kickQuotaQueue()
1580{
1581 if (!eventWaiting && !selectWaiting && hasQueue()) {
1582 // wait at least a second if the bucket is empty
1583 const double delay = (bucketSize < 1.0) ? 1.0 : 0.0;
1584 eventAdd("commHandleWriteHelper", &commHandleWriteHelper,
f33d34a8 1585 quotaQueue, delay, 0, true);
b4cd430a
CT
1586 eventWaiting = true;
1587 }
1588}
1589
1590/// calculates how much to write for a single dequeued client
1591int
1592ClientInfo::quotaForDequed()
1593{
1594 /* If we have multiple clients and give full bucketSize to each client then
1595 * clt1 may often get a lot more because clt1->clt2 time distance in the
1596 * select(2) callback order may be a lot smaller than cltN->clt1 distance.
1597 * We divide quota evenly to be more fair. */
1598
1599 if (!rationedCount) {
1600 rationedCount = quotaQueue->size() + 1;
1601
1602 // The delay in ration recalculation _temporary_ deprives clients from
1603 // bytes that should have trickled in while rationedCount was positive.
1604 refillBucket();
1605
1606 // Rounding errors do not accumulate here, but we round down to avoid
1607 // negative bucket sizes after write with rationedCount=1.
1608 rationedQuota = static_cast<int>(floor(bucketSize/rationedCount));
1609 debugs(77,5, HERE << "new rationedQuota: " << rationedQuota <<
f33d34a8 1610 '*' << rationedCount);
b4cd430a
CT
1611 }
1612
1613 --rationedCount;
1614 debugs(77,7, HERE << "rationedQuota: " << rationedQuota <<
f33d34a8 1615 " rations remaining: " << rationedCount);
b4cd430a
CT
1616
1617 // update 'last seen' time to prevent clientdb GC from dropping us
1618 last_seen = squid_curtime;
1619 return rationedQuota;
1620}
1621
1622///< adds bytes to the quota bucket based on the rate and passed time
1623void
1624ClientInfo::refillBucket()
1625{
1626 // all these times are in seconds, with double precision
1627 const double currTime = current_dtime;
1628 const double timePassed = currTime - prevTime;
1629
f33d34a8 1630 // Calculate allowance for the time passed. Use double to avoid
b4cd430a
CT
1631 // accumulating rounding errors for small intervals. For example, always
1632 // adding 1 byte instead of 1.4 results in 29% bandwidth allocation error.
1633 const double gain = timePassed * writeSpeedLimit;
1634
1635 debugs(77,5, HERE << currTime << " clt" << (const char*)hash.key << ": " <<
f33d34a8
A
1636 bucketSize << " + (" << timePassed << " * " << writeSpeedLimit <<
1637 " = " << gain << ')');
b4cd430a
CT
1638
1639 // to further combat error accumulation during micro updates,
1640 // quit before updating time if we cannot add at least one byte
1641 if (gain < 1.0)
f33d34a8 1642 return;
b4cd430a
CT
1643
1644 prevTime = currTime;
1645
1646 // for "first" connections, drain initial fat before refilling but keep
1647 // updating prevTime to avoid bursts after the fat is gone
1648 if (bucketSize > bucketSizeLimit) {
f33d34a8
A
1649 debugs(77,4, HERE << "not refilling while draining initial fat");
1650 return;
b4cd430a
CT
1651 }
1652
1653 bucketSize += gain;
1654
1655 // obey quota limits
1656 if (bucketSize > bucketSizeLimit)
1657 bucketSize = bucketSizeLimit;
1658}
1659
f33d34a8 1660void
b4cd430a
CT
1661ClientInfo::setWriteLimiter(const int aWriteSpeedLimit, const double anInitialBurst, const double aHighWatermark)
1662{
f33d34a8
A
1663 debugs(77,5, HERE << "Write limits for " << (const char*)hash.key <<
1664 " speed=" << aWriteSpeedLimit << " burst=" << anInitialBurst <<
1665 " highwatermark=" << aHighWatermark);
b4cd430a
CT
1666
1667 // set or possibly update traffic shaping parameters
1668 writeLimitingActive = true;
1669 writeSpeedLimit = aWriteSpeedLimit;
1670 bucketSizeLimit = aHighWatermark;
1671
1672 // but some members should only be set once for a newly activated bucket
1673 if (firstTimeConnection) {
1674 firstTimeConnection = false;
1675
1676 assert(!selectWaiting);
1677 assert(!quotaQueue);
e9dadd7d 1678 quotaQueue = new CommQuotaQueue(this);
b4cd430a
CT
1679
1680 bucketSize = anInitialBurst;
1681 prevTime = current_dtime;
1682 }
1683}
1684
1685CommQuotaQueue::CommQuotaQueue(ClientInfo *info): clientInfo(info),
f33d34a8 1686 ins(0), outs(0)
b4cd430a
CT
1687{
1688 assert(clientInfo);
1689}
1690
1691CommQuotaQueue::~CommQuotaQueue()
1692{
1693 assert(!clientInfo); // ClientInfo should clear this before destroying us
1694}
1695
1696/// places the given fd at the end of the queue; returns reservation ID
1697unsigned int
1698CommQuotaQueue::enqueue(int fd)
1699{
1700 debugs(77,5, HERE << "clt" << (const char*)clientInfo->hash.key <<
f33d34a8 1701 ": FD " << fd << " with qqid" << (ins+1) << ' ' << fds.size());
b4cd430a
CT
1702 fds.push_back(fd);
1703 return ++ins;
1704}
1705
1706/// removes queue head
1707void
1708CommQuotaQueue::dequeue()
1709{
1710 assert(!fds.empty());
1711 debugs(77,5, HERE << "clt" << (const char*)clientInfo->hash.key <<
f33d34a8
A
1712 ": FD " << fds.front() << " with qqid" << (outs+1) << ' ' <<
1713 fds.size());
b4cd430a
CT
1714 fds.pop_front();
1715 ++outs;
1716}
b4cd430a
CT
1717#endif
1718
89924214 1719/*
1720 * hm, this might be too general-purpose for all the places we'd
1721 * like to use it.
1722 */
b224ea98 1723int
e1381638
AJ
1724ignoreErrno(int ierrno)
1725{
603500e7 1726 switch (ierrno) {
62e76326 1727
89924214 1728 case EINPROGRESS:
62e76326 1729
603500e7 1730 case EWOULDBLOCK:
26a880e2 1731#if EAGAIN != EWOULDBLOCK
62e76326 1732
603500e7 1733 case EAGAIN:
26a880e2 1734#endif
62e76326 1735
603500e7 1736 case EALREADY:
62e76326 1737
603500e7 1738 case EINTR:
db494ab8 1739#ifdef ERESTART
62e76326 1740
db494ab8 1741 case ERESTART:
1742#endif
62e76326 1743
1744 return 1;
1745
603500e7 1746 default:
62e76326 1747 return 0;
603500e7 1748 }
62e76326 1749
603500e7 1750 /* NOTREACHED */
26a880e2 1751}
d723bf6b 1752
1753void
e1381638
AJ
1754commCloseAllSockets(void)
1755{
d723bf6b 1756 int fd;
1757 fde *F = NULL;
62e76326 1758
d723bf6b 1759 for (fd = 0; fd <= Biggest_FD; fd++) {
62e76326 1760 F = &fd_table[fd];
1761
1762 if (!F->flags.open)
1763 continue;
1764
1765 if (F->type != FD_SOCKET)
1766 continue;
1767
1768 if (F->flags.ipc) /* don't close inter-process sockets */
1769 continue;
1770
b0469965 1771 if (F->timeoutHandler != NULL) {
1772 AsyncCall::Pointer callback = F->timeoutHandler;
1773 F->timeoutHandler = NULL;
bf8fe701 1774 debugs(5, 5, "commCloseAllSockets: FD " << fd << ": Calling timeout handler");
9e008dda 1775 ScheduleCallHere(callback);
62e76326 1776 } else {
468fe1b5 1777 debugs(5, 5, "commCloseAllSockets: FD " << fd << ": calling comm_reset_close()");
5c336a3b 1778 old_comm_reset_close(fd);
62e76326 1779 }
d723bf6b 1780 }
1781}
1b3db6d9 1782
2d8c0b1a 1783static bool
e1381638
AJ
1784AlreadyTimedOut(fde *F)
1785{
2d8c0b1a 1786 if (!F->flags.open)
1787 return true;
1788
1789 if (F->timeout == 0)
1790 return true;
1791
1792 if (F->timeout > squid_curtime)
1793 return true;
1794
1795 return false;
1796}
1797
5ef5e5cc
AJ
1798static bool
1799writeTimedOut(int fd)
1800{
ec41b64c 1801 if (!COMMIO_FD_WRITECB(fd)->active())
5ef5e5cc
AJ
1802 return false;
1803
1804 if ((squid_curtime - fd_table[fd].writeStart) < Config.Timeout.write)
1805 return false;
1806
1807 return true;
1808}
1809
1b3db6d9 1810void
e1381638
AJ
1811checkTimeouts(void)
1812{
1b3db6d9 1813 int fd;
1814 fde *F = NULL;
b0469965 1815 AsyncCall::Pointer callback;
62e76326 1816
1b3db6d9 1817 for (fd = 0; fd <= Biggest_FD; fd++) {
62e76326 1818 F = &fd_table[fd];
1819
5ef5e5cc
AJ
1820 if (writeTimedOut(fd)) {
1821 // We have an active write callback and we are timed out
52f6ea9e 1822 debugs(5, 5, "checkTimeouts: FD " << fd << " auto write timeout");
d841c88d 1823 Comm::SetSelect(fd, COMM_SELECT_WRITE, NULL, NULL, 0);
ec41b64c 1824 COMMIO_FD_WRITECB(fd)->finish(COMM_ERROR, ETIMEDOUT);
307b696e 1825 } else if (AlreadyTimedOut(F))
62e76326 1826 continue;
1827
9e008dda 1828 debugs(5, 5, "checkTimeouts: FD " << fd << " Expired");
62e76326 1829
b0469965 1830 if (F->timeoutHandler != NULL) {
bf8fe701 1831 debugs(5, 5, "checkTimeouts: FD " << fd << ": Call timeout handler");
b0469965 1832 callback = F->timeoutHandler;
1833 F->timeoutHandler = NULL;
9e008dda 1834 ScheduleCallHere(callback);
62e76326 1835 } else {
bf8fe701 1836 debugs(5, 5, "checkTimeouts: FD " << fd << ": Forcing comm_close()");
62e76326 1837 comm_close(fd);
1838 }
b5443c04 1839 }
1840}
1841
e1381638
AJ
1842void CommIO::Initialise()
1843{
6cce2334 1844 /* Initialize done pipe signal */
1845 int DonePipe[2];
9e008dda 1846 if (pipe(DonePipe)) {}
6cce2334 1847 DoneFD = DonePipe[1];
1848 DoneReadFD = DonePipe[0];
d06925a4 1849 fd_open(DoneReadFD, FD_PIPE, "async-io completetion event: main");
1850 fd_open(DoneFD, FD_PIPE, "async-io completetion event: threads");
1851 commSetNonBlocking(DoneReadFD);
1852 commSetNonBlocking(DoneFD);
d841c88d 1853 Comm::SetSelect(DoneReadFD, COMM_SELECT_READ, NULLFDHandler, NULL, 0);
6cce2334 1854 Initialised = true;
1855}
1856
e1381638
AJ
1857void CommIO::NotifyIOClose()
1858{
d06925a4 1859 /* Close done pipe signal */
1860 FlushPipe();
1861 close(DoneFD);
1862 close(DoneReadFD);
1863 fd_close(DoneFD);
1864 fd_close(DoneReadFD);
1865 Initialised = false;
1866}
1867
6cce2334 1868bool CommIO::Initialised = false;
1869bool CommIO::DoneSignalled = false;
1870int CommIO::DoneFD = -1;
1871int CommIO::DoneReadFD = -1;
1872
1873void
e1381638
AJ
1874CommIO::FlushPipe()
1875{
6cce2334 1876 char buf[256];
56410c89 1877 FD_READ_METHOD(DoneReadFD, buf, sizeof(buf));
6cce2334 1878}
1879
1880void
e1381638
AJ
1881CommIO::NULLFDHandler(int fd, void *data)
1882{
6cce2334 1883 FlushPipe();
d841c88d 1884 Comm::SetSelect(fd, COMM_SELECT_READ, NULLFDHandler, NULL, 0);
6cce2334 1885}
1886
1887void
e1381638
AJ
1888CommIO::ResetNotifications()
1889{
6cce2334 1890 if (DoneSignalled) {
62e76326 1891 FlushPipe();
1892 DoneSignalled = false;
6cce2334 1893 }
1894}
a46d2c0e 1895
9e008dda
AJ
1896/// Start waiting for a possibly half-closed connection to close
1897// by scheduling a read callback to a monitoring handler that
82ec8dfc 1898// will close the connection on read errors.
a46d2c0e 1899void
e1381638
AJ
1900commStartHalfClosedMonitor(int fd)
1901{
74257126 1902 debugs(5, 5, HERE << "adding FD " << fd << " to " << *TheHalfClosed);
82ec8dfc
AR
1903 assert(isOpen(fd));
1904 assert(!commHasHalfClosedMonitor(fd));
74257126
AR
1905 (void)TheHalfClosed->add(fd); // could also assert the result
1906 commPlanHalfClosedCheck(); // may schedule check if we added the first FD
1907}
1908
1909static
1910void
e1381638
AJ
1911commPlanHalfClosedCheck()
1912{
74257126
AR
1913 if (!WillCheckHalfClosed && !TheHalfClosed->empty()) {
1914 eventAdd("commHalfClosedCheck", &commHalfClosedCheck, NULL, 1.0, 1);
1915 WillCheckHalfClosed = true;
1916 }
1917}
1918
1919/// iterates over all descriptors that may need half-closed tests and
1920/// calls comm_read for those that do; re-schedules the check if needed
1921static
1922void
e1381638
AJ
1923commHalfClosedCheck(void *)
1924{
74257126
AR
1925 debugs(5, 5, HERE << "checking " << *TheHalfClosed);
1926
1927 typedef DescriptorSet::const_iterator DSCI;
1928 const DSCI end = TheHalfClosed->end();
1929 for (DSCI i = TheHalfClosed->begin(); i != end; ++i) {
ec20038e
AJ
1930 Comm::ConnectionPointer c = new Comm::Connection; // XXX: temporary. make HalfClosed a list of these.
1931 c->fd = *i;
1932 if (!fd_table[c->fd].halfClosedReader) { // not reading already
74257126 1933 AsyncCall::Pointer call = commCbCall(5,4, "commHalfClosedReader",
9e008dda 1934 CommIoCbPtrFun(&commHalfClosedReader, NULL));
ec20038e
AJ
1935 comm_read(c, NULL, 0, call);
1936 fd_table[c->fd].halfClosedReader = call;
1937 } else
1938 c->fd = -1; // XXX: temporary. prevent c replacement erase closing listed FD
74257126 1939 }
f900210a 1940
74257126
AR
1941 WillCheckHalfClosed = false; // as far as we know
1942 commPlanHalfClosedCheck(); // may need to check again
f900210a 1943}
1944
82ec8dfc
AR
1945/// checks whether we are waiting for possibly half-closed connection to close
1946// We are monitoring if the read handler for the fd is the monitoring handler.
1947bool
e1381638
AJ
1948commHasHalfClosedMonitor(int fd)
1949{
74257126 1950 return TheHalfClosed->has(fd);
a46d2c0e 1951}
1952
82ec8dfc
AR
1953/// stop waiting for possibly half-closed connection to close
1954static void
e1381638
AJ
1955commStopHalfClosedMonitor(int const fd)
1956{
74257126
AR
1957 debugs(5, 5, HERE << "removing FD " << fd << " from " << *TheHalfClosed);
1958
1959 // cancel the read if one was scheduled
1960 AsyncCall::Pointer reader = fd_table[fd].halfClosedReader;
1961 if (reader != NULL)
1962 comm_read_cancel(fd, reader);
1963 fd_table[fd].halfClosedReader = NULL;
1964
1965 TheHalfClosed->del(fd);
a46d2c0e 1966}
1967
82ec8dfc
AR
1968/// I/O handler for the possibly half-closed connection monitoring code
1969static void
e0d28505 1970commHalfClosedReader(const Comm::ConnectionPointer &conn, char *, size_t size, comm_err_t flag, int, void *)
e1381638 1971{
82ec8dfc 1972 // there cannot be more data coming in on half-closed connections
9e008dda 1973 assert(size == 0);
e0d28505
AJ
1974 assert(conn != NULL);
1975 assert(commHasHalfClosedMonitor(conn->fd)); // or we would have canceled the read
74257126 1976
e0d28505 1977 fd_table[conn->fd].halfClosedReader = NULL; // done reading, for now
a46d2c0e 1978
82ec8dfc
AR
1979 // nothing to do if fd is being closed
1980 if (flag == COMM_ERR_CLOSING)
1981 return;
a46d2c0e 1982
82ec8dfc
AR
1983 // if read failed, close the connection
1984 if (flag != COMM_OK) {
e0d28505 1985 debugs(5, 3, HERE << "closing " << conn);
80463bb4 1986 conn->close();
82ec8dfc
AR
1987 return;
1988 }
a46d2c0e 1989
82ec8dfc 1990 // continue waiting for close or error
74257126 1991 commPlanHalfClosedCheck(); // make sure this fd will be checked again
a46d2c0e 1992}
1993
a46d2c0e 1994
3e4bebf8 1995CommRead::CommRead() : conn(NULL), buf(NULL), len(0), callback(NULL) {}
a46d2c0e 1996
3e4bebf8
AJ
1997CommRead::CommRead(const Comm::ConnectionPointer &c, char *buf_, int len_, AsyncCall::Pointer &callback_)
1998 : conn(c), buf(buf_), len(len_), callback(callback_) {}
a46d2c0e 1999
a50bfe93 2000DeferredRead::DeferredRead () : theReader(NULL), theContext(NULL), theRead(), cancelled(false) {}
a46d2c0e 2001
a50bfe93 2002DeferredRead::DeferredRead (DeferrableRead *aReader, void *data, CommRead const &aRead) : theReader(aReader), theContext (data), theRead(aRead), cancelled(false) {}
a46d2c0e 2003
e1381638
AJ
2004DeferredReadManager::~DeferredReadManager()
2005{
a46d2c0e 2006 flushReads();
2007 assert (deferredReads.empty());
2008}
2009
97427e90 2010/* explicit instantiation required for some systems */
2011
63be0a78 2012/// \cond AUTODOCS-IGNORE
2236466c 2013template cbdata_type CbDataList<DeferredRead>::CBDATA_CbDataList;
63be0a78 2014/// \endcond
97427e90 2015
a46d2c0e 2016void
e1381638
AJ
2017DeferredReadManager::delayRead(DeferredRead const &aRead)
2018{
3e4bebf8 2019 debugs(5, 3, "Adding deferred read on " << aRead.theRead.conn);
2236466c 2020 CbDataList<DeferredRead> *temp = deferredReads.push_back(aRead);
2796c0d7 2021
9e008dda 2022 // We have to use a global function as a closer and point to temp
2796c0d7
AR
2023 // instead of "this" because DeferredReadManager is not a job and
2024 // is not even cbdata protected
2025 AsyncCall::Pointer closer = commCbCall(5,4,
9e008dda
AJ
2026 "DeferredReadManager::CloseHandler",
2027 CommCloseCbPtrFun(&CloseHandler, temp));
3e4bebf8 2028 comm_add_close_handler(aRead.theRead.conn->fd, closer);
2796c0d7 2029 temp->element.closer = closer; // remeber so that we can cancel
a46d2c0e 2030}
2031
2032void
e1381638
AJ
2033DeferredReadManager::CloseHandler(int fd, void *thecbdata)
2034{
a46d2c0e 2035 if (!cbdataReferenceValid (thecbdata))
2036 return;
2037
2236466c 2038 CbDataList<DeferredRead> *temp = (CbDataList<DeferredRead> *)thecbdata;
a46d2c0e 2039
2796c0d7 2040 temp->element.closer = NULL;
a46d2c0e 2041 temp->element.markCancelled();
2042}
2043
2044DeferredRead
e1381638
AJ
2045DeferredReadManager::popHead(CbDataListContainer<DeferredRead> &deferredReads)
2046{
a46d2c0e 2047 assert (!deferredReads.empty());
2048
2796c0d7
AR
2049 DeferredRead &read = deferredReads.head->element;
2050 if (!read.cancelled) {
3e4bebf8 2051 comm_remove_close_handler(read.theRead.conn->fd, read.closer);
2796c0d7
AR
2052 read.closer = NULL;
2053 }
a46d2c0e 2054
2055 DeferredRead result = deferredReads.pop_front();
2056
2057 return result;
2058}
2059
2060void
e1381638
AJ
2061DeferredReadManager::kickReads(int const count)
2062{
2236466c 2063 /* if we had CbDataList::size() we could consolidate this and flushReads */
a46d2c0e 2064
33cea91c 2065 if (count < 1) {
a46d2c0e 2066 flushReads();
33cea91c 2067 return;
2068 }
a46d2c0e 2069
2070 size_t remaining = count;
2071
2072 while (!deferredReads.empty() && remaining) {
2073 DeferredRead aRead = popHead(deferredReads);
2074 kickARead(aRead);
2075
2076 if (!aRead.cancelled)
2077 --remaining;
2078 }
2079}
2080
2081void
e1381638
AJ
2082DeferredReadManager::flushReads()
2083{
2236466c 2084 CbDataListContainer<DeferredRead> reads;
a46d2c0e 2085 reads = deferredReads;
2236466c 2086 deferredReads = CbDataListContainer<DeferredRead>();
a46d2c0e 2087
27b24462 2088 // XXX: For fairness this SHOULD randomize the order
a46d2c0e 2089 while (!reads.empty()) {
2090 DeferredRead aRead = popHead(reads);
2091 kickARead(aRead);
2092 }
2093}
2094
2095void
e1381638
AJ
2096DeferredReadManager::kickARead(DeferredRead const &aRead)
2097{
a46d2c0e 2098 if (aRead.cancelled)
2099 return;
2100
3e4bebf8 2101 if (Comm::IsConnOpen(aRead.theRead.conn) && fd_table[aRead.theRead.conn->fd].closing())
af6a12ee 2102 return;
ed2c738b 2103
3e4bebf8 2104 debugs(5, 3, "Kicking deferred read on " << aRead.theRead.conn);
a46d2c0e 2105
2106 aRead.theReader(aRead.theContext, aRead.theRead);
2107}
2108
2109void
e1381638
AJ
2110DeferredRead::markCancelled()
2111{
a46d2c0e 2112 cancelled = true;
2113}
2d8c0b1a 2114
8ff3fa2e 2115int
e1381638
AJ
2116CommSelectEngine::checkEvents(int timeout)
2117{
fa3f745b 2118 static time_t last_timeout = 0;
2119
2120 /* No, this shouldn't be here. But it shouldn't be in each comm handler. -adrian */
2121 if (squid_curtime > last_timeout) {
2122 last_timeout = squid_curtime;
2123 checkTimeouts();
2124 }
2125
d841c88d 2126 switch (Comm::DoSelect(timeout)) {
8ff3fa2e 2127
2128 case COMM_OK:
2129
2130 case COMM_TIMEOUT:
2131 return 0;
2132
2133 case COMM_IDLE:
2134
2135 case COMM_SHUTDOWN:
2136 return EVENT_IDLE;
2137
2138 case COMM_ERROR:
2139 return EVENT_ERROR;
2140
2141 default:
2142 fatal_dump("comm.cc: Internal error -- this should never happen.");
2143 return EVENT_ERROR;
2144 };
2145}
10cefb7b 2146
0ffda73c 2147/// Create a unix-domain socket (UDS) that only supports FD_MSGHDR I/O.
10cefb7b 2148int
2149comm_open_uds(int sock_type,
2150 int proto,
2151 struct sockaddr_un* addr,
2152 int flags)
2153{
a67d2b2e 2154 // TODO: merge with comm_openex() when Ip::Address becomes NetAddress
ba568924 2155
10cefb7b 2156 int new_socket;
10cefb7b 2157
2158 PROF_start(comm_open);
10cefb7b 2159 /* Create socket for accepting new connections. */
2160 statCounter.syscalls.sock.sockets++;
2161
2162 /* Setup the socket addrinfo details for use */
ba568924 2163 struct addrinfo AI;
10cefb7b 2164 AI.ai_flags = 0;
2165 AI.ai_family = PF_UNIX;
2166 AI.ai_socktype = sock_type;
2167 AI.ai_protocol = proto;
2168 AI.ai_addrlen = SUN_LEN(addr);
2169 AI.ai_addr = (sockaddr*)addr;
2170 AI.ai_canonname = NULL;
2171 AI.ai_next = NULL;
2172
ba568924 2173 debugs(50, 3, HERE << "Attempt open socket for: " << addr->sun_path);
10cefb7b 2174
2175 if ((new_socket = socket(AI.ai_family, AI.ai_socktype, AI.ai_protocol)) < 0) {
2176 /* Increase the number of reserved fd's if calls to socket()
2177 * are failing because the open file table is full. This
2178 * limits the number of simultaneous clients */
2179
2180 if (limitError(errno)) {
ba568924 2181 debugs(50, DBG_IMPORTANT, HERE << "socket failure: " << xstrerror());
10cefb7b 2182 fdAdjustReserved();
2183 } else {
ba568924 2184 debugs(50, DBG_CRITICAL, HERE << "socket failure: " << xstrerror());
10cefb7b 2185 }
2186
2187 PROF_stop(comm_open);
2188 return -1;
2189 }
2190
ba568924 2191 debugs(50, 3, HERE "Opened UDS FD " << new_socket << " : family=" << AI.ai_family << ", type=" << AI.ai_socktype << ", protocol=" << AI.ai_protocol);
10cefb7b 2192
2193 /* update fdstat */
ba568924 2194 debugs(50, 5, HERE << "FD " << new_socket << " is a new socket");
10cefb7b 2195
2196 assert(!isOpen(new_socket));
1bac0258 2197 fd_open(new_socket, FD_MSGHDR, NULL);
10cefb7b 2198
2199 fdd_table[new_socket].close_file = NULL;
ba568924 2200
10cefb7b 2201 fdd_table[new_socket].close_line = 0;
2202
ba568924
AR
2203 fd_table[new_socket].sock_family = AI.ai_family;
2204
10cefb7b 2205 if (!(flags & COMM_NOCLOEXEC))
2206 commSetCloseOnExec(new_socket);
2207
2208 if (flags & COMM_REUSEADDR)
2209 commSetReuseAddr(new_socket);
2210
2211 if (flags & COMM_NONBLOCKING) {
2212 if (commSetNonBlocking(new_socket) != COMM_OK) {
2213 comm_close(new_socket);
2214 PROF_stop(comm_open);
2215 return -1;
2216 }
2217 }
2218
2219 if (flags & COMM_DOBIND) {
2220 if (commBind(new_socket, AI) != COMM_OK) {
2221 comm_close(new_socket);
2222 PROF_stop(comm_open);
2223 return -1;
2224 }
2225 }
2226
2227#ifdef TCP_NODELAY
2228 if (sock_type == SOCK_STREAM)
2229 commSetTcpNoDelay(new_socket);
2230
2231#endif
2232
2233 if (Config.tcpRcvBufsz > 0 && sock_type == SOCK_STREAM)
2234 commSetTcpRcvbuf(new_socket, Config.tcpRcvBufsz);
2235
2236 PROF_stop(comm_open);
2237
2238 return new_socket;
2239}