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
|
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import with_statement
import os
import sys
import six
import shlex
import tempfile
import functools
from io import StringIO
from os.path import dirname, exists
try:
from collections.abc import Sequence
except ImportError:
from collections import Sequence
from twisted.python import log
from twisted.python.failure import Failure
from twisted.internet.defer import inlineCallbacks, returnValue, Deferred, succeed, fail
from twisted.internet import protocol, error
from twisted.internet.endpoints import TCP4ClientEndpoint
from twisted.internet.endpoints import UNIXClientEndpoint
from twisted.internet.interfaces import IReactorTime, IReactorCore
from twisted.internet.interfaces import IStreamClientEndpoint
from zope.interface import implementer
from txtorcon.util import delete_file_or_tree, find_keywords
from txtorcon.util import find_tor_binary, available_tcp_port
from txtorcon.log import txtorlog
from txtorcon.torcontrolprotocol import TorProtocolFactory
from txtorcon.torstate import TorState
from txtorcon.torconfig import TorConfig
from txtorcon.endpoints import TorClientEndpoint, _create_socks_endpoint
from txtorcon.endpoints import TCPHiddenServiceEndpoint
from txtorcon.onion import EphemeralOnionService, FilesystemOnionService, _validate_ports
from txtorcon.util import _is_non_public_numeric_address
from . import socks
from .interface import ITor
try:
from .controller_py3 import _AsyncOnionAuthContext
HAVE_ASYNC = True
except Exception:
HAVE_ASYNC = False
if sys.platform in ('linux', 'linux2', 'darwin'):
import pwd
@inlineCallbacks
def launch(reactor,
progress_updates=None,
control_port=None,
data_directory=None,
socks_port=None,
non_anonymous_mode=None,
stdout=None,
stderr=None,
timeout=None,
tor_binary=None,
user=None, # XXX like the config['User'] special-casing from before
# 'users' probably never need these:
connection_creator=None,
kill_on_stderr=True,
_tor_config=None, # a TorConfig instance, mostly for tests
):
"""
launches a new Tor process, and returns a Deferred that fires with
a new :class:`txtorcon.Tor` instance. From this instance, you can
create or get any "interesting" instances you need: the
:class:`txtorcon.TorConfig` instance, create endpoints, create
:class:`txtorcon.TorState` instance(s), etc.
Note that there is NO way to pass in a config; we only expost a
couple of basic Tor options. If you need anything beyond these,
you can access the ``TorConfig`` instance (via ``.config``)
and make any changes there, reflecting them in tor with
``.config.save()``.
You can igore all the options and safe defaults will be
provided. However, **it is recommended to pass data_directory**
especially if you will be starting up Tor frequently, as it saves
a bunch of time (and bandwidth for the directory
authorities). "Safe defaults" means:
- a tempdir for a ``DataDirectory`` is used (respecting ``TMP``)
and is deleted when this tor is shut down (you therefore
*probably* want to supply the ``data_directory=`` kwarg);
- a random, currently-unused local TCP port is used as the
``SocksPort`` (specify ``socks_port=`` if you want your
own). If you want no SOCKS listener at all, pass
``socks_port=0``
- we set ``__OwningControllerProcess`` and call
``TAKEOWNERSHIP`` so that if our control connection goes away,
tor shuts down (see `control-spec
<https://gitweb.torproject.org/torspec.git/blob/HEAD:/control-spec.txt>`_
3.23).
- the launched Tor will use ``COOKIE`` authentication.
:param reactor: a Twisted IReactorCore implementation (usually
twisted.internet.reactor)
:param progress_updates: a callback which gets progress updates; gets 3
args: percent, tag, summary (FIXME make an interface for this).
:param data_directory: set as the ``DataDirectory`` option to Tor,
this is where tor keeps its state information (cached relays,
etc); starting with an already-populated state directory is a lot
faster. If ``None`` (the default), we create a tempdir for this
**and delete it on exit**. It is recommended you pass something here.
:param non_anonymous_mode: sets the Tor options
`HiddenServiceSingleHopMode` and
`HiddenServiceNonAnonymousMode` to 1 and un-sets any
`SOCKSPort` config, thus putting this Tor client into
"non-anonymous mode" which allows starting so-called Single
Onion services -- which use single-hop circuits to rendezvous
points. See WARNINGs in Tor manual! Also you need Tor
`0.3.4.1` or later (e.g. any `0.3.5.*` or newer) for this to
work properly.
:param stdout: a file-like object to which we write anything that
Tor prints on stdout (just needs to support write()).
:param stderr: a file-like object to which we write anything that
Tor prints on stderr (just needs .write()). Note that we kill
Tor off by default if anything appears on stderr; pass
"kill_on_stderr=False" if you don't want this behavior.
:param tor_binary: path to the Tor binary to run. If None (the
default), we try to find the tor binary.
:param kill_on_stderr:
When True (the default), if Tor prints anything on stderr we
kill off the process, close the TorControlProtocol and raise
an exception.
:param connection_creator: is mostly available to ease testing, so
you probably don't want to supply this. If supplied, it is a
callable that should return a Deferred that delivers an
:api:`twisted.internet.interfaces.IProtocol <IProtocol>` or
ConnectError.
See :api:`twisted.internet.interfaces.IStreamClientEndpoint`.connect
Note that this parameter is ignored if config.ControlPort == 0
:return: a Deferred which callbacks with :class:`txtorcon.Tor`
instance, from which you can retrieve the TorControlProtocol
instance via the ``.protocol`` property.
HACKS:
1. It's hard to know when Tor has both (completely!) written its
authentication cookie file AND is listening on the control
port. It seems that waiting for the first 'bootstrap' message on
stdout is sufficient. Seems fragile...and doesn't work 100% of
the time, so FIXME look at Tor source.
XXX this "User" thing was, IIRC, a feature for root-using scripts
(!!) that were going to launch tor, but where tor would drop to a
different user. Do we still want to support this? Probably
relevant to Docker (where everything is root! yay!)
``User``: if this exists, we attempt to set ownership of the tempdir
to this user (but only if our effective UID is 0).
"""
# We have a slight problem with the approach: we need to pass a
# few minimum values to a torrc file so that Tor will start up
# enough that we may connect to it. Ideally, we'd be able to
# start a Tor up which doesn't really do anything except provide
# "AUTHENTICATE" and "GETINFO config/names" so we can do our
# config validation.
if not IReactorCore.providedBy(reactor):
raise ValueError(
"'reactor' argument must provide IReactorCore"
" (got '{}': {})".format(
type(reactor).__class__.__name__,
repr(reactor)
)
)
if tor_binary is None:
tor_binary = find_tor_binary()
if tor_binary is None:
# We fail right here instead of waiting for the reactor to start
raise TorNotFound('Tor binary could not be found')
# make sure we got things that have write() for stderr, stdout
# kwargs (XXX is there a "better" way to check for file-like
# object? do we use anything besides 'write()'?)
for arg in [stderr, stdout]:
if arg and not getattr(arg, "write", None):
raise RuntimeError(
'File-like object needed for stdout or stderr args.'
)
config = _tor_config or TorConfig()
if data_directory is not None:
user_set_data_directory = True
config.DataDirectory = data_directory
try:
os.mkdir(data_directory, 0o0700)
except OSError:
pass
else:
user_set_data_directory = False
data_directory = tempfile.mkdtemp(prefix='tortmp')
config.DataDirectory = data_directory
# note: we also set up the ProcessProtocol to delete this when
# Tor exits, this is "just in case" fallback:
reactor.addSystemEventTrigger(
'before', 'shutdown',
functools.partial(delete_file_or_tree, data_directory)
)
# things that used launch_tor() had to set ControlPort and/or
# SocksPort on the config to pass them, so we honour that here.
if control_port is None and _tor_config is not None:
try:
control_port = config.ControlPort
except KeyError:
control_port = None
if socks_port is None and _tor_config is not None:
try:
socks_port = config.SocksPort
except KeyError:
socks_port = None
if non_anonymous_mode:
if socks_port is not None:
raise ValueError(
"Cannot use SOCKS options with non_anonymous_mode=True"
)
config.HiddenServiceNonAnonymousMode = 1
config.HiddenServiceSingleHopMode = 1
config.SOCKSPort = 0
else:
if socks_port is None:
socks_port = yield available_tcp_port(reactor)
config.SOCKSPort = socks_port
try:
our_user = user or config.User
except KeyError:
pass
else:
# if we're root, make sure the directory is owned by the User
# that Tor is configured to drop to
if sys.platform in ('linux', 'linux2', 'darwin') and os.geteuid() == 0:
os.chown(data_directory, pwd.getpwnam(our_user).pw_uid, -1)
# user can pass in a control port, or we set one up here
if control_port is None:
# on posix-y systems, we can use a unix-socket
if sys.platform in ('linux', 'linux2', 'darwin'):
# note: tor will not accept a relative path for ControlPort
control_port = 'unix:{}'.format(
os.path.join(os.path.realpath(data_directory), 'control.socket')
)
else:
control_port = yield available_tcp_port(reactor)
else:
if str(control_port).startswith('unix:'):
control_path = control_port.lstrip('unix:')
containing_dir = dirname(control_path)
if not exists(containing_dir):
raise ValueError(
"The directory containing '{}' must exist".format(
containing_dir
)
)
# Tor will be sad if the directory isn't 0700
mode = (0o0777 & os.stat(containing_dir).st_mode)
if mode & ~(0o0700):
raise ValueError(
"The directory containing a unix control-socket ('{}') "
"must only be readable by the user".format(containing_dir)
)
config.ControlPort = control_port
config.CookieAuthentication = 1
config.__OwningControllerProcess = os.getpid()
if connection_creator is None:
if str(control_port).startswith('unix:'):
connection_creator = functools.partial(
UNIXClientEndpoint(reactor, control_port[5:]).connect,
TorProtocolFactory()
)
else:
connection_creator = functools.partial(
TCP4ClientEndpoint(reactor, 'localhost', control_port).connect,
TorProtocolFactory()
)
# not an "else" on purpose; if we passed in "control_port=0" *and*
# a custom connection creator, we should still set this to None so
# it's never called (since we can't connect with ControlPort=0)
if control_port == 0:
connection_creator = None
# NOTE well, that if we don't pass "-f" then Tor will merrily load
# its default torrc, and apply our options over top... :/ should
# file a bug probably? --no-defaults or something maybe? (does
# --defaults-torrc - or something work?)
config_args = ['-f', '/dev/null/non-existant-on-purpose', '--ignore-missing-torrc']
# ...now add all our config options on the command-line. This
# avoids writing a temporary torrc.
for (k, v) in config.config_args():
config_args.append(k)
config_args.append(v)
process_protocol = TorProcessProtocol(
connection_creator,
progress_updates,
config, reactor,
timeout,
kill_on_stderr,
stdout,
stderr,
)
if control_port == 0:
connected_cb = succeed(None)
else:
connected_cb = process_protocol.when_connected()
# we set both to_delete and the shutdown events because this
# process might be shut down way before the reactor, but if the
# reactor bombs out without the subprocess getting closed cleanly,
# we'll want the system shutdown events triggered so the temporary
# files get cleaned up either way
# we don't want to delete the user's directories, just temporary
# ones this method created.
if not user_set_data_directory:
process_protocol.to_delete = [data_directory]
reactor.addSystemEventTrigger(
'before', 'shutdown',
functools.partial(delete_file_or_tree, data_directory)
)
log.msg('Spawning tor process with DataDirectory', data_directory)
args = [tor_binary] + config_args
transport = reactor.spawnProcess(
process_protocol,
tor_binary,
args=args,
env={'HOME': data_directory},
path=data_directory if os.path.exists(data_directory) else None, # XXX error if it doesn't exist?
)
transport.closeStdin()
proto = yield connected_cb
# note "proto" here is a TorProcessProtocol
# we might need to attach this protocol to the TorConfig
if config.protocol is None and proto is not None and proto.tor_protocol is not None:
# proto is None in the ControlPort=0 case
yield config.attach_protocol(proto.tor_protocol)
# note that attach_protocol waits for the protocol to be
# boostrapped if necessary
returnValue(
Tor(
reactor,
config.protocol,
_tor_config=config,
_process_proto=process_protocol,
_non_anonymous=True if non_anonymous_mode else False,
)
)
@inlineCallbacks
def connect(reactor, control_endpoint=None, password_function=None):
"""
Creates a :class:`txtorcon.Tor` instance by connecting to an
already-running tor's control port. For example, a common default
tor uses is UNIXClientEndpoint(reactor, '/var/run/tor/control') or
TCP4ClientEndpoint(reactor, 'localhost', 9051)
If only password authentication is available in the tor we connect
to, the ``password_function`` is called (if supplied) to retrieve
a valid password. This function can return a Deferred.
For example::
import txtorcon
from twisted.internet.task import react
from twisted.internet.defer import inlineCallbacks
@inlineCallbacks
def main(reactor):
tor = yield txtorcon.connect(
TCP4ClientEndpoint(reactor, "localhost", 9051)
)
state = yield tor.create_state()
for circuit in state.circuits:
print(circuit)
:param control_endpoint: None, an IStreamClientEndpoint to connect
to, or a Sequence of IStreamClientEndpoint instances to connect
to. If None, a list of defaults are tried.
:param password_function:
See :class:`txtorcon.TorControlProtocol`
:return:
a Deferred that fires with a :class:`txtorcon.Tor` instance
"""
@inlineCallbacks
def try_endpoint(control_ep):
assert IStreamClientEndpoint.providedBy(control_ep)
proto = yield control_ep.connect(
TorProtocolFactory(
password_function=password_function
)
)
config = yield TorConfig.from_protocol(proto)
tor = Tor(reactor, proto, _tor_config=config)
returnValue(tor)
if control_endpoint is None:
to_try = [
UNIXClientEndpoint(reactor, '/var/run/tor/control'),
TCP4ClientEndpoint(reactor, '127.0.0.1', 9051),
TCP4ClientEndpoint(reactor, '127.0.0.1', 9151),
]
elif IStreamClientEndpoint.providedBy(control_endpoint):
to_try = [control_endpoint]
elif isinstance(control_endpoint, Sequence):
to_try = control_endpoint
for ep in control_endpoint:
if not IStreamClientEndpoint.providedBy(ep):
raise ValueError(
"For control_endpoint=, '{}' must provide"
" IStreamClientEndpoint".format(ep)
)
else:
raise ValueError(
"For control_endpoint=, '{}' must provide"
" IStreamClientEndpoint".format(control_endpoint)
)
errors = []
for idx, ep in enumerate(to_try):
try:
tor = yield try_endpoint(ep)
txtorlog.msg("Connected via '{}'".format(ep))
returnValue(tor)
except Exception as e:
errors.append(e)
if len(errors) == 1:
raise errors[0]
raise RuntimeError(
'Failed to connect to: {}'.format(
', '.join(
'{}: {}'.format(ep, err) for ep, err in zip(to_try, errors)
)
)
)
@implementer(ITor)
class Tor(object):
"""
I represent a single instance of Tor and act as a Builder/Factory
for several useful objects you will probably want. There are two
ways to create a Tor instance:
- :func:`txtorcon.connect` to connect to a Tor that is already
running (e.g. Tor Browser Bundle, a system Tor, ...).
- :func:`txtorcon.launch` to launch a fresh Tor instance
The stable API provided by this class is :class:`txtorcon.interface.ITor`
If you desire more control, there are "lower level" APIs which are
the very ones used by this class. However, this "highest level"
API should cover many use-cases::
import txtorcon
@inlineCallbacks
def main(reactor):
# tor = yield txtorcon.connect(UNIXClientEndpoint(reactor, "/var/run/tor/control"))
tor = yield txtorcon.launch(reactor)
onion_ep = tor.create_onion_endpoint(port=80)
port = yield onion_ep.listen(Site())
print(port.getHost())
"""
def __init__(self, reactor, control_protocol, _tor_config=None, _process_proto=None, _non_anonymous=None):
"""
don't instantiate this class yourself -- instead use the factory
methods :func:`txtorcon.launch` or :func:`txtorcon.connect`
"""
self._protocol = control_protocol
self._config = _tor_config
self._reactor = reactor
# this only passed/set when we launch()
self._process_protocol = _process_proto
# cache our preferred socks port (please use
# self._default_socks_endpoint() to get one)
self._socks_endpoint = None
# True if we've turned on non-anonymous mode / Onion services
self._non_anonymous = _non_anonymous
@inlineCallbacks
def quit(self):
"""
Closes the control connection, and if we launched this Tor
instance we'll send it a TERM and wait until it exits.
"""
if self._protocol is not None:
yield self._protocol.quit()
if self._process_protocol is not None:
yield self._process_protocol.quit()
if self._protocol is None and self._process_protocol is None:
raise RuntimeError(
"This Tor has no protocol instance; we can't quit"
)
if self._protocol is not None:
yield self._protocol.on_disconnect
@property
def process(self):
"""
An object implementing
:api:`twisted.internet.interfaces.IProcessProtocol` if this
Tor instance was launched, or None.
"""
if self._process_protocol:
return self._process_protocol
return None
@property
def protocol(self):
"""
The TorControlProtocol instance that is communicating with this
Tor instance.
"""
return self._protocol
@property
def version(self):
return self._protocol.version
@inlineCallbacks
def get_config(self):
"""
:return: a Deferred that fires with a TorConfig instance. This
instance represents up-to-date configuration of the tor
instance (even if another controller is connected). If you
call this more than once you'll get the same TorConfig back.
"""
if self._config is None:
self._config = yield TorConfig.from_protocol(self._protocol)
returnValue(self._config)
def web_agent(self, pool=None, socks_endpoint=None):
"""
:param socks_endpoint: If ``None`` (the default), a suitable
SOCKS port is chosen from our config (or added). If supplied,
should be a Deferred which fires an IStreamClientEndpoint
(e.g. the return-value from
:meth:`txtorcon.TorConfig.socks_endpoint`) or an immediate
IStreamClientEndpoint You probably don't need to mess with
this.
:param pool: passed on to the Agent (as ``pool=``)
"""
if self._non_anonymous:
raise Exception(
"Cannot use web_agent when in non_anonymous mode"
)
# local import since not all platforms have this
from txtorcon import web
if socks_endpoint is None:
socks_endpoint = _create_socks_endpoint(self._reactor, self._protocol)
if not isinstance(socks_endpoint, Deferred):
if not IStreamClientEndpoint.providedBy(socks_endpoint):
raise ValueError(
"'socks_endpoint' should be a Deferred or an IStreamClient"
"Endpoint (got '{}')".format(type(socks_endpoint))
)
return web.tor_agent(
self._reactor,
socks_endpoint,
pool=pool,
)
@inlineCallbacks
def dns_resolve(self, hostname):
"""
:param hostname: a string
:returns: a Deferred that calbacks with the hostname as looked-up
via Tor (or errback). This uses Tor's custom extension to the
SOCKS5 protocol.
"""
socks_ep = yield self._default_socks_endpoint()
ans = yield socks.resolve(socks_ep, hostname)
returnValue(ans)
@inlineCallbacks
def dns_resolve_ptr(self, ip):
"""
:param ip: a string, like "127.0.0.1"
:returns: a Deferred that calbacks with the IP address as
looked-up via Tor (or errback). This uses Tor's custom
extension to the SOCKS5 protocol.
"""
socks_ep = yield self._default_socks_endpoint()
ans = yield socks.resolve_ptr(socks_ep, ip)
returnValue(ans)
@inlineCallbacks
def add_onion_authentication(self, onion_host, token):
"""
Add a client-side authentication token for a particular Onion
service.
"""
# if we add the same onion twice, Tor rejects us. We throw an
# error if we already have that .onion but the incoming token
# doesn't match
if isinstance(onion_host, bytes):
onion_host = onion_host.decode('ascii')
config = yield self.get_config()
tokens = {
servauth.split()[0]: servauth.split()[1]
for servauth in config.HidServAuth
}
try:
maybe_token = tokens[onion_host]
if maybe_token != token:
raise ValueError(
"Token conflict for host '{}'".format(onion_host)
)
return
except KeyError:
pass
# add our onion + token combo
config.HidServAuth.append(
u"{} {}".format(onion_host, token)
)
yield config.save()
@inlineCallbacks
def remove_onion_authentication(self, onion_host):
"""
Remove a token for an onion host
:returns: True if successful, False if there wasn't a token
for that host.
"""
if isinstance(onion_host, bytes):
onion_host = onion_host.decode('ascii')
config = yield self.get_config()
to_remove = None
for auth in config.HidServAuth:
host, token = auth.split()
if host == onion_host:
to_remove = auth
if to_remove is not None:
config.HidServAuth.remove(to_remove)
yield config.save()
returnValue(True)
returnValue(False)
def onion_authentication(self, onion_host, token):
"""
(Python3 only!) This returns an async context-manager that will
add and remove onion authentication. For example, inside an
`async def` method that's had `ensureDeferred` called on it::
async with tor.onion_authentication("timaq4ygg2iegci7.onion", "seekrit token"):
agent = tor.web_agent()
resp = await agent.request(b'GET', "http://timaq4ygg2iegci7.onion/")
body = await readBody(resp)
# after the "async with" the token will be removed from Tor's configuration
Under the hood, this just uses the add_onion_authentication
and remove_onion_authentication methods so on Python2 you can
use those together with try/finally to get the same effect.
"""
if not HAVE_ASYNC:
raise RuntimeError(
"async context-managers not supported in Python3.4 or lower"
)
return _AsyncOnionAuthContext(
self, onion_host, token
)
def stream_via(self, host, port, tls=False, socks_endpoint=None):
"""
This returns an IStreamClientEndpoint_ instance that will use this
Tor (via SOCKS) to visit the ``(host, port)`` indicated.
:param host: The host to connect to. You MUST pass host-names
to this. If you absolutely know that you've not leaked DNS
(e.g. you save IPs in your app's configuration or similar)
then you can pass an IP.
:param port: Port to connect to.
:param tls: If True, it will wrap the return endpoint in one
that does TLS (default: False).
:param socks_endpoint: Normally not needed (default: None)
but you can pass an IStreamClientEndpoint_ directed at one
of the local Tor's SOCKS5 ports (e.g. created with
:meth:`txtorcon.TorConfig.create_socks_endpoint`). Can be
a Deferred.
.. _IStreamClientEndpoint: https://twistedmatrix.com/documents/current/api/twisted.internet.interfaces.IStreamClientEndpoint.html
"""
if _is_non_public_numeric_address(host):
raise ValueError("'{}' isn't going to work over Tor".format(host))
if socks_endpoint is None:
socks_endpoint = self._default_socks_endpoint()
# socks_endpoint may be a a Deferred, but TorClientEndpoint handles it
return TorClientEndpoint(
host, port,
socks_endpoint=socks_endpoint,
tls=tls,
reactor=self._reactor,
)
def create_authenticated_onion_endpoint(self, port, auth, private_key=None, version=None):
"""
WARNING: API subject to change
When creating an authenticated Onion service a token is
created for each user. For 'stealth' authentication, the
hostname is also different for each user. The difference between
this method and :meth:`txtorcon.Tor.create_onion_endpoint` is
in this case the "onion_service" instance implements
:class:`txtorcon.IAuthenticatedOnionClients`.
:returns: an object that implements IStreamServerEndpoint,
which will create an "ephemeral" Onion service when
``.listen()`` is called. This uses the ``ADD_ONION`` Tor
control-protocol command. The object returned from
``.listen()`` will be a :class:TorOnionListeningPort``;
its ``.onion_service`` attribute will be a
:class:`txtorcon.IAuthenticatedOnionClients` instance.
:param port: the port to listen publically on the Tor network
on (e.g. 80 for a Web server)
:param private_key: if not None (the default), this should be
the same blob of key material that you received from the
:class:`txtorcon.IOnionService` object during a previous
run (i.e. from the ``.provate_key`` attribute).
:param version: if not None, a specific version of service to
use; version=3 is Proposition 224 and version=2 is the
older 1024-bit key based implementation.
:param auth: a AuthBasic or AuthStealth instance
"""
return TCPHiddenServiceEndpoint(
self._reactor, self.get_config(), port,
hidden_service_dir=None,
local_port=None,
ephemeral=True,
private_key=private_key,
version=version,
auth=auth,
)
def create_onion_endpoint(self, port, private_key=None, version=None, single_hop=None):
"""
WARNING: API subject to change
:returns: an object that implements IStreamServerEndpoint,
which will create an "ephemeral" Onion service when
``.listen()`` is called. This uses the ``ADD_ONION`` tor
control-protocol command. The object returned from
``.listen()`` will be a :class:TorOnionListeningPort``;
its ``.onion_service`` attribute will be a
:class:`txtorcon.IOnionService` instance.
:param port: the port to listen publically on the Tor network
on (e.g. 80 for a Web server)
:param private_key: if not None (the default), this should be
the same blob of key material that you received from the
:class:`txtorcon.IOnionService` object during a previous
run (i.e. from the ``.private_key`` attribute).
:param version: if not None, a specific version of service to
use; version=3 is Proposition 224 and version=2 is the
older 1024-bit key based implementation.
:param single_hop: if True, pass the `NonAnonymous` flag. Note
that Tor options `HiddenServiceSingleHopMode`,
`HiddenServiceNonAnonymousMode` must be set to `1` and there
must be no `SOCKSPort` configured for this to actually work.
"""
# note, we're just depending on this being The Ultimate
# Everything endpoint. Which seems fine, because "normal"
# users should use this or another factory-method to
# instantiate them...
return TCPHiddenServiceEndpoint(
self._reactor, self.get_config(), port,
hidden_service_dir=None,
local_port=None,
ephemeral=True,
private_key=private_key,
version=version,
auth=None,
single_hop=single_hop,
)
def create_filesystem_onion_endpoint(self, port, hs_dir, group_readable=False, version=None):
"""
WARNING: API subject to change
:returns: an object that implements IStreamServerEndpoint. When
the ``.listen()`` method is called, the endpoint will create
an Onion service whose keys are on disk when ``.listen()`` is
called. The object returned from ``.listen()`` will be a
:class:TorOnionListeningPort``; its ``.onion_service``
attribute will be a :class:`txtorcon.IOnionService` instance.
:param port: the port to listen publically on the Tor network
on (e.g. 80 for a Web server)
:param hs_dir: the directory in which keys are stored for this
service.
:param group_readable: controls the Tor
`HiddenServiceDirGroupReadable` which will either set (or not)
group read-permissions on the hs_dir.
:param version: if not None, a specific version of service to
use; version=3 is Proposition 224 and version=2 is the
older 1024-bit key based implementation. The default is version 3.
"""
return TCPHiddenServiceEndpoint(
self._reactor, self.get_config(), port,
hidden_service_dir=hs_dir,
local_port=None,
ephemeral=False,
private_key=None,
group_readable=int(group_readable),
version=version,
auth=None,
)
def create_filesystem_authenticated_onion_endpoint(self, port, hs_dir, auth, group_readable=False, version=None):
"""
WARNING: API subject to change
:returns: an object that implements IStreamServerEndpoint. When
the ``.listen()`` method is called, the endpoint will create
an Onion service whose keys are on disk when ``.listen()`` is
called. The object returned from ``.listen()`` will be a
:class:TorOnionListeningPort``; its ``.onion_service``
attribute will be a :class:`txtorcon.IOnionService` instance.
:param port: the port to listen publically on the Tor network
on (e.g. 80 for a Web server)
:param hs_dir: the directory in which keys are stored for this
service.
:param auth: instance of :class:`txtorcon.AuthBasic` or
:class:`txtorcon.AuthStealth` controlling the type of
authentication to use.
:param group_readable: controls the Tor
`HiddenServiceDirGroupReadable` which will either set (or not)
group read-permissions on the hs_dir.
:param version: if not None, a specific version of service to
use; version=3 is Proposition 224 and version=2 is the
older 1024-bit key based implementation. The default is version 3.
"""
return TCPHiddenServiceEndpoint(
self._reactor, self.get_config(), port,
hidden_service_dir=hs_dir,
local_port=None,
ephemeral=False,
private_key=None,
group_readable=int(group_readable),
version=version,
auth=auth,
)
# XXX or get_state()? and make there be always 0 or 1 states; cf. convo w/ Warner
@inlineCallbacks
def create_state(self):
"""
returns a Deferred that fires with a ready-to-go
:class:`txtorcon.TorState` instance.
"""
state = TorState(self.protocol)
yield state.post_bootstrap
returnValue(state)
def __str__(self):
return "<Tor version='{tor_version}'>".format(
tor_version=self._protocol.version,
)
@inlineCallbacks
def is_ready(self):
"""
:return: a Deferred that fires with True if this Tor is
non-dormant and ready to go. This will return True if `GETINFO
dormant` is false or if `GETINFO status/enough-dir-info` is
true or if `GETINFO status/circuit-established` true.
"""
info = yield self.protocol.get_info(
"dormant",
"status/enough-dir-info",
"status/circuit-established",
)
returnValue(
not(
int(info["dormant"]) or
not int(info["status/enough-dir-info"]) or
not int(info["status/circuit-established"])
)
)
@inlineCallbacks
def become_ready(self):
"""
Make sure Tor is no longer dormant.
If Tor is currently dormant, it is woken up by doing a DNS
request for torproject.org
"""
ready = yield self.is_ready()
if not ready:
yield self.dns_resolve(u'torproject.org')
return
@inlineCallbacks
def _default_socks_endpoint(self):
"""
Returns a Deferred that fires with our default SOCKS endpoint
(which might mean setting one up in our attacked Tor if it
doesn't have one)
"""
if self._non_anonymous:
raise Exception(
"Cannot use SOCKS when in non_anonymous mode"
)
if self._socks_endpoint is None:
self._socks_endpoint = yield _create_socks_endpoint(self._reactor, self._protocol)
returnValue(self._socks_endpoint)
# For all these create_*() methods, instead of magically computing
# the class-name from arguments (e.g. we could decide "it's a
# Filesystem thing" if "hidden_service_dir=" is passed) we have an
# explicit method for each type of service. This means each method
# always returns the same type of object (good!) and user-code is
# more explicit about what they want (also good!) .. but the
# method names are kind of long (not-ideal)
@inlineCallbacks
def create_onion_service(self, ports, private_key=None, version=3,
progress=None, await_all_uploads=False,
single_hop=None, detach=None):
"""
Create a new Onion service
This method will create a new Onion service, returning (via
Deferred) an instance that implements IOnionService. (To
create authenticated onion services, see XXX). This method
awaits at least one upload of the Onion service's 'descriptor'
to the Tor network -- this can take from 30s to a couple
minutes.
:param private_key: None, ``txtorcon.DISCARD`` or a key-blob
retained from a prior run
Passing ``None`` means a new one will be created. It can be
retrieved from the ``.private_key`` property of the returned
object. You **must** retain this key yourself (and pass it in
to this method in the future) if you wish to keep the same
``.onion`` domain when re-starting your program.
Passing ``txtorcon.DISCARD`` means txtorcon will never learn the
private key from Tor and so there will be no way to re-create
an Onion Service on the same address after Tor exits.
:param version: The latest Tor releases support 'Proposition
224' (version 3) services. These are the default.
:param progress: if provided, a function that takes 3
arguments: ``(percent_done, tag, description)`` which may
be called any number of times to indicate some progress has
been made.
:param await_all_uploads: if False (the default) then we wait
until at least one upload of our Descriptor to a Directory
Authority has completed; if True we wait until all have
completed.
:param single_hop: if True, pass the `NonAnonymous` flag. Note
that Tor options `HiddenServiceSingleHopMode`,
`HiddenServiceNonAnonymousMode` must be set to `1` and there
must be no `SOCKSPort` configured for this to actually work.
:param detach: if True, the created service won't be tied to
this control connection and will still be active when this
control-connection goes away (this means the service will
appear in `GETINFO onions/detached` to all other
controllers)
"""
if version not in (2, 3):
raise ValueError(
"The only valid Onion service versions are 2 or 3"
)
if not isinstance(ports, Sequence) or isinstance(ports, six.string_types):
raise ValueError("'ports' must be a sequence (list, tuple, ..)")
processed_ports = yield _validate_ports(self._reactor, ports)
config = yield self.get_config()
service = yield EphemeralOnionService.create(
reactor=self._reactor,
config=config,
ports=processed_ports,
private_key=private_key,
version=version,
progress=progress,
await_all_uploads=await_all_uploads,
single_hop=single_hop,
detach=detach,
)
returnValue(service)
@inlineCallbacks
def create_filesystem_onion_service(self, ports, onion_service_dir,
version=3,
group_readable=False,
progress=None,
await_all_uploads=False):
"""Create a new Onion service stored on disk
This method will create a new Onion service, returning (via
Deferred) an instance that implements IOnionService. (To
create authenticated onion services, see XXX). This method
awaits at least one upload of the Onion service's 'descriptor'
to the Tor network -- this can take from 30s to a couple
minutes.
:param ports: a collection of ports to advertise; these are
forwarded locally on a random port. Each entry may instead be
a 2-tuple, which chooses an explicit local port.
:param onion_service_dir: a path to an Onion Service
directory.
Tor will write a ``hostname`` file in this directory along
with the private keys for the service (if they do not already
exist). You do not need to retain the private key yourself.
:param version: which kind of Onion Service to create. The
default is ``3`` which are the Proposition 224
services. Version ``2`` are the previous services. There are
no other valid versions currently.
:param group_readable: if True, Tor creates the directory with
group read permissions. The default is False.
:param progress: if provided, a function that takes 3
arguments: ``(percent_done, tag, description)`` which may
be called any number of times to indicate some progress has
been made.
"""
if not isinstance(ports, Sequence) or isinstance(ports, six.string_types):
raise ValueError("'ports' must be a sequence (list, tuple, ..)")
processed_ports = yield _validate_ports(self._reactor, ports)
if version not in (2, 3):
raise ValueError(
"The only valid Onion service versions are 2 or 3"
)
config = yield self.get_config()
service = yield FilesystemOnionService.create(
reactor=self._reactor,
config=config,
hsdir=onion_service_dir,
ports=processed_ports,
version=version,
group_readable=group_readable,
progress=progress,
await_all_uploads=await_all_uploads,
)
returnValue(service)
class TorNotFound(RuntimeError):
"""
Raised by launch_tor() in case the tor binary was unspecified and could
not be found by consulting the shell.
"""
class TorProcessProtocol(protocol.ProcessProtocol):
def __init__(self, connection_creator, progress_updates=None, config=None,
ireactortime=None, timeout=None, kill_on_stderr=True,
stdout=None, stderr=None):
"""
This will read the output from a Tor process and attempt a
connection to its control port when it sees any 'Bootstrapped'
message on stdout. You probably don't need to use this
directly except as the return value from the
:func:`txtorcon.launch_tor` method. tor_protocol contains a
valid :class:`txtorcon.TorControlProtocol` instance by that
point.
connection_creator is a callable that should return a Deferred
that callbacks with a :class:`txtorcon.TorControlProtocol`;
see :func:`txtorcon.launch_tor` for the default one which is a
functools.partial that will call
``connect(TorProtocolFactory())`` on an appropriate
:api:`twisted.internet.endpoints.TCP4ClientEndpoint`
:param connection_creator: A no-parameter callable which
returns a Deferred which promises a
:api:`twisted.internet.interfaces.IStreamClientEndpoint
<IStreamClientEndpoint>`. If this is None, we do NOT
attempt to connect to the underlying Tor process.
:param progress_updates: A callback which received progress
updates with three args: percent, tag, summary
:param config: a TorConfig object to connect to the
TorControlProtocl from the launched tor (should it succeed)
:param ireactortime:
An object implementing IReactorTime (i.e. a reactor) which
needs to be supplied if you pass a timeout.
:param timeout:
An int representing the timeout in seconds. If we are
unable to reach 100% by this time we will consider the
setting up of Tor to have failed. Must supply ireactortime
if you supply this.
:param kill_on_stderr:
When True, kill subprocess if we receive anything on stderr
:param stdout:
Anything subprocess writes to stdout is sent to .write() on this
:param stderr:
Anything subprocess writes to stderr is sent to .write() on this
:ivar tor_protocol: The TorControlProtocol instance connected
to the Tor this
:api:`twisted.internet.protocol.ProcessProtocol
<ProcessProtocol>`` is speaking to. Will be valid after
the Deferred returned from
:meth:`TorProcessProtocol.when_connected` is triggered.
"""
self.config = config
self.tor_protocol = None
self.progress_updates = progress_updates
# XXX if connection_creator is not None .. is connected_cb
# tied to connection_creator...?
if connection_creator:
self.connection_creator = connection_creator
else:
self.connection_creator = None
# use SingleObserver
self._connected_listeners = [] # list of Deferred (None when we're connected)
self.attempted_connect = False
self.to_delete = []
self.kill_on_stderr = kill_on_stderr
self.stderr = stderr
self.stdout = stdout
self.collected_stdout = StringIO()
self._setup_complete = False
self._did_timeout = False
self._timeout_delayed_call = None
self._on_exit = [] # Deferred's we owe a call/errback to when we exit
if timeout:
if not ireactortime:
raise RuntimeError(
'Must supply an IReactorTime object when supplying a '
'timeout')
ireactortime = IReactorTime(ireactortime)
self._timeout_delayed_call = ireactortime.callLater(
timeout, self._timeout_expired)
def when_connected(self):
if self._connected_listeners is None:
return succeed(self)
d = Deferred()
self._connected_listeners.append(d)
return d
def _maybe_notify_connected(self, arg):
"""
Internal helper.
.callback or .errback on all Deferreds we've returned from
`when_connected`
"""
if self._connected_listeners is None:
return
for d in self._connected_listeners:
# Twisted will turn this into an errback if "arg" is a
# Failure
d.callback(arg)
self._connected_listeners = None
def quit(self):
"""
This will terminate (with SIGTERM) the underlying Tor process.
:returns: a Deferred that callback()'s (with None) when the
process has actually exited.
"""
try:
self.transport.signalProcess('TERM')
d = Deferred()
self._on_exit.append(d)
except error.ProcessExitedAlready:
self.transport.loseConnection()
d = succeed(None)
except Exception:
d = fail()
return d
def _signal_on_exit(self, reason):
to_notify = self._on_exit
self._on_exit = []
for d in to_notify:
d.callback(None)
def outReceived(self, data):
"""
:api:`twisted.internet.protocol.ProcessProtocol <ProcessProtocol>` API
"""
if self.stdout:
self.stdout.write(data.decode('ascii'))
# minor hack: we can't try this in connectionMade because
# that's when the process first starts up so Tor hasn't
# opened any ports properly yet. So, we presume that after
# its first output we're good-to-go. If this fails, we'll
# reset and try again at the next output (see this class'
# tor_connection_failed)
txtorlog.msg(data)
if not self.attempted_connect and self.connection_creator \
and b'Opening Control listener' in data:
self.attempted_connect = True
# hmmm, we don't "do" anything with this Deferred?
# (should it be connected to the when_connected
# Deferreds?)
d = self.connection_creator()
d.addCallback(self._tor_connected)
d.addErrback(self._tor_connection_failed)
# XXX 'should' be able to improve the error-handling by directly tying
# this Deferred into the notifications -- BUT we might try again, so
# we need to know "have we given up -- had an error" and only in that
# case send to the connected things. I think?
# d.addCallback(self._maybe_notify_connected)
def _timeout_expired(self):
"""
A timeout was supplied during setup, and the time has run out.
"""
self._did_timeout = True
try:
self.transport.signalProcess('TERM')
except error.ProcessExitedAlready:
# XXX why don't we just always do this?
self.transport.loseConnection()
fail = Failure(RuntimeError("timeout while launching Tor"))
self._maybe_notify_connected(fail)
def errReceived(self, data):
"""
:api:`twisted.internet.protocol.ProcessProtocol <ProcessProtocol>` API
"""
if self.stderr:
self.stderr.write(data)
if self.kill_on_stderr:
self.transport.loseConnection()
raise RuntimeError(
"Received stderr output from slave Tor process: " + data.decode('utf8')
)
def cleanup(self):
"""
Clean up my temporary files.
"""
all([delete_file_or_tree(f) for f in self.to_delete])
self.to_delete = []
def processExited(self, reason):
self._signal_on_exit(reason)
def processEnded(self, status):
"""
:api:`twisted.internet.protocol.ProcessProtocol <ProcessProtocol>` API
"""
self.cleanup()
if status.value.exitCode is None:
if self._did_timeout:
err = RuntimeError("Timeout waiting for Tor launch.")
else:
err = RuntimeError(
"Tor was killed (%s)." % status.value.signal)
else:
err = RuntimeError(
"Tor exited with error-code %d" % status.value.exitCode)
# hmmm, this log() should probably go away...not always an
# error (e.g. .quit()
log.err(err)
self._maybe_notify_connected(Failure(err))
def progress(self, percent, tag, summary):
"""
Can be overridden or monkey-patched if you want to get
progress updates yourself.
"""
if self.progress_updates:
self.progress_updates(percent, tag, summary)
# the below are all callbacks
def _tor_connection_failed(self, failure):
# FIXME more robust error-handling please, like a timeout so
# we don't just wait forever after 100% bootstrapped (that
# is, we're ignoring these errors, but shouldn't do so after
# we'll stop trying)
# XXX also, should check if the failure is e.g. a syntax error
# or an actually connection failure
# okay, so this is a little trickier than I thought at first:
# we *can* just relay this back to the
# connection_creator()-returned Deferred, *but* we don't know
# if this is "the last" error and we're going to try again
# (and thus e.g. should fail all the when_connected()
# Deferreds) or not.
log.err(failure)
self.attempted_connect = False
return None
def _status_client(self, arg):
args = shlex.split(arg)
if args[1] != 'BOOTSTRAP':
return
kw = find_keywords(args)
prog = int(kw['PROGRESS'])
tag = kw['TAG']
summary = kw['SUMMARY']
self.progress(prog, tag, summary)
if prog == 100:
if self._timeout_delayed_call:
self._timeout_delayed_call.cancel()
self._timeout_delayed_call = None
self._maybe_notify_connected(self)
@inlineCallbacks
def _tor_connected(self, proto):
txtorlog.msg("tor_connected %s" % proto)
self.tor_protocol = proto
self.tor_protocol.is_owned = self.transport.pid
yield self.tor_protocol.post_bootstrap
txtorlog.msg("Protocol is bootstrapped")
yield self.tor_protocol.add_event_listener('STATUS_CLIENT', self._status_client)
yield self.tor_protocol.queue_command('TAKEOWNERSHIP')
yield self.tor_protocol.queue_command('RESETCONF __OwningControllerProcess')
if self.config is not None and self.config.protocol is None:
yield self.config.attach_protocol(proto)
returnValue(self) # XXX or "proto"?
|