summaryrefslogtreecommitdiff
path: root/tools/read-dependencies
blob: d6a23c3230696bcd77c945130531046d7e190d13 (plain)
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
#!/usr/bin/env python3
"""List pip dependencies or system package dependencies for cloud-init."""

# You might be tempted to rewrite this as a shell script, but you
# would be surprised to discover that things like 'egrep' or 'sed' may
# differ between Linux and *BSD.

try:
    from argparse import ArgumentParser
except ImportError:
    raise RuntimeError(
        "Could not import argparse. Please install python3-argparse "
        "package to continue"
    )

import json
import os
import re
import subprocess
import sys

DEFAULT_REQUIREMENTS = "requirements.txt"

# Map the appropriate package dir needed for each distro choice
DISTRO_PKG_TYPE_MAP = {
    "centos": "redhat",
    "eurolinux": "redhat",
    "miraclelinux": "redhat",
    "rocky": "redhat",
    "redhat": "redhat",
    "debian": "debian",
    "ubuntu": "debian",
    "opensuse": "suse",
    "opensuse-leap": "suse",
    "opensuse-microos": "suse",
    "opensuse-tumbleweed": "suse",
    "sle_hpc": "suse",
    "sle-micro": "suse",
    "sles": "suse",
    "suse": "suse",
}

MAYBE_RELIABLE_YUM_INSTALL = [
    "sh",
    "-c",
    """
    error() { echo "$@" 1>&2; }
    configure_repos_for_proxy_use() {
        grep -q "^proxy=" /etc/yum.conf || return 0
        error ":: http proxy in use => forcing the use of fixed URLs in /etc/yum.repos.d/*.repo"
        sed -i --regexp-extended '/^#baseurl=/s/#// ; /^(mirrorlist|metalink)=/s/^/#/' /etc/yum.repos.d/*.repo
        sed -i 's/download\.fedoraproject\.org/dl.fedoraproject.org/g' /etc/yum.repos.d/*.repo
        sed -i 's/download\.example/dl.fedoraproject.org/g' /etc/yum.repos.d/*.repo
    }
    configure_repos_for_proxy_use
    n=0; max=10;
    bcmd="yum install --downloadonly --assumeyes --setopt=keepcache=1"
    while n=$(($n+1)); do
       error ":: running $bcmd $* [$n/$max]"
       $bcmd "$@"
       r=$?
       [ $r -eq 0 ] && break
       [ $n -ge $max ] && { error "gave up on $bcmd"; exit $r; }
       nap=$(($n*5))
       error ":: failed [$r] ($n/$max). sleeping $nap."
       sleep $nap
    done
    error ":: running yum install --cacheonly --assumeyes $*"
    yum install --cacheonly --assumeyes "$@"
    configure_repos_for_proxy_use
    """,
    "reliable-yum-install",
]

ZYPPER_INSTALL = [
    "zypper",
    "--non-interactive",
    "--gpg-auto-import-keys",
    "install",
    "--auto-agree-with-licenses",
]

DRYRUN_DISTRO_INSTALL_PKG_CMD = {
    "redhat": ["yum", "install", "--assumeyes"],
}

DISTRO_INSTALL_PKG_CMD = {
    "redhat": MAYBE_RELIABLE_YUM_INSTALL,
    "debian": ["apt", "install", "-y"],
    "suse": ZYPPER_INSTALL,
}

# List of base system packages required to enable ci automation
CI_SYSTEM_BASE_PKGS = {
    "common": ["make", "sudo", "tar"],
    "eurolinux": ["python3-tox"],
    "miraclelinux": ["python3-tox"],
    "redhat": ["python3-tox"],
    "centos": ["python3-tox"],
    "ubuntu": ["devscripts", "python3-dev", "libssl-dev", "tox", "sbuild"],
    "debian": ["devscripts", "python3-dev", "libssl-dev", "tox", "sbuild"],
}


