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
|
#! /usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
# depthcharge-tools depthchargectl command
# Copyright (C) 2020-2023 Alper Nebi Yasak <alpernebiyasak@gmail.com>
# See COPYRIGHT and LICENSE files for full copyright information.
import argparse
import collections
import configparser
import copy
import glob
import logging
import os
import platform
import re
import shlex
import tempfile
from pathlib import Path
from depthcharge_tools import (
__version__,
config_ini,
boards_ini,
config_files,
)
from depthcharge_tools.utils.argparse import (
Command,
Argument,
Group,
Subparsers,
)
from depthcharge_tools.utils.collections import (
ConfigDict,
)
from depthcharge_tools.utils.os import (
Disks,
)
from depthcharge_tools.utils.platform import (
Architecture,
vboot_keys,
cros_hwid,
dt_compatibles,
is_cros_boot,
is_cros_libreboot,
kernel_cmdline,
proc_cmdline,
)
from depthcharge_tools.utils.string import (
parse_bytesize,
)
class Board:
def __init__(self, config):
self._config = config
@property
def name(self):
name = self._config.get("name")
if name is None:
name = "Unnamed {} board".format(self.codename or 'unknown')
return name
@property
def codename(self):
return self._config.get("codename")
@property
def arch(self):
return Architecture(self._config.get("arch"))
@property
def dt_compatible(self):
pattern = self._config.get("dt-compatible")
# Try to detect non-regex values and extend them to match any
# rev/sku, but if a rev/sku is given match only the given one.
if pattern and re.fullmatch(r"[\w,-]+", pattern):
prefix, rev, sku = re.fullmatch(
r"(.*?)(-rev\d+)?(-sku\d+)?",
pattern,
).groups()
pattern = "{}{}{}".format(
prefix,
rev or r"(-rev\d+)?",
sku or r"(-sku\d+)?",
)
if pattern:
return re.compile(pattern)
@property
def hwid_match(self):
pattern = self._config.get("hwid-match")
if pattern in (None, "None", "none"):
return None
if pattern:
return re.compile(pattern)
@property
def boots_lz4_kernel(self):
return self._config.getboolean("boots-lz4-kernel", False)
@property
def boots_lzma_kernel(self):
return self._config.getboolean("boots-lzma-kernel", False)
@property
def loads_zimage_ramdisk(self):
return self._config.getboolean("loads-zimage-ramdisk", False)
@property
def loads_fit_ramdisk(self):
return self._config.getboolean("loads-fit-ramdisk", False)
@property
def loads_dtb_off_by_one(self):
return self._config.getboolean("loads-dtb-off-by-one", False)
@property
def fit_ramdisk_load_address(self):
addr = self._config.get("fit-ramdisk-load-address", None)
return parse_bytesize(addr)
@property
def image_start_address(self):
addr = self._config.get("image-start-address", None)
return parse_bytesize(addr)
@property
def image_max_size(self):
max_size = self._config.get("image-max-size")
if max_size in (None, "None", "none"):
return float("inf")
return parse_bytesize(max_size)
@property
def image_format(self):
return self._config.get("image-format")
class depthchargectl(
Command,
prog="depthchargectl",
usage="%(prog)s [options] command ...",
add_help=False,
):
"""Manage Chrome OS kernel partitions."""
_logger = logging.getLogger(__name__)
config_section = "depthchargectl"
@property
def logger(self):
# Set verbosity before logging messages
self.verbosity
return self._logger
@Group
def global_options(self):
"""Global options"""
@global_options.add
@Argument("-h", "--help", action="help")
def print_help(self):
"""Show this help message."""
# type(self).parser.print_help()
@global_options.add
@Argument(
"-V", "--version",
action="version",
version="depthcharge-tools %(prog)s {}".format(__version__),
)
def version(self):
"""Print program version."""
return type(self).version.version % {"prog": type(self).prog}
@global_options.add
@Argument("-v", "--verbose", count=True)
def verbosity(self, verbosity=0):
"""Print more detailed output."""
level = logging.WARNING - int(verbosity) * 10
self._logger.setLevel(level)
return verbosity
@global_options.add
@Argument("--tmpdir", nargs=1)
def tmpdir(self, dir_=None):
"""Directory to keep temporary files."""
if dir_ is None:
dir_ = tempfile.TemporaryDirectory(
prefix="depthchargectl-",
)
dir_ = self.exitstack.enter_context(dir_)
dir_ = Path(dir_)
os.makedirs(dir_, exist_ok=True)
self.logger.debug("Working in temp dir '{}'.".format(dir_))
return dir_
@global_options.add
@Argument("--root", nargs=1)
def root(self, root=None):
"""Root device or mountpoint of the system to work on."""
if root is None:
cmdline = self.kernel_cmdline
for c in cmdline:
lhs, _, rhs = c.partition("=")
if lhs.lower() == "root":
root = rhs
if root:
self.logger.info(
"Using root '{}' set in cmdline."
.format(root)
)
return str(root)
self.logger.info(
"Defaulting to current system root '/'."
)
return Path("/").resolve()
if os.path.ismount(Path(root).resolve()):
self.logger.info(
"Using root argument '{}' as the system to work on."
.format(root)
)
return Path(root).resolve()
if root in (None, "", "none", "None"):
self.logger.info(
"Using no root argument for the kernel cmdline."
.format(root)
)
else:
self.logger.info(
"Using root argument '{}' as a device description."
.format(root)
)
return str(root)
@global_options.add
@Argument("--root-mountpoint", nargs=1, metavar="DIR")
def root_mountpoint(self, mnt=None):
"""Root mountpoint of the system to work on."""
if mnt:
mnt = Path(mnt).resolve()
self.logger.info(
"Using root mountpoint '{}' from given argument."
.format(mnt)
)
return mnt
if self.root in ("", "None", "none", None):
return Path("/").resolve()
if isinstance(self.root, Path):
return self.root
disk = self.diskinfo.evaluate(self.root)
mountpoints = sorted(
self.diskinfo.mountpoints(disk),
key=lambda p: len(p.parents),
)
if len(mountpoints) > 1:
mnt = mountpoints[0]
self.logger.warning(
"Choosing '{}' from multiple root mountpoints: {}."
.format(mnt, ", ".join(str(m) for m in mountpoints))
)
return mnt
elif mountpoints:
mnt = mountpoints[0]
if mnt != Path("/").resolve():
self.logger.info(
"Using root mountpoint '{}'."
.format(mnt)
)
return mnt
self.logger.warning(
"Couldn't find root mountpoint, falling back to '/'."
)
return Path("/").resolve()
@global_options.add
@Argument("--boot-mountpoint", nargs=1, metavar="DIR")
def boot_mountpoint(self, boot=None):
"""Boot mountpoint of the system to work on."""
if boot:
boot = Path(boot).resolve()
self.logger.info(
"Using boot mountpoint '{}' from given argument."
.format(boot)
)
return boot
boot_str = self.diskinfo.by_mountpoint("/boot", fstab_only=True)
device = self.diskinfo.evaluate(boot_str)
mountpoints = sorted(
self.diskinfo.mountpoints(device),
key=lambda p: len(p.parents),
)
if device and not mountpoints:
self.logger.warning(
"Boot partition '{}' for specified root is not mounted."
.format(device)
)
if len(mountpoints) > 1:
self.logger.warning(
"Choosing '{}' from multiple /boot mountpoints: {}."
.format(mountpoints[0], ", ".join(str(m) for m in mountpoints))
)
if mountpoints:
return mountpoints[0]
root = self.root_mountpoint
boot = (root / "boot").resolve()
self.logger.info(
"Couldn't find /boot in fstab, falling back to '{}'."
.format(boot)
)
if root != Path("/").resolve() and not boot.is_dir():
self.logger.warning(
"Boot mountpoint '{}' does not exist for custom root."
.format(boot)
)
self.logger.warning(
"Not falling back to the running system for boot mountpoint."
)
return boot
@Argument(dest=argparse.SUPPRESS, help=argparse.SUPPRESS)
def diskinfo(self):
# Break cyclic dependencies here
yield Disks()
root = self.root_mountpoint
return Disks(
fstab=(root / "etc" / "fstab"),
crypttab=(root / "etc" / "crypttab"),
)
@Group
def config_options(self):
"""Configuration options"""
# Update the values in the configparser object so that the
# config subcommand can query e.g. the autodetected board.
self.config.update({
'board': self.board.codename if self.board else "none",
'images-dir': str(self.images_dir),
'vboot-keyblock': str(self.vboot_keyblock),
'vboot-public-key': str(self.vboot_public_key),
'vboot-private-key': str(self.vboot_private_key),
'kernel-cmdline': " ".join(self.kernel_cmdline),
'ignore-initramfs': str(self.ignore_initramfs),
'zimage-initramfs-hack': str(self.zimage_initramfs_hack),
})
if self.board is not None:
def pattern(regex):
try:
return str(regex.pattern)
except:
return "None"
self.config.update({
"arch": str(self.board.arch),
"codename": str(self.board.codename),
"boots-lz4-kernel": str(self.board.boots_lz4_kernel),
"boots-lzma-kernel": str(self.board.boots_lzma_kernel),
"dt-compatible": pattern(self.board.dt_compatible),
"fit-ramdisk-load-address": str(self.board.fit_ramdisk_load_address),
"hwid-match": pattern(self.board.hwid_match),
"image-format": str(self.board.image_format),
"image-max-size": str(self.board.image_max_size),
"image-start-address": str(self.board.image_start_address),
"loads-dtb-off-by-one": str(self.board.loads_dtb_off_by_one),
"loads-fit-ramdisk": str(self.board.loads_fit_ramdisk),
"loads-zimage-ramdisk": str(self.board.loads_zimage_ramdisk),
"name": str(self.board.name),
})
@config_options.add
@Argument("--config", nargs=1)
def config(self, file_=None):
"""Additional configuration file to read"""
if isinstance(file_, configparser.SectionProxy):
parser = file_.parser
elif isinstance(file_, configparser.ConfigParser):
parser = file_
file_ = None
else:
parser = configparser.ConfigParser(
default_section="depthcharge-tools",
dict_type=ConfigDict,
)
parser.read_string(config_ini, source="config.ini")
parser.read_string(boards_ini, source="boards.ini")
try:
for p in parser.read(config_files):
self.logger.debug("Read config file '{}'.".format(p))
except configparser.ParsingError as err:
self.logger.warning(
"Config file '{}' could not be parsed."
.format(err.filename)
)
root = self.root_mountpoint
boot = self.boot_mountpoint
def fixup_path(f):
p = Path(f).resolve()
if f.startswith("/boot"):
return str(boot / p.relative_to("/boot"))
elif f.startswith("/"):
return str(root / p.relative_to("/"))
if root != Path("/").resolve():
extra_parser = configparser.ConfigParser()
extra_files = [
*root.glob("etc/depthcharge-tools/config"),
*root.glob("etc/depthcharge-tools/config.d/*"),
]
try:
for p in extra_parser.read(extra_files):
self.logger.debug("Read config file '{}'.".format(p))
except configparser.ParsingError as err:
self.logger.warning(
"Config file '{}' could not be parsed."
.format(err.filename)
)
file_configs = [
"images-dir",
"vboot-keyblock",
"vboot-public-key",
"vboot-private-key",
]
for sect, conf in extra_parser.items():
for key, value in conf.items():
if key in file_configs:
conf[key] = fixup_path(value)
parser.read_dict(extra_parser)
if self.config_section not in parser.sections():
if self.config_section != parser.default_section:
parser.add_section(self.config_section)
if isinstance(file_, collections.abc.Mapping):
parser[self.config_section].update(file_)
elif file_ is not None:
try:
read = parser.read([file_])
except configparser.ParsingError as err:
raise ValueError(
"Config file '{}' could not be parsed."
.format(err.filename)
)
if file_ not in read:
raise ValueError(
"Config file '{}' could not be read."
.format(file_)
)
return parser[self.config_section]
@config_options.add
@Argument("--board", nargs=1)
def board(self, codename=""):
"""Assume we're running on the specified board"""
if isinstance(codename, Board):
return codename
elif isinstance(codename, configparser.SectionProxy):
return Board(codename)
elif codename is None:
return None
boards = {
sectname: Board(section)
for sectname, section in self.config.parser.items()
if sectname.startswith("boards/")
}
if not codename:
codename = self.config.get("board", "")
if codename in ("None", "none"):
return None
elif codename:
parts = str(codename).lower().replace('-', '_').split('_')
def codename_match(item):
if item is None:
return (len(parts) - 1, 0)
sectname, board = item
matchparts = sectname.split("/") + (
[] if board.codename is None else
board.codename.lower().replace('-', '_').split('_')
)
# Don't match sections without explicit codenames
parent, _, _ = sectname.rpartition('/')
if parent in boards and boards[parent].codename == board.codename:
return (len(parts) - 1, float("inf"))
# Some kind of a fuzzy match, how many parts of the
# given codename exist in the parts of this config
idx = len(parts) - 1
while parts and matchparts and idx >= 0:
if parts[idx] == matchparts[-1]:
idx -= 1
# Oldest boards have x86-alex_he etc.
elif (parts[idx], matchparts[-1]) == ("x86", "amd64"):
idx -= 1
matchparts.pop()
# Avoid matching only on "libreboot" without actual board
if parts[-1] == "libreboot" and idx == len(parts) - 2:
return (len(parts) - 1, float("inf"))
return (idx, len(sectname.split("/")))
match_groups = collections.defaultdict(list)
for item in (None, *boards.items()):
match_groups[codename_match(item)].append(item)
score, matches = min(match_groups.items())
if not matches or None in matches:
raise ValueError(
"Unknown board codename '{}'."
.format(codename)
)
elif len(matches) > 1:
raise ValueError(
"Ambiguous board codename '{}' matches {}."
.format(codename, [b.codename for s, b in matches])
)
sectname, board = matches[0]
self.logger.info(
"Assuming board '{}' ('{}') by codename argument or config."
.format(board.name, board.codename)
)
return board
hwid = cros_hwid()
def hwid_match(item):
sectname, board = item
try:
return bool(re.match(board.hwid_match, hwid))
except:
return False
if hwid is not None:
matches = tuple(filter(hwid_match, boards.items()))
else:
matches = ()
if matches:
sectname, board = matches[0]
if is_cros_libreboot():
libreboot_name = "{}/libreboot".format(sectname)
libreboot_board = boards.get(libreboot_name, None)
if libreboot_board:
sectname = libreboot_name
board = libreboot_board
self.logger.info(
"Detected board '{}' ('{}') by HWID."
.format(board.name, board.codename)
)
return board
compatibles = dt_compatibles()
def compat_preference(item):
if item is None:
return (len(compatibles), 0)
sectname, board = item
if board.dt_compatible is None:
return (float("inf"), 0)
for i, c in enumerate(compatibles):
if board.dt_compatible.fullmatch(c):
return (i, -len(sectname.split("/")))
else:
return (float("inf"), -1)
if compatibles is not None:
match = min((None, *boards.items()), key=compat_preference)
else:
match = None
if match is not None:
sectname, board = match
if is_cros_libreboot():
libreboot_name = "{}/libreboot".format(sectname)
libreboot_board = boards.get(libreboot_name, None)
if libreboot_board:
sectname = libreboot_name
board = libreboot_board
self.logger.info(
"Detected board '{}' ('{}') by device-tree compatibles."
.format(board.name, board.codename)
)
return board
# This might actually be running on non-ChromeOS hardware.
# Check this after the board detection code, because we might
# also be running on e.g. RW_LEGACY but still with depthcharge.
if not is_cros_boot():
return None
# Use generic boards per cpu architecture, since we couldn't
# detect this system as a proper board
arch = platform.machine()
if arch in Architecture.arm_32:
sectname = "boards/arm"
elif arch in Architecture.arm_64:
sectname = "boards/arm64"
elif arch in Architecture.x86:
sectname = "boards/amd64"
board = boards.get(sectname, None)
if board is not None:
self.logger.warning(
"Assuming a generic board of architecture '{}'."
.format(board.arch)
)
return board
raise ValueError(
"Could not detect which board this is running on."
)
@config_options.add
@Argument("--images-dir", nargs=1)
def images_dir(self, dir_=None):
"""Directory to store built images"""
if dir_ is not None:
return Path(dir_).resolve()
dir_ = self.config.get("images-dir")
if dir_ is None:
raise ValueError(
"Images directory is not specified"
)
dir_ = Path(dir_).resolve()
boot = self.boot_mountpoint
if boot != Path("/boot").resolve() and dir_.is_relative_to("/boot"):
return boot / dir_.relative_to("/boot")
root = self.root_mountpoint
if root != Path("/").resolve() and not dir_.is_relative_to(root):
return root / dir_.relative_to("/")
return dir_
@config_options.add
@Argument("--vboot-keydir", nargs=1, help=argparse.SUPPRESS)
def vboot_keydir(self, dir_=None):
"""Directory containing default vboot keys to use"""
if dir_:
keydir = vboot_keys(dir_, system=None)[0]
if keydir:
return Path(keydir).resolve()
root = self.root_mountpoint
if root != Path("/").resolve():
keydir = vboot_keys(root=root)[0]
if keydir:
return Path(keydir).resolve()
keydir = vboot_keys()[0]
if keydir:
return Path(keydir).resolve()
return None
@config_options.add
@Argument("--vboot-keyblock", nargs=1)
def vboot_keyblock(self, keyblock=None):
"""Keyblock file to include in images"""
if keyblock:
return Path(keyblock).resolve()
keyblock = self.config.get("vboot-keyblock")
if keyblock:
return Path(keyblock).resolve()
if self.vboot_keydir:
keyblock = self.vboot_keydir / "kernel.keyblock"
if keyblock.exists():
return Path(keyblock).resolve()
@config_options.add
@Argument("--vboot-public-key", nargs=1)
def vboot_public_key(self, signpubkey=None):
"""Public key file to verify images with"""
if signpubkey:
return Path(signpubkey).resolve()
signpubkey = self.config.get("vboot-public-key")
if signpubkey:
return Path(signpubkey).resolve()
if self.vboot_keydir:
signpubkey = self.vboot_keydir / "kernel_subkey.vbpubk"
if signpubkey.exists():
return Path(signpubkey).resolve()
return signpubkey
@config_options.add
@Argument("--vboot-private-key", nargs=1)
def vboot_private_key(self, signprivate=None):
"""Private key file to sign images with"""
if signprivate:
return Path(signprivate).resolve()
signprivate = self.config.get("vboot-private-key")
if signprivate:
return Path(signprivate).resolve()
if self.vboot_keydir:
signprivate = self.vboot_keydir / "kernel_data_key.vbprivk"
if signprivate.exists():
return Path(signprivate).resolve()
return signprivate
@config_options.add
@Argument("--kernel-cmdline", nargs="+", metavar="CMD")
def kernel_cmdline(self, *cmds):
"""Command line options for the kernel"""
# Break cyclic dependencies here
yield []
cmdline_src = "given options"
if len(cmds) == 0:
cmdline = self.config.get("kernel-cmdline")
if cmdline is not None:
cmds = shlex.split(cmdline)
cmdline_src = "configuration"
if len(cmds) == 0:
cmds = kernel_cmdline(self.root_mountpoint)
cmdline_src = "/etc/kernel/cmdline"
if len(cmds) == 0:
if self.root_mountpoint == Path("/").resolve():
cmds = [
cmd for cmd in proc_cmdline()
if cmd.split("=", 1)[0] not in (
"root", "initrd", "kern_guid", "BOOT_IMAGE",
"cros_secure", "cros_legacy", "cros_efi",
)
]
cmdline_src = "/proc/cmdline"
flat_cmds = []
for cmd in cmds:
flat_cmds.extend(shlex.split(cmd))
if flat_cmds:
self.logger.info(
"Using kernel cmdline from {}: {}"
.format(cmdline_src, " ".join(flat_cmds))
)
return flat_cmds
@config_options.add
@Argument("--ignore-initramfs", ignore=True)
def ignore_initramfs(self, ignore=None):
"""Do not include initramfs in images"""
if ignore is None:
ignore = self.config.getboolean("ignore-initramfs", False)
return ignore
@config_options.add
@Argument("--zimage-initramfs-hack", nargs=1, help=argparse.SUPPRESS)
def zimage_initramfs_hack(self, hack=None):
"""Which initramfs support hack should be used for zimage format"""
if hack is None:
hack = self.config.get("zimage-initramfs-hack", "init-size")
if hack in ("None", "none"):
hack = None
return hack
@Subparsers()
def command(self, cmd):
"""Supported subcommands"""
def __call__(self):
if hasattr(type(self), "list"):
self.logger.info("No subcommand given, defaulting to list")
return type(self).list()
else:
raise ValueError("No subcommand given")
import depthcharge_tools.depthchargectl._bless
import depthcharge_tools.depthchargectl._build
import depthcharge_tools.depthchargectl._check
import depthcharge_tools.depthchargectl._config
import depthcharge_tools.depthchargectl._list
import depthcharge_tools.depthchargectl._remove
import depthcharge_tools.depthchargectl._target
import depthcharge_tools.depthchargectl._write
|