forked from nawalgupta/PythonBuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrsocket.py
More file actions
1492 lines (1328 loc) · 54.1 KB
/
Copy pathrsocket.py
File metadata and controls
1492 lines (1328 loc) · 54.1 KB
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
from __future__ import with_statement
"""
An RPython implementation of sockets based on rffi.
Note that the interface has to be slightly different - this is not
a drop-in replacement for the 'socket' module.
"""
# XXX this does not support yet the least common AF_xxx address families
# supported by CPython. See http://bugs.pypy.org/issue1942
from errno import EINVAL
from rpython.rlib import _rsocket_rffi as _c, jit, rgc
from rpython.rlib.objectmodel import instantiate, keepalive_until_here
from rpython.rlib.rarithmetic import intmask, r_uint
from rpython.rlib import rthread, rposix
from rpython.rtyper.lltypesystem import lltype, rffi
from rpython.rtyper.lltypesystem.rffi import sizeof, offsetof
from rpython.rtyper.extregistry import ExtRegistryEntry
# Usage of @jit.dont_look_inside in this file is possibly temporary
# and only because some lltypes declared in _rsocket_rffi choke the
# JIT's codewriter right now (notably, FixedSizeArray).
INVALID_SOCKET = _c.INVALID_SOCKET
def mallocbuf(buffersize):
return lltype.malloc(rffi.CCHARP.TO, buffersize, flavor='raw')
constants = _c.constants
locals().update(constants) # Define constants from _c
if _c.WIN32:
from rpython.rlib import rwin32
def rsocket_startup():
wsadata = lltype.malloc(_c.WSAData, flavor='raw', zero=True)
try:
res = _c.WSAStartup(0x0101, wsadata)
assert res == 0
finally:
lltype.free(wsadata, flavor='raw')
else:
def rsocket_startup():
pass
def ntohs(x):
assert isinstance(x, int)
return rffi.cast(lltype.Signed, _c.ntohs(x))
def ntohl(x):
# accepts and returns an Unsigned
return rffi.cast(lltype.Unsigned, _c.ntohl(x))
def htons(x):
assert isinstance(x, int)
return rffi.cast(lltype.Signed, _c.htons(x))
def htonl(x):
# accepts and returns an Unsigned
return rffi.cast(lltype.Unsigned, _c.htonl(x))
_FAMILIES = {}
class Address(object):
"""The base class for RPython-level objects representing addresses.
Fields: addr - a _c.sockaddr_ptr (memory owned by the Address instance)
addrlen - size used within 'addr'
"""
class __metaclass__(type):
def __new__(cls, name, bases, dict):
family = dict.get('family')
A = type.__new__(cls, name, bases, dict)
if family is not None:
_FAMILIES[family] = A
return A
# default uninitialized value: NULL ptr
addr_p = lltype.nullptr(_c.sockaddr_ptr.TO)
def __init__(self, addr, addrlen):
self.addr_p = addr
self.addrlen = addrlen
@rgc.must_be_light_finalizer
def __del__(self):
if self.addr_p:
lltype.free(self.addr_p, flavor='raw', track_allocation=False)
def setdata(self, addr, addrlen):
# initialize self.addr and self.addrlen. 'addr' can be a different
# pointer type than exactly sockaddr_ptr, and we cast it for you.
assert not self.addr_p
self.addr_p = rffi.cast(_c.sockaddr_ptr, addr)
self.addrlen = addrlen
setdata._annspecialcase_ = 'specialize:ll'
# the following slightly strange interface is needed to manipulate
# what self.addr_p points to in a safe way. The problem is that
# after inlining we might end up with operations that looks like:
# addr = self.addr_p
# <self is freed here, and its __del__ calls lltype.free()>
# read from addr
# To prevent this we have to insert a keepalive after the last
# use of 'addr'. The interface to do that is called lock()/unlock()
# because it strongly reminds callers not to forget unlock().
#
def lock(self, TYPE=_c.sockaddr):
"""Return self.addr_p, cast as a pointer to TYPE. Must call unlock()!
"""
return rffi.cast(lltype.Ptr(TYPE), self.addr_p)
lock._annspecialcase_ = 'specialize:ll'
def unlock(self):
"""To call after we're done with the pointer returned by lock().
Note that locking and unlocking costs nothing at run-time.
"""
keepalive_until_here(self)
# ____________________________________________________________
def makeipaddr(name, result=None):
# Convert a string specifying a host name or one of a few symbolic
# names to an IPAddress instance. This usually calls getaddrinfo()
# to do the work; the names "" and "<broadcast>" are special.
# If 'result' is specified it must be a prebuilt INETAddress or
# INET6Address that is filled; otherwise a new INETXAddress is returned.
if result is None:
family = AF_UNSPEC
else:
family = result.family
if len(name) == 0:
info = getaddrinfo(None, "0",
family=family,
socktype=SOCK_DGRAM, # dummy
flags=AI_PASSIVE,
address_to_fill=result)
if len(info) > 1:
raise RSocketError("wildcard resolved to multiple addresses")
return info[0][4]
# IPv4 also supports the special name "<broadcast>".
if name == '<broadcast>':
return makeipv4addr(r_uint(INADDR_BROADCAST), result)
# "dd.dd.dd.dd" format.
digits = name.split('.')
if len(digits) == 4:
try:
d0 = int(digits[0])
d1 = int(digits[1])
d2 = int(digits[2])
d3 = int(digits[3])
except ValueError:
pass
else:
if (0 <= d0 <= 255 and
0 <= d1 <= 255 and
0 <= d2 <= 255 and
0 <= d3 <= 255):
addr = intmask(d0 << 24) | (d1 << 16) | (d2 << 8) | (d3 << 0)
addr = rffi.cast(rffi.UINT, addr)
addr = htonl(addr)
return makeipv4addr(addr, result)
# generic host name to IP conversion
info = getaddrinfo(name, None, family=family, address_to_fill=result)
return info[0][4]
class IPAddress(Address):
"""AF_INET and AF_INET6 addresses"""
def get_host(self):
# Create a string object representing an IP address.
# For IPv4 this is always a string of the form 'dd.dd.dd.dd'
# (with variable size numbers).
host, serv = getnameinfo(self, NI_NUMERICHOST | NI_NUMERICSERV)
return host
def lock_in_addr(self):
""" Purely abstract
"""
raise NotImplementedError
# ____________________________________________________________
HAS_AF_PACKET = 'AF_PACKET' in constants
if HAS_AF_PACKET:
class PacketAddress(Address):
family = AF_PACKET
struct = _c.sockaddr_ll
maxlen = minlen = sizeof(struct)
ifr_name_size = _c.ifreq.c_ifr_name.length
sll_addr_size = _c.sockaddr_ll.c_sll_addr.length
def __init__(self, ifindex, protocol, pkttype=0, hatype=0, haddr=""):
addr = lltype.malloc(_c.sockaddr_ll, flavor='raw', zero=True,
track_allocation=False)
self.setdata(addr, PacketAddress.maxlen)
rffi.setintfield(addr, 'c_sll_family', AF_PACKET)
rffi.setintfield(addr, 'c_sll_protocol', htons(protocol))
rffi.setintfield(addr, 'c_sll_ifindex', ifindex)
rffi.setintfield(addr, 'c_sll_pkttype', pkttype)
rffi.setintfield(addr, 'c_sll_hatype', hatype)
halen = rffi.str2chararray(haddr,
rffi.cast(rffi.CCHARP, addr.c_sll_addr),
PacketAddress.sll_addr_size)
rffi.setintfield(addr, 'c_sll_halen', halen)
@staticmethod
def get_ifindex_from_ifname(fd, ifname):
p = lltype.malloc(_c.ifreq, flavor='raw')
iflen = rffi.str2chararray(ifname,
rffi.cast(rffi.CCHARP, p.c_ifr_name),
PacketAddress.ifr_name_size - 1)
p.c_ifr_name[iflen] = '\0'
err = _c.ioctl(fd, _c.SIOCGIFINDEX, p)
ifindex = p.c_ifr_ifindex
lltype.free(p, flavor='raw')
if err != 0:
raise RSocketError("invalid interface name")
return ifindex
def get_ifname(self, fd):
ifname = ""
a = self.lock(_c.sockaddr_ll)
ifindex = rffi.getintfield(a, 'c_sll_ifindex')
if ifindex:
p = lltype.malloc(_c.ifreq, flavor='raw')
rffi.setintfield(p, 'c_ifr_ifindex', ifindex)
if (_c.ioctl(fd, _c.SIOCGIFNAME, p) == 0):
ifname = rffi.charp2strn(
rffi.cast(rffi.CCHARP, p.c_ifr_name),
PacketAddress.ifr_name_size)
lltype.free(p, flavor='raw')
self.unlock()
return ifname
def get_protocol(self):
a = self.lock(_c.sockaddr_ll)
proto = rffi.getintfield(a, 'c_sll_protocol')
res = ntohs(proto)
self.unlock()
return res
def get_pkttype(self):
a = self.lock(_c.sockaddr_ll)
res = rffi.getintfield(a, 'c_sll_pkttype')
self.unlock()
return res
def get_hatype(self):
a = self.lock(_c.sockaddr_ll)
res = rffi.getintfield(a, 'c_sll_hatype')
self.unlock()
return res
def get_haddr(self):
a = self.lock(_c.sockaddr_ll)
lgt = rffi.getintfield(a, 'c_sll_halen')
d = []
for i in range(lgt):
d.append(a.c_sll_addr[i])
res = "".join(d)
self.unlock()
return res
class INETAddress(IPAddress):
family = AF_INET
struct = _c.sockaddr_in
maxlen = minlen = sizeof(struct)
def __init__(self, host, port):
makeipaddr(host, self)
a = self.lock(_c.sockaddr_in)
rffi.setintfield(a, 'c_sin_port', htons(port))
self.unlock()
def __repr__(self):
try:
return '<INETAddress %s:%d>' % (self.get_host(), self.get_port())
except SocketError:
return '<INETAddress ?>'
def get_port(self):
a = self.lock(_c.sockaddr_in)
port = ntohs(rffi.getintfield(a, 'c_sin_port'))
self.unlock()
return port
def eq(self, other): # __eq__() is not called by RPython :-/
return (isinstance(other, INETAddress) and
self.get_host() == other.get_host() and
self.get_port() == other.get_port())
def from_in_addr(in_addr):
result = instantiate(INETAddress)
# store the malloc'ed data into 'result' as soon as possible
# to avoid leaks if an exception occurs inbetween
sin = lltype.malloc(_c.sockaddr_in, flavor='raw', zero=True,
track_allocation=False)
result.setdata(sin, sizeof(_c.sockaddr_in))
# PLAT sin_len
rffi.setintfield(sin, 'c_sin_family', AF_INET)
rffi.structcopy(sin.c_sin_addr, in_addr)
return result
from_in_addr = staticmethod(from_in_addr)
def lock_in_addr(self):
a = self.lock(_c.sockaddr_in)
p = rffi.cast(rffi.VOIDP, a.c_sin_addr)
return p, sizeof(_c.in_addr)
# ____________________________________________________________
class INET6Address(IPAddress):
family = AF_INET6
struct = _c.sockaddr_in6
maxlen = minlen = sizeof(struct)
def __init__(self, host, port, flowinfo=0, scope_id=0):
makeipaddr(host, self)
a = self.lock(_c.sockaddr_in6)
rffi.setintfield(a, 'c_sin6_port', htons(port))
rffi.setintfield(a, 'c_sin6_flowinfo', htonl(flowinfo))
rffi.setintfield(a, 'c_sin6_scope_id', scope_id)
self.unlock()
def __repr__(self):
try:
return '<INET6Address %s:%d %d %d>' % (self.get_host(),
self.get_port(),
self.get_flowinfo(),
self.get_scope_id())
except SocketError:
return '<INET6Address ?>'
def get_port(self):
a = self.lock(_c.sockaddr_in6)
port = ntohs(rffi.getintfield(a, 'c_sin6_port'))
self.unlock()
return port
def get_flowinfo(self):
a = self.lock(_c.sockaddr_in6)
flowinfo = ntohl(a.c_sin6_flowinfo)
self.unlock()
return rffi.cast(lltype.Unsigned, flowinfo)
def get_scope_id(self):
a = self.lock(_c.sockaddr_in6)
scope_id = a.c_sin6_scope_id
self.unlock()
return rffi.cast(lltype.Unsigned, scope_id)
def eq(self, other): # __eq__() is not called by RPython :-/
return (isinstance(other, INET6Address) and
self.get_host() == other.get_host() and
self.get_port() == other.get_port() and
self.get_flowinfo() == other.get_flowinfo() and
self.get_scope_id() == other.get_scope_id())
def from_in6_addr(in6_addr):
result = instantiate(INET6Address)
# store the malloc'ed data into 'result' as soon as possible
# to avoid leaks if an exception occurs inbetween
sin = lltype.malloc(_c.sockaddr_in6, flavor='raw', zero=True,
track_allocation=False)
result.setdata(sin, sizeof(_c.sockaddr_in6))
rffi.setintfield(sin, 'c_sin6_family', AF_INET6)
rffi.structcopy(sin.c_sin6_addr, in6_addr)
return result
from_in6_addr = staticmethod(from_in6_addr)
def lock_in_addr(self):
a = self.lock(_c.sockaddr_in6)
p = rffi.cast(rffi.VOIDP, a.c_sin6_addr)
return p, sizeof(_c.in6_addr)
# ____________________________________________________________
HAS_AF_UNIX = 'AF_UNIX' in constants
if HAS_AF_UNIX:
class UNIXAddress(Address):
family = AF_UNIX
struct = _c.sockaddr_un
minlen = offsetof(_c.sockaddr_un, 'c_sun_path')
maxlen = sizeof(struct)
def __init__(self, path):
sun = lltype.malloc(_c.sockaddr_un, flavor='raw', zero=True,
track_allocation=False)
baseofs = offsetof(_c.sockaddr_un, 'c_sun_path')
self.setdata(sun, baseofs + len(path))
rffi.setintfield(sun, 'c_sun_family', AF_UNIX)
if _c.linux and path[0] == '\x00':
# Linux abstract namespace extension
if len(path) > sizeof(_c.sockaddr_un.c_sun_path):
raise RSocketError("AF_UNIX path too long")
else:
# regular NULL-terminated string
if len(path) >= sizeof(_c.sockaddr_un.c_sun_path):
raise RSocketError("AF_UNIX path too long")
sun.c_sun_path[len(path)] = '\x00'
for i in range(len(path)):
sun.c_sun_path[i] = path[i]
def __repr__(self):
try:
return '<UNIXAddress %r>' % (self.get_path(),)
except SocketError:
return '<UNIXAddress ?>'
def get_path(self):
a = self.lock(_c.sockaddr_un)
maxlength = self.addrlen - offsetof(_c.sockaddr_un, 'c_sun_path')
if _c.linux and maxlength > 0 and a.c_sun_path[0] == '\x00':
# Linux abstract namespace
length = maxlength
else:
# regular NULL-terminated string
length = 0
while length < maxlength and a.c_sun_path[length] != '\x00':
length += 1
result = ''.join([a.c_sun_path[i] for i in range(length)])
self.unlock()
return result
def eq(self, other): # __eq__() is not called by RPython :-/
return (isinstance(other, UNIXAddress) and
self.get_path() == other.get_path())
HAS_AF_NETLINK = 'AF_NETLINK' in constants
if HAS_AF_NETLINK:
class NETLINKAddress(Address):
family = AF_NETLINK
struct = _c.sockaddr_nl
maxlen = minlen = sizeof(struct)
def __init__(self, pid, groups):
addr = lltype.malloc(_c.sockaddr_nl, flavor='raw', zero=True,
track_allocation=False)
self.setdata(addr, NETLINKAddress.maxlen)
rffi.setintfield(addr, 'c_nl_family', AF_NETLINK)
rffi.setintfield(addr, 'c_nl_pid', pid)
rffi.setintfield(addr, 'c_nl_groups', groups)
def get_pid(self):
a = self.lock(_c.sockaddr_nl)
pid = a.c_nl_pid
self.unlock()
return rffi.cast(lltype.Unsigned, pid)
def get_groups(self):
a = self.lock(_c.sockaddr_nl)
groups = a.c_nl_groups
self.unlock()
return rffi.cast(lltype.Unsigned, groups)
def __repr__(self):
return '<NETLINKAddress %r>' % (self.get_pid(), self.get_groups())
# ____________________________________________________________
def familyclass(family):
return _FAMILIES.get(family, Address)
af_get = familyclass
def make_address(addrptr, addrlen, result=None):
family = rffi.cast(lltype.Signed, addrptr.c_sa_family)
if result is None:
result = instantiate(familyclass(family))
elif result.family != family:
raise RSocketError("address family mismatched")
# copy into a new buffer the address that 'addrptr' points to
addrlen = rffi.cast(lltype.Signed, addrlen)
buf = lltype.malloc(rffi.CCHARP.TO, addrlen, flavor='raw',
track_allocation=False)
src = rffi.cast(rffi.CCHARP, addrptr)
for i in range(addrlen):
buf[i] = src[i]
result.setdata(buf, addrlen)
return result
def makeipv4addr(s_addr, result=None):
if result is None:
result = instantiate(INETAddress)
elif result.family != AF_INET:
raise RSocketError("address family mismatched")
sin = lltype.malloc(_c.sockaddr_in, flavor='raw', zero=True,
track_allocation=False)
result.setdata(sin, sizeof(_c.sockaddr_in))
rffi.setintfield(sin, 'c_sin_family', AF_INET) # PLAT sin_len
rffi.setintfield(sin.c_sin_addr, 'c_s_addr', s_addr)
return result
def make_null_address(family):
klass = familyclass(family)
result = instantiate(klass)
buf = lltype.malloc(rffi.CCHARP.TO, klass.maxlen, flavor='raw', zero=True,
track_allocation=False)
# Initialize the family to the correct value. Avoids surprizes on
# Windows when calling a function that unexpectedly does not set
# the output address (e.g. recvfrom() on a connected IPv4 socket).
rffi.setintfield(rffi.cast(_c.sockaddr_ptr, buf), 'c_sa_family', family)
result.setdata(buf, 0)
return result, klass.maxlen
# ____________________________________________________________
class RSocket(object):
"""RPython-level socket object.
"""
fd = _c.INVALID_SOCKET
family = 0
type = 0
proto = 0
timeout = -1.0
def __init__(self, family=AF_INET, type=SOCK_STREAM, proto=0,
fd=_c.INVALID_SOCKET, inheritable=True):
"""Create a new socket."""
if _c.invalid_socket(fd):
if not inheritable and 'SOCK_CLOEXEC' in constants:
# Non-inheritable: we try to call socket() with
# SOCK_CLOEXEC, which may fail. If we get EINVAL,
# then we fall back to the SOCK_CLOEXEC-less case.
fd = _c.socket(family, type | SOCK_CLOEXEC, proto)
if fd < 0:
if _c.geterrno() == EINVAL:
# Linux older than 2.6.27 does not support
# SOCK_CLOEXEC. An EINVAL might be caused by
# random other things, though. Don't cache.
pass
else:
raise self.error_handler()
if _c.invalid_socket(fd):
fd = _c.socket(family, type, proto)
if _c.invalid_socket(fd):
raise self.error_handler()
if not inheritable:
sock_set_inheritable(fd, False)
# PLAT RISCOS
self.fd = fd
self.family = family
self.type = type
self.proto = proto
self.timeout = defaults.timeout
@staticmethod
def empty_rsocket():
rsocket = instantiate(RSocket)
return rsocket
@rgc.must_be_light_finalizer
def __del__(self):
fd = self.fd
if fd != _c.INVALID_SOCKET:
self.fd = _c.INVALID_SOCKET
_c.socketclose_no_errno(fd)
if hasattr(_c, 'fcntl'):
def _setblocking(self, block):
orig_delay_flag = intmask(_c.fcntl(self.fd, _c.F_GETFL, 0))
if block:
delay_flag = orig_delay_flag & ~_c.O_NONBLOCK
else:
delay_flag = orig_delay_flag | _c.O_NONBLOCK
if orig_delay_flag != delay_flag:
_c.fcntl(self.fd, _c.F_SETFL, delay_flag)
elif hasattr(_c, 'ioctlsocket'):
def _setblocking(self, block):
flag = lltype.malloc(rffi.ULONGP.TO, 1, flavor='raw')
flag[0] = rffi.cast(rffi.ULONG, not block)
_c.ioctlsocket(self.fd, _c.FIONBIO, flag)
lltype.free(flag, flavor='raw')
if hasattr(_c, 'poll') and not _c.poll_may_be_broken:
def _select(self, for_writing):
"""Returns 0 when reading/writing is possible,
1 when timing out and -1 on error."""
if self.timeout <= 0.0 or self.fd == _c.INVALID_SOCKET:
# blocking I/O or no socket.
return 0
pollfd = rffi.make(_c.pollfd)
try:
rffi.setintfield(pollfd, 'c_fd', self.fd)
if for_writing:
rffi.setintfield(pollfd, 'c_events', _c.POLLOUT)
else:
rffi.setintfield(pollfd, 'c_events', _c.POLLIN)
timeout = int(self.timeout * 1000.0 + 0.5)
n = _c.poll(rffi.cast(lltype.Ptr(_c.pollfdarray), pollfd),
1, timeout)
finally:
lltype.free(pollfd, flavor='raw')
if n < 0:
return -1
if n == 0:
return 1
return 0
else:
# Version witout poll(): use select()
def _select(self, for_writing):
"""Returns 0 when reading/writing is possible,
1 when timing out and -1 on error."""
timeout = self.timeout
if timeout <= 0.0 or self.fd == _c.INVALID_SOCKET:
# blocking I/O or no socket.
return 0
tv = rffi.make(_c.timeval)
rffi.setintfield(tv, 'c_tv_sec', int(timeout))
rffi.setintfield(tv, 'c_tv_usec', int((timeout-int(timeout))
* 1000000))
fds = lltype.malloc(_c.fd_set.TO, flavor='raw')
_c.FD_ZERO(fds)
_c.FD_SET(self.fd, fds)
null = lltype.nullptr(_c.fd_set.TO)
if for_writing:
n = _c.select(self.fd + 1, null, fds, null, tv)
else:
n = _c.select(self.fd + 1, fds, null, null, tv)
lltype.free(fds, flavor='raw')
lltype.free(tv, flavor='raw')
if n < 0:
return -1
if n == 0:
return 1
return 0
def error_handler(self):
return last_error()
# build a null address object, ready to be used as output argument to
# C functions that return an address. It must be unlock()ed after you
# are done using addr_p.
def _addrbuf(self):
addr, maxlen = make_null_address(self.family)
addrlen_p = lltype.malloc(_c.socklen_t_ptr.TO, flavor='raw')
addrlen_p[0] = rffi.cast(_c.socklen_t, maxlen)
return addr, addr.addr_p, addrlen_p
@jit.dont_look_inside
def accept(self, inheritable=True):
"""Wait for an incoming connection.
Return (new socket fd, client address)."""
if self._select(False) == 1:
raise SocketTimeout
address, addr_p, addrlen_p = self._addrbuf()
try:
remove_inheritable = not inheritable
if (not inheritable and 'SOCK_CLOEXEC' in constants
and _c.HAVE_ACCEPT4
and _accept4_syscall.attempt_syscall()):
newfd = _c.socketaccept4(self.fd, addr_p, addrlen_p,
SOCK_CLOEXEC)
if _accept4_syscall.fallback(newfd):
newfd = _c.socketaccept(self.fd, addr_p, addrlen_p)
else:
remove_inheritable = False
else:
newfd = _c.socketaccept(self.fd, addr_p, addrlen_p)
addrlen = addrlen_p[0]
finally:
lltype.free(addrlen_p, flavor='raw')
address.unlock()
if _c.invalid_socket(newfd):
raise self.error_handler()
if remove_inheritable:
sock_set_inheritable(newfd, False)
address.addrlen = rffi.cast(lltype.Signed, addrlen)
return (newfd, address)
def bind(self, address):
"""Bind the socket to a local address."""
addr = address.lock()
res = _c.socketbind(self.fd, addr, address.addrlen)
address.unlock()
if res < 0:
raise self.error_handler()
def close(self):
"""Close the socket. It cannot be used after this call."""
fd = self.fd
if fd != _c.INVALID_SOCKET:
self.fd = _c.INVALID_SOCKET
res = _c.socketclose(fd)
if res != 0:
raise self.error_handler()
def detach(self):
fd = self.fd
self.fd = _c.INVALID_SOCKET
return fd
if _c.WIN32:
def _connect(self, address):
"""Connect the socket to a remote address."""
addr = address.lock()
res = _c.socketconnect(self.fd, addr, address.addrlen)
address.unlock()
errno = _c.geterrno()
timeout = self.timeout
if timeout > 0.0 and res < 0 and errno == _c.EWOULDBLOCK:
tv = rffi.make(_c.timeval)
rffi.setintfield(tv, 'c_tv_sec', int(timeout))
rffi.setintfield(tv, 'c_tv_usec',
int((timeout-int(timeout)) * 1000000))
fds = lltype.malloc(_c.fd_set.TO, flavor='raw')
_c.FD_ZERO(fds)
_c.FD_SET(self.fd, fds)
fds_exc = lltype.malloc(_c.fd_set.TO, flavor='raw')
_c.FD_ZERO(fds_exc)
_c.FD_SET(self.fd, fds_exc)
null = lltype.nullptr(_c.fd_set.TO)
try:
n = _c.select(self.fd + 1, null, fds, fds_exc, tv)
if n > 0:
if _c.FD_ISSET(self.fd, fds):
# socket writable == connected
return (0, False)
else:
# per MS docs, call getsockopt() to get error
assert _c.FD_ISSET(self.fd, fds_exc)
return (self.getsockopt_int(_c.SOL_SOCKET,
_c.SO_ERROR), False)
elif n == 0:
return (_c.EWOULDBLOCK, True)
else:
return (_c.geterrno(), False)
finally:
lltype.free(fds, flavor='raw')
lltype.free(fds_exc, flavor='raw')
lltype.free(tv, flavor='raw')
if res == 0:
errno = 0
return (errno, False)
else:
def _connect(self, address):
"""Connect the socket to a remote address."""
addr = address.lock()
res = _c.socketconnect(self.fd, addr, address.addrlen)
address.unlock()
errno = _c.geterrno()
if self.timeout > 0.0 and res < 0 and errno == _c.EINPROGRESS:
timeout = self._select(True)
if timeout == 0:
res = self.getsockopt_int(_c.SOL_SOCKET, _c.SO_ERROR)
if res == _c.EISCONN:
res = 0
errno = res
elif timeout == -1:
return (_c.geterrno(), False)
else:
return (_c.EWOULDBLOCK, True)
if res < 0:
res = errno
return (res, False)
def connect(self, address):
"""Connect the socket to a remote address."""
err, timeout = self._connect(address)
if timeout:
raise SocketTimeout
if err:
raise CSocketError(err)
def connect_ex(self, address):
"""This is like connect(address), but returns an error code (the errno
value) instead of raising an exception when an error occurs."""
err, timeout = self._connect(address)
return err
if hasattr(_c, 'dup'):
def dup(self, SocketClass=None):
if SocketClass is None:
SocketClass = RSocket
fd = _c.dup(self.fd)
if fd < 0:
raise self.error_handler()
return make_socket(fd, self.family, self.type, self.proto,
SocketClass=SocketClass)
@jit.dont_look_inside
def getpeername(self):
"""Return the address of the remote endpoint."""
address, addr_p, addrlen_p = self._addrbuf()
try:
res = _c.socketgetpeername(self.fd, addr_p, addrlen_p)
addrlen = addrlen_p[0]
finally:
lltype.free(addrlen_p, flavor='raw')
address.unlock()
if res < 0:
raise self.error_handler()
address.addrlen = rffi.cast(lltype.Signed, addrlen)
return address
@jit.dont_look_inside
def getsockname(self):
"""Return the address of the local endpoint."""
address, addr_p, addrlen_p = self._addrbuf()
try:
res = _c.socketgetsockname(self.fd, addr_p, addrlen_p)
addrlen = addrlen_p[0]
finally:
lltype.free(addrlen_p, flavor='raw')
address.unlock()
if res < 0:
raise self.error_handler()
address.addrlen = rffi.cast(lltype.Signed, addrlen)
return address
@jit.dont_look_inside
def getsockopt(self, level, option, maxlen):
buf = mallocbuf(maxlen)
try:
bufsize_p = lltype.malloc(_c.socklen_t_ptr.TO, flavor='raw')
try:
bufsize_p[0] = rffi.cast(_c.socklen_t, maxlen)
res = _c.socketgetsockopt(self.fd, level, option,
buf, bufsize_p)
if res < 0:
raise self.error_handler()
size = rffi.cast(lltype.Signed, bufsize_p[0])
assert size >= 0 # socklen_t is signed on Windows
result = ''.join([buf[i] for i in range(size)])
finally:
lltype.free(bufsize_p, flavor='raw')
finally:
lltype.free(buf, flavor='raw')
return result
@jit.dont_look_inside
def getsockopt_int(self, level, option):
flag_p = lltype.malloc(rffi.INTP.TO, 1, flavor='raw')
try:
flagsize_p = lltype.malloc(_c.socklen_t_ptr.TO, flavor='raw')
try:
flagsize_p[0] = rffi.cast(_c.socklen_t, rffi.sizeof(rffi.INT))
res = _c.socketgetsockopt(self.fd, level, option,
rffi.cast(rffi.VOIDP, flag_p),
flagsize_p)
if res < 0:
raise self.error_handler()
result = rffi.cast(lltype.Signed, flag_p[0])
finally:
lltype.free(flagsize_p, flavor='raw')
finally:
lltype.free(flag_p, flavor='raw')
return result
def gettimeout(self):
"""Return the timeout of the socket. A timeout < 0 means that
timeouts are disabled in the socket."""
return self.timeout
def listen(self, backlog):
"""Enable a server to accept connections. The backlog argument
must be at least 1; it specifies the number of unaccepted connections
that the system will allow before refusing new connections."""
if backlog < 1:
backlog = 1
res = _c.socketlisten(self.fd, backlog)
if res < 0:
raise self.error_handler()
def wait_for_data(self, for_writing):
timeout = self._select(for_writing)
if timeout != 0:
if timeout == 1:
raise SocketTimeout
else:
raise self.error_handler()
def recv(self, buffersize, flags=0):
"""Receive up to buffersize bytes from the socket. For the optional
flags argument, see the Unix manual. When no data is available, block
until at least one byte is available or until the remote end is closed.
When the remote end is closed and all data is read, return the empty
string."""
self.wait_for_data(False)
with rffi.scoped_alloc_buffer(buffersize) as buf:
read_bytes = _c.socketrecv(self.fd, buf.raw, buffersize, flags)
if read_bytes >= 0:
return buf.str(read_bytes)
raise self.error_handler()
def recvinto(self, rwbuffer, nbytes, flags=0):
try:
rwbuffer.get_raw_address()
except ValueError:
buf = self.recv(nbytes, flags)
rwbuffer.setslice(0, buf)
return len(buf)
else:
self.wait_for_data(False)
raw = rwbuffer.get_raw_address()
read_bytes = _c.socketrecv(self.fd, raw, nbytes, flags)
keepalive_until_here(rwbuffer)
if read_bytes >= 0:
return read_bytes
raise self.error_handler()
@jit.dont_look_inside
def recvfrom(self, buffersize, flags=0):
"""Like recv(buffersize, flags) but also return the sender's
address."""
self.wait_for_data(False)
with rffi.scoped_alloc_buffer(buffersize) as buf:
address, addr_p, addrlen_p = self._addrbuf()
try:
read_bytes = _c.recvfrom(self.fd, buf.raw, buffersize, flags,
addr_p, addrlen_p)
addrlen = rffi.cast(lltype.Signed, addrlen_p[0])
finally:
lltype.free(addrlen_p, flavor='raw')
address.unlock()
if read_bytes >= 0:
if addrlen:
address.addrlen = addrlen
else:
address = None
data = buf.str(read_bytes)
return (data, address)
raise self.error_handler()
def recvfrom_into(self, rwbuffer, nbytes, flags=0):
try:
rwbuffer.get_raw_address()
except ValueError:
buf, addr = self.recvfrom(nbytes, flags)
rwbuffer.setslice(0, buf)
return len(buf), addr
else:
self.wait_for_data(False)
address, addr_p, addrlen_p = self._addrbuf()
try:
raw = rwbuffer.get_raw_address()
read_bytes = _c.recvfrom(self.fd, raw, nbytes, flags,
addr_p, addrlen_p)
keepalive_until_here(rwbuffer)
addrlen = rffi.cast(lltype.Signed, addrlen_p[0])
finally:
lltype.free(addrlen_p, flavor='raw')
address.unlock()
if read_bytes >= 0:
if addrlen:
address.addrlen = addrlen
else:
address = None
return (read_bytes, address)
raise self.error_handler()
def send_raw(self, dataptr, length, flags=0):
"""Send data from a CCHARP buffer."""
self.wait_for_data(True)
res = _c.send(self.fd, dataptr, length, flags)
if res < 0:
raise self.error_handler()
return res
def send(self, data, flags=0):
"""Send a data string to the socket. For the optional flags
argument, see the Unix manual. Return the number of bytes
sent; this may be less than len(data) if the network is busy."""
with rffi.scoped_nonmovingbuffer(data) as dataptr:
return self.send_raw(dataptr, len(data), flags)
def sendall(self, data, flags=0, signal_checker=None):
"""Send a data string to the socket. For the optional flags
argument, see the Unix manual. This calls send() repeatedly
until all data is sent. If an error occurs, it's impossible
to tell how much data has been sent."""
with rffi.scoped_nonmovingbuffer(data) as dataptr:
remaining = len(data)
p = dataptr
while remaining > 0:
try:
res = self.send_raw(p, remaining, flags)
p = rffi.ptradd(p, res)
remaining -= res
except CSocketError as e:
if e.errno != _c.EINTR:
raise
if signal_checker is not None:
signal_checker()
def sendto(self, data, length, flags, address):