aboutsummaryrefslogtreecommitdiffstats
path: root/ya
blob: cac716bcc053aa4c61ceec49d1f09607e168f8f5 (plain) (blame)
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
#!/usr/bin/env sh

# Shell commands follow
# Next line is bilingual: it starts a comment in Python, but do nothing in shell
""":"

# Find a suitable python interpreter
for cmd in python3 python; do
    command -v > /dev/null $cmd && exec `command -v $cmd` $0 "$@"
done

echo "Python interpreter is not found in this system, please, install python or contact DEVTOOLSSUPPORT" >2

exit 2

":"""
# Previous line is bilingual: it ends a comment in Python, but do nothing in shell
# Shell commands end here
# Python script follows

import os
import sys
import platform
import json

URLS = ['https://proxy.sandbox.yandex-team.ru/4623188607', 'https://storage.yandex-team.ru/get-devtools/1871102/2f7968125edada1f251e86232106a068/by_platform.json']
MD5 = '2f7968125edada1f251e86232106a068'

URLS3 = ['https://proxy.sandbox.yandex-team.ru/4623224890', 'https://storage.yandex-team.ru/get-devtools/1942415/2c63ba1590144f45cacfe985b39dea2d/by_platform.json']
MD53 = '2c63ba1590144f45cacfe985b39dea2d'

DEFAULT_PY_VER = 2

RETRIES = 5
HASH_PREFIX = 10

PY3_HANDLERS = [
    "ya3bin0", "ya3bin3",  # handers for tests
    "krevedko",
    "curl", "nvim", "gdb", "emacs", "grep", "jstyle", "nile", "sed", "vim",
    "py23_utils", 
]
PY2_HANDLERS = ["ya2bin0", "ya2bin2"]

EXPERIMENTAL_PY3_HANDLERS = [
    'upload', 'download', 'paste', 'whoami',
]


def create_dirs(path):
    try:
        os.makedirs(path)
    except OSError as e:
        import errno

        if e.errno != errno.EEXIST:
            raise

    return path


def home_dir():
    # Do not trust $HOME, as it is unreliable in certain environments
    # Temporarily delete os.environ["HOME"] to force reading current home directory from /etc/passwd
    home_from_env = os.environ.pop("HOME", None)
    try:
        home_from_passwd = os.path.expanduser("~")
        if os.path.isabs(home_from_passwd):
            # This home dir is valid, prefer it over $HOME
            return home_from_passwd
        else:
            # When python is built with musl (this is quire weird though),
            # only users from /etc/passwd will be properly resolved,
            # as musl does not have nss module for LDAP integration.
            return home_from_env

    finally:
        if home_from_env is not None:
            os.environ["HOME"] = home_from_env


def misc_root():
    return create_dirs(os.getenv('YA_CACHE_DIR') or os.path.join(home_dir(), '.ya'))


def tool_root():
    return create_dirs(os.getenv('YA_CACHE_DIR_TOOLS') or os.path.join(misc_root(), 'tools'))


def ya_token():
    def get_token_from_file():
        try:
            with open(os.environ.get('YA_TOKEN_PATH', os.path.join(home_dir(), '.ya_token')), 'r') as f:
                return f.read().strip()
        except:
            pass
    return os.getenv('YA_TOKEN') or get_token_from_file()


TOOLS_DIR = tool_root()


def uniq(size=6):
    import string
    import random

    return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(size))


_ssl_is_tuned = False


def _tune_ssl():
    global _ssl_is_tuned
    if _ssl_is_tuned:
        return
    try:
        import ssl
        ssl._create_default_https_context = ssl._create_unverified_context
    except AttributeError:
        pass

    try:
        import urllib3
        urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
    except (AttributeError, ImportError):
        pass
    _ssl_is_tuned = True


def _fetch(url, into):
    import hashlib
    _tune_ssl()

    try:
        from urllib2 import urlopen
        from urllib2 import Request
        from urlparse import urlparse
    except ImportError:
        from urllib.request import urlopen
        from urllib.request import Request
        from urllib.parse import urlparse

    request = Request(str(url))
    request.add_header('User-Agent', 'ya-bootstrap')
    if urlparse(url).netloc == 'proxy.sandbox.yandex-team.ru':
        token = ya_token()
        if token:
            request.add_header('Authorization', 'OAuth {}'.format(token))

    md5 = hashlib.md5()
    sys.stderr.write('Downloading %s ' % url)
    sys.stderr.flush()
    conn = urlopen(request, timeout=10)
    sys.stderr.write('[')
    sys.stderr.flush()
    try:
        with open(into, 'wb') as f:
            while True:
                block = conn.read(1024 * 1024)
                sys.stderr.write('.')
                sys.stderr.flush()
                if block:
                    md5.update(block)
                    f.write(block)
                else:
                    break
        return md5.hexdigest()

    finally:
        sys.stderr.write('] ')
        sys.stderr.flush()


