This repository was archived by the owner on Dec 16, 2022. It is now read-only.
forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsocket.jl
341 lines (297 loc) · 10.3 KB
/
socket.jl
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
## IP ADDRESS HANDLING ##
abstract IpAddr
type IPv4 <: IpAddr
host::Uint32
IPv4(host::Uint32) = new(host)
IPv4(a::Uint8,b::Uint8,c::Uint8,d::Uint8) = new(uint32(a)<<24|
uint32(b)<<16|
uint32(c)<<8|
d)
function IPv4(a::Integer,b::Integer,c::Integer,d::Integer)
if !(0<=a<=255 && 0<=b<=255 && 0<=c<=255 && 0<=d<=255)
throw(DomainError())
end
IPv4(uint8(a),uint8(b),uint8(c),uint8(d))
end
end
show(io::IO,ip::IPv4) = print(io,"IPv4(",dec((ip.host&(0xFF000000))>>24),".",
dec((ip.host&(0xFF0000))>>16),".",
dec((ip.host&(0xFF00))>>8),".",
dec(ip.host&0xFF),")")
type IPv6 <: IpAddr
host::Uint128
IPv6(host::Uint128) = new(host)
IPv6(a::Uint16,b::Uint16,c::Uint16,d::Uint16,
e::Uint16,f::Uint16,g::Uint16,h::Uint16) = new(uint128(a)<<(7*16)|
uint128(b)<<(6*16)|
uint128(c)<<(5*16)|
uint128(d)<<(4*16)|
uint128(e)<<(3*16)|
uint128(f)<<(2*16)|
uint128(g)<<(1*16)|
h)
function IPv6(a::Integer,b::Integer,c::Integer,d::Integer,
e::Integer,f::Integer,g::Integer,h::Integer)
if !(0<=a<=0xFFFF && 0<=b<=0xFFFF && 0<=c<=0xFFFF && 0<=d<=0xFFFF &&
0<=e<=0xFFFF && 0<=f<=0xFFFF && 0<=g<=0xFFFF && 0<=h<=0xFFFF)
throw(DomainError())
end
IPv6(uint16(a),uint16(b),uint16(c),uint16(d),
uint16(e),uint16(f),uint16(g),uint16(h))
end
end
show(io::IO,ip::IPv6) = print(io,"IPv6(",
hex((ip.host&(uint128(0xFFFF)<<(7*16)))>>(7*16)),":",
hex((ip.host&(uint128(0xFFFF)<<(6*16)))>>(7*16)),":",
hex((ip.host&(uint128(0xFFFF)<<(5*16)))>>(7*16)),":",
hex((ip.host&(uint128(0xFFFF)<<(4*16)))>>(7*16)),":",
hex((ip.host&(uint128(0xFFFF)<<(3*16)))>>(7*16)),":",
hex((ip.host&(uint128(0xFFFF)<<(2*16)))>>(7*16)),":",
hex((ip.host&0xFFFF), ")"))
type InetAddr
host::IpAddr
port::Uint16
function InetAddr(host,port)
if !(0 <= port <= typemax(Uint16))
throw(DomainError())
end
new(host,uint16(port))
end
end
## SOCKETS ##
abstract Socket <: AsyncStream
type TcpSocket <: Socket
handle::Ptr{Void}
open::Bool
line_buffered::Bool
buffer::IOBuffer
readcb::Callback
readnotify::Vector{WaitTask}
ccb::Callback
connectnotify::Vector{WaitTask}
closecb::Callback
closenotify::Vector{WaitTask}
TcpSocket(handle,open)=new(handle,open,true,PipeBuffer(),false,
WaitTask[],false,WaitTask[],false,WaitTask[])
function TcpSocket()
this = TcpSocket(C_NULL,false)
this.handle = ccall(:jl_make_tcp,Ptr{Void},(Ptr{Void},Any),
eventloop(),this)
if (this.handle == C_NULL)
error("Failed to start reading: ",_uv_lasterror())
end
this
end
end
type UdpSocket <: Socket
handle::Ptr{Void}
open::Bool
line_buffered::Bool
buffer::IOBuffer
readcb::Callback
readnotify::Vector{WaitTask}
ccb::Callback
connectnotify::Vector{WaitTask}
closecb::Callback
closenotify::Vector{WaitTask}
UdpSocket(handle,open)=new(handle,open,true,PipeBuffer(),false,WaitTask[],
false,WaitTask[],false,WaitTask[])
function UdpSocket()
this = UdpSocket(C_NULL,false)
this.handle = ccall(:jl_make_tcp,Ptr{Void},(Ptr{Void},Any),
eventloop(),this)
this
end
end
show(io::IO,sock::TcpSocket) = print(io,"TcpSocket(",sock.open?"connected,":
"disconnected,",nb_available(sock.buffer),
" bytes waiting)")
show(io::IO,sock::UdpSocket) = print(io,"UdpSocket(",sock.open?"connected,":
"disconnected,",nb_available(sock.buffer),
" bytes waiting)")
_jl_tcp_init(loop::Ptr{Void}) = ccall(:jl_tcp_init,Ptr{Void},(Ptr{Void},),loop)
_jl_udp_init(loop::Ptr{Void}) = ccall(:jl_udp_init,Ptr{Void},(Ptr{Void},),loop)
## VARIOUS METHODS TO BE MOVED TO BETTER LOCATION
_jl_connect_raw(sock::TcpSocket,sockaddr::Ptr{Void}) =
ccall(:jl_connect_raw,Int32,(Ptr{Void},Ptr{Void}),sock.handle,sockaddr)
_jl_sockaddr_from_addrinfo(addrinfo::Ptr{Void}) =
ccall(:jl_sockaddr_from_addrinfo,Ptr{Void},(Ptr{Void},),addrinfo)
_jl_sockaddr_set_port(ptr::Ptr{Void},port::Uint16) =
ccall(:jl_sockaddr_set_port,Void,(Ptr{Void},Uint16),ptr,port)
## WAITING ##
accept(server::TcpSocket) = accept(server, TcpSocket())
function accept(server::TcpSocket, client::TcpSocket)
err = accept_nonblock(server,client)
if err == 0
return client
else
err = _uv_lasterror()
if err != 4 #EAGAIN
error("accept: ", err, "\n")
end
end
wt = WaitTask()
while true
assert(current_task() != Scheduler, "Cannot execute blocking function from Scheduler")
push!(server.connectnotify,wt)
args = yield(wt)
if isa(args,InterruptException)
error(args)
end
status = args[2]::Int32
if status == -1
error("listen: ", _uv_lasterror(), "\n")
end
err = accept_nonblock(server,client)
if err == 0
return client
else
err = _uv_lasterror()
if err != 4 #EAGAIN
error("accept: ", err, "\n")
end
end
end
end
##
bind(sock::Socket, addr::InetAddr) = bind(sock,addr.host,addr.port)
bind(sock::Socket, host::IpAddr, port) = bind(sock, InetAddr(host,port))
const UV_SUCCESS = 0
const UV_EADDRINUSE = 5
function bind(sock::TcpSocket, host::IPv4, port::Uint16)
err = ccall(:jl_tcp_bind, Int32, (Ptr{Void}, Uint16, Uint32),
sock.handle, hton(port), hton(host.host))
if(err == -1 && _uv_lasterror() != UV_EADDRINUSE)
throw(UVError("bind"))
end
err != -1
end
bind(sock::TcpSocket, host::IPv6, port::Uint16) =
error("IPv6 Support not fully implemented")
##
callback_dict = ObjectIdDict()
function _uv_hook_getaddrinfo(cb::Function,addrinfo::Ptr{Void}, status::Int32)
delete!(callback_dict,cb)
if(status!=0)
throw(UVError("getaddrinfo callback"))
end
sockaddr = ccall(:jl_sockaddr_from_addrinfo,Ptr{Void},(Ptr{Void},),addrinfo)
if(ccall(:jl_sockaddr_is_ip4,Int32,(Ptr{Void},),sockaddr)==1)
cb(IPv4(ntoh(ccall(:jl_sockaddr_host4,Uint32,(Ptr{Void},),sockaddr))))
else
cb(IPv6(ntoh(ccall(:jl_sockaddr_host6,Uint128,(Ptr{Void},),sockaddr))))
end
end
jl_getaddrinfo(loop::Ptr{Void}, host::ByteString, service::Ptr{Void},
cb::Function) =
ccall(:jl_getaddrinfo, Int32, (Ptr{Void}, Ptr{Uint8}, Ptr{Uint8}, Any),
loop, host, service, cb)
getaddrinfo(cb::Function,host::ASCIIString) = begin
callback_dict[cb] = cb
jl_getaddrinfo(eventloop(),host,C_NULL,cb)
end
function getaddrinfo(host::ASCIIString)
wt = WaitTask()
getaddrinfo(host) do IP
tasknotify([wt],IP)
end
(ip,) = yield(wt)
return ip
end
##
function connect(cb::Function, sock::TcpSocket, host::IPv4, port::Uint16)
sock.ccb = cb
uv_error("connect",ccall(:jl_tcp4_connect,Int32,(Ptr{Void},Uint32,Uint16),
sock.handle,hton(host.host),hton(port)) == -1)
end
function connect(sock::TcpSocket, host::IPv4, port::Uint16)
uv_error("connect",ccall(:jl_tcp4_connect,Int32,(Ptr{Void},Uint32,Uint16),
sock.handle,hton(host.host),hton(port)) == -1)
wait_connected(sock)
end
function connect(sock::TcpSocket, host::ASCIIString, port)
ipaddr = getaddrinfo(host)
connect(sock,ipaddr,port)
end
function default_connectcb(sock,status)
if status == -1
throw(UVError("connect callback"))
end
end
function connect(cb::Function, sock::TcpSocket, host::ASCIIString, port)
getaddrinfo(host) do ipaddr
connect(cb,sock,ipaddr,port)
end
end
for (args,forward_args) in (((:(addr::InetAddr),), (:(addr.host),:(addr.port))),
((:(host::IpAddr),:port),(:(InetAddr(host,port)),)),
((:(addr::InetAddr),), (:(addr.host),:(addr.port))),
((:(host::ASCIIString),:port), (:host,:port)))
@eval begin
connect(sock::Socket,$(args...)) = connect(sock,$(forward_args...))
connect(cb::Function,sock::Socket,$(args...)) =
connect(cb,sock,$(forward_args...))
function connect($(args...))
sock = TcpSocket()
sock.ccb = default_connectcb
connect(sock,$(forward_args...))
sock
end
function connect(cb::Function,$(args...))
sock = TcpSocket()
sock.ccb = default_connectcb
connect(cb,sock,$(forward_args...))
sock
end
end
end
##
function listen(host::IPv4, port::Uint16)
sock = TcpSocket()
uv_error("listen",!bind(sock,host,port))
listen(sock)
sock
end
listen(port::Integer) = listen(IPv4(uint32(0)),uint16(port))
listen(addr::InetAddr) = listen(addr.host,addr.port)
listen(host::IpAddr, port::Uint16) = listen(InetAddr(host,port))
listen(cb::Callback,args...) = (sock=listen(args...);sock.ccb=cb;sock)
listen(cb::Callback,sock::Socket) = (sock.ccb=cb;listen(sock))
##
_jl_tcp_accept(server::Ptr{Void},client::Ptr{Void}) =
ccall(:uv_accept,Int32,(Ptr{Void},Ptr{Void}),server,client)
function accept_nonblock(server::TcpSocket,client::TcpSocket)
err = _jl_tcp_accept(server.handle,client.handle)
if err == 0
client.open = true
end
err
end
function accept_nonblock(server::TcpSocket)
client = TcpSocket()
uv_error("accept",_jl_tcp_accept(server.handle,client.handle) == -1)
client.open = true
client
end
## Utility functions
function open_any_tcp_port(cb::Callback,default_port)
addr = InetAddr(IPv4(uint32(0)),default_port)
while true
sock = TcpSocket()
if (bind(sock,addr) && listen(cb,sock))
return (addr.port,sock)
end
err = _uv_lasterror()
system = _uv_lastsystemerror()
sock.open = true #need to make close() work
close(sock)
if (err != UV_SUCCESS && err != UV_EADDRINUSE)
throw(UVError("open_any_tcp_port",err,system))
end
addr.port += 1
if (addr.port==default_port)
error("Not a single port is available.")
end
end
end
open_any_tcp_port(default_port) = open_any_tcp_port(false,default_port)