File size: 10,245 Bytes
7475f0d | 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 | import atexit
import base64
import errno
import os
import sys
import uuid
from os.path import dirname, isdir, isfile
from threading import RLock
from typing import List, Optional
DPREFIX = os.environ.get("ANACONDA_ANON_USAGE_DEBUG_PREFIX") or ""
DEBUG = bool(os.environ.get("ANACONDA_ANON_USAGE_DEBUG")) or DPREFIX
# When creating a new environment, the environment token will be
# created in advance of the action creation of the standard conda
# directory structure. If we write the token to its location and
# then the creation is interrupted, the directory will now be in
# a state where conda is unwilling to install into it, thinking
# it is a non-empty non-conda directory.
DEFERRED = []
# While lru_cache is thread safe, it does not prevent two threads
# from beginning the same computation. This simple cache mechanism
# uses a lock to ensure that only one thread even attempts.
CACHE = {}
LOCK = RLock()
# Causes tokens reads to fail (for testing). The string should contain
# the token types that should fail; e.g., c, s, e
READ_CHAOS = os.environ.get("ANACONDA_ANON_USAGE_READ_CHAOS") or ""
# Causes token writes to fail (for testing). The string should contain
# the token types that should fail; c, e
WRITE_CHAOS = os.environ.get("ANACONDA_ANON_USAGE_WRITE_CHAOS") or ""
# Causes token writes to include a trailing newline (for testing).
WRITE_NEWLINE = False
WRITE_SUCCESS = 0
WRITE_DEFER = 1
WRITE_FAIL = 2
# Number of bits of randomness to include in the token
MIN_ENTROPY = 128
# Number of base64-encoded characters required to contain
# at least MIN_ENTROPY bits of randomness
TOKEN_LENGTH = (MIN_ENTROPY - 1) // 6 + 1
def cached(func):
def call_if_needed(*args, **kwargs):
global CACHE
key = (func.__name__, args, tuple(kwargs.items()))
if key not in CACHE:
with LOCK:
# Need to check again, just in case the
# computation was happening between the
# first check and the lock acquisition.
if key not in CACHE:
CACHE[key] = func(*args, **kwargs)
return CACHE[key]
return call_if_needed
def _cache_clear(*args):
global CACHE
global __nodestr
if not args:
CACHE.clear()
else:
CACHE = {k: v for k, v in CACHE.items() if k[0] not in args}
def _debug(s, *args, error=False):
if error and not DEBUG:
# Suppress error output in --json mode. This accommodates
# processes that might be using --json mode and merging
# stdout and stderr together. If DEBUG is True we assume
# this accommodation is not necessary. The import is
# deferred here as well to reduce the likelihood of a
# circular import issue.
from conda.base.context import context
error = not context.json
if error or DEBUG:
print((DPREFIX + s) % args, file=sys.stderr)
def _random_token(what="random"):
# base64 encoding captures 6 bits per character.
# Generate enough random bytes to ensure all characters are random
data = os.urandom((TOKEN_LENGTH * 6 - 1) // 8 + 1)
result = base64.urlsafe_b64encode(data).decode("ascii")[:TOKEN_LENGTH]
_debug("Generated %s token: %s", what, result)
return result
def _final_attempt():
"""
Called upon the graceful exit from conda, this attempts to
write an environment token that was deferred because the
environment directory was not yet available.
"""
global DEFERRED
for must_exist, fpath, token, what in DEFERRED:
_write_attempt(must_exist, fpath, token)
atexit.register(_final_attempt)
def _write_attempt(must_exist, fpath, client_token, emulate_fail=False):
"""
Attempt to write the token to the given location.
Return True with success, False otherwise.
"""
if must_exist and not isdir(must_exist):
_debug("Directory not ready: %s", must_exist)
return WRITE_DEFER
try:
if emulate_fail:
raise OSError(errno.EROFS, "Testing permissions issues")
os.makedirs(dirname(fpath), exist_ok=True)
if WRITE_NEWLINE:
client_token = client_token + "\n# Test comment"
with open(fpath, "w") as fp:
fp.write(client_token)
_debug("Token saved: %s", fpath)
return WRITE_SUCCESS
except Exception as exc:
# If we get here, a second attempt is unlikely to succeed,
# so we return a code to indicate that we should not re-attempt.
if getattr(exc, "errno", None) in (errno.EACCES, errno.EPERM, errno.EROFS):
_debug("No write permissions; cannot write token")
else:
_debug(
"Unexpected error writing token file:\n path: %s\n exception: %s",
fpath,
exc,
error=True,
)
return WRITE_FAIL
def _deferred_exists(
fpath: str, what: str, deferred_writes: List = DEFERRED
) -> Optional[str]:
"""
Check if the deferred token write exists in the DEFERRED write array.
If the path must already exist, this helper function determines
if the token will be written in the future.
Args:
fpath: The file path to check for.
what: The type of token to check for.
deferred_tokens: The list of deferred tokens to check.
Returns:
The token if it exists, otherwise None.
"""
for _, fp, token, w in deferred_writes:
if fp == fpath and w == what:
return token
def _read_file(fpath, what, read_only=False, single_line=False):
"""
Implements the saved token functionality. If the specified
file exists, and contains a token with the right format,
return it. Otherwise, generate a new one and save it in
this location. If that fails, return an empty string.
"""
global DEFERRED
# If a deferred token exits for the given fpath, return it instead of generating a new one.
deferred_token = _deferred_exists(fpath, what)
if deferred_token:
_debug("Returning deferred %s: %s", what, deferred_token)
return deferred_token
_debug("%s path: %s", what.capitalize(), fpath)
if what[0] in READ_CHAOS:
_debug("Pretending %s is not present", what)
elif not isfile(fpath):
_debug("%s file is not present", what)
else:
try:
with open(fpath) as fp:
data = fp.read()
if single_line:
# Use just the first non-blank line of the file
data = data.strip()
if data:
data = data.splitlines()[0]
_debug("Retrieved %s: %s", what, data)
return data
except Exception as exc:
_debug("Unexpected error reading: %s\n %s", fpath, exc, error=True)
def _get_node_str():
"""
Returns a base64-encoded representation of the host ID
as determined by uuid.getnode().
"""
val = uuid._unix_getnode() or uuid._windll_getnode()
# https://github.com/anaconda/anaconda-anon-usage/pull/173
if not val and getattr(uuid, "_generate_time_safe", None):
val = uuid.UUID(bytes=uuid._generate_time_safe()[0]).node
if val:
val = val.to_bytes(6, byteorder=sys.byteorder)
val = base64.urlsafe_b64encode(val)
val = val.decode("ascii")
return val
def _saved_token(fpath, what, must_exist=None, read_only=False, node_tie=False):
"""
Implements the saved token functionality. If the specified
file exists, and contains a token with the right format,
return it. Otherwise, generate a new one and save it in
this location. If that fails, return an empty string.
"""
global DEFERRED
what = what + " token"
regenerate = resave = False
client_token = _read_file(fpath, what, single_line=True) or ""
# Version 0.7.0 stored the host ID alongside the client token
client_token, *xtra = client_token.split(" ", 1)
if len(client_token) < TOKEN_LENGTH:
if client_token:
_debug("Regenerating %s due to short length", what)
regenerate = True
if node_tie:
# Client tokens should be unique to each user, but under some
# scenarios they are inadvertently copied to multiple machines,
# which breaks that behavior. To resolve this issue, we create a
# sidecar file containing the host ID. If the host ID changes,
# we can regenerate the token. The token itself remains 100%
# anonymous under this approach, and the host ID is not sent.
current_node = _get_node_str()
npath = fpath + "_host"
saved_node = _read_file(npath, "Host id", single_line=True) or ""
true_node = saved_node or (xtra[0] if xtra else None)
if regenerate or not true_node:
pass
elif true_node != current_node:
_debug("Regenerating %s due to hostID change", what)
regenerate = True
elif xtra:
_debug("Stripping host ID from %s file", what)
resave = True
else:
_debug("Host ID match confirmed for %s", what)
if saved_node != current_node:
action = (
("Migrating" if true_node == current_node else "Updating")
if true_node
else "Saving"
)
current_node = current_node or ""
_debug("%s host ID: %s", action, current_node)
if _write_attempt(False, npath, current_node, False) == WRITE_DEFER:
DEFERRED.append((False, npath, current_node, "Host ID"))
if regenerate or resave:
if read_only:
return ""
if regenerate:
client_token = _random_token()
status = _write_attempt(must_exist, fpath, client_token, what[0] in WRITE_CHAOS)
if status == WRITE_FAIL:
_debug("Returning blank %s", what)
return ""
elif status == WRITE_DEFER:
# If the environment has not yet been created we need
# to defer the token write until later.
_debug("Deferring %s write", what)
DEFERRED.append((must_exist, fpath, client_token, what))
return client_token
|