/usr/share/lua/5.1/cqueues/socket.lua is in lua-cqueues 20161214-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 | local loader = function(loader, ...)
local socket = require("_cqueues.socket")
local cqueues = require("cqueues")
local errno = require("cqueues.errno")
local poll = cqueues.poll
local monotime = cqueues.monotime
local AF_INET = socket.AF_INET
local AF_INET6 = socket.AF_INET6
local AF_UNIX = socket.AF_UNIX
local SOCK_STREAM = socket.SOCK_STREAM
local SOCK_DGRAM = socket.SOCK_DGRAM
local EAGAIN = errno.EAGAIN
local EPIPE = errno.EPIPE
local ETIMEDOUT = errno.ETIMEDOUT
local ENOTCONN = errno.ENOTCONN
local ENOTSOCK = errno.ENOTSOCK
local strerror = errno.strerror
local format = string.format
--
-- H E L P E R R O U T I N E S
--
-- ========================================================================
local function timed_poll(self, deadline)
if deadline then
local curtime = monotime()
if deadline <= curtime then
return false
end
poll(self, deadline - curtime)
return true
else
poll(self)
return true
end
end -- timed_poll
local function logname(so)
local af, addr, port = so:peername()
if af == AF_INET or af == AF_INET6 then
return format("%s.%s", addr, port)
elseif af == AF_UNIX then
return format("unix:%s", addr or "unnamed")
end
end -- logname
--
-- E R R O R M A N A G E M E N T
--
-- All errors in the I/O routines are first passed to a per-socket error
-- handler, which can choose to return or throw them.
--
-- The default error handler is not actually installed with any socket, as
-- that would create needless churn in the registry index on socket
-- instantiation. Instead we interpose socket.onerror and socket:onerror and
-- return our default handler if none was previously installed.
--
-- ========================================================================
-- default error handler
local function def_onerror(self, op, why, lvl)
if why == EPIPE then
return EPIPE
elseif why == ETIMEDOUT then
return ETIMEDOUT
else
local addr = logname(self)
local msg
if addr then
msg = format("[%s]:%s: %s", addr, op, strerror(why))
else
msg = format("socket:%s: %s", op, strerror(why))
end
error(msg, lvl)
end
end -- def_onerror
local _onerror = socket.onerror; socket.onerror = function(...)
return _onerror(...) or def_onerror
end
local _onerror; _onerror = socket.interpose("onerror", function(...)
return _onerror(...) or def_onerror
end)
--
-- On buffered I/O we need to preserve errors across calls, otherwise
-- unchecked transient errors might lead to unexpected behavior by
-- application code. This is particularly true regarding timeouts, and
-- especially so when mixed with iterators like socket:lines--doubly so when
-- reading MIME headers, which could terminate on ETIMEDOUT, EPIPE, or just
-- when reaching the end of the headers section.
--
-- Why not just always throw on such errors? One reason is that we partially
-- mimic Lua's file objects, which will return such errors. (And we might
-- change our semantics to fully mimic Lua in the future.)
--
-- Another reason is that it's very common to want to deal with timeouts
-- inline. For example, maybe you want to write a keep-alive message after a
-- read timeout. Timeouts are exceptional but not necessarily errors.
--
local preserve = {
read = "r", lines = "r", fill = "r", unpack = "r",
write = "w", flush = "w", pack = "w",
-- these too for good measure, even though they're not buffered
recvfd = "r", sendfd = "w",
}
-- drop EPIPE errors on input channel
local nopipe = {
read = true, lines = true, fill = true, unpack = true, recvfd = true
}
local function oops(self, op, why, level)
local onerror = self:onerror() or def_onerror
if why == EPIPE and nopipe[op] then
return -- EOF
elseif preserve[op] then
self:seterror(preserve[op], why)
end
-- NOTE: There's normally no need to increment on a tail-call
-- (except when directly calling the error() routine), but we
-- increment here so the callee has the correct stack level to pass
-- to error() directly, without making adjustments for its own
-- activation record.
return onerror(self, op, why, (level or 2) + 1)
end -- oops
--
-- A P I E X T E N S I O N S
--
-- The core sockets implementation in C will not yield on I/O, or throw
-- recoverable errors. These things are done in Lua code for simplicitly and
-- portability--Lua 5.1/LuaJIT doesn't support resumption of C routines.
--
-- ========================================================================
--
-- Extended socket.pair
--
local _pair = socket.pair; socket.pair = function(type)
if type == "stream" then
type = SOCK_STREAM
elseif type == "dgram" then
type = SOCK_DGRAM
end
return _pair(type)
end
--
-- Throwable socket:setbufsiz
--
local _setbufsiz; _setbufsiz = socket.interpose("setbufsiz", function(self, input, output)
local input, output, why = _setbufsiz(self, input, output)
if not input then
return nil, nil, oops(self, "setbufsiz", why)
end
return input, output
end)
--
-- Yielding socket:listen
--
local _listen; _listen = socket.interpose("listen", function(self, timeout)
local timeout = timeout or self:timeout()
local deadline = timeout and (monotime() + timeout)
local ok, why = _listen(self)
while not ok do
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "listen", ETIMEDOUT)
end
else
return nil, oops(self, "listen", why)
end
ok, why = _listen(self)
end
return self
end)
--
-- Yielding socket:accept
--
local _accept; _accept = socket.interpose("accept", function(self, opts, timeout)
-- :accept used to take just a timeout as argument
if type(opts) == "number" then
timeout, opts = opts, nil
else
timeout = timeout or self:timeout()
end
local deadline = timeout and (monotime() + timeout)
local con, why = _accept(self, opts)
while not con do
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "accept", ETIMEDOUT)
end
else
return nil, oops(self, "accept", why)
end
con, why = _accept(self, opts)
end
return con
end)
--
-- Add socket:clients
--
socket.interpose("clients", function(self, opts, timeout)
return function() return self:accept(opts, timeout) end
end)
--
-- Yielding socket:connect
--
local _connect; _connect = socket.interpose("connect", function(self, timeout)
local timeout = timeout or self:timeout()
local deadline = timeout and (monotime() + timeout)
local ok, why = _connect(self)
while not ok do
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "connect", ETIMEDOUT)
end
else
return nil, oops(self, "connect", why)
end
ok, why = _connect(self)
end
return self
end)
--
-- Yielding socket:starttls
--
local _starttls; _starttls = socket.interpose("starttls", function(self, arg1, arg2)
local ctx, timeout
if type(arg1) == "userdata" then
ctx = arg1
elseif type(arg2) == "userdata" then
ctx = arg2
end
if type(arg1) == "number" then
timeout = arg1
elseif type(arg2) == "number" then
timeout = arg2
else
timeout = self:timeout()
end
local deadline = timeout and monotime() + timeout
local ok, why = _starttls(self, ctx)
while not ok do
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "starttls", ETIMEDOUT)
end
else
return nil, oops(self, "starttls", why)
end
ok, why = _starttls(self, ctx)
end
return self
end)
--
-- Smarter socket:checktls
--
local havessl, whynossl
local _checktls; _checktls = socket.interpose("checktls", function(self)
if not havessl then
if havessl == false then
return nil, whynossl
end
local havessl, whynossl = pcall(require, "openssl.ssl")
if not havessl then
return nil, whynossl
end
end
return _checktls(self)
end)
--
-- Yielding socket:flush
--
local _flush;
local function timed_flush(self, mode, timeout, level)
local ok, why = _flush(self, mode)
if not ok then
local deadline = timeout and (monotime() + timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return false, oops(self, "flush", ETIMEDOUT, level + 1)
end
else
return false, oops(self, "flush", why, level + 1)
end
ok, why = _flush(self, mode)
until ok
end
return true
end -- timed_flush
_flush = socket.interpose("flush", function (self, arg1, arg2)
local mode, timeout
if type(arg1) == "string" then
mode = arg1
elseif type(arg2) == "string" then
mode = arg2
end
if type(arg1) == "number" then
timeout = arg1
elseif type(arg2) == "number" then
timeout = arg2
else
timeout = self:timeout()
end
return timed_flush(self, mode, timeout, 2)
end)
--
-- Yielding socket:read
--
local function read(self, func, what, ...)
if not what then
return
end
local data, why = self:recv(what)
if not data then
local timeout = self:timeout()
local deadline = timeout and (monotime() + timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, func, ETIMEDOUT, 2)
end
elseif why then
return nil, oops(self, func, why, 2)
else
return -- EOF or end-of-headers
end
data, why = self:recv(what)
until data
end
return data, read(self, func, ...)
end
socket.interpose("read", function(self, what, ...)
if what then
return read(self, "read", what, ...)
else
return read(self, "read", "*l")
end
end)
--
-- Yielding socket:write
--
-- This is complicated by the fact that we want error messages to get the
-- correct stack trace, and also because on failure we want to return a list
-- of error values of indeterminate length.
--
local writeall; writeall = function(self, data, ...)
if not data then
return self
end
data = tostring(data)
local i = 1
while i <= #data do
-- use only full buffering mode here to minimize socket I/O
local n, why = self:send(data, i, #data, "f")
i = i + n
if i <= #data then
if why == EAGAIN then
local timeout = self:timeout()
local deadline = timeout and (monotime() + timeout)
if not timed_poll(self, deadline) then
return nil, oops(self, "write", ETIMEDOUT, 3)
end
else
return nil, oops(self, "write", why, 3)
end
end
end
return writeall(self, ...)
end
local function fileresult(self, ok, ...)
if ok then
return self
else
return nil, ...
end
end -- fileresult
local function flushwrite(self, ok, ...)
if not ok then
return nil, ...
end
-- Flush the buffer here because we used full buffering mode in
-- writeall. But pass empty mode so it uses the configured flushing
-- mode instead of an implicit flush all.
return fileresult(self, timed_flush(self, "", nil, 2))
end -- flushwrite
socket.interpose("write", function (self, ...)
return flushwrite(self, writeall(self, ...))
end)
--
-- Add socket:lines
--
-- We optimize single-mode case so we're not unpacking tables all the time.
--
local unpack = assert(table.unpack or unpack)
socket.interpose("lines", function (self, mode, ...)
local args = select("#", ...) > 0 and { ... }
if mode then
if select("#", ...) > 0 then
local args = { ... }
return function ()
return read(self, "lines", mode, unpack(args))
end
end
else
mode = "*l"
end
return function ()
return read(self, "lines", mode)
end
end)
--
-- Smarter socket:read
--
local function xswap(arg1, arg2)
if tonumber(arg1) then
return arg2, arg1
else
return arg1, arg2
end
end -- xswap
local function xopts(self, ...)
local mode, timeout = xswap(...)
return mode, timeout
end -- xopts
local function xdeadline(self, timeout)
timeout = timeout or self:timeout()
return timeout and (monotime() + timeout)
end -- xdeadline
socket.interpose("xread", function (self, what, ...)
local mode, timeout = xopts(self, ...)
local data, why = self:recv(what, mode)
if not data then
local deadline = xdeadline(self, timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "read", ETIMEDOUT)
end
elseif why then
return nil, oops(self, "read", why)
else
return --> EOF
end
data, why = self:recv(what, mode)
until data
end
return data
end) -- xread
--
-- Smarter socket:write
--
socket.interpose("xwrite", function (self, data, ...)
local mode, timeout = xopts(self, ...)
local i = 1
--
-- should we default to full-buffering here (and the :send below) if
-- mode is nil?
--
local n, why = self:send(data, i, #data, mode)
i = i + n
if i <= #data then
local deadline = xdeadline(self, timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "write", ETIMEDOUT)
end
else
return nil, oops(self, "write", why)
end
n, why = self:send(data, i, #data, mode)
i = i + n
until i > #data
timeout = deadline and math.max(0, deadline - monotime())
end
return fileresult(self, self:flush(mode or "", timeout))
end)
--
-- Smarter socket:lines
--
socket.interpose("xlines", function (self, what, ...)
local mode, timeout = xopts(self, ...)
return function ()
return self:xread(what, mode, timeout)
end
end)
--
-- Yielding socket:sendfd
--
local _sendfd; _sendfd = socket.interpose("sendfd", function (self, msg, fd, timeout)
local timeout = timeout or self:timeout()
local deadline = timeout and (monotime() + timeout)
local ok, why
repeat
ok, why = _sendfd(self, msg, fd)
if not ok then
if why == EAGAIN then
if not timed_poll(self, deadline) then
return false, oops(self, "sendfd", ETIMEDOUT)
end
else
return false, oops(self, "sendfd", why)
end
end
until ok
return ok
end)
--
-- Yielding socket:recvfd
--
local _recvfd; _recvfd = socket.interpose("recvfd", function (self, prepbufsiz, timeout)
local timeout = timeout or self:timeout()
local deadline = timeout and (monotime() + timeout)
local msg, fd, why
repeat
msg, fd, why = _recvfd(self, prepbufsiz)
if not msg then
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, nil, oops(self, "recvfd", ETIMEDOUT)
end
else
return nil, nil, oops(self, "recvfd", why)
end
end
until msg
return msg, fd
end)
--
-- Yielding socket:pack
--
local _pack; _pack = socket.interpose("pack", function (self, num, nbits, mode)
local ok, why = _pack(self, num, nbits, mode)
if not ok then
local timeout = self:timeout()
local deadline = timeout and (monotime() + timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return false, oops(self, "pack", ETIMEDOUT)
end
else
return false, oops(self, "pack", why)
end
ok, why = _pack(self, num, nbits, mode)
until ok
end
return ok
end)
--
-- Yielding socket:unpack
--
local _unpack; _unpack = socket.interpose("unpack", function (self, nbits)
local num, why = _unpack(self, nbits)
if not num then
local timeout = self:timeout()
local deadline = timeout and (monotime() + timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return nil, oops(self, "unpack", ETIMEDOUT)
end
else
return nil, oops(self, "unpack", why)
end
num, why = _unpack(self, nbits)
until num
end
return num
end)
--
-- Yielding socket:fill
--
local _fill; _fill = socket.interpose("fill", function (self, size, timeout)
local ok, why = _fill(self, size)
if not ok then
local timeout = timeout or self:timeout()
local deadline = timeout and (monotime() + timeout)
repeat
if why == EAGAIN then
if not timed_poll(self, deadline) then
return false, oops(self, "fill", ETIMEDOUT)
end
else
return false, oops(self, "fill", why)
end
ok, why = _fill(self, size)
until ok
end
return true
end)
--
-- Extend socket:peername
--
local function getname(get, self)
local af, r1, r2 = get(self)
if af then
return af, r1, r2
elseif r1 == ENOTCONN or r1 == ENOTSOCK or r1 == EAGAIN then
return 0
else
return nil, r1
end
end
local _peername; _peername = socket.interpose("peername", function (self)
return getname(_peername, self)
end)
--
-- Extend socket:localname
--
local _localname; _localname = socket.interpose("localname", function (self)
return getname(_localname, self)
end)
socket.loader = loader
return socket
end -- loader
return loader(loader, ...)
|