/usr/lib/python3/dist-packages/click/install.py is in python3-click 0.4.21.1.
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 | # Copyright (C) 2013 Canonical Ltd.
# Author: Colin Watson <cjwatson@ubuntu.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Installing Click packages."""
from __future__ import print_function
__metaclass__ = type
__all__ = [
'ClickInstaller',
'ClickInstallerAuditError',
'ClickInstallerError',
'ClickInstallerPermissionDenied',
]
from functools import partial
import grp
import inspect
import json
import os
import pwd
import shutil
import stat
import subprocess
import sys
import tempfile
from contextlib import closing
import apt_pkg
from debian.debfile import DebFile as _DebFile
from debian.debian_support import Version
from gi.repository import Click
from click.paths import preload_path
from click.preinst import static_preinst_matches
from click.versions import spec_version
try:
_DebFile.close
DebFile = _DebFile
except AttributeError:
# Yay! The Ubuntu 13.04 version of python-debian 0.1.21
# debian.debfile.DebFile has a .close() method but the PyPI version of
# 0.1.21 does not. It's worse than that because DebFile.close() really
# delegates to DebPart.close() and *that's* missing in the PyPI version.
# To get that working, we have to reach inside the object and name mangle
# the attribute.
class DebFile(_DebFile):
def close(self):
self.control._DebPart__member.close()
self.data._DebPart__member.close()
apt_pkg.init_system()
class ClickInstallerError(Exception):
pass
class ClickInstallerPermissionDenied(ClickInstallerError):
pass
class ClickInstallerAuditError(ClickInstallerError):
pass
class ClickInstaller:
def __init__(self, db, force_missing_framework=False):
self.db = db
self.force_missing_framework = force_missing_framework
def _preload_path(self):
if "CLICK_PACKAGE_PRELOAD" in os.environ:
return os.environ["CLICK_PACKAGE_PRELOAD"]
my_path = inspect.getsourcefile(ClickInstaller)
preload = os.path.join(
os.path.dirname(my_path), os.pardir, "preload", ".libs",
"libclickpreload.so")
if os.path.exists(preload):
return os.path.abspath(preload)
return preload_path
def _dpkg_architecture(self):
return subprocess.check_output(
["dpkg", "--print-architecture"],
universal_newlines=True).rstrip("\n")
def extract(self, path, target):
command = ["dpkg-deb", "-R", path, target]
with open(path, "rb") as fd:
env = dict(os.environ)
preloads = [self._preload_path()]
if "LD_PRELOAD" in env:
preloads.append(env["LD_PRELOAD"])
env["LD_PRELOAD"] = " ".join(preloads)
env["CLICK_BASE_DIR"] = target
env["CLICK_PACKAGE_PATH"] = path
env["CLICK_PACKAGE_FD"] = str(fd.fileno())
env.pop("HOME", None)
kwargs = {}
if sys.version >= "3.2":
kwargs["pass_fds"] = (fd.fileno(),)
subprocess.check_call(command, env=env, **kwargs)
def audit(self, path, slow=False, check_arch=False):
with closing(DebFile(filename=path)) as package:
control_fields = package.control.debcontrol()
try:
click_version = Version(control_fields["Click-Version"])
except KeyError:
raise ClickInstallerAuditError("No Click-Version field")
if click_version > spec_version:
raise ClickInstallerAuditError(
"Click-Version: %s newer than maximum supported version "
"%s" % (click_version, spec_version))
for field in (
"Pre-Depends", "Depends", "Recommends", "Suggests", "Enhances",
"Conflicts", "Breaks",
"Provides",
):
if field in control_fields:
raise ClickInstallerAuditError(
"%s field is forbidden in Click packages" % field)
scripts = package.control.scripts()
if ("preinst" in scripts and
static_preinst_matches(scripts["preinst"])):
scripts.pop("preinst", None)
if scripts:
raise ClickInstallerAuditError(
"Maintainer scripts are forbidden in Click packages "
"(found: %s)" %
" ".join(sorted(scripts)))
if not package.control.has_file("manifest"):
raise ClickInstallerAuditError("Package has no manifest")
with package.control.get_file("manifest", encoding="UTF-8") as f:
manifest = json.load(f)
try:
package_name = manifest["name"]
except KeyError:
raise ClickInstallerAuditError('No "name" entry in manifest')
# TODO: perhaps just do full name validation?
if "/" in package_name:
raise ClickInstallerAuditError(
'Invalid character "/" in "name" entry: %s' % package_name)
if "_" in package_name:
raise ClickInstallerAuditError(
'Invalid character "_" in "name" entry: %s' % package_name)
try:
package_version = manifest["version"]
except KeyError:
raise ClickInstallerAuditError(
'No "version" entry in manifest')
# TODO: perhaps just do full version validation?
if "/" in package_version:
raise ClickInstallerAuditError(
'Invalid character "/" in "version" entry: %s' %
package_version)
if "_" in package_version:
raise ClickInstallerAuditError(
'Invalid character "_" in "version" entry: %s' %
package_version)
try:
framework = manifest["framework"]
except KeyError:
raise ClickInstallerAuditError(
'No "framework" entry in manifest')
try:
parsed_framework = apt_pkg.parse_depends(framework)
except ValueError:
raise ClickInstallerAuditError(
'Could not parse framework "%s"' % framework)
for or_dep in parsed_framework:
if len(or_dep) > 1:
raise ClickInstallerAuditError(
'Alternative dependencies in framework "%s" not yet '
'allowed' % framework)
if or_dep[0][1] or or_dep[0][2]:
raise ClickInstallerAuditError(
'Version relationship in framework "%s" not yet '
'allowed' % framework)
if not self.force_missing_framework:
missing_frameworks = []
for or_dep in parsed_framework:
if not Click.Framework.has_framework(or_dep[0][0]):
missing_frameworks.append(or_dep[0][0])
if len(missing_frameworks) > 1:
raise ClickInstallerAuditError(
'Frameworks %s not present on system (use '
'--force-missing-framework option to override)' %
", ".join('"%s"' % f for f in missing_frameworks))
elif missing_frameworks:
raise ClickInstallerAuditError(
'Framework "%s" not present on system (use '
'--force-missing-framework option to override)' %
missing_frameworks[0])
if check_arch:
architecture = manifest.get("architecture", "all")
if architecture != "all":
dpkg_architecture = self._dpkg_architecture()
if isinstance(architecture, list):
if dpkg_architecture not in architecture:
raise ClickInstallerAuditError(
'Package architectures "%s" not compatible '
'with system architecture "%s"' %
(" ".join(architecture), dpkg_architecture))
elif architecture != dpkg_architecture:
raise ClickInstallerAuditError(
'Package architecture "%s" not compatible '
'with system architecture "%s"' %
(architecture, dpkg_architecture))
if slow:
temp_dir = tempfile.mkdtemp(prefix="click")
try:
self.extract(path, temp_dir)
command = [
"md5sum", "-c", "--quiet",
os.path.join("DEBIAN", "md5sums"),
]
subprocess.check_call(command, cwd=temp_dir)
finally:
shutil.rmtree(temp_dir)
return package_name, package_version
def _drop_privileges(self, username):
if os.geteuid() != 0:
return
pw = pwd.getpwnam(username)
os.setgroups(
[g.gr_gid for g in grp.getgrall() if username in g.gr_mem])
# Portability note: this assumes that we have [gs]etres[gu]id, which
# is true on Linux but not necessarily elsewhere. If you need to
# support something else, there are reasonably standard alternatives
# involving other similar calls; see e.g. gnulib/lib/idpriv-drop.c.
os.setresgid(pw.pw_gid, pw.pw_gid, pw.pw_gid)
os.setresuid(pw.pw_uid, pw.pw_uid, pw.pw_uid)
assert os.getresuid() == (pw.pw_uid, pw.pw_uid, pw.pw_uid)
assert os.getresgid() == (pw.pw_gid, pw.pw_gid, pw.pw_gid)
os.umask(0o022)
def _euid_access(self, username, path, mode):
"""Like os.access, but for the effective UID."""
# TODO: Dropping privileges and calling
# os.access(effective_ids=True) ought to work, but for some reason
# appears not to return False when it should. It seems that we need
# a subprocess to check this reliably. At least we don't have to
# exec anything.
pid = os.fork()
if pid == 0: # child
self._drop_privileges(username)
os._exit(0 if os.access(path, mode) else 1)
else: # parent
_, status = os.waitpid(pid, 0)
return status == 0
def _check_write_permissions(self, path):
while True:
if os.path.exists(path):
break
path = os.path.dirname(path)
if path == "/":
break
if not self._euid_access("clickpkg", path, os.W_OK):
raise ClickInstallerPermissionDenied(
'Cannot acquire permission to write to %s; either run as root '
'with --user, or use "pkcon install-local" instead' % path)
def _install_preexec(self, inst_dir):
self._drop_privileges("clickpkg")
admin_dir = os.path.join(inst_dir, ".click")
if not os.path.exists(admin_dir):
os.makedirs(admin_dir)
with open(os.path.join(admin_dir, "available"), "w"):
pass
with open(os.path.join(admin_dir, "status"), "w"):
pass
os.mkdir(os.path.join(admin_dir, "info"))
os.mkdir(os.path.join(admin_dir, "updates"))
os.mkdir(os.path.join(admin_dir, "triggers"))
def _unpack(self, path, user=None, all_users=False):
package_name, package_version = self.audit(path, check_arch=True)
# Is this package already unpacked in an underlay (non-topmost)
# database?
if self.db.has_package_version(package_name, package_version):
overlay = self.db.get(self.db.props.size - 1)
if not overlay.has_package_version(package_name, package_version):
return package_name, package_version, None
package_dir = os.path.join(self.db.props.overlay, package_name)
inst_dir = os.path.join(package_dir, package_version)
assert (
os.path.dirname(os.path.dirname(inst_dir)) ==
self.db.props.overlay)
self._check_write_permissions(self.db.props.overlay)
root_click = os.path.join(self.db.props.overlay, ".click")
if not os.path.exists(root_click):
os.makedirs(root_click)
if os.geteuid() == 0:
pw = pwd.getpwnam("clickpkg")
os.chown(root_click, pw.pw_uid, pw.pw_gid)
# TODO: sandbox so that this can only write to the unpack directory
command = [
"dpkg",
# We normally run dpkg as non-root.
"--force-not-root",
# /sbin and /usr/sbin may not necessarily be on $PATH; we don't
# use the tools dpkg gets from there.
"--force-bad-path",
# We check the package architecture ourselves in audit().
"--force-architecture",
"--instdir", inst_dir,
"--admindir", os.path.join(inst_dir, ".click"),
"--path-exclude", "*/.click/*",
"--log", os.path.join(root_click, "log"),
"--no-triggers",
"--install", path,
]
with open(path, "rb") as fd:
env = dict(os.environ)
preloads = [self._preload_path()]
if "LD_PRELOAD" in env:
preloads.append(env["LD_PRELOAD"])
env["LD_PRELOAD"] = " ".join(preloads)
env["CLICK_BASE_DIR"] = self.db.props.overlay
env["CLICK_PACKAGE_PATH"] = path
env["CLICK_PACKAGE_FD"] = str(fd.fileno())
env.pop("HOME", None)
kwargs = {}
if sys.version >= "3.2":
kwargs["pass_fds"] = (fd.fileno(),)
subprocess.check_call(
command, preexec_fn=partial(self._install_preexec, inst_dir),
env=env, **kwargs)
for dirpath, dirnames, filenames in os.walk(inst_dir):
for entry in dirnames + filenames:
entry_path = os.path.join(dirpath, entry)
entry_mode = os.stat(entry_path).st_mode
new_entry_mode = entry_mode | stat.S_IRGRP | stat.S_IROTH
if entry_mode & stat.S_IXUSR:
new_entry_mode |= stat.S_IXGRP | stat.S_IXOTH
if new_entry_mode != entry_mode:
try:
os.chmod(entry_path, new_entry_mode)
except OSError:
pass
current_path = os.path.join(package_dir, "current")
if os.path.islink(current_path):
old_version = os.readlink(current_path)
if "/" in old_version:
old_version = None
else:
old_version = None
Click.package_install_hooks(
self.db, package_name, old_version, package_version,
user_name=None)
new_path = os.path.join(package_dir, "current.new")
Click.symlink_force(package_version, new_path)
if os.geteuid() == 0:
# shutil.chown would be more convenient, but it doesn't support
# follow_symlinks=False in Python 3.3.
# http://bugs.python.org/issue18108
pw = pwd.getpwnam("clickpkg")
os.chown(new_path, pw.pw_uid, pw.pw_gid, follow_symlinks=False)
os.rename(new_path, current_path)
return package_name, package_version, old_version
def install(self, path, user=None, all_users=False):
package_name, package_version, old_version = self._unpack(
path, user=user, all_users=all_users)
if user is not None or all_users:
if all_users:
registry = Click.User.for_all_users(self.db)
else:
registry = Click.User.for_user(self.db, name=user)
registry.set_version(package_name, package_version)
if old_version is not None:
self.db.maybe_remove(package_name, old_version)
|