# JSON definition of distro-specific package dependencies
DISTRO_PKG_DEPS_PATH = "packages/pkg-deps.json"


def get_parser():
    """Return an argument parser for this command."""
    parser = ArgumentParser(description=__doc__)
    parser.add_argument(
        "-r",
        "--requirements-file",
        type=str,
        dest="req_files",
        action="append",
        default=None,
        help="pip-style requirements file [default=%s]" % DEFAULT_REQUIREMENTS,
    )
    parser.add_argument(
        "-d",
        "--distro",
        type=str,
        choices=DISTRO_PKG_TYPE_MAP.keys(),
        help="The name of the distro to generate package deps for.",
    )
    deptype = parser.add_mutually_exclusive_group()
    deptype.add_argument(
        "-R",
        "--runtime-requires",
        action="store_true",
        default=False,
        dest="runtime_requires",
        help="Print only runtime required packages",
    )
    deptype.add_argument(
        "-b",
        "--build-requires",
        action="store_true",
        default=False,
        dest="build_requires",
        help="Print only buildtime required packages",
    )
    parser.add_argument(
        "--dry-run",
        action="store_true",
        default=False,
        dest="dry_run",
        help="Dry run the install, making no package changes.",
    )
    parser.add_argument(
        "-s",
        "--system-pkg-names",
        action="store_true",
        default=False,
        dest="system_pkg_names",
        help="Generate distribution package names (python3-pkgname).",
    )
    parser.add_argument(
        "-i",
        "--install",
        action="store_true",
        default=False,
        dest="install",
        help="When specified, install the required system packages.",
    )
    parser.add_argument(
        "-t",
        "--test-distro",
        action="store_true",
        default=False,
        dest="test_distro",
        help="Additionally install continuous integration system packages "
        "required for build and test automation.",
    )
    return parser


def get_package_deps_from_json(topdir, distro):
    """Get a dict of build and runtime package requirements for a distro.

    @param topdir: The root directory in which to search for the
        DISTRO_PKG_DEPS_PATH json blob of package requirements information.
    @param distro: The specific distribution shortname to pull dependencies
        for.
    @return: Dict containing "requires", "build-requires" and "rename" lists
        for a given distribution.
    """
    with open(os.path.join(topdir, DISTRO_PKG_DEPS_PATH), "r") as stream:
        deps = json.loads(stream.read())
    if distro is None:
        return {}
    if deps.get(distro):  # If we have a specific distro defined, use it.
        return deps[distro]
    # Use generic distro dependency map via DISTRO_PKG_TYPE_MAP
    return deps[DISTRO_PKG_TYPE_MAP[distro]]


def parse_pip_requirements(requirements_path):
    """Return the pip requirement names from pip-style requirements_path."""
    dep_names = []
    with open(requirements_path, "r") as fp:
        for line in fp:
            line = line.strip()
            if not line or line.startswith("#"):
                continue

            # remove pip-style markers
            dep = line.split(";")[0]

            # remove version requirements
            if re.search("[>=.<]+", dep):
                dep_names.append(re.split(r"[>=.<]+", dep)[0].strip())
            else:
                dep_names.append(dep)
    return dep_names


def translate_pip_to_system_pkg(pip_requires, renames):
    """Translate pip package names to distro-specific package names.

    @param pip_requires: List of versionless pip package names to translate.
    @param renames: Dict containg special case renames from pip name to system
        package name for the distro.
    """
    prefix = "python3-"
    standard_pkg_name = "{0}{1}"
    translated_names = []
    for pip_name in pip_requires:
        pip_name = pip_name.lower()
        # Find a rename if present for the distro package and python version
        rename = renames.get(pip_name, "")
        if rename:
            translated_names.append(rename)
        else:
            translated_names.append(standard_pkg_name.format(prefix, pip_name))
    return translated_names


