/usr/lib/python2.7/dist-packages/landscape/configuration.py is in landscape-common 14.01-0ubuntu3.
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 | """Interactive configuration support for Landscape.
This module, and specifically L{LandscapeSetupScript}, implements the support
for the C{landscape-config} script.
"""
import json
import base64
import time
import sys
import os
import getpass
import pwd
from StringIO import StringIO
from landscape.lib.tag import is_valid_tag
from landscape.sysvconfig import SysVConfig, ProcessError
from landscape.lib.amp import MethodCallError
from landscape.lib.twisted_util import gather_results
from landscape.lib.fetch import fetch, FetchError, HTTPCodeError
from landscape.lib.bootstrap import BootstrapList, BootstrapDirectory
from landscape.reactor import LandscapeReactor
from landscape.broker.registration import InvalidCredentialsError
from landscape.broker.config import BrokerConfiguration
from landscape.broker.amp import RemoteBrokerConnector
class ConfigurationError(Exception):
"""Raised when required configuration values are missing."""
class ImportOptionError(ConfigurationError):
"""Raised when there are issues with handling the --import option."""
def print_text(text, end="\n", error=False):
if error:
stream = sys.stderr
else:
stream = sys.stdout
stream.write(text + end)
stream.flush()
def get_invalid_users(users):
"""
Process a string with a list of comma separated usernames, this returns
any usernames not known to the underlying user database.
"""
if users is not None:
user_list = [user.strip() for user in users.split(",")]
if "ALL" in user_list:
if len(user_list) > 1:
raise ConfigurationError(
"Extra users specified with ALL users")
user_list.remove("ALL")
invalid_users = []
for user in user_list:
try:
pwd.getpwnam(user)
except KeyError:
invalid_users.append(user)
return invalid_users
class LandscapeSetupConfiguration(BrokerConfiguration):
unsaved_options = ("no_start", "disable", "silent", "ok_no_register",
"import_from")
def _load_external_options(self):
"""Handle the --import parameter.
Imported options behave as if they were passed in the
command line, with precedence being given to real command
line options.
"""
if self.import_from:
parser = None
try:
if "://" in self.import_from:
# If it's from a URL, download it now.
if self.http_proxy:
os.environ["http_proxy"] = self.http_proxy
if self.https_proxy:
os.environ["https_proxy"] = self.https_proxy
content = self.fetch_import_url(self.import_from)
parser = self._get_config_object(
alternative_config=StringIO(content))
elif not os.path.isfile(self.import_from):
raise ImportOptionError("File %s doesn't exist." %
self.import_from)
else:
try:
parser = self._get_config_object(
alternative_config=self.import_from)
except:
raise ImportOptionError(
"Couldn't read configuration from %s." %
self.import_from)
except Exception, error:
raise ImportOptionError(str(error))
# But real command line options have precedence.
options = None
if parser and self.config_section in parser:
options = parser[self.config_section]
if not options:
raise ImportOptionError("Nothing to import at %s." %
self.import_from)
options.update(self._command_line_options)
self._command_line_options = options
def fetch_import_url(self, url):
"""Handle fetching of URLs passed to --url."""
print_text("Fetching configuration from %s..." % url)
error_message = None
try:
content = fetch(url)
except FetchError, error:
error_message = str(error)
if error_message is not None:
raise ImportOptionError(
"Couldn't download configuration from %s: %s" %
(url, error_message))
return content
def make_parser(self):
"""
Specialize the parser, adding configure-specific options.
"""
parser = super(LandscapeSetupConfiguration, self).make_parser()
parser.add_option("--import", dest="import_from",
metavar="FILENAME_OR_URL",
help="Filename or URL to import configuration from. "
"Imported options behave as if they were "
"passed in the command line, with precedence "
"being given to real command line options.")
parser.add_option("--script-users", metavar="USERS",
help="A comma-separated list of users to allow "
"scripts to run. To allow scripts to be run "
"by any user, enter: ALL")
parser.add_option("--include-manager-plugins", metavar="PLUGINS",
default="",
help="A comma-separated list of manager plugins to "
"load.")
parser.add_option("-n", "--no-start", action="store_true",
help="Don't start the client automatically.")
parser.add_option("--ok-no-register", action="store_true",
help="Return exit code 0 instead of 2 if the client "
"can't be registered.")
parser.add_option("--silent", action="store_true", default=False,
help="Run without manual interaction.")
parser.add_option("--disable", action="store_true", default=False,
help="Stop running clients and disable start at "
"boot.")
parser.add_option("--init", action="store_true", default=False,
help="Set up the client directories structure "
"and exit.")
return parser
class LandscapeSetupScript(object):
"""
An interactive procedure which manages the prompting and temporary storage
of configuration parameters.
Various attributes on this object will be set on C{config} after L{run} is
called.
@ivar config: The L{BrokerConfiguration} object to read and set values from
and to.
"""
def __init__(self, config):
self.config = config
def show_help(self, text):
lines = text.strip().splitlines()
print_text("\n" + "".join([line.strip() + "\n" for line in lines]))
def prompt_get_input(self, msg, required):
"""Prompt the user on the terminal for a value
@param msg: Message to prompt user with
@param required: True if value must be entered
"""
while True:
value = raw_input(msg)
if value:
return value
elif not required:
break
self.show_help("This option is required to configure Landscape.")
def prompt(self, option, msg, required=False):
"""Prompt the user on the terminal for a value.
@param option: The attribute of C{self.config} that contains the
default and which the value will be assigned to.
@param msg: The message to prompt the user with (via C{raw_input}).
@param required: If True, the user will be required to enter a value
before continuing.
"""
default = getattr(self.config, option, None)
if default:
msg += " [%s]: " % default
else:
msg += ": "
required = required and not (bool(default))
result = self.prompt_get_input(msg, required)
if result:
setattr(self.config, option, result)
def password_prompt(self, option, msg, required=False):
"""Prompt the user on the terminal for a password and mask the value.
This also prompts the user twice and errors if both values don't match.
@param option: The attribute of C{self.config} that contains the
default and which the value will be assigned to.
@param msg: The message to prompt the user with (via C{raw_input}).
@param required: If True, the user will be required to enter a value
before continuing.
"""
default = getattr(self.config, option, None)
msg += ": "
while True:
value = getpass.getpass(msg)
if value:
value2 = getpass.getpass("Please confirm: ")
if value:
if value != value2:
self.show_help("Keys must match.")
else:
setattr(self.config, option, value)
break
elif default or not required:
break
else:
self.show_help("This option is required to configure "
"Landscape.")
def prompt_yes_no(self, message, default=True):
if default:
default_msg = " [Y/n]"
else:
default_msg = " [y/N]"
while True:
value = raw_input(message + default_msg).lower()
if value:
if value.startswith("n"):
return False
if value.startswith("y"):
return True
self.show_help("Invalid input.")
else:
return default
def query_computer_title(self):
if "computer_title" in self.config.get_command_line_options():
return
self.show_help(
"""
The computer title you provide will be used to represent this
computer in the Landscape user interface. It's important to use
a title that will allow the system to be easily recognized when
it appears on the pending computers page.
""")
self.prompt("computer_title", "This computer's title", True)
def query_account_name(self):
if "account_name" in self.config.get_command_line_options():
return
self.show_help(
"""
You must now specify the name of the Landscape account you
want to register this computer with. You can verify the
names of the accounts you manage on your dashboard at
https://landscape.canonical.com/dashboard
""")
self.prompt("account_name", "Account name", True)
def query_registration_key(self):
command_line_options = self.config.get_command_line_options()
if "registration_key" in command_line_options:
return
self.show_help(
"""
A registration key may be associated with your Landscape
account to prevent unauthorized registration attempts. This
is not your personal login password. It is optional, and unless
explicitly set on the server, it may be skipped here.
If you don't remember the registration key you can find it
at https://landscape.canonical.com/account/%s
""" % self.config.account_name)
self.password_prompt("registration_key",
"Account registration key")
def query_proxies(self):
options = self.config.get_command_line_options()
if "http_proxy" in options and "https_proxy" in options:
return
self.show_help(
"""
The Landscape client communicates with the server over HTTP and
HTTPS. If your network requires you to use a proxy to access HTTP
and/or HTTPS web sites, please provide the address of these
proxies now. If you don't use a proxy, leave these fields empty.
""")
if not "http_proxy" in options:
self.prompt("http_proxy", "HTTP proxy URL")
if not "https_proxy" in options:
self.prompt("https_proxy", "HTTPS proxy URL")
def query_script_plugin(self):
options = self.config.get_command_line_options()
if "include_manager_plugins" in options and "script_users" in options:
invalid_users = get_invalid_users(options["script_users"])
if invalid_users:
raise ConfigurationError("Unknown system users: %s" %
", ".join(invalid_users))
return
self.show_help(
"""
Landscape has a feature which enables administrators to run
arbitrary scripts on machines under their control. By default this
feature is disabled in the client, disallowing any arbitrary script
execution. If enabled, the set of users that scripts may run as is
also configurable.
""")
msg = "Enable script execution?"
included_plugins = [
p.strip() for p in self.config.include_manager_plugins.split(",")]
if included_plugins == [""]:
included_plugins = []
default = "ScriptExecution" in included_plugins
if self.prompt_yes_no(msg, default=default):
if "ScriptExecution" not in included_plugins:
included_plugins.append("ScriptExecution")
self.show_help(
"""
By default, scripts are restricted to the 'landscape' and
'nobody' users. Please enter a comma-delimited list of users
that scripts will be restricted to. To allow scripts to be run
by any user, enter "ALL".
""")
while True:
self.prompt("script_users", "Script users")
invalid_users = get_invalid_users(
self.config.script_users)
if not invalid_users:
break
else:
self.show_help("Unknown system users: %s" %
",".join(invalid_users))
self.config.script_users = None
else:
if "ScriptExecution" in included_plugins:
included_plugins.remove("ScriptExecution")
self.config.include_manager_plugins = ", ".join(included_plugins)
def query_access_group(self):
"""Query access group from the user."""
self.show_help("You may provide an access group for this computer "
"e.g. webservers.")
options = self.config.get_command_line_options()
if "access_group" in options:
return # an access group is already provided, don't ask for one
self.prompt("access_group", "Access group", False)
def _get_invalid_tags(self, tagnames):
"""
Splits a string on , and checks the validity of each tag, returns any
invalid tags.
"""
invalid_tags = []
if tagnames:
tags = [tag.strip() for tag in tagnames.split(",")]
invalid_tags = [tag for tag in tags if not is_valid_tag(tag)]
return invalid_tags
def query_tags(self):
"""Query tags from the user."""
options = self.config.get_command_line_options()
if "tags" in options:
invalid_tags = self._get_invalid_tags(options["tags"])
if invalid_tags:
raise ConfigurationError("Invalid tags: %s" %
", ".join(invalid_tags))
return
self.show_help("You may provide tags for this computer e.g. "
"server,precise.")
while True:
self.prompt("tags", "Tags", False)
if self._get_invalid_tags(self.config.tags):
self.show_help("Tag names may only contain alphanumeric "
"characters.")
self.config.tags = None # Reset for the next prompt
else:
break
def show_header(self):
self.show_help(
"""
This script will interactively set up the Landscape client. It will
ask you a few questions about this computer and your Landscape
account, and will submit that information to the Landscape server.
After this computer is registered it will need to be approved by an
account administrator on the pending computers page.
Please see https://landscape.canonical.com for more information.
""")
def run(self):
"""Kick off the interactive process which prompts the user for data.
Data will be saved to C{self.config}.
"""
self.show_header()
self.query_computer_title()
self.query_account_name()
self.query_registration_key()
self.query_proxies()
self.query_script_plugin()
self.query_access_group()
self.query_tags()
def setup_init_script_and_start_client():
"Configure the init script to start the client on boot."
# XXX This function is misnamed; it doesn't start the client.
sysvconfig = SysVConfig()
sysvconfig.set_start_on_boot(True)
def stop_client_and_disable_init_script():
"""
Stop landscape-client and change configuration to prevent starting
landscape-client on boot.
"""
sysvconfig = SysVConfig()
sysvconfig.stop_landscape()
sysvconfig.set_start_on_boot(False)
def setup_http_proxy(config):
"""
If a http_proxy and a https_proxy value are not set then copy the values,
if any, from the environment variables L{http_proxy} and L{https_proxy}.
"""
if config.http_proxy is None and os.environ.get("http_proxy"):
config.http_proxy = os.environ["http_proxy"]
if config.https_proxy is None and os.environ.get("https_proxy"):
config.https_proxy = os.environ["https_proxy"]
def check_account_name_and_password(config):
"""
Ensure that silent configurations which plan to start landscape-client are
either configured for OTP or have both an account_name and computer title.
"""
if config.silent and not config.no_start:
if not (config.get("otp") or config.provisioning_otp or
(config.get("account_name") and config.get("computer_title"))):
raise ConfigurationError("An account name and computer title are "
"required.")
def check_script_users(config):
"""
If the configuration allows for script execution ensure that the configured
users are valid for that purpose.
"""
if config.get("script_users"):
invalid_users = get_invalid_users(config.get("script_users"))
if invalid_users:
raise ConfigurationError("Unknown system users: %s" %
", ".join(invalid_users))
if not config.include_manager_plugins:
config.include_manager_plugins = "ScriptExecution"
def decode_base64_ssl_public_certificate(config):
"""
Decode base64 encoded SSL certificate and push that back into place in the
config object.
"""
# WARNING: ssl_public_certificate is misnamed, it's not the key of the
# certificate, but the actual certificate itself.
if config.ssl_public_key and config.ssl_public_key.startswith("base64:"):
decoded_cert = base64.decodestring(config.ssl_public_key[7:])
config.ssl_public_key = store_public_key_data(
config, decoded_cert)
def fetch_base64_ssl_public_certificate(hostname, on_info=print_text,
on_error=print_text):
"""
Fetch base64 encoded SSL CA certificate from the discovered landscape
server and return that decoded info.
"""
on_info("Fetching CA certificate from %s if available..." % hostname)
content = ""
encoded_cert = ""
ca_url = "http://%s/get-ca-cert" % hostname
try:
content = fetch(ca_url, insecure=True)
except HTTPCodeError, error:
on_error("Unable to fetch CA certificate from discovered server %s: "
"Server does not support client auto-registation." % hostname)
return encoded_cert
except FetchError, error:
on_error("Unable to fetch CA certificate from %s: %s"
% (hostname, str(error)))
return encoded_cert
if content:
ca_dict = json.loads(content)
try:
if ca_dict["custom_ca_cert"].startswith("base64:"):
encoded_cert = ca_dict["custom_ca_cert"]
else:
on_error("Auto-registration URL %s returns invalid CA JSON: "
"%s." % (ca_url, ca_dict))
except KeyError:
# No custom CA certificate needed to talk with this server
on_info("No custom CA certificate available for %s." % hostname)
else:
on_error("Unable to fetch CA certificate from discovered server "
"%s. Proceding without custom CA certificate."
% hostname)
return encoded_cert
def setup(config):
"""
Perform steps to ensure that landscape-client is correctly configured
before we attempt to register it with a landscape server.
If we are not configured to be silent then interrogate the user to provide
necessary details for registration.
"""
bootstrap_tree(config)
sysvconfig = SysVConfig()
if not config.no_start:
if config.silent:
setup_init_script_and_start_client()
elif not sysvconfig.is_configured_to_run():
answer = raw_input("\nThe Landscape client must be started "
"on boot to operate correctly.\n\n"
"Start Landscape client on boot? (Y/n): ")
if not answer.upper().startswith("N"):
setup_init_script_and_start_client()
else:
sys.exit("Aborting Landscape configuration")
setup_http_proxy(config)
check_account_name_and_password(config)
if config.silent:
check_script_users(config)
else:
script = LandscapeSetupScript(config)
script.run()
decode_base64_ssl_public_certificate(config)
config.write()
# Restart the client to ensure that it's using the new configuration.
if not config.no_start and not config.otp:
try:
sysvconfig.restart_landscape()
except ProcessError:
print_text("Couldn't restart the Landscape client.", error=True)
print_text("This machine will be registered with the provided "
"details when the client runs.", error=True)
exit_code = 2
if config.ok_no_register:
exit_code = 0
sys.exit(exit_code)
def bootstrap_tree(config):
"""Create the client directories tree."""
bootstrap_list = [
BootstrapDirectory("$data_path", "landscape", "root", 0755),
BootstrapDirectory("$annotations_path", "landscape", "landscape",
0755)]
BootstrapList(bootstrap_list).bootstrap(
data_path=config.data_path, annotations_path=config.annotations_path)
def store_public_key_data(config, certificate_data):
"""
Write out the data from the SSL certificate provided to us, either from a
bootstrap.conf file, or from EC2-style user-data.
@param config: The L{BrokerConfiguration} object in use.
@param certificate_data: a string of data that represents the contents of
the file to be written.
@return the L{BrokerConfiguration} object that was passed in, updated to
reflect the path of the ssl_public_key file.
"""
key_filename = os.path.join(config.data_path,
os.path.basename(config.get_config_filename() + ".ssl_public_key"))
print_text("Writing SSL CA certificate to %s..." % key_filename)
key_file = open(key_filename, "w")
key_file.write(certificate_data)
key_file.close()
return key_filename
def register(config, on_message=print_text, on_error=sys.exit, reactor=None,
max_retries=14):
"""Instruct the Landscape Broker to register the client.
The broker will be instructed to reload its configuration and then to
attempt a registration.
@param reactor: The reactor to use. Please only pass reactor when you
have totally mangled everything with mocker. Otherwise bad things
will happen.
@param max_retries: The number of times to retry connecting to the
landscape client service. The delay between retries is calculated
by Twisted and increases geometrically. The default of 14 results in
a total wait time of about 70 seconds.
initialDelay = 0.05
factor = 1.62
maxDelay = 30
max_retries = 14
0.05 * (1 - 1.62 ** 14) / (1 - 1.62) = 69 seconds
"""
if reactor is None:
reactor = LandscapeReactor()
exit_with_error = []
def stop(errors):
if not config.ok_no_register:
for error in errors:
if error is not None:
exit_with_error.append(error)
connector.disconnect()
reactor.stop()
def failure():
on_message("Invalid account name or "
"registration key.", error=True)
return 2
def success():
on_message("System successfully registered.")
def exchange_failure():
on_message("We were unable to contact the server. "
"Your internet connection may be down. "
"The landscape client will continue to try and contact "
"the server periodically.",
error=True)
return 2
def handle_registration_errors(failure):
# We'll get invalid credentials through the signal.
failure.trap(InvalidCredentialsError, MethodCallError)
connector.disconnect()
def catch_all(failure):
on_message(failure.getTraceback(), error=True)
on_message("Unknown error occurred.", error=True)
return [2]
on_message("Please wait... ", "")
time.sleep(2)
def got_connection(remote):
handlers = {"registration-done": success,
"registration-failed": failure,
"exchange-failed": exchange_failure}
deferreds = [
remote.reload_configuration(),
remote.call_on_event(handlers),
remote.register().addErrback(handle_registration_errors)]
# We consume errors here to ignore errors after the first one.
# catch_all will be called for the very first deferred that fails.
results = gather_results(deferreds, consume_errors=True)
results.addErrback(catch_all)
results.addCallback(stop)
def got_error(failure):
on_message("There was an error communicating with the Landscape"
" client.", error=True)
on_message("This machine will be registered with the provided "
"details when the client runs.", error=True)
stop([2])
connector = RemoteBrokerConnector(reactor, config)
result = connector.connect(max_retries=max_retries, quiet=True)
result.addCallback(got_connection)
result.addErrback(got_error)
reactor.run()
if exit_with_error:
on_error(exit_with_error[0])
return result
def main(args):
config = LandscapeSetupConfiguration()
try:
config.load(args)
except ImportOptionError, error:
print_text(str(error), error=True)
sys.exit(1)
if os.getuid() != 0:
sys.exit("landscape-config must be run as root.")
if config.init:
bootstrap_tree(config)
sys.exit(0)
# Disable startup on boot and stop the client, if one is running.
if config.disable:
stop_client_and_disable_init_script()
return
# Setup client configuration.
try:
setup(config)
except Exception, e:
print_text(str(e))
sys.exit("Aborting Landscape configuration")
# Attempt to register the client.
if config.silent:
register(config)
else:
answer = raw_input("\nRequest a new registration for "
"this computer now? (Y/n): ")
if not answer.upper().startswith("N"):
register(config)
|