/usr/lib/python2.7/dist-packages/foolscap/negotiate.py is in python-foolscap 0.6.4-2.
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 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 | # -*- test-case-name: foolscap.test.test_negotiate -*-
import time
from twisted.python.failure import Failure
from twisted.internet import protocol, reactor
from twisted.internet.error import ConnectionDone
from foolscap import broker, referenceable, vocab
from foolscap.eventual import eventually
from foolscap.tokens import SIZE_LIMIT, ERROR, NoLocationHintsError, \
BananaError, NegotiationError, RemoteNegotiationError, \
DuplicateConnection
from foolscap.ipb import DeadReferenceError
from foolscap.banana import int2b128
from foolscap.logging import log
from foolscap.logging.log import NOISY, OPERATIONAL, WEIRD, UNUSUAL, CURIOUS
crypto_available = False
try:
from foolscap import crypto
crypto_available = crypto.available
except ImportError:
pass
def isSubstring(small, big):
assert type(small) is str and type(big) is str
return small in big
def best_overlap(my_min, my_max, your_min, your_max, name):
"""Find the highest integer which is in both ranges (inclusive).
Raise NegotiationError (using 'name' in the error message) if there
is no overlap."""
best = min(my_max, your_max)
if best < my_min:
raise NegotiationError("I can't handle %s %d" % (name, best))
if best < your_min:
raise NegotiationError("You can't handle %s %d" % (name, best))
return best
def check_inrange(my_min, my_max, decision, name):
if decision < my_min or decision > my_max:
raise NegotiationError("I can't handle %s %d" % (name, decision))
# negotiation phases
PLAINTEXT, ENCRYPTED, DECIDING, BANANA, ABANDONED = range(5)
# version number history:
# 1 (0.1.0): offer includes initial-vocab-table-range,
# decision includes initial-vocab-table-index
# 2 (0.1.1): no changes to offer or decision
# reqID=0 was commandeered for use by callRemoteOnly()
# 3 (0.1.3): added PING and PONG tokens
class Negotiation(protocol.Protocol):
"""This is the first protocol to speak over the wire. It is responsible
for negotiating the connection parameters, then switching the connection
over to the actual Banana protocol. This removes all the details of
negotiation from Banana, and makes it easier to use a more complex scheme
(including a STARTTLS transition) in PB.
Negotiation consists of three phases. In the PLAINTEXT phase, the client
side (i.e. the one which initiated the connection) sends an
HTTP-compatible GET request for the target Tub ID. This request includes
an Connection: Upgrade header. The GET request serves a couple of
purposes: if a PB client is accidentally pointed at an HTTP server, it
will trigger a sensible 404 Error instead of getting confused. A regular
HTTP server can be used to send back a 303 Redirect, allowing Apache (or
whatever) to be used as a redirection server.
After sending the GET request, the client waits for the server to send a
101 Switching Protocols command, then starts the TLS session. It may also
receive a 303 Redirect command, in which case it drops the connection and
tries again with the new target.
In the PLAINTEXT phase, the server side (i.e. the one which accepted the
connection) waits for the client's GET request, extracts the TubID from
the first line, consults the local Listener object to locate the
appropriate Tub (and its certificate), sends back a 101 Switching
Protocols response, then starts the TLS session with the Tub's
certificate. If the Listener reports that the requested Tub is listening
elsewhere, the server sends back a 303 Redirect instead, and then drops
the connection.
By the end of the PLAINTEXT phase, both ends know which Tub they are
using (self.tub has been set).
Both sides send a Hello Block upon entering the ENCRYPTED phase, which in
practice means just after starting the TLS session. The Hello block
contains the negotiation offer, as a series of Key: Value lines separated
by \\r\\n delimiters and terminated by a blank line. Upon receiving the
other end's Hello block, each side switches to the DECIDING phase, and
then evaluates the received Hello message.
Each side compares TubIDs, and the side with the lexicographically higher
value becomes the Master. (If, for some reason, one side does not claim a
TubID, its value is treated as None, which always compares *less* than
any actual TubID, so the non-TubID side will probably not be the Master.
Any possible ties are resolved by having the server side be the master).
Both sides know the other's TubID, so both sides know whether they are
the Master or not.
The Master has two jobs to do. The first is that it compares the
negotiation offer against its own capabilities, and comes to a decision
about what the connection parameters shall be. It may decide that the two
sides are not compatible, in which case it will abandon the connection.
The second job is to decide whether to continue to use the connection at
all: if the Master already has a connection to the other Tub, it will
drop this new one. This decision must be made by the Master (as opposed
to the Server) because it is possible for both Tubs to connect to each
other simultaneously, and this design avoids a race condition that could
otherwise drop *both* connections.
If the Master decides to continue with the connection, it sends the
Decision block to the non-master side. It then swaps out the Negotiation
protocol for a new Banana protocol instance that has been created with
the same parameters that were used to create the Decision block.
The non-master side is waiting in the DECIDING phase for this block. Upon
receiving it, the non-master side evaluates the connection parameters and
either drops the connection or swaps in a new Banana protocol instance
with the same parameters. At this point, negotiation is complete and the
Negotiation instances are dropped.
@ivar negotationOffer: a dict which describes what we will offer to the
far side. Each key/value pair will be put into a rfc822-style header and
sent from the client to the server when the connection is established. On
the server side, handleNegotiation() uses negotationOffer to indicate
what we are locally capable of.
Subclasses may influence the negotiation process by modifying this
dictionary before connectionMade() is called.
@ivar negotiationResults: a dict which describes what the two ends have
agreed upon. This is computed by the server, stored locally, and sent
down to the client. The client receives it and stores it without
modification (server chooses).
In general, the negotiationResults are the same on both sides of the same
connection. However there may be certain parameters which are sent as
part of the negotiation block (the PB TubID, for example) which will not.
"""
myTubID = None
tub = None
theirTubID = None
receive_phase = PLAINTEXT # we are expecting this
send_phase = PLAINTEXT # the other end is expecting this
encrypted = False
doNegotiation = True
debugNegotiation = False
forceNegotiation = None
minVersion = 3
maxVersion = 3
brokerClass = broker.Broker
initialVocabTableRange = vocab.getVocabRange()
SERVER_TIMEOUT = 60 # you have 60 seconds to complete negotiation, or else
negotiationTimer = None
def __init__(self, logparent=None):
self._logparent = log.msg("Negotiation started", parent=logparent,
facility="foolscap.negotiation")
for i in range(self.minVersion, self.maxVersion+1):
assert hasattr(self, "evaluateNegotiationVersion%d" % i), i
assert hasattr(self, "acceptDecisionVersion%d" % i), i
assert isinstance(self.initialVocabTableRange, tuple)
self.negotiationOffer = {
"banana-negotiation-range": "%d %d" % (self.minVersion,
self.maxVersion),
"initial-vocab-table-range": "%d %d" % self.initialVocabTableRange,
}
# TODO: for testing purposes, it might be useful to be able to add
# some keys to this offer
if self.forceNegotiation is not None:
# TODO: decide how forcing should work. Maybe forceNegotiation
# should be a dict of keys or something. distinguish between
# offer and decision.
self.negotiationOffer['negotiation-forced'] = "True"
self.buffer = ""
self.options = {}
# to trigger specific race conditions during unit tests, it is useful
# to allow certain operations to be stalled for a moment.
# self.options will contain a key like debug_slow_connectionMade to
# indicate that there should be a 1 second delay between the real
# connectionMade and the time our self.connectionMade() method is
# invoked. To support this, the first time connectionMade() is
# invoked, self.debugTimers['connectionMade'] is set to a 1s
# DelayedCall, which fires self.debug_fireTimer('connectionMade',
# callable, *args). That will set self.debugTimers['connectionMade']
# to None, so the condition is not fired again, then invoke the
# actual connectionMade method. When the connection is lost, all
# remaining timers will be canceled.
self.debugTimers = {}
# if anything goes wrong during negotiation (version mismatch,
# malformed headers, assertion checks), we stash the Failure in this
# attribute and then drop the connection. For client-side
# connections, we notify our parent TubConnector when the
# connectionLost() message is finally delivered.
self.failureReason = None
def log(self, *args, **kwargs):
# we log as NOISY by default, because nobody should hear about
# negotiation unless it goes wrong.
if 'parent' not in kwargs:
kwargs['parent'] = self._logparent
if 'facility' not in kwargs:
kwargs['facility'] = "foolscap.negotiation"
if 'level' not in kwargs:
kwargs['level'] = log.NOISY
return log.msg(*args, **kwargs)
def initClient(self, connector, targetHost):
# clients do connectTCP and speak first with a GET
self.log("initClient: to target %s" % connector.target,
target=connector.target.getTubID())
self.isClient = True
self.tub = connector.tub
self.brokerClass = self.tub.brokerClass
self.myTubID = self.tub.tubID
self.connector = connector
self.target = connector.target
self.targetHost = targetHost
self.wantEncryption = bool(self.target.encrypted
or self.tub.myCertificate)
self.options = self.tub.options.copy()
tubID = self.target.getTubID()
# note that UnauthenticatedTubs will never have a record here
slave_record = self.tub.slave_table.get(tubID, ("none",0))
assert isinstance(slave_record, tuple), slave_record
self.negotiationOffer['last-connection'] = "%s %s" % slave_record
def initServer(self, listener):
# servers do listenTCP and respond to the GET
self.log("initServer", listener=repr(listener))
self.isClient = False
self.listener = listener
self.options = self.listener.options.copy()
# the broker class is set when we find out which Tub we should use
def parseLines(self, header):
lines = header.split("\r\n")
block = {}
for line in lines:
colon = line.index(":")
key = line[:colon].lower()
value = line[colon+1:].lstrip()
block[key] = value
return block
def sendBlock(self, block):
keys = block.keys()
keys.sort()
for k in keys:
self.transport.write("%s: %s\r\n" % (k.lower(), block[k]))
self.transport.write("\r\n") # end block
def debug_doTimer(self, name, timeout, call, *args):
if (self.options.has_key("debug_slow_%s" % name) and
not self.debugTimers.has_key(name)):
self.log("debug_doTimer(%s)" % name)
t = reactor.callLater(timeout, self.debug_fireTimer, name)
self.debugTimers[name] = (t, [(call, args)])
cb = self.options["debug_slow_%s" % name]
if cb is not None and cb is not True:
cb()
return True
return False
def debug_addTimerCallback(self, name, call, *args):
if self.debugTimers.get(name):
self.debugTimers[name][1].append((call, args))
return True
return False
def debug_forceTimer(self, name):
if self.debugTimers.get(name):
self.debugTimers[name][0].cancel()
self.debug_fireTimer(name)
def debug_forceAllTimers(self):
for name in self.debugTimers:
if self.debugTimers.get(name):
self.debugTimers[name][0].cancel()
self.debug_fireTimer(name)
def debug_cancelAllTimers(self):
for name in self.debugTimers:
if self.debugTimers.get(name):
self.debugTimers[name][0].cancel()
self.debugTimers[name] = None
def debug_fireTimer(self, name):
calls = self.debugTimers[name][1]
self.debugTimers[name] = None
for call,args in calls:
call(*args)
def connectionMade(self):
# once connected, this Negotiation instance must either invoke
# self.switchToBanana or self.negotiationFailed, to insure that the
# TubConnector (if any) gets told about the results of the connection
# attempt.
if self.doNegotiation:
if self.isClient:
self.connectionMadeClient()
else:
self.connectionMadeServer()
else:
self.switchToBanana({})
def connectionMadeClient(self):
assert self.receive_phase == PLAINTEXT
# the client needs to send the HTTP-compatible tubid GET,
# along with the TLS upgrade request
self.sendPlaintextClient()
# now we wait for the TLS Upgrade acceptance to come back
def sendPlaintextClient(self):
# we want an encrypted connection if the Tub at either end uses
# encryption. We might not get it, though. Declaring whether or not
# we are using an encrypted Tub is separate, and expressed in our
# Hello block.
req = []
if self.target.encrypted:
self.log("sendPlaintextClient: GET for tubID %s" %
self.target.tubID)
req.append("GET /id/%s HTTP/1.1" % self.target.tubID)
else:
self.log("sendPlaintextClient: GET for no tubID")
req.append("GET /id/ HTTP/1.1")
req.append("Host: %s" % self.targetHost)
self.log("sendPlaintextClient: wantEncryption=%s" % self.wantEncryption)
if self.wantEncryption:
req.append("Upgrade: TLS/1.0")
else:
req.append("Upgrade: PB/1.0")
req.append("Connection: Upgrade")
self.transport.write("\r\n".join(req))
self.transport.write("\r\n\r\n")
# the next thing the other end expects to see is the encrypted phase
self.send_phase = ENCRYPTED
def connectionMadeServer(self):
# the server just waits for the GET message to arrive, but set up the
# server timeout first
if self.debug_doTimer("connectionMade", 1, self.connectionMade):
return
timeout = self.options.get('server_timeout', self.SERVER_TIMEOUT)
if timeout:
# oldpb clients will hit this case.
self.negotiationTimer = reactor.callLater(timeout,
self.negotiationTimedOut)
def sendError(self, why):
pass # TODO
def negotiationTimedOut(self):
del self.negotiationTimer
why = Failure(NegotiationError("negotiation timeout"))
self.sendError(why)
self.failureReason = why
self.transport.loseConnection()
def stopNegotiationTimer(self):
if self.negotiationTimer:
self.negotiationTimer.cancel()
del self.negotiationTimer
def dataReceived(self, chunk):
self.log("dataReceived(isClient=%s,phase=%s,options=%s): %r"
% (self.isClient, self.receive_phase, self.options, chunk),
level=NOISY)
if self.receive_phase == ABANDONED:
return
self.buffer += chunk
if self.debug_addTimerCallback("connectionMade",
self.dataReceived, ''):
return
try:
# we accumulate a header block for each phase
if len(self.buffer) > 4096:
raise BananaError("Header too long")
eoh = self.buffer.find('\r\n\r\n')
if eoh == -1:
return
header, self.buffer = self.buffer[:eoh], self.buffer[eoh+4:]
if self.receive_phase == PLAINTEXT:
if self.isClient:
self.handlePLAINTEXTClient(header)
else:
self.handlePLAINTEXTServer(header)
elif self.receive_phase == ENCRYPTED:
self.handleENCRYPTED(header)
elif self.receive_phase == DECIDING:
self.handleDECIDING(header)
else:
assert 0, "should not get here"
# there might be some leftover data for the next phase.
# self.buffer will be emptied when we switchToBanana, so in that
# case we won't call the wrong dataReceived.
if self.buffer:
self.dataReceived("")
except Exception, e:
why = Failure()
if isinstance(e, RemoteNegotiationError):
pass # they've already hung up
else:
# there's a chance we can provide a little bit more information
# to the other end before we hang up on them
if isinstance(e, NegotiationError):
errmsg = str(e)
else:
self.log("negotiation had internal error:", failure=why,
level=UNUSUAL)
errmsg = "internal server error, see logs"
errmsg = errmsg.replace("\n", " ").replace("\r", " ")
if self.send_phase == PLAINTEXT:
resp = ("HTTP/1.1 500 Internal Server Error: %s\r\n\r\n"
% errmsg)
self.transport.write(resp)
elif self.send_phase in (ENCRYPTED, DECIDING):
block = {'banana-decision-version': 1,
'error': errmsg,
}
self.sendBlock(block)
elif self.send_phase == BANANA:
self.sendBananaError(errmsg)
self.failureReason = why
self.transport.loseConnection()
return
def sendBananaError(self, msg):
if len(msg) > SIZE_LIMIT:
msg = msg[:SIZE_LIMIT-10] + "..."
int2b128(len(msg), self.transport.write)
self.transport.write(ERROR)
self.transport.write(msg)
# now you should drop the connection
def connectionLost(self, reason):
# force connectionMade to happen, so connectionLost can occur
# normally
self.debug_forceTimer("connectionMade")
# cancel the other slowdown timers, since they all involve sending
# data, and the connection is no longer available
self.debug_cancelAllTimers()
for k,t in self.debugTimers.items():
if t:
t[0].cancel()
self.debugTimers[k] = None
if self.isClient:
l = self.tub.options.get("debug_gatherPhases")
if l is not None:
l.append(self.receive_phase)
if not self.failureReason:
self.failureReason = reason
self.negotiationFailed()
def handlePLAINTEXTServer(self, header):
# the client sends us a GET message
lines = header.split("\r\n")
if not lines[0].startswith("GET "):
raise BananaError("not right")
command, url, version = lines[0].split()
if not url.startswith("/id/"):
# probably a web browser
raise BananaError("not right")
targetTubID = url[4:]
self.log("handlePLAINTEXTServer: targetTubID='%s'" % targetTubID,
level=NOISY)
if targetTubID == "":
targetTubID = None
if isSubstring("Upgrade: TLS/1.0\r\n", header):
wantEncrypted = True
else:
wantEncrypted = False
self.log("handlePLAINTEXTServer: wantEncrypted=%s" % wantEncrypted,
level=NOISY)
# we ignore the rest of the lines
if wantEncrypted and not crypto_available:
# this is a confused client, or a bad URL: if we don't have
# crypto, we couldn't have created a pb:// URL.
self.log("Negotiate.handlePLAINTEXTServer: client wants "
"encryption for TubID=%s but we have no crypto, "
"hanging up on them" % targetTubID,
level=UNUSUAL)
# we could just not offer the encryption, but they won't be happy
# with the results, since they wanted to connect to a specific
# TubID.
raise NegotiationError("crypto not available")
if wantEncrypted and targetTubID is None:
# we wouldn't know which certificate to use, so don't use
# encryption at all, even though the client wants to. TODO: if it
# is possible to do startTLS on the server side without a server
# certificate, do that. It might be possible to do some sort of
# ephemeral non-signed certificate.
wantEncrypted = False
if targetTubID is not None and not wantEncrypted:
raise NegotiationError("secure Tubs require encryption")
# now that we know which Tub the client wants to connect to, either
# send a Redirect, or start the ENCRYPTED phase
tub, redirect = self.listener.lookupTubID(targetTubID)
if tub:
self.tub = tub # our tub
self.options.update(self.tub.options)
self.brokerClass = self.tub.brokerClass
self.myTubID = tub.tubID
self.sendPlaintextServerAndStartENCRYPTED(wantEncrypted)
elif redirect:
self.sendRedirect(redirect)
else:
raise NegotiationError("unknown TubID %s" % targetTubID)
def sendPlaintextServerAndStartENCRYPTED(self, encrypted):
# this is invoked on the server side
if self.debug_doTimer("sendPlaintextServer", 1,
self.sendPlaintextServerAndStartENCRYPTED,
encrypted):
return
if encrypted:
resp = "\r\n".join(["HTTP/1.1 101 Switching Protocols",
"Upgrade: TLS/1.0, PB/1.0",
"Connection: Upgrade",
])
else:
# TODO: see if this makes sense, I haven't read the HTTP spec
resp = "\r\n".join(["HTTP/1.1 101 Switching Protocols",
"Upgrade: PB/1.0",
"Connection: Upgrade",
])
self.transport.write(resp)
self.transport.write("\r\n\r\n")
# the next thing they expect is the encrypted block
self.send_phase = ENCRYPTED
self.startENCRYPTED(encrypted)
def sendRedirect(self, redirect):
# this is invoked on the server side
# send the redirect message, then close the connection. make sure the
# data gets flushed, though.
raise NotImplementedError # TODO
def handlePLAINTEXTClient(self, header):
self.log("handlePLAINTEXTClient: header='%s'" % header)
lines = header.split("\r\n")
tokens = lines[0].split()
# TODO: accept a 303 redirect
if tokens[1] != "101":
raise BananaError("not right, got '%s', "
"expected 101 Switching Protocols"
% lines[0])
isEncrypted = isSubstring("Upgrade: TLS/1.0", header)
if not isEncrypted:
# the connection is not encrypted, so don't claim a TubID
self.myTubID = None
# we ignore everything else
# now we upgrade to TLS
self.startENCRYPTED(isEncrypted)
# and wait for their Hello to arrive
def startENCRYPTED(self, encrypted):
# this is invoked on both sides. We move to the "ENCRYPTED" phase,
# which might actually involve a TLS-encrypted session if that's what
# the client wanted, but if it isn't then we just "upgrade" to
# nothing and change modes.
self.log("startENCRYPTED(isClient=%s, encrypted=%s)" %
(self.isClient, encrypted))
if encrypted:
self.startTLS(self.tub.myCertificate)
self.encrypted = encrypted
# TODO: can startTLS trigger dataReceived?
self.receive_phase = ENCRYPTED
self.sendHello()
def sendHello(self):
"""This is called on both sides as soon as the encrypted connection
is established. This causes a negotiation block to be sent to the
other side as an offer."""
if self.debug_doTimer("sendHello", 1, self.sendHello):
return
hello = self.negotiationOffer.copy()
if self.myTubID:
# this indicates which identity we wish to claim. This is the
# hash of the certificate we're using, or one of its parents. If
# we aren't using an encrypted connection, don't claim any
# identity.
hello['my-tub-id'] = self.myTubID
if self.tub:
IR = self.tub.getIncarnationString()
hello['my-incarnation'] = IR
self.log("Negotiate.sendHello (isClient=%s): %s" %
(self.isClient, hello))
self.sendBlock(hello)
def handleENCRYPTED(self, header):
# both ends have sent a Hello message
if self.debug_addTimerCallback("sendHello",
self.handleENCRYPTED, header):
return
self.theirCertificate = None
if self.encrypted:
# we should be encrypted now
# get the peer's certificate, if any
try:
them = crypto.peerFromTransport(self.transport)
if them and them.original:
self.theirCertificate = them
except crypto.CertificateError:
pass
hello = self.parseLines(header)
if hello.has_key("error"):
raise RemoteNegotiationError(hello["error"])
self.evaluateHello(hello)
def evaluateHello(self, offer):
"""Evaluate the HELLO message sent by the other side. We compare
TubIDs, and the higher value becomes the 'master' and makes the
negotiation decisions.
This method returns a tuple of DECISION,PARAMS. There are a few
different possibilities::
- We are the master, we make a negotiation decision: DECISION is
the block of data to send back to the non-master side, PARAMS are
the connection parameters we will use ourselves.
- We are the master, we can't accomodate their request: raise
NegotiationError
- We are not the master: DECISION is None
"""
self.log("evaluateHello(isClient=%s): offer=%s" %
(self.isClient, offer))
if not offer.has_key('banana-negotiation-range'):
if offer.has_key('banana-negotiation-version'):
msg = ("Peer is speaking foolscap-0.0.5 or earlier, "
"which is not compatible with this version. "
"Please upgrade the peer.")
raise NegotiationError(msg)
raise NegotiationError("No valid banana-negotiation sequence seen")
min_s, max_s = offer['banana-negotiation-range'].split()
theirMinVer = int(min_s)
theirMaxVer = int(max_s)
# best_overlap() might raise a NegotiationError
best = best_overlap(self.minVersion, self.maxVersion,
theirMinVer, theirMaxVer,
"banana version")
negfunc = getattr(self, "evaluateNegotiationVersion%d" % best)
self.decision_version = best
return negfunc(offer)
def evaluateNegotiationVersion1(self, offer):
forced = False
f = offer.get('negotiation-forced', None)
if f and f.lower() == "true":
forced = True
# 'forced' means the client is on a one-way link (or is really
# stubborn) and has already made up its mind about the connection
# parameters. If we are unable to handle exactly what they have
# offered, we must hang up.
assert not forced # TODO: implement
# glyph says: look at Juice, it does rfc822 parsing, startTLS,
# switch-to-other-protocol, etc. grep for retrieveConnection in q2q.
# TODO: oh, if we see an HTTP client, send a good HTTP error like
# "protocol not supported", or maybe even an HTML page that explains
# what a PB server is
# there are four distinct dicts here:
# self.negotiationOffer: what we want
# clientOffer: what they sent to us, the client's requests.
# serverOffer: what we send to them, the server's decision
# self.negotiationResults: the negotiated settings
#
# [my-tub-id] is not present in self.negotiationResults
# the server's tubID is in [my-tub-id] for both self.negotiationOffer
# and serverOffer
# the client's tubID is in [my-tub-id] for clientOffer
myTubID = self.myTubID
theirTubID = offer.get("my-tub-id")
if self.theirCertificate is None:
# no client certificate
if theirTubID is not None:
# this is where a poor MitM attack is detected, one which
# doesn't even pretend to encrypt the connection
raise BananaError("you must use a certificate to claim a "
"TubID")
else:
# verify that their claimed TubID matches their SSL certificate.
# TODO: handle chains
digest = crypto.digest32(self.theirCertificate.digest("sha1"))
if digest != theirTubID:
# this is where a good MitM attack is detected, one which
# encrypts the connection but which of course uses the wrong
# certificate
raise BananaError("TubID mismatch")
if theirTubID:
theirTubRef = referenceable.TubRef(theirTubID)
else:
theirTubRef = None # unauthenticated
self.theirTubRef = theirTubRef # for use by non-master side, later
if self.isClient and self.target.encrypted:
# verify that we connected to the Tub we expected to. If we
# weren't trying to connect to an encrypted tub, then don't
# bother checking.. we just accept whoever we managed to connect
# to.
if theirTubRef != self.target:
# TODO: how (if at all) should this error message be
# communicated to the other side?
raise BananaError("connected to the wrong Tub")
if myTubID is None and theirTubID is None:
iAmTheMaster = not self.isClient
elif myTubID is None:
iAmTheMaster = False
elif theirTubID is None:
iAmTheMaster = True
else:
# this is the most common case
iAmTheMaster = myTubID > theirTubID
self.log(format="iAmTheMaster: %(master)s", master=iAmTheMaster)
decision, params = None, None
if iAmTheMaster:
# we get to decide everything. The other side is now waiting for
# a decision block.
self.send_phase = DECIDING
decision = {}
params = {}
# combine their 'offer' and our own self.negotiationOffer to come
# up with a 'decision' to be sent back to the other end, and the
# 'params' to be used on our connection
# first, do we continue with this connection? we might have an
# existing connection for this particular tub
if theirTubRef and theirTubRef in self.tub.brokers:
# there is an existing connection.. we might want to prefer
# this new offer, because the old connection might be stale
# (NAT boxes and laptops that disconnect abruptly are two
# ways for a single process to disappear silently and then
# reappear with a different IP address).
lp = self.log("got offer for an existing connection",
level=UNUSUAL)
existing = self.tub.brokers[theirTubRef]
acceptOffer = self.compareOfferAndExisting(offer, existing, lp)
if acceptOffer:
# drop the old one
self.log("accepting new offer, dropping existing connection",
parent=lp)
err = DeadReferenceError("[%s] replaced by a new connection"
% theirTubRef.getShortTubID())
why = Failure(err)
existing.shutdown(why)
else:
# reject the new one
self.log("rejecting the offer: we already have one",
parent=lp)
raise DuplicateConnection("Duplicate connection")
if theirTubRef:
# generate a new seqnum, one higher than the last one we've
# used. Note that UnauthenticatedTubs all share the same
# index, so we leak certain information about how many
# connections we've established.
old_seqnum = self.tub.master_table.get(theirTubRef.getTubID(),
0)
new_seqnum = old_seqnum + 1
new_slave_IR = offer.get('my-incarnation', None)
self.tub.master_table[theirTubRef.getTubID()] = new_seqnum
my_IR = self.tub.getIncarnationString()
decision['current-connection'] = "%s %s" % (my_IR, new_seqnum)
# these params will be copied into the Broker where we can
# retrieve them later, when we need to compare it against a new
# offer.
params['current-slave-IR'] = new_slave_IR
params['current-seqnum'] = new_seqnum
# what initial vocab set should we use?
theirVocabRange_s = offer.get("initial-vocab-table-range", "0 0")
theirVocabRange = theirVocabRange_s.split()
theirVocabMin = int(theirVocabRange[0])
theirVocabMax = int(theirVocabRange[1])
vocab_index = best_overlap(
self.initialVocabTableRange[0],
self.initialVocabTableRange[1],
theirVocabMin, theirVocabMax,
"initial vocab set")
vocab_hash = vocab.hashVocabTable(vocab_index)
decision['initial-vocab-table-index'] = "%d %s" % (vocab_index,
vocab_hash)
decision['banana-decision-version'] = str(self.decision_version)
# v1: handle vocab table index
params['banana-decision-version'] = self.decision_version
params['initial-vocab-table-index'] = vocab_index
else:
# otherwise, the other side gets to decide. The next thing they
# expect to hear from us is banana.
self.send_phase = BANANA
if iAmTheMaster:
# I am the master, so I send the decision
self.log("Negotiation.sendDecision: %s" % decision,
level=OPERATIONAL)
# now we send the decision and switch to Banana. they might hang
# up.
self.sendDecision(decision, params)
else:
# I am not the master, I receive the decision
self.receive_phase = DECIDING
def evaluateNegotiationVersion2(self, offer):
# version 2 changes the meaning of reqID=0 in a 'call' sequence, to
# support the implementation of callRemoteOnly. No other protocol
# changes were made, and no changes were made to the offer or
# decision blocks.
return self.evaluateNegotiationVersion1(offer)
def evaluateNegotiationVersion3(self, offer):
# version 3 adds PING and PONG tokens, to enable keepalives and
# idle-disconnect. No other protocol changes were made, and no
# changes were made to the offer or decision blocks.
return self.evaluateNegotiationVersion1(offer)
def compareOfferAndExisting(self, offer, existing, lp):
"""Compare the new offer against the existing connection, and
decide which to keep.
@return: True to accept the new offer, False to stick with the
existing connection.
"""
def log(*args, **kwargs):
if 'parent' not in kwargs:
kwargs['parent'] = lp
return self.log(*args, **kwargs)
existing_slave_IR = existing.current_slave_IR
existing_seqnum = existing.current_seqnum
log(format="existing connection has slave_IR=%(slave_IR)s, seqnum=%(seqnum)s",
slave_IR=existing_slave_IR, seqnum=existing_seqnum)
# TESTING: force handle-old stuff
#lp2 = log("TESTING: forcing use of handle-old logic")
#return self.handle_old(offer, existing, 60, lp2)
# step one: does the inbound offer have a my-incarnation header? If
# not, this is an older peer (<foolscap-0.1.7). We use
# offer.get("my-incarnation") instead of "my-incarnation" in offer
# so that unit tests can cause a client to send an empty string to
# simulate the earlier version.
if not offer.get("my-incarnation") or "last-connection" not in offer:
# TODO: new servers send my-incarnation but not last-connection
# this is an old peer (foolscap 0.1.7 or earlier), which won't
# give us enough information to make some of the decisions below.
# We reject the offer to avoid connection flap, and the
# situtation won't be worse than it was in 0.1.7 .
lp2 = log("pre-0.2.0 peer detected (no my-incarnation"
" or last-connection)", level=CURIOUS)
if self.tub._handle_old_duplicate_connections is not False:
# but if we've been configured to do better (with the
# 60-second age heuristic), do that.
self.log("using handle-old-duplicate-connections", parent=lp2)
threshold = self.tub._handle_old_duplicate_connections
return self.handle_old(offer, existing, threshold, lp2)
return False # reject the offer
if offer["my-incarnation"] != existing_slave_IR:
# this offer is from a different invocation of the peer than we
# think we're currently talking to. That means the slave has
# restarted since we made our connection, so clearly our
# connection is stale. Accept the offer.
log("offer is from different peer incarnation than existing")
return True # accept
pieces = offer['last-connection'].split()
offer_master_IR = pieces[0]
offer_master_seqnum = int(pieces[1])
if offer_master_IR == "none":
# the peer doesn't remember talking to anybody: they don't think
# they've ever been connected to us. We disagree, and we remember
# their incarnation record. So they must have made an initial
# attempt to connect to us (their first), we accepted their
# connection, and the decision message got lost or hasn't arrived
# yet. The most likely situation is that this is one of the
# parallel connections (one per hint), for which we want to
# reject their offer. The less likely situation is that they
# heard our initial connection setup but the decision message got
# lost, in which case we entry the "no reconnects until TCP gives
# up" state.
log("peer doesn't remember talking to us")
return False # reject
if offer_master_IR != self.tub.getIncarnationString():
# the peer doesn't remember talking to us specifically, but they
# remember talking to one of our past lives. That means our last
# decision message didn't make it to them, and the last
# connection they *did* hear about was from one of our previous
# runs. Therefore our existing connection isn't viable, and we
# should accept their offer.
#
log("peer remembers talking to our past life")
return True # accept
# at this point, the offer's IR matches our own, so the seqnum is
# worth comparing
if offer_master_seqnum == existing_seqnum:
# the offer demonstrates that the client knows about the same
# connection that we do, and they made a new connection anyways.
# From this we can conclude that our connection is stale, so we
# should accept the offer.
log("peer knows about existing seqnum")
return True
if offer_master_seqnum < existing_seqnum:
# Possible ways to get here, most likely first
# 1: simultaneous parallel connections (multiple hints),
# from a client who used to have an established connection
# with us (so they're sending the right offer_master_IR).
# Reject the offer to avoid connection flap.
# 2: client connected, but our decision got lost, they're still
# living in the past. Reject the offer, we'll enter the
# no-reconnect-until-TCP-gives-up state
# 3: crazy stalled message case, again we wait for TCP to expire
# more details on #2: the client connects successfully, then the
# client thinks the connection has been lost (but the server
# thinks it's still good), so the client reconnects, and this
# connection gets as far as the master making a decision, but the
# decision message is lost before it gets to the client. Then the
# client connects a third time, and now we're considering the
# third offer: the IRs are all the same, the attempt_id is
# different than our existing (2nd) connection, but the seqnum is
# older. In this case, we want to accept the new offer.
# more details on #3 (more rare): the client connects and loses
# the connection (as before), then the client connects a second
# time and gets as far as sending the offer when they time out,
# cancelling the negotiation already in progress (sending a FIN
# after the offer message) and triggering a third connection. The
# third connection somehow races ahead and completes negotiation
# before the 2nd-connection offer+FIN make it to the server. Now,
# finally, the offer arrives: we're now evaluating an
# out-of-order offer on a socket that's about to be closed.
# Ideally we'd like to reject this offer.
log("peer knows about old seqnum")
return False # reject
# offer_master_seqnum > existing_seqnum indicates something really
# weird has taken place.
log(format="offer_master_seqnum %(offer)d > existing_seqnum %(existing)d",
offer=offer_master_seqnum, existing=existing_seqnum, level=WEIRD)
return False # reject weirdness
def handle_old(self, offer, existing, threshold, lp):
# determine the age of the existing broker
age = time.time() - existing.creation_timestamp
if age < threshold:
self.log("the existing broker is too new (%d<%d), rejecting offer"
% (age, threshold),
parent=lp)
return False # reject the offer
self.log("the existing broker is old enough to replace", parent=lp)
return True # accept the offer
def sendDecision(self, decision, params):
if self.debug_doTimer("sendDecision", 1,
self.sendDecision, decision, params):
return
if self.debug_addTimerCallback("sendHello",
self.sendDecision, decision, params):
return
self.sendBlock(decision)
self.send_phase = BANANA
self.switchToBanana(params)
def handleDECIDING(self, header):
# this gets called on the non-master side
self.log("handleDECIDING(isClient=%s): %s" % (self.isClient, header),
level=NOISY)
if self.debug_doTimer("handleDECIDING", 1,
self.handleDECIDING, header):
# for testing purposes, wait a moment before accepting the
# decision. This insures that we trigger the "Duplicate
# Broker" condition. NOTE: This will interact badly with the
# "there might be some leftover data for the next phase" call
# in dataReceived
return
decision = self.parseLines(header)
params = self.acceptDecision(decision)
self.switchToBanana(params)
def acceptDecision(self, decision):
"""This is called on the client end when it receives the results of
the negotiation from the server. The client must accept this decision
(and return the connection parameters dict), or raise
NegotiationError to hang up.negotiationResults."""
self.log("Banana.acceptDecision: got %s" % decision, level=OPERATIONAL)
version = decision.get('banana-decision-version')
if not version:
raise NegotiationError("No banana-decision-version value")
acceptfunc = getattr(self, "acceptDecisionVersion%d" % int(version))
if not acceptfunc:
raise NegotiationError("I cannot handle banana-decision-version "
"value of %d" % int(version))
return acceptfunc(decision)
def acceptDecisionVersion1(self, decision):
if decision.has_key("error"):
error = decision["error"]
raise RemoteNegotiationError("Banana negotiation failed: %s"
% error)
# parse the decision here, create the connection parameters dict
ver = int(decision['banana-decision-version'])
vocab_index_string = decision.get('initial-vocab-table-index')
if vocab_index_string:
vocab_index, vocab_hash = vocab_index_string.split()
vocab_index = int(vocab_index)
else:
vocab_index = 0
check_inrange(self.initialVocabTableRange[0],
self.initialVocabTableRange[1],
vocab_index, "initial vocab table index")
our_hash = vocab.hashVocabTable(vocab_index)
if vocab_index > 0 and our_hash != vocab_hash:
msg = ("Our hash for vocab-table-index %d (%s) does not match "
"your hash (%s)" % (vocab_index, our_hash, vocab_hash))
raise NegotiationError(msg)
if self.theirTubRef in self.tub.brokers:
# we're the slave, so we need to drop our existing connection and
# use the one picked by the master
self.log("master told us to use a new connection, "
"so we must drop the existing one", level=UNUSUAL)
err = DeadReferenceError("replaced by a new connection")
why = Failure(err)
self.tub.brokers[self.theirTubRef].shutdown(why)
current_connection = decision.get('current-connection')
if current_connection:
tubID = self.theirTubRef.getTubID()
if tubID != "<unauth>":
self.tub.slave_table[tubID] = tuple(current_connection.split())
else:
self.log("no current-connection in decision from %s" %
self.theirTubRef, level=UNUSUAL)
params = { 'banana-decision-version': ver,
'initial-vocab-table-index': vocab_index,
}
return params
def acceptDecisionVersion2(self, decision):
# this only affects the interpretation of reqID=0, so we can use the
# same accept function
return self.acceptDecisionVersion1(decision)
def acceptDecisionVersion3(self, decision):
# this adds PING and PONG tokens, so we can use the same accept
# function
return self.acceptDecisionVersion1(decision)
def loopbackDecision(self):
# if we were talking to ourselves, what negotiation decision would we
# reach? This is used for loopback connections
max_vocab = self.initialVocabTableRange[1]
params = { 'banana-decision-version': self.maxVersion,
'initial-vocab-table-index': max_vocab,
}
return params
def startTLS(self, cert):
# the TLS connection (according to glyph) is "ready" immediately, but
# really the negotiation is going on behind the scenes (OpenSSL is
# trying a little too hard to be transparent). I think you have to
# write some bytes to trigger the negotiation. getPeerCertificate()
# can't be called until you receive some bytes, so grab it when a
# negotiation block arrives that claims to have an authenticated
# TubID.
# Instead of this:
# opts = self.tub.myCertificate.options()
# We use the MyOptions class to fix up the verify stuff: we request a
# certificate from the client, but do not verify it against a list of
# root CAs
self.log("startTLS, client=%s" % self.isClient)
kwargs = {}
if cert:
kwargs['privateKey'] = cert.privateKey.original
kwargs['certificate'] = cert.original
opts = crypto.MyOptions(**kwargs)
self.transport.startTLS(opts)
def switchToBanana(self, params):
# switch over to the new protocol (a Broker instance). This
# Negotiation protocol goes away after this point.
lp = self.log("Negotiate.switchToBanana(isClient=%s)" % self.isClient,
level=NOISY)
self.log("params: %s" % (params,), parent=lp)
self.stopNegotiationTimer()
if self.isClient:
theirTubRef = self.target
else:
theirTubRef = self.theirTubRef
b = self.brokerClass(theirTubRef, params,
self.tub.keepaliveTimeout,
self.tub.disconnectTimeout,
)
b.factory = self.factory # not used for PB code
b.setTub(self.tub)
# we leave ourselves as the protocol, but redirect incoming messages
# (from the transport) to the broker
#self.transport.protocol = b
self.dataReceived = b.dataReceived
self.connectionLost = b.connectionLost
b.makeConnection(self.transport)
buf, self.buffer = self.buffer, "" # empty our buffer, just in case
b.dataReceived(buf) # and hand it to the new protocol
# if we were created as a client, we'll have a TubConnector. Let them
# know that this connection has succeeded, so they can stop any other
# connection attempts still in progress.
if self.isClient:
self.connector.negotiationComplete(self.factory)
# finally let our Tub know that they can start using the new Broker.
# This will wake up anyone who initiated an outbound connection.
self.tub.connectionAttached(b)
self.tub.brokerAttached(theirTubRef, b, self.isClient)
def negotiationFailed(self):
reason = self.failureReason
self.stopNegotiationTimer()
if self.receive_phase != ABANDONED and self.isClient:
eventually(self.connector.negotiationFailed, self.factory, reason)
self.receive_phase = ABANDONED
cb = self.options.get("debug_negotiationFailed_cb")
if cb:
# note that this gets called with a NegotiationError, not a
# Failure. ACTUALLY: not true, gets a Failure
eventually(cb, reason)
# Negotiations fail all the time, for benign reasons, so limit how
# much we log (the full Failure and traceback is frequently useless
# and noisy). Parallel connection-hints cause the slower connection
# to be rejected as a duplicate, as do full-mesh applications (like
# Tahoe) that construct cross-linked connections.
if reason.check(DuplicateConnection):
# this happens when we reject a connection during negotiation
self.log("negotiationFailed: DuplicateConnection",
level=NOISY, umid="XRFlRA")
elif reason.check(ConnectionDone):
# this happens to our other losing parallel connection attempts
self.log("negotiationFailed: ConnectionDone",
level=NOISY, umid="9khFxA")
elif reason.check(RemoteNegotiationError):
# and this is how the remote side tells us they rejected or
# abandoned a connection. Sometimes it's due to a duplicate
# connection, sometimes due to code problems. In either case, the
# traceback would only show local code, and is unhelpful.
self.log("negotiationFailed: remote: %s" % reason.value.args[0],
level=NOISY, umid="yAsbmA")
else:
# This shouldn't happen very often.
self.log("negotiationFailed", failure=reason,
level=OPERATIONAL, umid="pm2kjg")
# TODO: make sure code that examines self.receive_phase handles ABANDONED
class TubConnectorClientFactory(protocol.ClientFactory, object):
# this is for internal use only. Application code should use
# Tub.getReference(url)
noisy = False
def __init__(self, tc, host, logparent):
self.tc = tc # the TubConnector
self.host = host
self._logparent = logparent
def log(self, *args, **kwargs):
kwargs['parent'] = self._logparent
kwargs['facility'] = "foolscap.negotiation"
return log.msg(*args, **kwargs)
def __repr__(self):
# make it clear which remote Tub we're trying to connect to
base = object.__repr__(self)
at = base.find(" at ")
if at == -1:
# our annotation isn't really important, so don't fail just
# because we guessed the default __repr__ incorrectly
return base
if self.tc.tub.tubID:
origin = self.tc.tub.tubID[:8]
else:
origin = "<unauth>"
if self.tc.target.getTubID():
target = self.tc.target.getTubID()[:8]
else:
target = "<unauth>"
return base[:at] + " [from %s]" % origin + " [to %s]" % target + base[at:]
def startedConnecting(self, connector):
self.connector = connector
def startFactory(self):
self.log("Starting factory %r" % self)
return protocol.ClientFactory.startFactory(self)
def stopFactory(self):
self.log("Stopping factory %r" % self)
return protocol.ClientFactory.stopFactory(self)
def disconnect(self):
self.log("told to disconnect")
self.connector.disconnect()
def buildProtocol(self, addr):
nc = self.tc.tub.negotiationClass # this is usually Negotiation
proto = nc(self._logparent)
proto.initClient(self.tc, self.host)
proto.factory = self
return proto
def clientConnectionFailed(self, connector, reason):
self.tc.clientConnectionFailed(self, reason)
class TubConnector(object):
"""I am used to make an outbound connection. I am given a target TubID
and a list of locationHints, and I try all of them until I establish a
Broker connected to the target. I will consider redirections returned
along the way. The first hint that yields a connected Broker will stop
the search. If targetTubID is None, we are going to make an unencrypted
connection.
This is a single-use object. The connection attempt begins as soon as my
connect() method is called.
I live until all but one of the TCP connections I initiated have finished
closing down. This means that connection establishment attempts in
progress are cancelled, and established connections (the ones which did
*not* complete negotiation before the winning connection) have called
their connectionLost() methods.
"""
failureReason = None
CONNECTION_TIMEOUT = 60
timer = None
def __init__(self, parent, tubref):
self._logparent = log.msg(format="TubConnector created from "
"%(fromtubid)s to %(totubid)s",
fromtubid=parent.tubID,
totubid=tubref.getTubID(),
level=OPERATIONAL,
facility="foolscap.connection")
self.tub = parent
self.target = tubref
hints = []
# filter out the hints that we can actually use.. there may be
# extensions from the future sitting in this list
for h in self.target.getLocations():
if h[0] == "ipv4":
(host, port) = h[1:]
hints.append( (host, port) )
self.remainingLocations = hints
# attemptedLocations keeps track of where we've already tried to
# connect, so we don't try them twice.
self.attemptedLocations = []
# pendingConnections contains a (PBClientFactory -> Connector) map
# for pairs where connectTCP has started, but negotiation has not yet
# completed. We keep track of these so we can shut them down when we
# stop connecting (either because one of the connections succeeded,
# or because someone told us to give up).
self.pendingConnections = {}
def __repr__(self):
s = object.__repr__(self)
s = s[:-1]
s += " from %s to %s>" % (self.tub.tubID, self.target.getTubID())
return s
def log(self, *args, **kwargs):
kwargs['parent'] = self._logparent
kwargs['facility'] = "foolscap.connection"
return log.msg(*args, **kwargs)
def connect(self):
"""Begin the connection process. This should only be called once.
This will either result in the successful Negotiation object invoking
the parent Tub's brokerAttached() method, our us calling the Tub's
connectionFailed() method."""
self.tub.connectorStarted(self)
if not self.remainingLocations:
# well, that's going to make it difficult. connectToAll() will
# pass through to checkForFailure(), which will notice our lack
# of options and deliver this failureReason to the caller.
self.failureReason = Failure(NoLocationHintsError())
timeout = self.tub.options.get('connect_timeout',
self.CONNECTION_TIMEOUT)
self.timer = reactor.callLater(timeout, self.connectionTimedOut)
self.active = True
self.connectToAll()
def stopConnectionTimer(self):
if self.timer:
self.timer.cancel()
del self.timer
def shutdown(self):
self.active = False
self.remainingLocations = []
self.stopConnectionTimer()
for c in self.pendingConnections.values():
c.disconnect()
# as each disconnect() finishes, it will either trigger our
# clientConnectionFailed or our negotiationFailed methods, both of
# which will trigger checkForIdle, and the last such message will
# invoke self.tub.connectorFinished()
def connectToAll(self):
while self.remainingLocations:
location = self.remainingLocations.pop()
if location in self.attemptedLocations:
continue
self.attemptedLocations.append(location)
host, port = location
lp = self.log("connectTCP to %s" % (location,))
f = TubConnectorClientFactory(self, host, lp)
c = reactor.connectTCP(host, port, f)
self.pendingConnections[f] = c
# the tcp.Connector that we get back from reactor.connectTCP will
# retain a reference to the transport that it creates, so we can
# use it to disconnect the established (but not yet negotiated)
# connection
if self.tub.options.get("debug_stall_second_connection"):
# for unit tests, hold off on making the second connection
# for a moment. This allows the first connection to get to a
# known state.
reactor.callLater(0.1, self.connectToAll)
return
self.checkForFailure()
def connectionTimedOut(self):
self.timer = None
why = "no connection established within client timeout"
self.failureReason = Failure(NegotiationError(why))
self.shutdown()
self.failed()
def clientConnectionFailed(self, factory, reason):
# this is called if some individual TCP connection cannot be
# established
if not self.failureReason:
self.failureReason = reason
del self.pendingConnections[factory]
self.checkForFailure()
self.checkForIdle()
def redirectReceived(self, newLocation):
# the redirected connection will disconnect soon, which will trigger
# negotiationFailed(), so we don't have to do a
# del self.pendingConnections[factory]
self.remainingLocations.append(newLocation)
self.connectToAll()
def negotiationFailed(self, factory, reason):
# this is called if protocol negotiation cannot be established, or if
# the connection is closed for any reason prior to switching to the
# Banana protocol
assert isinstance(reason, Failure), \
"Hey, %s isn't a Failure" % (reason,)
if (not self.failureReason or
isinstance(reason, NegotiationError)):
# don't let mundane things like ConnectionFailed override the
# actually significant ones like NegotiationError
self.failureReason = reason
del self.pendingConnections[factory]
self.checkForFailure()
self.checkForIdle()
def negotiationComplete(self, factory):
# 'factory' has just completed negotiation, so abandon all the other
# connection attempts
self.log("negotiationComplete, %s won" % factory)
self.active = False
if self.timer:
self.timer.cancel()
self.timer = None
del self.pendingConnections[factory] # this one succeeded
for f in self.pendingConnections.keys(): # abandon the others
# for connections that are not yet established, this will trigger
# clientConnectionFailed. For connections that are established
# (and exchanging negotiation messages), this does
# loseConnection() and will thus trigger negotiationFailed.
f.disconnect()
self.checkForIdle()
def checkForFailure(self):
if not self.active:
return
if self.remainingLocations:
return
if self.pendingConnections:
return
# we have no more options, so the connection attempt will fail. The
# getBrokerForTubRef may have succeeded, however, if the other side
# tried to connect to us at exactly the same time, they were the
# master, they established their connection first (but the final
# decision is still in flight), and they hung up on our connection
# because they felt it was a duplicate. So, if self.failureReason
# indicates a duplicate connection, do not signal a failure here. We
# leave the connection timer in place in case they lied about having
# a duplicate connection ready to go.
if (self.failureReason.check(RemoteNegotiationError) and
isSubstring(self.failureReason.value.args[0],
"Duplicate connection")):
self.log("TubConnector.checkForFailure: connection attempt "
"failed because the other end decided ours was a "
"duplicate connection, so we won't signal the "
"failure here")
return
self.failed()
def failed(self):
self.stopConnectionTimer()
self.active = False
self.tub.connectionFailed(self.target, self.failureReason)
self.tub.connectorFinished(self)
def checkForIdle(self):
if self.remainingLocations:
return
if self.pendingConnections:
return
# we have no more outstanding connections (either in progress or in
# negotiation), so this connector is finished.
self.log("connectorFinished (%s)" % self)
self.tub.connectorFinished(self)
|