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
|
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# This is a Twisted application config file. To run, use:
# twistd -noy sftp.tac
# or similar. Refer to the twistd(1) man page for details.
from twisted.application import service
from twisted.protocols.policies import TimeoutFactory
from lp.services.config import config
from lp.services.daemons import readyservice
from lp.codehosting.sshserver.daemon import (
ACCESS_LOG_NAME,
get_key_path,
LOG_NAME,
make_portal,
OOPS_CONFIG_SECTION,
PRIVATE_KEY_FILE,
PUBLIC_KEY_FILE,
)
from lp.services.sshserver.service import SSHService
from lp.services.twistedsupport.gracefulshutdown import (
ConnTrackingFactoryWrapper,
make_web_status_service,
OrderedMultiService,
ShutdownCleanlyService,
)
# Construct an Application that has the codehosting SSH server.
application = service.Application('sftponly')
ordered_services = OrderedMultiService()
ordered_services.setServiceParent(application)
tracked_factories = set()
web_svc = make_web_status_service(
config.codehosting.web_status_port, tracked_factories)
web_svc.setServiceParent(ordered_services)
shutdown_cleanly_svc = ShutdownCleanlyService(tracked_factories)
shutdown_cleanly_svc.setServiceParent(ordered_services)
def ssh_factory_decorator(factory):
"""Add idle timeouts and connection tracking to a factory."""
f = TimeoutFactory(factory, timeoutPeriod=config.codehosting.idle_timeout)
f = ConnTrackingFactoryWrapper(f)
tracked_factories.add(f)
return f
svc = SSHService(
portal=make_portal(),
private_key_path=get_key_path(PRIVATE_KEY_FILE),
public_key_path=get_key_path(PUBLIC_KEY_FILE),
oops_configuration=OOPS_CONFIG_SECTION,
main_log=LOG_NAME,
access_log=ACCESS_LOG_NAME,
access_log_path=config.codehosting.access_log,
strport=config.codehosting.port,
factory_decorator=ssh_factory_decorator,
banner=config.codehosting.banner)
svc.setServiceParent(shutdown_cleanly_svc)
# Service that announces when the daemon is ready
readyservice.ReadyService().setServiceParent(application)
|