/usr/share/perl5/Danga/Socket.pm is in libdanga-socket-perl 1.61-1.
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 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 | ###########################################################################
=head1 NAME
Danga::Socket - Event loop and event-driven async socket base class
=head1 SYNOPSIS
package My::Socket
use Danga::Socket;
use base ('Danga::Socket');
use fields ('my_attribute');
sub new {
my My::Socket $self = shift;
$self = fields::new($self) unless ref $self;
$self->SUPER::new( @_ );
$self->{my_attribute} = 1234;
return $self;
}
sub event_err { ... }
sub event_hup { ... }
sub event_write { ... }
sub event_read { ... }
sub close { ... }
$my_sock->tcp_cork($bool);
# write returns 1 if all writes have gone through, or 0 if there
# are writes in queue
$my_sock->write($scalar);
$my_sock->write($scalarref);
$my_sock->write(sub { ... }); # run when previous data written
$my_sock->write(undef); # kick-starts
# read max $bytecount bytes, or undef on connection closed
$scalar_ref = $my_sock->read($bytecount);
# watch for writability. not needed with ->write(). write()
# will automatically turn on watch_write when you wrote too much
# and turn it off when done
$my_sock->watch_write($bool);
# watch for readability
$my_sock->watch_read($bool);
# if you read too much and want to push some back on
# readable queue. (not incredibly well-tested)
$my_sock->push_back_read($buf); # scalar or scalar ref
Danga::Socket->AddOtherFds(..);
Danga::Socket->SetLoopTimeout($millisecs);
Danga::Socket->DescriptorMap();
Danga::Socket->WatchedSockets(); # count of DescriptorMap keys
Danga::Socket->SetPostLoopCallback($code);
Danga::Socket->EventLoop();
=head1 DESCRIPTION
This is an abstract base class for objects backed by a socket which
provides the basic framework for event-driven asynchronous IO,
designed to be fast. Danga::Socket is both a base class for objects,
and an event loop.
Callers subclass Danga::Socket. Danga::Socket's constructor registers
itself with the Danga::Socket event loop, and invokes callbacks on the
object for readability, writability, errors, and other conditions.
Because Danga::Socket uses the "fields" module, your subclasses must
too.
=head1 MORE INFO
For now, see servers using Danga::Socket for guidance. For example:
perlbal, mogilefsd, or ddlockd.
=head1 API
Note where "C<CLASS>" is used below, normally you would call these methods as:
Danga::Socket->method(...);
However using a subclass works too.
The CLASS methods are all methods for the event loop part of Danga::Socket,
whereas the object methods are all used on your subclasses.
=cut
###########################################################################
package Danga::Socket;
use strict;
use bytes;
use POSIX ();
use Time::HiRes ();
my $opt_bsd_resource = eval "use BSD::Resource; 1;";
use vars qw{$VERSION};
$VERSION = "1.61";
use warnings;
no warnings qw(deprecated);
use Sys::Syscall qw(:epoll);
use fields ('sock', # underlying socket
'fd', # numeric file descriptor
'write_buf', # arrayref of scalars, scalarrefs, or coderefs to write
'write_buf_offset', # offset into first array of write_buf to start writing at
'write_buf_size', # total length of data in all write_buf items
'write_set_watch', # bool: true if we internally set watch_write rather than by a subclass
'read_push_back', # arrayref of "pushed-back" read data the application didn't want
'closed', # bool: socket is closed
'corked', # bool: socket is corked
'event_watch', # bitmask of events the client is interested in (POLLIN,OUT,etc.)
'peer_v6', # bool: cached; if peer is an IPv6 address
'peer_ip', # cached stringified IP address of $sock
'peer_port', # cached port number of $sock
'local_ip', # cached stringified IP address of local end of $sock
'local_port', # cached port number of local end of $sock
'writer_func', # subref which does writing. must return bytes written (or undef) and set $! on errors
);
use Errno qw(EINPROGRESS EWOULDBLOCK EISCONN ENOTSOCK
EPIPE EAGAIN EBADF ECONNRESET ENOPROTOOPT);
use Socket qw(IPPROTO_TCP);
use Carp qw(croak confess);
use constant TCP_CORK => ($^O eq "linux" ? 3 : 0); # FIXME: not hard-coded (Linux-specific too)
use constant DebugLevel => 0;
use constant POLLIN => 1;
use constant POLLOUT => 4;
use constant POLLERR => 8;
use constant POLLHUP => 16;
use constant POLLNVAL => 32;
our $HAVE_KQUEUE = eval { require IO::KQueue; 1 };
our (
$HaveEpoll, # Flag -- is epoll available? initially undefined.
$HaveKQueue,
%DescriptorMap, # fd (num) -> Danga::Socket object
%PushBackSet, # fd (num) -> Danga::Socket (fds with pushed back read data)
$Epoll, # Global epoll fd (for epoll mode only)
$KQueue, # Global kqueue fd (for kqueue mode only)
@ToClose, # sockets to close when event loop is done
%OtherFds, # A hash of "other" (non-Danga::Socket) file
# descriptors for the event loop to track.
$PostLoopCallback, # subref to call at the end of each loop, if defined (global)
%PLCMap, # fd (num) -> PostLoopCallback (per-object)
$LoopTimeout, # timeout of event loop in milliseconds
$DoProfile, # if on, enable profiling
%Profiling, # what => [ utime, stime, calls ]
$DoneInit, # if we've done the one-time module init yet
@Timers, # timers
);
Reset();
#####################################################################
### C L A S S M E T H O D S
#####################################################################
=head2 C<< CLASS->Reset() >>
Reset all state
=cut
sub Reset {
%DescriptorMap = ();
%PushBackSet = ();
@ToClose = ();
%OtherFds = ();
$LoopTimeout = -1; # no timeout by default
$DoProfile = 0;
%Profiling = ();
@Timers = ();
$PostLoopCallback = undef;
%PLCMap = ();
$DoneInit = 0;
POSIX::close($Epoll) if defined $Epoll && $Epoll >= 0;
POSIX::close($KQueue) if defined $KQueue && $KQueue >= 0;
*EventLoop = *FirstTimeEventLoop;
}
=head2 C<< CLASS->HaveEpoll() >>
Returns a true value if this class will use IO::Epoll for async IO.
=cut
sub HaveEpoll {
_InitPoller();
return $HaveEpoll;
}
=head2 C<< CLASS->WatchedSockets() >>
Returns the number of file descriptors which are registered with the global
poll object.
=cut
sub WatchedSockets {
return scalar keys %DescriptorMap;
}
*watched_sockets = *WatchedSockets;
=head2 C<< CLASS->EnableProfiling() >>
Turns profiling on, clearing current profiling data.
=cut
sub EnableProfiling {
if ($opt_bsd_resource) {
%Profiling = ();
$DoProfile = 1;
return 1;
}
return 0;
}
=head2 C<< CLASS->DisableProfiling() >>
Turns off profiling, but retains data up to this point
=cut
sub DisableProfiling {
$DoProfile = 0;
}
=head2 C<< CLASS->ProfilingData() >>
Returns reference to a hash of data in format:
ITEM => [ utime, stime, #calls ]
=cut
sub ProfilingData {
return \%Profiling;
}
=head2 C<< CLASS->ToClose() >>
Return the list of sockets that are awaiting close() at the end of the
current event loop.
=cut
sub ToClose { return @ToClose; }
=head2 C<< CLASS->OtherFds( [%fdmap] ) >>
Get/set the hash of file descriptors that need processing in parallel with
the registered Danga::Socket objects.
=cut
sub OtherFds {
my $class = shift;
if ( @_ ) { %OtherFds = @_ }
return wantarray ? %OtherFds : \%OtherFds;
}
=head2 C<< CLASS->AddOtherFds( [%fdmap] ) >>
Add fds to the OtherFds hash for processing.
=cut
sub AddOtherFds {
my $class = shift;
%OtherFds = ( %OtherFds, @_ ); # FIXME investigate what happens on dupe fds
return wantarray ? %OtherFds : \%OtherFds;
}
=head2 C<< CLASS->SetLoopTimeout( $timeout ) >>
Set the loop timeout for the event loop to some value in milliseconds.
A timeout of 0 (zero) means poll forever. A timeout of -1 means poll and return
immediately.
=cut
sub SetLoopTimeout {
return $LoopTimeout = $_[1] + 0;
}
=head2 C<< CLASS->DebugMsg( $format, @args ) >>
Print the debugging message specified by the C<sprintf>-style I<format> and
I<args>
=cut
sub DebugMsg {
my ( $class, $fmt, @args ) = @_;
chomp $fmt;
printf STDERR ">>> $fmt\n", @args;
}
=head2 C<< CLASS->AddTimer( $seconds, $coderef ) >>
Add a timer to occur $seconds from now. $seconds may be fractional, but timers
are not guaranteed to fire at the exact time you ask for.
Returns a timer object which you can call C<< $timer->cancel >> on if you need to.
=cut
sub AddTimer {
my $class = shift;
my ($secs, $coderef) = @_;
my $fire_time = Time::HiRes::time() + $secs;
my $timer = bless [$fire_time, $coderef], "Danga::Socket::Timer";
if (!@Timers || $fire_time >= $Timers[-1][0]) {
push @Timers, $timer;
return $timer;
}
# Now, where do we insert? (NOTE: this appears slow, algorithm-wise,
# but it was compared against calendar queues, heaps, naive push/sort,
# and a bunch of other versions, and found to be fastest with a large
# variety of datasets.)
for (my $i = 0; $i < @Timers; $i++) {
if ($Timers[$i][0] > $fire_time) {
splice(@Timers, $i, 0, $timer);
return $timer;
}
}
die "Shouldn't get here.";
}
=head2 C<< CLASS->DescriptorMap() >>
Get the hash of Danga::Socket objects keyed by the file descriptor (fileno) they
are wrapping.
Returns a hash in list context or a hashref in scalar context.
=cut
sub DescriptorMap {
return wantarray ? %DescriptorMap : \%DescriptorMap;
}
*descriptor_map = *DescriptorMap;
*get_sock_ref = *DescriptorMap;
sub _InitPoller
{
return if $DoneInit;
$DoneInit = 1;
if ($HAVE_KQUEUE) {
$KQueue = IO::KQueue->new();
$HaveKQueue = $KQueue >= 0;
if ($HaveKQueue) {
*EventLoop = *KQueueEventLoop;
}
}
elsif (Sys::Syscall::epoll_defined()) {
$Epoll = eval { epoll_create(1024); };
$HaveEpoll = defined $Epoll && $Epoll >= 0;
if ($HaveEpoll) {
*EventLoop = *EpollEventLoop;
}
}
if (!$HaveEpoll && !$HaveKQueue) {
require IO::Poll;
*EventLoop = *PollEventLoop;
}
}
=head2 C<< CLASS->EventLoop() >>
Start processing IO events. In most daemon programs this never exits. See
C<PostLoopCallback> below for how to exit the loop.
=cut
sub FirstTimeEventLoop {
my $class = shift;
_InitPoller();
if ($HaveEpoll) {
EpollEventLoop($class);
} elsif ($HaveKQueue) {
KQueueEventLoop($class);
} else {
PollEventLoop($class);
}
}
## profiling-related data/functions
our ($Prof_utime0, $Prof_stime0);
sub _pre_profile {
($Prof_utime0, $Prof_stime0) = getrusage();
}
sub _post_profile {
# get post information
my ($autime, $astime) = getrusage();
# calculate differences
my $utime = $autime - $Prof_utime0;
my $stime = $astime - $Prof_stime0;
foreach my $k (@_) {
$Profiling{$k} ||= [ 0.0, 0.0, 0 ];
$Profiling{$k}->[0] += $utime;
$Profiling{$k}->[1] += $stime;
$Profiling{$k}->[2]++;
}
}
# runs timers and returns milliseconds for next one, or next event loop
sub RunTimers {
return $LoopTimeout unless @Timers;
my $now = Time::HiRes::time();
# Run expired timers
while (@Timers && $Timers[0][0] <= $now) {
my $to_run = shift(@Timers);
$to_run->[1]->($now) if $to_run->[1];
}
return $LoopTimeout unless @Timers;
# convert time to an even number of milliseconds, adding 1
# extra, otherwise floating point fun can occur and we'll
# call RunTimers like 20-30 times, each returning a timeout
# of 0.0000212 seconds
my $timeout = int(($Timers[0][0] - $now) * 1000) + 1;
# -1 is an infinite timeout, so prefer a real timeout
return $timeout if $LoopTimeout == -1;
# otherwise pick the lower of our regular timeout and time until
# the next timer
return $LoopTimeout if $LoopTimeout < $timeout;
return $timeout;
}
### The epoll-based event loop. Gets installed as EventLoop if IO::Epoll loads
### okay.
sub EpollEventLoop {
my $class = shift;
foreach my $fd ( keys %OtherFds ) {
if (epoll_ctl($Epoll, EPOLL_CTL_ADD, $fd, EPOLLIN) == -1) {
warn "epoll_ctl(): failure adding fd=$fd; $! (", $!+0, ")\n";
}
}
while (1) {
my @events;
my $i;
my $timeout = RunTimers();
# get up to 1000 events
my $evcount = epoll_wait($Epoll, 1000, $timeout, \@events);
EVENT:
for ($i=0; $i<$evcount; $i++) {
my $ev = $events[$i];
# it's possible epoll_wait returned many events, including some at the end
# that ones in the front triggered unregister-interest actions. if we
# can't find the %sock entry, it's because we're no longer interested
# in that event.
my Danga::Socket $pob = $DescriptorMap{$ev->[0]};
my $code;
my $state = $ev->[1];
# if we didn't find a Perlbal::Socket subclass for that fd, try other
# pseudo-registered (above) fds.
if (! $pob) {
if (my $code = $OtherFds{$ev->[0]}) {
$code->($state);
} else {
my $fd = $ev->[0];
warn "epoll() returned fd $fd w/ state $state for which we have no mapping. removing.\n";
POSIX::close($fd);
epoll_ctl($Epoll, EPOLL_CTL_DEL, $fd, 0);
}
next;
}
DebugLevel >= 1 && $class->DebugMsg("Event: fd=%d (%s), state=%d \@ %s\n",
$ev->[0], ref($pob), $ev->[1], time);
if ($DoProfile) {
my $class = ref $pob;
# call profiling action on things that need to be done
if ($state & EPOLLIN && ! $pob->{closed}) {
_pre_profile();
$pob->event_read;
_post_profile("$class-read");
}
if ($state & EPOLLOUT && ! $pob->{closed}) {
_pre_profile();
$pob->event_write;
_post_profile("$class-write");
}
if ($state & (EPOLLERR|EPOLLHUP)) {
if ($state & EPOLLERR && ! $pob->{closed}) {
_pre_profile();
$pob->event_err;
_post_profile("$class-err");
}
if ($state & EPOLLHUP && ! $pob->{closed}) {
_pre_profile();
$pob->event_hup;
_post_profile("$class-hup");
}
}
next;
}
# standard non-profiling codepat
$pob->event_read if $state & EPOLLIN && ! $pob->{closed};
$pob->event_write if $state & EPOLLOUT && ! $pob->{closed};
if ($state & (EPOLLERR|EPOLLHUP)) {
$pob->event_err if $state & EPOLLERR && ! $pob->{closed};
$pob->event_hup if $state & EPOLLHUP && ! $pob->{closed};
}
}
return unless PostEventLoop();
}
exit 0;
}
### The fallback IO::Poll-based event loop. Gets installed as EventLoop if
### IO::Epoll fails to load.
sub PollEventLoop {
my $class = shift;
my Danga::Socket $pob;
while (1) {
my $timeout = RunTimers();
# the following sets up @poll as a series of ($poll,$event_mask)
# items, then uses IO::Poll::_poll, implemented in XS, which
# modifies the array in place with the even elements being
# replaced with the event masks that occured.
my @poll;
foreach my $fd ( keys %OtherFds ) {
push @poll, $fd, POLLIN;
}
while ( my ($fd, $sock) = each %DescriptorMap ) {
push @poll, $fd, $sock->{event_watch};
}
# if nothing to poll, either end immediately (if no timeout)
# or just keep calling the callback
unless (@poll) {
select undef, undef, undef, ($timeout / 1000);
return unless PostEventLoop();
next;
}
my $count = IO::Poll::_poll($timeout, @poll);
unless ($count) {
return unless PostEventLoop();
next;
}
# Fetch handles with read events
while (@poll) {
my ($fd, $state) = splice(@poll, 0, 2);
next unless $state;
$pob = $DescriptorMap{$fd};
if (!$pob) {
if (my $code = $OtherFds{$fd}) {
$code->($state);
}
next;
}
$pob->event_read if $state & POLLIN && ! $pob->{closed};
$pob->event_write if $state & POLLOUT && ! $pob->{closed};
$pob->event_err if $state & POLLERR && ! $pob->{closed};
$pob->event_hup if $state & POLLHUP && ! $pob->{closed};
}
return unless PostEventLoop();
}
exit 0;
}
### The kqueue-based event loop. Gets installed as EventLoop if IO::KQueue works
### okay.
sub KQueueEventLoop {
my $class = shift;
foreach my $fd (keys %OtherFds) {
$KQueue->EV_SET($fd, IO::KQueue::EVFILT_READ(), IO::KQueue::EV_ADD());
}
while (1) {
my $timeout = RunTimers();
my @ret = $KQueue->kevent($timeout);
foreach my $kev (@ret) {
my ($fd, $filter, $flags, $fflags) = @$kev;
my Danga::Socket $pob = $DescriptorMap{$fd};
if (!$pob) {
if (my $code = $OtherFds{$fd}) {
$code->($filter);
} else {
warn "kevent() returned fd $fd for which we have no mapping. removing.\n";
POSIX::close($fd); # close deletes the kevent entry
}
next;
}
DebugLevel >= 1 && $class->DebugMsg("Event: fd=%d (%s), flags=%d \@ %s\n",
$fd, ref($pob), $flags, time);
$pob->event_read if $filter == IO::KQueue::EVFILT_READ() && !$pob->{closed};
$pob->event_write if $filter == IO::KQueue::EVFILT_WRITE() && !$pob->{closed};
if ($flags == IO::KQueue::EV_EOF() && !$pob->{closed}) {
if ($fflags) {
$pob->event_err;
} else {
$pob->event_hup;
}
}
}
return unless PostEventLoop();
}
exit(0);
}
=head2 C<< CLASS->SetPostLoopCallback( CODEREF ) >>
Sets post loop callback function. Pass a subref and it will be
called every time the event loop finishes.
Return 1 (or any true value) from the sub to make the loop continue, 0 or false
and it will exit.
The callback function will be passed two parameters: \%DescriptorMap, \%OtherFds.
=cut
sub SetPostLoopCallback {
my ($class, $ref) = @_;
if (ref $class) {
# per-object callback
my Danga::Socket $self = $class;
if (defined $ref && ref $ref eq 'CODE') {
$PLCMap{$self->{fd}} = $ref;
} else {
delete $PLCMap{$self->{fd}};
}
} else {
# global callback
$PostLoopCallback = (defined $ref && ref $ref eq 'CODE') ? $ref : undef;
}
}
# Internal function: run the post-event callback, send read events
# for pushed-back data, and close pending connections. returns 1
# if event loop should continue, or 0 to shut it all down.
sub PostEventLoop {
# fire read events for objects with pushed-back read data
my $loop = 1;
while ($loop) {
$loop = 0;
foreach my $fd (keys %PushBackSet) {
my Danga::Socket $pob = $PushBackSet{$fd};
# a previous event_read invocation could've closed a
# connection that we already evaluated in "keys
# %PushBackSet", so skip ones that seem to have
# disappeared. this is expected.
next unless $pob;
die "ASSERT: the $pob socket has no read_push_back" unless @{$pob->{read_push_back}};
next unless (! $pob->{closed} &&
$pob->{event_watch} & POLLIN);
$loop = 1;
$pob->event_read;
}
}
# now we can close sockets that wanted to close during our event processing.
# (we didn't want to close them during the loop, as we didn't want fd numbers
# being reused and confused during the event loop)
while (my $sock = shift @ToClose) {
my $fd = fileno($sock);
# close the socket. (not a Danga::Socket close)
$sock->close;
# and now we can finally remove the fd from the map. see
# comment above in _cleanup.
delete $DescriptorMap{$fd};
}
# by default we keep running, unless a postloop callback (either per-object
# or global) cancels it
my $keep_running = 1;
# per-object post-loop-callbacks
for my $plc (values %PLCMap) {
$keep_running &&= $plc->(\%DescriptorMap, \%OtherFds);
}
# now we're at the very end, call callback if defined
if (defined $PostLoopCallback) {
$keep_running &&= $PostLoopCallback->(\%DescriptorMap, \%OtherFds);
}
return $keep_running;
}
#####################################################################
### Danga::Socket-the-object code
#####################################################################
=head2 OBJECT METHODS
=head2 C<< CLASS->new( $socket ) >>
Create a new Danga::Socket subclass object for the given I<socket> which will
react to events on it during the C<EventLoop>.
This is normally (always?) called from your subclass via:
$class->SUPER::new($socket);
=cut
sub new {
my Danga::Socket $self = shift;
$self = fields::new($self) unless ref $self;
my $sock = shift;
$self->{sock} = $sock;
my $fd = fileno($sock);
Carp::cluck("undef sock and/or fd in Danga::Socket->new. sock=" . ($sock || "") . ", fd=" . ($fd || ""))
unless $sock && $fd;
$self->{fd} = $fd;
$self->{write_buf} = [];
$self->{write_buf_offset} = 0;
$self->{write_buf_size} = 0;
$self->{closed} = 0;
$self->{corked} = 0;
$self->{read_push_back} = [];
$self->{event_watch} = POLLERR|POLLHUP|POLLNVAL;
_InitPoller();
if ($HaveEpoll) {
epoll_ctl($Epoll, EPOLL_CTL_ADD, $fd, $self->{event_watch})
and die "couldn't add epoll watch for $fd\n";
}
elsif ($HaveKQueue) {
# Add them to the queue but disabled for now
$KQueue->EV_SET($fd, IO::KQueue::EVFILT_READ(),
IO::KQueue::EV_ADD() | IO::KQueue::EV_DISABLE());
$KQueue->EV_SET($fd, IO::KQueue::EVFILT_WRITE(),
IO::KQueue::EV_ADD() | IO::KQueue::EV_DISABLE());
}
Carp::cluck("Danga::Socket::new blowing away existing descriptor map for fd=$fd ($DescriptorMap{$fd})")
if $DescriptorMap{$fd};
$DescriptorMap{$fd} = $self;
return $self;
}
#####################################################################
### I N S T A N C E M E T H O D S
#####################################################################
=head2 C<< $obj->tcp_cork( $boolean ) >>
Turn TCP_CORK on or off depending on the value of I<boolean>.
=cut
sub tcp_cork {
my Danga::Socket $self = $_[0];
my $val = $_[1];
# make sure we have a socket
return unless $self->{sock};
return if $val == $self->{corked};
my $rv;
if (TCP_CORK) {
$rv = setsockopt($self->{sock}, IPPROTO_TCP, TCP_CORK,
pack("l", $val ? 1 : 0));
} else {
# FIXME: implement freebsd *PUSH sockopts
$rv = 1;
}
# if we failed, close (if we're not already) and warn about the error
if ($rv) {
$self->{corked} = $val;
} else {
if ($! == EBADF || $! == ENOTSOCK) {
# internal state is probably corrupted; warn and then close if
# we're not closed already
warn "setsockopt: $!";
$self->close('tcp_cork_failed');
} elsif ($! == ENOPROTOOPT || $!{ENOTSOCK} || $!{EOPNOTSUPP}) {
# TCP implementation doesn't support corking, so just ignore it
# or we're trying to tcp-cork a non-socket (like a socketpair pipe
# which is acting like a socket, which Perlbal does for child
# processes acting like inetd-like web servers)
} else {
# some other error; we should never hit here, but if we do, die
die "setsockopt: $!";
}
}
}
=head2 C<< $obj->steal_socket() >>
Basically returns our socket and makes it so that we don't try to close it,
but we do remove it from epoll handlers. THIS CLOSES $self. It is the same
thing as calling close, except it gives you the socket to use.
=cut
sub steal_socket {
my Danga::Socket $self = $_[0];
return if $self->{closed};
# cleanup does most of the work of closing this socket
$self->_cleanup();
# now undef our internal sock and fd structures so we don't use them
my $sock = $self->{sock};
$self->{sock} = undef;
return $sock;
}
=head2 C<< $obj->close( [$reason] ) >>
Close the socket. The I<reason> argument will be used in debugging messages.
=cut
sub close {
my Danga::Socket $self = $_[0];
return if $self->{closed};
# print out debugging info for this close
if (DebugLevel) {
my ($pkg, $filename, $line) = caller;
my $reason = $_[1] || "";
warn "Closing \#$self->{fd} due to $pkg/$filename/$line ($reason)\n";
}
# this does most of the work of closing us
$self->_cleanup();
# defer closing the actual socket until the event loop is done
# processing this round of events. (otherwise we might reuse fds)
if ($self->{sock}) {
push @ToClose, $self->{sock};
$self->{sock} = undef;
}
return 0;
}
### METHOD: _cleanup()
### Called by our closers so we can clean internal data structures.
sub _cleanup {
my Danga::Socket $self = $_[0];
# we're effectively closed; we have no fd and sock when we leave here
$self->{closed} = 1;
# we need to flush our write buffer, as there may
# be self-referential closures (sub { $client->close })
# preventing the object from being destroyed
$self->{write_buf} = [];
# uncork so any final data gets sent. only matters if the person closing
# us forgot to do it, but we do it to be safe.
$self->tcp_cork(0);
# if we're using epoll, we have to remove this from our epoll fd so we stop getting
# notifications about it
if ($HaveEpoll && $self->{fd}) {
if (epoll_ctl($Epoll, EPOLL_CTL_DEL, $self->{fd}, $self->{event_watch}) != 0) {
# dump_error prints a backtrace so we can try to figure out why this happened
$self->dump_error("epoll_ctl(): failure deleting fd=$self->{fd} during _cleanup(); $! (" . ($!+0) . ")");
}
}
# now delete from mappings. this fd no longer belongs to us, so we don't want
# to get alerts for it if it becomes writable/readable/etc.
delete $PushBackSet{$self->{fd}};
delete $PLCMap{$self->{fd}};
# we explicitly don't delete from DescriptorMap here until we
# actually close the socket, as we might be in the middle of
# processing an epoll_wait/etc that returned hundreds of fds, one
# of which is not yet processed and is what we're closing. if we
# keep it in DescriptorMap, then the event harnesses can just
# looked at $pob->{closed} and ignore it. but if it's an
# un-accounted for fd, then it (understandably) freak out a bit
# and emit warnings, thinking their state got off.
# and finally get rid of our fd so we can't use it anywhere else
$self->{fd} = undef;
}
=head2 C<< $obj->sock() >>
Returns the underlying IO::Handle for the object.
=cut
sub sock {
my Danga::Socket $self = shift;
return $self->{sock};
}
=head2 C<< $obj->set_writer_func( CODEREF ) >>
Sets a function to use instead of C<syswrite()> when writing data to the socket.
=cut
sub set_writer_func {
my Danga::Socket $self = shift;
my $wtr = shift;
Carp::croak("Not a subref") unless !defined $wtr || UNIVERSAL::isa($wtr, "CODE");
$self->{writer_func} = $wtr;
}
=head2 C<< $obj->write( $data ) >>
Write the specified data to the underlying handle. I<data> may be scalar,
scalar ref, code ref (to run when there), or undef just to kick-start.
Returns 1 if writes all went through, or 0 if there are writes in queue. If
it returns 1, caller should stop waiting for 'writable' events)
=cut
sub write {
my Danga::Socket $self;
my $data;
($self, $data) = @_;
# nobody should be writing to closed sockets, but caller code can
# do two writes within an event, have the first fail and
# disconnect the other side (whose destructor then closes the
# calling object, but it's still in a method), and then the
# now-dead object does its second write. that is this case. we
# just lie and say it worked. it'll be dead soon and won't be
# hurt by this lie.
return 1 if $self->{closed};
my $bref;
# just queue data if there's already a wait
my $need_queue;
if (defined $data) {
$bref = ref $data ? $data : \$data;
if ($self->{write_buf_size}) {
push @{$self->{write_buf}}, $bref;
$self->{write_buf_size} += ref $bref eq "SCALAR" ? length($$bref) : 1;
return 0;
}
# this flag says we're bypassing the queue system, knowing we're the
# only outstanding write, and hoping we don't ever need to use it.
# if so later, though, we'll need to queue
$need_queue = 1;
}
WRITE:
while (1) {
return 1 unless $bref ||= $self->{write_buf}[0];
my $len;
eval {
$len = length($$bref); # this will die if $bref is a code ref, caught below
};
if ($@) {
if (UNIVERSAL::isa($bref, "CODE")) {
unless ($need_queue) {
$self->{write_buf_size}--; # code refs are worth 1
shift @{$self->{write_buf}};
}
$bref->();
# code refs are just run and never get reenqueued
# (they're one-shot), so turn off the flag indicating the
# outstanding data needs queueing.
$need_queue = 0;
undef $bref;
next WRITE;
}
die "Write error: $@ <$bref>";
}
my $to_write = $len - $self->{write_buf_offset};
my $written;
if (my $wtr = $self->{writer_func}) {
$written = $wtr->($bref, $to_write, $self->{write_buf_offset});
} else {
$written = syswrite($self->{sock}, $$bref, $to_write, $self->{write_buf_offset});
}
if (! defined $written) {
if ($! == EPIPE) {
return $self->close("EPIPE");
} elsif ($! == EAGAIN) {
# since connection has stuff to write, it should now be
# interested in pending writes:
if ($need_queue) {
push @{$self->{write_buf}}, $bref;
$self->{write_buf_size} += $len;
}
$self->{write_set_watch} = 1 unless $self->{event_watch} & POLLOUT;
$self->watch_write(1);
return 0;
} elsif ($! == ECONNRESET) {
return $self->close("ECONNRESET");
}
DebugLevel >= 1 && $self->debugmsg("Closing connection ($self) due to write error: $!\n");
return $self->close("write_error");
} elsif ($written != $to_write) {
DebugLevel >= 2 && $self->debugmsg("Wrote PARTIAL %d bytes to %d",
$written, $self->{fd});
if ($need_queue) {
push @{$self->{write_buf}}, $bref;
$self->{write_buf_size} += $len;
}
# since connection has stuff to write, it should now be
# interested in pending writes:
$self->{write_buf_offset} += $written;
$self->{write_buf_size} -= $written;
$self->on_incomplete_write;
return 0;
} elsif ($written == $to_write) {
DebugLevel >= 2 && $self->debugmsg("Wrote ALL %d bytes to %d (nq=%d)",
$written, $self->{fd}, $need_queue);
$self->{write_buf_offset} = 0;
if ($self->{write_set_watch}) {
$self->watch_write(0);
$self->{write_set_watch} = 0;
}
# this was our only write, so we can return immediately
# since we avoided incrementing the buffer size or
# putting it in the buffer. we also know there
# can't be anything else to write.
return 1 if $need_queue;
$self->{write_buf_size} -= $written;
shift @{$self->{write_buf}};
undef $bref;
next WRITE;
}
}
}
sub on_incomplete_write {
my Danga::Socket $self = shift;
$self->{write_set_watch} = 1 unless $self->{event_watch} & POLLOUT;
$self->watch_write(1);
}
=head2 C<< $obj->push_back_read( $buf ) >>
Push back I<buf> (a scalar or scalarref) into the read stream. Useful if you read
more than you need to and want to return this data on the next "read".
=cut
sub push_back_read {
my Danga::Socket $self = shift;
my $buf = shift;
push @{$self->{read_push_back}}, ref $buf ? $buf : \$buf;
$PushBackSet{$self->{fd}} = $self;
}
=head2 C<< $obj->read( $bytecount ) >>
Read at most I<bytecount> bytes from the underlying handle; returns scalar
ref on read, or undef on connection closed.
=cut
sub read {
my Danga::Socket $self = shift;
return if $self->{closed};
my $bytes = shift;
my $buf;
my $sock = $self->{sock};
if (@{$self->{read_push_back}}) {
$buf = shift @{$self->{read_push_back}};
my $len = length($$buf);
if ($len <= $bytes) {
delete $PushBackSet{$self->{fd}} unless @{$self->{read_push_back}};
return $buf;
} else {
# if the pushed back read is too big, we have to split it
my $overflow = substr($$buf, $bytes);
$buf = substr($$buf, 0, $bytes);
unshift @{$self->{read_push_back}}, \$overflow;
return \$buf;
}
}
# if this is too high, perl quits(!!). reports on mailing lists
# don't seem to point to a universal answer. 5MB worked for some,
# crashed for others. 1MB works for more people. let's go with 1MB
# for now. :/
my $req_bytes = $bytes > 1048576 ? 1048576 : $bytes;
my $res = sysread($sock, $buf, $req_bytes, 0);
DebugLevel >= 2 && $self->debugmsg("sysread = %d; \$! = %d", $res, $!);
if (! $res && $! != EWOULDBLOCK) {
# catches 0=conn closed or undef=error
DebugLevel >= 2 && $self->debugmsg("Fd \#%d read hit the end of the road.", $self->{fd});
return undef;
}
return \$buf;
}
=head2 (VIRTUAL) C<< $obj->event_read() >>
Readable event handler. Concrete deriviatives of Danga::Socket should
provide an implementation of this. The default implementation will die if
called.
=cut
sub event_read { die "Base class event_read called for $_[0]\n"; }
=head2 (VIRTUAL) C<< $obj->event_err() >>
Error event handler. Concrete deriviatives of Danga::Socket should
provide an implementation of this. The default implementation will die if
called.
=cut
sub event_err { die "Base class event_err called for $_[0]\n"; }
=head2 (VIRTUAL) C<< $obj->event_hup() >>
'Hangup' event handler. Concrete deriviatives of Danga::Socket should
provide an implementation of this. The default implementation will die if
called.
=cut
sub event_hup { die "Base class event_hup called for $_[0]\n"; }
=head2 C<< $obj->event_write() >>
Writable event handler. Concrete deriviatives of Danga::Socket may wish to
provide an implementation of this. The default implementation calls
C<write()> with an C<undef>.
=cut
sub event_write {
my $self = shift;
$self->write(undef);
}
=head2 C<< $obj->watch_read( $boolean ) >>
Turn 'readable' event notification on or off.
=cut
sub watch_read {
my Danga::Socket $self = shift;
return if $self->{closed} || !$self->{sock};
my $val = shift;
my $event = $self->{event_watch};
$event &= ~POLLIN if ! $val;
$event |= POLLIN if $val;
# If it changed, set it
if ($event != $self->{event_watch}) {
if ($HaveKQueue) {
$KQueue->EV_SET($self->{fd}, IO::KQueue::EVFILT_READ(),
$val ? IO::KQueue::EV_ENABLE() : IO::KQueue::EV_DISABLE());
}
elsif ($HaveEpoll) {
epoll_ctl($Epoll, EPOLL_CTL_MOD, $self->{fd}, $event)
and $self->dump_error("couldn't modify epoll settings for $self->{fd} " .
"from $self->{event_watch} -> $event: $! (" . ($!+0) . ")");
}
$self->{event_watch} = $event;
}
}
=head2 C<< $obj->watch_write( $boolean ) >>
Turn 'writable' event notification on or off.
=cut
sub watch_write {
my Danga::Socket $self = shift;
return if $self->{closed} || !$self->{sock};
my $val = shift;
my $event = $self->{event_watch};
$event &= ~POLLOUT if ! $val;
$event |= POLLOUT if $val;
if ($val && caller ne __PACKAGE__) {
# A subclass registered interest, it's now responsible for this.
$self->{write_set_watch} = 0;
}
# If it changed, set it
if ($event != $self->{event_watch}) {
if ($HaveKQueue) {
$KQueue->EV_SET($self->{fd}, IO::KQueue::EVFILT_WRITE(),
$val ? IO::KQueue::EV_ENABLE() : IO::KQueue::EV_DISABLE());
}
elsif ($HaveEpoll) {
epoll_ctl($Epoll, EPOLL_CTL_MOD, $self->{fd}, $event)
and $self->dump_error("couldn't modify epoll settings for $self->{fd} " .
"from $self->{event_watch} -> $event: $! (" . ($!+0) . ")");
}
$self->{event_watch} = $event;
}
}
=head2 C<< $obj->dump_error( $message ) >>
Prints to STDERR a backtrace with information about this socket and what lead
up to the dump_error call.
=cut
sub dump_error {
my $i = 0;
my @list;
while (my ($file, $line, $sub) = (caller($i++))[1..3]) {
push @list, "\t$file:$line called $sub\n";
}
warn "ERROR: $_[1]\n" .
"\t$_[0] = " . $_[0]->as_string . "\n" .
join('', @list);
}
=head2 C<< $obj->debugmsg( $format, @args ) >>
Print the debugging message specified by the C<sprintf>-style I<format> and
I<args>.
=cut
sub debugmsg {
my ( $self, $fmt, @args ) = @_;
confess "Not an object" unless ref $self;
chomp $fmt;
printf STDERR ">>> $fmt\n", @args;
}
=head2 C<< $obj->peer_ip_string() >>
Returns the string describing the peer's IP
=cut
sub peer_ip_string {
my Danga::Socket $self = shift;
return _undef("peer_ip_string undef: no sock") unless $self->{sock};
return $self->{peer_ip} if defined $self->{peer_ip};
my $pn = getpeername($self->{sock});
return _undef("peer_ip_string undef: getpeername") unless $pn;
my ($port, $iaddr) = eval {
if (length($pn) >= 28) {
return Socket6::unpack_sockaddr_in6($pn);
} else {
return Socket::sockaddr_in($pn);
}
};
if ($@) {
$self->{peer_port} = "[Unknown peerport '$@']";
return "[Unknown peername '$@']";
}
$self->{peer_port} = $port;
if (length($iaddr) == 4) {
return $self->{peer_ip} = Socket::inet_ntoa($iaddr);
} else {
$self->{peer_v6} = 1;
return $self->{peer_ip} = Socket6::inet_ntop(Socket6::AF_INET6(),
$iaddr);
}
}
=head2 C<< $obj->peer_addr_string() >>
Returns the string describing the peer for the socket which underlies this
object in form "ip:port"
=cut
sub peer_addr_string {
my Danga::Socket $self = shift;
my $ip = $self->peer_ip_string
or return undef;
return $self->{peer_v6} ?
"[$ip]:$self->{peer_port}" :
"$ip:$self->{peer_port}";
}
=head2 C<< $obj->local_ip_string() >>
Returns the string describing the local IP
=cut
sub local_ip_string {
my Danga::Socket $self = shift;
return _undef("local_ip_string undef: no sock") unless $self->{sock};
return $self->{local_ip} if defined $self->{local_ip};
my $pn = getsockname($self->{sock});
return _undef("local_ip_string undef: getsockname") unless $pn;
my ($port, $iaddr) = Socket::sockaddr_in($pn);
$self->{local_port} = $port;
return $self->{local_ip} = Socket::inet_ntoa($iaddr);
}
=head2 C<< $obj->local_addr_string() >>
Returns the string describing the local end of the socket which underlies this
object in form "ip:port"
=cut
sub local_addr_string {
my Danga::Socket $self = shift;
my $ip = $self->local_ip_string;
return $ip ? "$ip:$self->{local_port}" : undef;
}
=head2 C<< $obj->as_string() >>
Returns a string describing this socket.
=cut
sub as_string {
my Danga::Socket $self = shift;
my $rw = "(" . ($self->{event_watch} & POLLIN ? 'R' : '') .
($self->{event_watch} & POLLOUT ? 'W' : '') . ")";
my $ret = ref($self) . "$rw: " . ($self->{closed} ? "closed" : "open");
my $peer = $self->peer_addr_string;
if ($peer) {
$ret .= " to " . $self->peer_addr_string;
}
return $ret;
}
sub _undef {
return undef unless $ENV{DS_DEBUG};
my $msg = shift || "";
warn "Danga::Socket: $msg\n";
return undef;
}
package Danga::Socket::Timer;
# [$abs_float_firetime, $coderef];
sub cancel {
$_[0][1] = undef;
}
=head1 AUTHORS
Brad Fitzpatrick <brad@danga.com> - author
Michael Granger <ged@danga.com> - docs, testing
Mark Smith <junior@danga.com> - contributor, heavy user, testing
Matt Sergeant <matt@sergeant.org> - kqueue support, docs, timers, other bits
=head1 BUGS
Not documented enough (but isn't that true of every project?).
tcp_cork only works on Linux for now. No BSD push/nopush support.
=head1 LICENSE
License is granted to use and distribute this module under the same
terms as Perl itself.
=cut
1;
# Local Variables:
# mode: perl
# c-basic-indent: 4
# indent-tabs-mode: nil
# End:
|