-
Notifications
You must be signed in to change notification settings - Fork 160
/
sockettransport.class.php
378 lines (348 loc) · 12.9 KB
/
sockettransport.class.php
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
<?php
/**
* TCP Socket Transport for use with multiple protocols.
* Supports connection pools and IPv6 in addition to providing a few public methods to make life easier.
* It's primary purpose is long running connections, since it don't support socket re-use, ip-blacklisting, etc.
* It assumes a blocking/synchronous architecture, and will block when reading or writing, but will enforce timeouts.
*
* Copyright (C) 2011 OnlineCity
* Licensed under the MIT license, which can be read at: http://www.opensource.org/licenses/mit-license.php
* @author [email protected]
*/
class SocketTransport
{
protected $socket;
protected $hosts;
protected $persist;
protected $debugHandler;
public $debug;
protected static $defaultSendTimeout=100;
protected static $defaultRecvTimeout=750;
public static $defaultDebug=false;
public static $forceIpv6=false;
public static $forceIpv4=false;
public static $randomHost=false;
/**
* Construct a new socket for this transport to use.
*
* @param array $hosts list of hosts to try.
* @param mixed $ports list of ports to try, or a single common port
* @param boolean $persist use persistent sockets
* @param mixed $debugHandler callback for debug info
*/
public function __construct(array $hosts,$ports,$persist=false,$debugHandler=null)
{
$this->debug = self::$defaultDebug;
$this->debugHandler = $debugHandler ? $debugHandler : 'error_log';
// Deal with optional port
$h = array();
foreach ($hosts as $key => $host) {
$h[] = array($host, is_array($ports) ? $ports[$key] : $ports);
}
if (self::$randomHost) shuffle($h);
$this->resolveHosts($h);
$this->persist = $persist;
}
/**
* Resolve the hostnames into IPs, and sort them into IPv4 or IPv6 groups.
* If using DNS hostnames, and all lookups fail, a InvalidArgumentException is thrown.
*
* @param array $hosts
* @throws InvalidArgumentException
*/
protected function resolveHosts($hosts)
{
$i = 0;
foreach($hosts as $host) {
list($hostname,$port) = $host;
$ip4s = array();
$ip6s = array();
if (preg_match('/^([12]?[0-9]?[0-9]\.){3}([12]?[0-9]?[0-9])$/',$hostname)) {
// IPv4 address
$ip4s[] = $hostname;
} else if (preg_match('/^([0-9a-f:]+):[0-9a-f]{1,4}$/i',$hostname)) {
// IPv6 address
$ip6s[] = $hostname;
} else { // Do a DNS lookup
if (!self::$forceIpv4) {
// if not in IPv4 only mode, check the AAAA records first
$records = dns_get_record($hostname,DNS_AAAA);
if ($records === false && $this->debug) call_user_func($this->debugHandler, 'DNS lookup for AAAA records for: '.$hostname.' failed');
if ($records) {
foreach ($records as $r) {
if (isset($r['ipv6']) && $r['ipv6']) $ip6s[] = $r['ipv6'];
}
}
if ($this->debug) call_user_func($this->debugHandler, "IPv6 addresses for $hostname: ".implode(', ',$ip6s));
}
if (!self::$forceIpv6) {
// if not in IPv6 mode check the A records also
$records = dns_get_record($hostname,DNS_A);
if ($records === false && $this->debug) call_user_func($this->debugHandler, 'DNS lookup for A records for: '.$hostname.' failed');
if ($records) {
foreach ($records as $r) {
if (isset($r['ip']) && $r['ip']) $ip4s[] = $r['ip'];
}
}
// also try gethostbyname, since name could also be something else, such as "localhost" etc.
$ip = gethostbyname($hostname);
if ($ip != $hostname && !in_array($ip,$ip4s)) $ip4s[] = $ip;
if ($this->debug) call_user_func($this->debugHandler, "IPv4 addresses for $hostname: ".implode(', ',$ip4s));
}
}
// Did we get any results?
if (self::$forceIpv4 && empty($ip4s)) continue;
if (self::$forceIpv6 && empty($ip6s)) continue;
if (empty($ip4s) && empty($ip6s)) continue;
if ($this->debug) $i += count($ip4s)+count($ip6s);
// Add results to pool
$this->hosts[] = array($hostname,$port,$ip6s,$ip4s);
}
if ($this->debug) call_user_func($this->debugHandler, "Built connection pool of ".count($this->hosts)." host(s) with $i ip(s) in total");
if (empty($this->hosts)) throw new InvalidArgumentException('No valid hosts was found');
}
/**
* Get a reference to the socket.
* You should use the public functions rather than the socket directly
*/
public function getSocket()
{
return $this->socket;
}
/**
* Get an arbitrary option
*
* @param integer $option
* @param integer $lvl
*/
public function getSocketOption($option,$lvl=SOL_SOCKET)
{
return socket_get_option($this->socket,$lvl,$option);
}
/**
* Set an arbitrary option
*
* @param integer $option
* @param mixed $value
* @param integer $lvl
*/
public function setSocketOption($option,$value,$lvl=SOL_SOCKET)
{
return socket_set_option($this->socket,$lvl,$option,$value);
}
/**
* Sets the send timeout.
* Returns true on success, or false.
* @param int $timeout Timeout in milliseconds.
* @return boolean
*/
public function setSendTimeout($timeout)
{
if (!$this->isOpen()) {
self::$defaultSendTimeout = $timeout;
} else {
$r = socket_set_option($this->socket,SOL_SOCKET,SO_SNDTIMEO,$this->millisecToSolArray($timeout));
return $r;
}
}
/**
* Sets the receive timeout.
* Returns true on success, or false.
* @param int $timeout Timeout in milliseconds.
* @return boolean
*/
public function setRecvTimeout($timeout)
{
if (!$this->isOpen()) {
self::$defaultRecvTimeout = $timeout;
} else {
$r = socket_set_option($this->socket,SOL_SOCKET,SO_RCVTIMEO,$this->millisecToSolArray($timeout));
return $r;
}
}
/**
* Check if the socket is constructed, and there are no exceptions on it
* Returns false if it's closed.
* Throws SocketTransportException is state could not be ascertained
* @throws SocketTransportException
*/
public function isOpen()
{
if (!is_resource($this->socket)) return false;
$r = null;
$w = null;
$e = array($this->socket);
$res = socket_select($r,$w,$e,0);
if ($res === false) throw new SocketTransportException('Could not examine socket; '.socket_strerror(socket_last_error()), socket_last_error());
if (!empty($e)) return false; // if there is an exception on our socket it's probably dead
return true;
}
/**
* Convert a milliseconds into a socket sec+usec array
* @param integer $millisec
* @return array
*/
private function millisecToSolArray($millisec)
{
$usec = $millisec*1000;
return array('sec' => floor($usec/1000000), 'usec' => $usec%1000000);
}
/**
* Open the socket, trying to connect to each host in succession.
* This will prefer IPv6 connections if forceIpv4 is not enabled.
* If all hosts fail, a SocketTransportException is thrown.
*
* @throws SocketTransportException
*/
public function open()
{
if (!self::$forceIpv4) {
$socket6 = @socket_create(AF_INET6,SOCK_STREAM,SOL_TCP);
if ($socket6 == false) throw new SocketTransportException('Could not create socket; '.socket_strerror(socket_last_error()), socket_last_error());
socket_set_option($socket6,SOL_SOCKET,SO_SNDTIMEO,$this->millisecToSolArray(self::$defaultSendTimeout));
socket_set_option($socket6,SOL_SOCKET,SO_RCVTIMEO,$this->millisecToSolArray(self::$defaultRecvTimeout));
}
if (!self::$forceIpv6) {
$socket4 = @socket_create(AF_INET,SOCK_STREAM,SOL_TCP);
if ($socket4 == false) throw new SocketTransportException('Could not create socket; '.socket_strerror(socket_last_error()), socket_last_error());
socket_set_option($socket4,SOL_SOCKET,SO_SNDTIMEO,$this->millisecToSolArray(self::$defaultSendTimeout));
socket_set_option($socket4,SOL_SOCKET,SO_RCVTIMEO,$this->millisecToSolArray(self::$defaultRecvTimeout));
}
$it = new ArrayIterator($this->hosts);
while ($it->valid()) {
list($hostname,$port,$ip6s,$ip4s) = $it->current();
if (!self::$forceIpv4 && !empty($ip6s)) { // Attempt IPv6s first
foreach ($ip6s as $ip) {
if ($this->debug) call_user_func($this->debugHandler, "Connecting to $ip:$port...");
$r = @socket_connect($socket6, $ip, $port);
if ($r) {
if ($this->debug) call_user_func($this->debugHandler, "Connected to $ip:$port!");
@socket_close($socket4);
$this->socket = $socket6;
return;
} elseif ($this->debug) {
call_user_func($this->debugHandler, "Socket connect to $ip:$port failed; ".socket_strerror(socket_last_error()));
}
}
}
if (!self::$forceIpv6 && !empty($ip4s)) {
foreach ($ip4s as $ip) {
if ($this->debug) call_user_func($this->debugHandler, "Connecting to $ip:$port...");
$r = @socket_connect($socket4, $ip, $port);
if ($r) {
if ($this->debug) call_user_func($this->debugHandler, "Connected to $ip:$port!");
@socket_close($socket6);
$this->socket = $socket4;
return;
} elseif ($this->debug) {
call_user_func($this->debugHandler, "Socket connect to $ip:$port failed; ".socket_strerror(socket_last_error()));
}
}
}
$it->next();
}
throw new SocketTransportException('Could not connect to any of the specified hosts');
}
/**
* Do a clean shutdown of the socket.
* Since we don't reuse sockets, we can just close and forget about it,
* but we choose to wait (linger) for the last data to come through.
*/
public function close()
{
$arrOpt = array('l_onoff' => 1, 'l_linger' => 1);
socket_set_block($this->socket);
socket_set_option($this->socket, SOL_SOCKET, SO_LINGER, $arrOpt);
socket_close($this->socket);
}
/**
* Check if there is data waiting for us on the wire
* @return boolean
* @throws SocketTransportException
*/
public function hasData()
{
$r = array($this->socket);
$w = null;
$e = null;
$res = socket_select($r,$w,$e,0);
if ($res === false) throw new SocketTransportException('Could not examine socket; '.socket_strerror(socket_last_error()), socket_last_error());
if (!empty($r)) return true;
return false;
}
/**
* Read up to $length bytes from the socket.
* Does not guarantee that all the bytes are read.
* Returns false on EOF
* Returns false on timeout (technically EAGAIN error).
* Throws SocketTransportException if data could not be read.
*
* @param integer $length
* @return mixed
* @throws SocketTransportException
*/
public function read($length)
{
$d = socket_read($this->socket,$length,PHP_BINARY_READ);
if ($d === false && socket_last_error() === SOCKET_EAGAIN) return false; // sockets give EAGAIN on timeout
if ($d === false) throw new SocketTransportException('Could not read '.$length.' bytes from socket; '.socket_strerror(socket_last_error()), socket_last_error());
if ($d === '') return false;
return $d;
}
/**
* Read all the bytes, and block until they are read.
* Timeout throws SocketTransportException
*
* @param integer $length
*/
public function readAll($length)
{
$d = "";
$r = 0;
$readTimeout = socket_get_option($this->socket,SOL_SOCKET,SO_RCVTIMEO);
while ($r < $length) {
$buf = '';
$r += socket_recv($this->socket,$buf,$length-$r,MSG_DONTWAIT);
if ($r === false) throw new SocketTransportException('Could not read '.$length.' bytes from socket; '.socket_strerror(socket_last_error()), socket_last_error());
$d .= $buf;
if ($r == $length) return $d;
// wait for data to be available, up to timeout
$r = array($this->socket);
$w = null;
$e = array($this->socket);
$res = socket_select($r,$w,$e,$readTimeout['sec'],$readTimeout['usec']);
// check
if ($res === false) throw new SocketTransportException('Could not examine socket; '.socket_strerror(socket_last_error()), socket_last_error());
if (!empty($e)) throw new SocketTransportException('Socket exception while waiting for data; '.socket_strerror(socket_last_error()), socket_last_error());
if (empty($r)) throw new SocketTransportException('Timed out waiting for data on socket');
}
}
/**
* Write (all) data to the socket.
* Timeout throws SocketTransportException
*
* @param integer $length
*/
public function write($buffer,$length)
{
$r = $length;
$writeTimeout = socket_get_option($this->socket,SOL_SOCKET,SO_SNDTIMEO);
while ($r>0) {
$wrote = socket_write($this->socket,$buffer,$r);
if ($wrote === false) throw new SocketTransportException('Could not write '.$length.' bytes to socket; '.socket_strerror(socket_last_error()), socket_last_error());
$r -= $wrote;
if ($r == 0) return;
$buffer = substr($buffer,$wrote);
// wait for the socket to accept more data, up to timeout
$r = null;
$w = array($this->socket);
$e = array($this->socket);
$res = socket_select($r,$w,$e,$writeTimeout['sec'],$writeTimeout['usec']);
// check
if ($res === false) throw new SocketTransportException('Could not examine socket; '.socket_strerror(socket_last_error()), socket_last_error());
if (!empty($e)) throw new SocketTransportException('Socket exception while waiting to write data; '.socket_strerror(socket_last_error()), socket_last_error());
if (empty($w)) throw new SocketTransportException('Timed out waiting to write data on socket');
}
}
}
class SocketTransportException extends RuntimeException { }