UnreliableSocketFactory.java
18.2 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
/*
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA
*/
package testsuite;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.Socket;
import java.net.SocketAddress;
import java.net.SocketException;
import java.net.SocketTimeoutException;
import java.nio.channels.SocketChannel;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
import com.mysql.jdbc.NonRegisteringDriver;
import com.mysql.jdbc.SocketFactory;
import com.mysql.jdbc.StandardSocketFactory;
/**
* Configure "socketFactory" to use this class in your JDBC URL, and it will operate as normal, unless you map some host aliases to actual IP addresses, and
* then have the test driver call hangOnConnect/Read/Write() which simulate the given failure condition for the host with the <b>alias</b> argument, and will
* honor connect or socket timeout properties.
*
* You can also cause a host to be immediately-downed by calling downHost() with an alias.
*
* ATTENTION! This class is *NOT* thread safe.
*/
public class UnreliableSocketFactory extends StandardSocketFactory {
public static final String STATUS_UNKNOWN = "?";
public static final String STATUS_CONNECTED = "/";
public static final String STATUS_FAILED = "\\";
public static final long DEFAULT_TIMEOUT_MILLIS = 10 * 60 * 1000; // ugh
private static final Map<String, String> MAPPED_HOSTS = new HashMap<String, String>();
static final Set<String> HUNG_READ_HOSTS = new HashSet<String>();
static final Set<String> HUNG_WRITE_HOSTS = new HashSet<String>();
static final Set<String> HUNG_CONNECT_HOSTS = new HashSet<String>();
static final Set<String> IMMEDIATELY_DOWNED_HOSTS = new HashSet<String>();
static final List<String> CONNECTION_ATTEMPTS = new LinkedList<String>();
private String hostname;
private int portNumber;
private Properties props;
public static String getHostConnectedStatus(String host) {
return STATUS_CONNECTED + host;
}
public static String getHostFailedStatus(String host) {
return STATUS_FAILED + host;
}
public static String getHostUnknownStatus(String host) {
return STATUS_FAILED + host;
}
public static void flushAllStaticData() {
IMMEDIATELY_DOWNED_HOSTS.clear();
HUNG_CONNECT_HOSTS.clear();
HUNG_READ_HOSTS.clear();
HUNG_WRITE_HOSTS.clear();
flushConnectionAttempts();
}
public static void flushConnectionAttempts() {
CONNECTION_ATTEMPTS.clear();
}
public static void mapHost(String alias, String orig) {
MAPPED_HOSTS.put(alias, orig);
}
public static void hangOnRead(String hostname) {
HUNG_READ_HOSTS.add(hostname);
}
public static void dontHangOnRead(String hostname) {
HUNG_READ_HOSTS.remove(hostname);
}
public static void hangOnWrite(String hostname) {
HUNG_WRITE_HOSTS.add(hostname);
}
public static void dontHangOnWrite(String hostname) {
HUNG_WRITE_HOSTS.remove(hostname);
}
public static void hangOnConnect(String hostname) {
HUNG_CONNECT_HOSTS.add(hostname);
}
public static void dontHangOnConnect(String hostname) {
HUNG_CONNECT_HOSTS.remove(hostname);
}
public static void downHost(String hostname) {
IMMEDIATELY_DOWNED_HOSTS.add(hostname);
}
public static void dontDownHost(String hostname) {
IMMEDIATELY_DOWNED_HOSTS.remove(hostname);
}
public static String getHostFromLastConnection() {
return getHostFromPastConnection(1);
}
public static String getHostFromPastConnection(int pos) {
pos = Math.abs(pos);
if (pos == 0 || CONNECTION_ATTEMPTS.isEmpty() || CONNECTION_ATTEMPTS.size() < pos) {
return null;
}
return CONNECTION_ATTEMPTS.get(CONNECTION_ATTEMPTS.size() - pos);
}
public static List<String> getHostsFromAllConnections() {
return getHostsFromLastConnections(CONNECTION_ATTEMPTS.size());
}
public static List<String> getHostsFromLastConnections(int count) {
count = Math.abs(count);
int lBound = Math.max(0, CONNECTION_ATTEMPTS.size() - count);
return CONNECTION_ATTEMPTS.subList(lBound, CONNECTION_ATTEMPTS.size());
}
public static boolean isConnected() {
String lastHost = getHostFromLastConnection();
return lastHost == null ? false : lastHost.startsWith(STATUS_CONNECTED);
}
@Override
public Socket connect(String host_name, int port_number, Properties prop) throws SocketException, IOException {
this.hostname = host_name;
this.portNumber = port_number;
this.props = prop;
Socket socket = null;
String result = STATUS_UNKNOWN;
try {
socket = getNewSocket();
result = STATUS_CONNECTED;
} catch (SocketException e) {
result = STATUS_FAILED;
throw e;
} catch (IOException e) {
result = STATUS_FAILED;
throw e;
} finally {
CONNECTION_ATTEMPTS.add(result + host_name);
}
return socket;
}
private Socket getNewSocket() throws SocketException, IOException {
if (IMMEDIATELY_DOWNED_HOSTS.contains(this.hostname)) {
sleepMillisForProperty(this.props, "connectTimeout");
throw new SocketTimeoutException();
}
String hostnameToConnectTo = MAPPED_HOSTS.get(this.hostname);
if (hostnameToConnectTo == null) {
hostnameToConnectTo = this.hostname;
}
if (NonRegisteringDriver.isHostPropertiesList(hostnameToConnectTo)) {
Properties hostSpecificProps = NonRegisteringDriver.expandHostKeyValues(hostnameToConnectTo);
String protocol = hostSpecificProps.getProperty(NonRegisteringDriver.PROTOCOL_PROPERTY_KEY);
if ("unix".equalsIgnoreCase(protocol)) {
SocketFactory factory;
try {
factory = (SocketFactory) Class.forName("org.newsclub.net.mysql.AFUNIXDatabaseSocketFactory").newInstance();
} catch (InstantiationException e) {
throw new SocketException(e.getMessage());
} catch (IllegalAccessException e) {
throw new SocketException(e.getMessage());
} catch (ClassNotFoundException e) {
throw new SocketException(e.getMessage());
}
String path = hostSpecificProps.getProperty(NonRegisteringDriver.PATH_PROPERTY_KEY);
if (path != null) {
hostSpecificProps.setProperty("junixsocket.file", path);
}
return new HangingSocket(factory.connect(hostnameToConnectTo, this.portNumber, hostSpecificProps), this.props, this.hostname);
}
}
return new HangingSocket(super.connect(hostnameToConnectTo, this.portNumber, this.props), this.props, this.hostname);
}
@Override
public Socket afterHandshake() throws SocketException, IOException {
return getNewSocket();
}
@Override
public Socket beforeHandshake() throws SocketException, IOException {
return getNewSocket();
}
static void sleepMillisForProperty(Properties props, String name) {
try {
Thread.sleep(Long.parseLong(props.getProperty(name, String.valueOf(DEFAULT_TIMEOUT_MILLIS))));
} catch (NumberFormatException e) {
throw new RuntimeException(e);
} catch (InterruptedException e) {
// ignore
}
}
class HangingSocket extends Socket {
@Override
public void bind(SocketAddress bindpoint) throws IOException {
this.underlyingSocket.bind(bindpoint);
}
@Override
public synchronized void close() throws IOException {
this.underlyingSocket.close();
}
@Override
public SocketChannel getChannel() {
return this.underlyingSocket.getChannel();
}
@Override
public InetAddress getInetAddress() {
return this.underlyingSocket.getInetAddress();
}
@Override
public InputStream getInputStream() throws IOException {
return new HangingInputStream(this.underlyingSocket.getInputStream(), this.props, this.aliasedHostname);
}
@Override
public boolean getKeepAlive() throws SocketException {
return this.underlyingSocket.getKeepAlive();
}
@Override
public InetAddress getLocalAddress() {
return this.underlyingSocket.getLocalAddress();
}
@Override
public int getLocalPort() {
return this.underlyingSocket.getLocalPort();
}
@Override
public SocketAddress getLocalSocketAddress() {
return this.underlyingSocket.getLocalSocketAddress();
}
@Override
public boolean getOOBInline() throws SocketException {
return this.underlyingSocket.getOOBInline();
}
@Override
public OutputStream getOutputStream() throws IOException {
return new HangingOutputStream(this.underlyingSocket.getOutputStream(), this.props, this.aliasedHostname);
}
@Override
public int getPort() {
return this.underlyingSocket.getPort();
}
@Override
public synchronized int getReceiveBufferSize() throws SocketException {
return this.underlyingSocket.getReceiveBufferSize();
}
@Override
public SocketAddress getRemoteSocketAddress() {
return this.underlyingSocket.getRemoteSocketAddress();
}
@Override
public boolean getReuseAddress() throws SocketException {
return this.underlyingSocket.getReuseAddress();
}
@Override
public synchronized int getSendBufferSize() throws SocketException {
return this.underlyingSocket.getSendBufferSize();
}
@Override
public int getSoLinger() throws SocketException {
return this.underlyingSocket.getSoLinger();
}
@Override
public synchronized int getSoTimeout() throws SocketException {
return this.underlyingSocket.getSoTimeout();
}
@Override
public boolean getTcpNoDelay() throws SocketException {
return this.underlyingSocket.getTcpNoDelay();
}
@Override
public int getTrafficClass() throws SocketException {
return this.underlyingSocket.getTrafficClass();
}
@Override
public boolean isBound() {
return this.underlyingSocket.isBound();
}
@Override
public boolean isClosed() {
return this.underlyingSocket.isClosed();
}
@Override
public boolean isConnected() {
return this.underlyingSocket.isConnected();
}
@Override
public boolean isInputShutdown() {
return this.underlyingSocket.isInputShutdown();
}
@Override
public boolean isOutputShutdown() {
return this.underlyingSocket.isOutputShutdown();
}
@Override
public void sendUrgentData(int data) throws IOException {
this.underlyingSocket.sendUrgentData(data);
}
@Override
public void setKeepAlive(boolean on) throws SocketException {
this.underlyingSocket.setKeepAlive(on);
}
@Override
public void setOOBInline(boolean on) throws SocketException {
this.underlyingSocket.setOOBInline(on);
}
@Override
public synchronized void setReceiveBufferSize(int size) throws SocketException {
this.underlyingSocket.setReceiveBufferSize(size);
}
@Override
public void setReuseAddress(boolean on) throws SocketException {
this.underlyingSocket.setReuseAddress(on);
}
@Override
public synchronized void setSendBufferSize(int size) throws SocketException {
this.underlyingSocket.setSendBufferSize(size);
}
@Override
public void setSoLinger(boolean on, int linger) throws SocketException {
this.underlyingSocket.setSoLinger(on, linger);
}
@Override
public synchronized void setSoTimeout(int timeout) throws SocketException {
this.underlyingSocket.setSoTimeout(timeout);
}
@Override
public void setTcpNoDelay(boolean on) throws SocketException {
this.underlyingSocket.setTcpNoDelay(on);
}
@Override
public void setTrafficClass(int tc) throws SocketException {
this.underlyingSocket.setTrafficClass(tc);
}
@Override
public void shutdownInput() throws IOException {
this.underlyingSocket.shutdownInput();
}
@Override
public void shutdownOutput() throws IOException {
this.underlyingSocket.shutdownOutput();
}
@Override
public String toString() {
return this.underlyingSocket.toString();
}
final Socket underlyingSocket;
final Properties props;
final String aliasedHostname;
HangingSocket(Socket realSocket, Properties props, String aliasedHostname) {
this.underlyingSocket = realSocket;
this.props = props;
this.aliasedHostname = aliasedHostname;
}
}
static class HangingInputStream extends InputStream {
final InputStream underlyingInputStream;
final Properties props;
final String aliasedHostname;
HangingInputStream(InputStream realInputStream, Properties props, String aliasedHostname) {
this.underlyingInputStream = realInputStream;
this.props = props;
this.aliasedHostname = aliasedHostname;
}
@Override
public int available() throws IOException {
return this.underlyingInputStream.available();
}
@Override
public void close() throws IOException {
this.underlyingInputStream.close();
}
@Override
public synchronized void mark(int readlimit) {
this.underlyingInputStream.mark(readlimit);
}
@Override
public boolean markSupported() {
return this.underlyingInputStream.markSupported();
}
@Override
public synchronized void reset() throws IOException {
this.underlyingInputStream.reset();
}
@Override
public long skip(long n) throws IOException {
failIfRequired();
return this.underlyingInputStream.skip(n);
}
@Override
public int read(byte[] b, int off, int len) throws IOException {
failIfRequired();
return this.underlyingInputStream.read(b, off, len);
}
@Override
public int read(byte[] b) throws IOException {
failIfRequired();
return this.underlyingInputStream.read(b);
}
@Override
public int read() throws IOException {
failIfRequired();
return this.underlyingInputStream.read();
}
private void failIfRequired() throws SocketTimeoutException {
if (HUNG_READ_HOSTS.contains(this.aliasedHostname) || IMMEDIATELY_DOWNED_HOSTS.contains(this.aliasedHostname)) {
sleepMillisForProperty(this.props, "socketTimeout");
throw new SocketTimeoutException();
}
}
}
static class HangingOutputStream extends OutputStream {
final Properties props;
final String aliasedHostname;
final OutputStream underlyingOutputStream;
HangingOutputStream(OutputStream realOutputStream, Properties props, String aliasedHostname) {
this.underlyingOutputStream = realOutputStream;
this.props = props;
this.aliasedHostname = aliasedHostname;
}
@Override
public void close() throws IOException {
failIfRequired();
this.underlyingOutputStream.close();
}
@Override
public void flush() throws IOException {
this.underlyingOutputStream.flush();
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
failIfRequired();
this.underlyingOutputStream.write(b, off, len);
}
@Override
public void write(byte[] b) throws IOException {
failIfRequired();
this.underlyingOutputStream.write(b);
}
@Override
public void write(int b) throws IOException {
failIfRequired();
this.underlyingOutputStream.write(b);
}
private void failIfRequired() throws SocketTimeoutException {
if (HUNG_WRITE_HOSTS.contains(this.aliasedHostname) || IMMEDIATELY_DOWNED_HOSTS.contains(this.aliasedHostname)) {
sleepMillisForProperty(this.props, "socketTimeout");
throw new SocketTimeoutException();
}
}
}
}