def _atomic_fetch(url, into, md5):
    tmp_dest = into + '.' + uniq()
    try:
        real_md5 = _fetch(url, tmp_dest)
        if real_md5 != md5:
            raise Exception('MD5 mismatched: %s differs from %s' % (real_md5, md5))
        os.rename(tmp_dest, into)
        sys.stderr.write('OK\n')
    except Exception as e:
        sys.stderr.write('ERROR: ' + str(e) + '\n')
        raise
    finally:
        try:
            os.remove(tmp_dest)
        except OSError:
            pass


def _extract(path, into):
    import tarfile

    tar = tarfile.open(path, errorlevel=2)

    # tar.extractall() will try to set file ownership according to the attributes stored in the archive
    # by calling TarFile.chown() method.
    # As this information is hardly relevant to the point of deployment / extraction,
    # it will just fail (python2) if ya is executed with root euid, or silently set non-existent numeric owner (python3)
    # to the files being extracted.
    # mock it with noop to retain current user ownership.
    tar.chown = lambda *args, **kwargs: None

    tar.extractall(path=into)
    tar.close()


def _get(urls, md5):
    dest_path = os.path.join(TOOLS_DIR, md5[:HASH_PREFIX])

    if not os.path.exists(dest_path):
        for iter in range(RETRIES):
            try:
                _atomic_fetch(urls[iter % len(urls)], dest_path, md5)
                break
            except Exception:
                if iter + 1 == RETRIES:
                    raise
                else:
                    import time
                    time.sleep(iter)

    return dest_path


def _get_dir(urls, md5, ya_name):
    dest_dir = os.path.join(TOOLS_DIR, md5[:HASH_PREFIX] + '_d')

    if os.path.isfile(os.path.join(dest_dir, ya_name)):
        return dest_dir

    try:
        packed_path = _get(urls, md5)
    except Exception:
        if os.path.isfile(os.path.join(dest_dir, ya_name)):
            return dest_dir
        raise

    tmp_dir = dest_dir + '.' + uniq()
    try:
        try:
            _extract(packed_path, tmp_dir)
        except Exception:
            if os.path.isfile(os.path.join(dest_dir, ya_name)):
                return dest_dir
            raise

        try:
            os.rename(tmp_dir, dest_dir)
        except OSError as e:
            import errno
            if e.errno != errno.ENOTEMPTY:
                raise

        return dest_dir
    finally:
        import shutil
        shutil.rmtree(tmp_dir, ignore_errors=True)
        try:
            os.remove(packed_path)
        except Exception:
            pass


def _mine_arc_root():
    return os.path.dirname(os.path.realpath(__file__))