def main(distro):
    parser = get_parser()
    args = parser.parse_args()
    if "CLOUD_INIT_TOP_D" in os.environ:
        topd = os.path.realpath(os.environ.get("CLOUD_INIT_TOP_D"))
    else:
        topd = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))

    if args.test_distro:
        # Give us all the system deps we need for continuous integration
        if args.req_files:
            sys.stderr.write(
                "Parameter --test-distro overrides --requirements-file. Use "
                "one or the other.\n"
            )
            sys.exit(1)
        args.req_files = [
            os.path.join(topd, DEFAULT_REQUIREMENTS),
            os.path.join(topd, "test-" + DEFAULT_REQUIREMENTS),
        ]
        args.install = True
    if args.req_files is None:
        args.req_files = [os.path.join(topd, DEFAULT_REQUIREMENTS)]
        if not os.path.isfile(args.req_files[0]):
            sys.stderr.write(
                "Unable to locate '%s' file that should "
                "exist in cloud-init root directory." % args.req_files[0]
            )
            sys.exit(1)

    bad_files = [r for r in args.req_files if not os.path.isfile(r)]
    if bad_files:
        sys.stderr.write(
            "Unable to find requirements files: %s\n" % ",".join(bad_files)
        )
        sys.exit(1)

    pip_pkg_names = set()
    for req_path in args.req_files:
        pip_pkg_names.update(set(parse_pip_requirements(req_path)))
    deps_from_json = get_package_deps_from_json(topd, args.distro)
    renames = deps_from_json.get("renames", {})
    translated_pip_names = translate_pip_to_system_pkg(pip_pkg_names, renames)
    all_deps = []
    select_requires = [args.build_requires, args.runtime_requires]
    if args.distro:
        if not any(select_requires):
            all_deps.extend(
                translated_pip_names
                + deps_from_json["requires"]
                + deps_from_json["build-requires"]
            )
        else:
            if args.build_requires:
                all_deps.extend(deps_from_json["build-requires"])
            else:
                all_deps.extend(
                    translated_pip_names + deps_from_json["requires"]
                )
    else:
        if args.system_pkg_names:
            all_deps = translated_pip_names
        else:
            all_deps = pip_pkg_names
    all_deps = sorted(all_deps)
    if args.install:
        pkg_install(all_deps, args.distro, args.test_distro, args.dry_run)
    else:
        print("\n".join(all_deps))


def pkg_install(pkg_list, distro, test_distro=False, dry_run=False):
    """Install a list of packages using the DISTRO_INSTALL_PKG_CMD."""
    if test_distro:
        pkg_list = list(pkg_list) + CI_SYSTEM_BASE_PKGS["common"]
        distro_base_pkgs = CI_SYSTEM_BASE_PKGS.get(distro, [])
        pkg_list += distro_base_pkgs
    print(
        "Installing deps: {0}{1}".format(
            "(dryrun)" if dry_run else "", " ".join(pkg_list)
        )
    )
    install_cmd = []
    if dry_run:
        install_cmd.append("echo")
    if os.geteuid() != 0:
        install_cmd.append("sudo")

    distro_family = DISTRO_PKG_TYPE_MAP[distro]
    if dry_run and distro_family in DRYRUN_DISTRO_INSTALL_PKG_CMD:
        cmd = DRYRUN_DISTRO_INSTALL_PKG_CMD[distro_family]
    else:
        cmd = DISTRO_INSTALL_PKG_CMD[distro_family]
    install_cmd.extend(cmd)

    if distro in ["centos", "redhat", "rocky", "eurolinux"]:
        # CentOS and Redhat need epel-release to access oauthlib and jsonschema
        subprocess.check_call(install_cmd + ["epel-release"])
    if distro in [
        "suse",
        "opensuse",
        "redhat",
        "rocky",
        "centos",
        "eurolinux",
    ]:
        pkg_list.append("rpm-build")
    subprocess.check_call(install_cmd + pkg_list)


if __name__ == "__main__":
    parser = get_parser()
    args = parser.parse_args()
    sys.exit(main(args.distro))

# vi: ts=4 expandtab