def _parse_arguments():
    use_python = None
    use_python_set_force = False
    print_sandbox_id = False
    result_args = list(sys.argv[1:])
    handler = None

    if len(sys.argv) > 1:
        for index, arg in enumerate(sys.argv[1:]):
            if arg == "-3" or arg == "-2":
                if arg == "-3":
                    new_value = 3
                elif arg == "-2":
                    new_value = 2
                else:
                    raise NotImplementedError("Unknown argument: {}".format(arg))

                if use_python is not None and use_python != new_value:
                    sys.stderr.write("You can use only python2 (-2) OR python3 (-3) -based ya-bin, not both\n")
                    exit(2)

                use_python = new_value
                use_python_set_force = True
            elif arg.startswith("--print-sandbox-id="):
                if print_sandbox_id:
                    sys.stderr.write("You can print only one sandbox id at a time")
                    exit(2)

                print_sandbox_id = arg.split('=')[1]
            else:
                # Do not try to parse remaining part of command
                result_args = result_args[index:]
                break

        # All ya script specific arguments found, search for handler

        skippable_flags = ('--error-file',)
        skip_next = False
        for arg in result_args:
            if not arg.startswith("-") and not skip_next:
                handler = arg
                break

            skip_next = arg in skippable_flags

    ENV_TRUE = ('yes', '1')

    py3_handlers_disabled = os.environ.get('YA_DISABLE_PY3_HANDLERS') in ENV_TRUE

    if py3_handlers_disabled:
        use_python = 2
        use_python_set_force = True  # Prevent ya-bin respawn
    elif use_python == 3:
        if not print_sandbox_id:
            sys.stderr.write("!! python3-based ya-bin will be used, "
                             "be prepared for some strange effects, "
                             "don't be ashamed to write in DEVTOOLSSUPPORT about it\n")
        pass
    elif use_python == 2:
        pass
    elif handler in PY2_HANDLERS:
        use_python = 2
    elif handler in PY3_HANDLERS:
        use_python = 3
    else:
        use_python = 23  # ya-bin/3 makes a decision

    if not py3_handlers_disabled and use_python != 3:
        ya_experimental = os.environ.get("YA_EXPERIMENTAL") in ENV_TRUE
        if ya_experimental and handler in EXPERIMENTAL_PY3_HANDLERS:
            sys.stderr.write("!! python3-based ya-bin will be used because of:\n"
                             " * You enable `YA_EXPERIMENTAL` environment variable\n"
                             " * Handler `{}` in the list of experimental python3-compatible handlers"
                             "\n".format(handler))
            use_python = 3

    if use_python == 2:
        urls, md5 = URLS, MD5
    elif use_python == 3:
        urls, md5 = URLS3, MD53
    elif use_python == 23:
        if DEFAULT_PY_VER == 2:
            urls, md5 = URLS, MD5
        elif DEFAULT_PY_VER == 3:
            urls, md5 = URLS3, MD53
        else:
            raise NotImplementedError("Unknown default python version: {}".format(DEFAULT_PY_VER))
    else:
        raise NotImplementedError("Unknown python version: {}".format(use_python))
    return md5, print_sandbox_id, result_args, urls, use_python, use_python_set_force


def main():
    if not os.path.exists(TOOLS_DIR):
        os.makedirs(TOOLS_DIR)

    md5, print_sandbox_id, result_args, urls, use_python, use_python_set_force = _parse_arguments()

    with open(_get(urls, md5), 'r') as fp:
        meta = json.load(fp)['data']
    my_platform = platform.system().lower()
    my_machine = platform.machine().lower()
    if my_platform == 'linux':
        if 'ppc64le' in platform.platform():
            my_platform = 'linux-ppc64le'
        elif 'aarch64' in platform.platform():
            my_platform = 'linux-aarch64'
        else:
            my_platform = 'linux_musl'
    if my_platform == 'darwin' and my_machine == 'arm64':
        my_platform = 'darwin-arm64'

    def _platform_key(target_platform):
        """ match by max prefix length, prefer shortest """
        def _key_for_platform(platform):
            return len(os.path.commonprefix([target_platform, platform])), -len(platform)

        return _key_for_platform

    best_key = max(meta.keys(), key=_platform_key(my_platform))
    value = meta[best_key]

    if print_sandbox_id:
        target = print_sandbox_id
        best_target = max(meta.keys(), key=_platform_key(target))
        sys.stdout.write(str(meta[best_target]['resource_id']) + '\n')
        exit(0)

    ya_name = {'win32': 'ya-bin.exe', 'win32-clang-cl': 'ya-bin.exe'}.get(best_key, 'ya-bin')  # XXX
    ya_dir = _get_dir(value['urls'], value['md5'], ya_name)

    # Popen `args` must have `str` type
    ya_path = str(os.path.join(ya_dir, ya_name))

    env = os.environ.copy()
    if 'YA_SOURCE_ROOT' not in env:
        src_root = _mine_arc_root()
        if src_root is not None:
            env['YA_SOURCE_ROOT'] = src_root

    # For more info see YT-14105
    for env_name in [
        'LD_PRELOAD',
        'Y_PYTHON_SOURCE_ROOT',
    ]:
        if env_name in os.environ:
            sys.stderr.write("Warn: {}='{}' is specified and may affect the correct operation of the ya\n".format(env_name, env[env_name]))

    env['YA_PYVER_REQUIRE'] = str(use_python)
    if use_python_set_force:
        env['YA_PYVER_SET_FORCED'] = 'yes'

    if os.name == 'nt':
        import subprocess

        p = subprocess.Popen([ya_path] + result_args, env=env)
        p.wait()
        sys.exit(p.returncode)
    else:
        os.execve(ya_path, [ya_path] + result_args, env)


if __name__ == '__main__':
    try:
        main()
    except Exception as e:
        sys.stderr.write('ERROR: ' + str(e) + '\n')
        from traceback import format_exc
        sys.stderr.write(format_exc() + "\n")
        sys.exit(1)