aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/YumCommand.java
blob: 64b637fdd5b145f8bedeee8a8223ff4750bad914 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.yum;

import com.yahoo.vespa.hosted.node.admin.component.TaskContext;
import com.yahoo.vespa.hosted.node.admin.task.util.process.CommandLine;
import com.yahoo.vespa.hosted.node.admin.task.util.process.CommandResult;
import com.yahoo.vespa.hosted.node.admin.task.util.process.Terminal;

import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.function.Function;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;

/**
 * @author freva
 */
public abstract class YumCommand<T extends YumCommand<T>> {

    // Note: "(?dm)" makes newline be \n (only), and enables multiline mode where ^$ match lines with find()
    public static final Pattern INSTALL_NOOP_PATTERN = Pattern.compile("(?dm)^Nothing to do\\.?$");
    public static final Pattern UPGRADE_NOOP_PATTERN = Pattern.compile("(?dm)^No packages marked for update$");
    public static final Pattern REMOVE_NOOP_PATTERN = Pattern.compile("(?dm)^No [pP]ackages marked for removal\\.?$");

    // WARNING: These must be in the same order as the supplier below
    private static final String RPM_QUERYFORMAT = Stream.of("NAME", "EPOCH", "VERSION", "RELEASE", "ARCH")
            .map(formatter -> "%{" + formatter + "}")
            .collect(Collectors.joining("\\n"));
    private static final Function<YumPackageName.Builder, List<Function<String, YumPackageName.Builder>>>
            PACKAGE_NAME_BUILDERS_GENERATOR = builder -> List.of(
            builder::setName, builder::setEpoch, builder::setVersion, builder::setRelease, builder::setArchitecture);

    private List<String> disabledRepos = List.of();
    private List<String> enabledRepos = List.of();
    private final Terminal terminal;

    protected YumCommand(Terminal terminal) {
        this.terminal = terminal;
    }

    /** Disables the given repos for this command */
    public T disableRepo(String... repo) {
        disabledRepos = List.of(repo);
        return getThis();
    }

    /** Enables the given repos for this command */
    public T enableRepo(String... repo) {
        enabledRepos = List.of(repo);
        return getThis();
    }

    protected abstract T getThis(); // Hack to get around unchecked cast warning

    protected void addParametersToCommandLine(CommandLine commandLine) {
        commandLine.add("--assumeyes");
        disabledRepos.forEach(repo -> commandLine.add("--disablerepo=" + repo));
        enabledRepos.forEach(repo -> commandLine.add("--enablerepo=" + repo));
    }

    public abstract boolean converge(TaskContext context);

    public static class GenericYumCommand extends YumCommand<GenericYumCommand> {
        private static final Pattern UNKNOWN_PACKAGE_PATTERN = Pattern.compile("(?dm)^No package ([^ ]+) available\\.$");

        private final Terminal terminal;
        private final CommandType yumCommand;
        private final List<YumPackageName> packages;
        private final List<String> options = new ArrayList<>();

        GenericYumCommand(Terminal terminal, CommandType yumCommand, List<YumPackageName> packages) {
            super(terminal);
            this.terminal = terminal;
            this.yumCommand = yumCommand;
            this.packages = packages;

            switch (yumCommand) {
                case install: {
                    if (packages.size() > 1) options.add("skip_missing_names_on_install=False");
                    break;
                }
                case upgrade: {
                    if (packages.size() > 1) options.add("skip_missing_names_on_update=False");
                    break;
                }
                case remove: break;
                default: throw new IllegalArgumentException("Unknown yum command: " + yumCommand);
            }

            if (packages.isEmpty() && yumCommand != CommandType.upgrade)
                throw new IllegalArgumentException("No packages specified");
        }

        @Override
        protected void addParametersToCommandLine(CommandLine commandLine) {
            super.addParametersToCommandLine(commandLine);
            options.forEach(option -> commandLine.add("--setopt", option));
        }

        @Override
        public boolean converge(TaskContext context) {
            if (yumCommand == CommandType.install)
                if (packages.stream().allMatch(pkg -> isInstalled(context, pkg))) return false;
            if (yumCommand == CommandType.remove)
                if (packages.stream().noneMatch(pkg -> isInstalled(context, pkg))) return false;

            CommandLine commandLine = terminal.newCommandLine(context);
            commandLine.add("yum", yumCommand.name());
            addParametersToCommandLine(commandLine);
            commandLine.add(packages.stream().map(pkg -> pkg.toName()).toList());

            // There's no way to figure out whether a yum command would have been a no-op.
            // Therefore, run the command and parse the output to decide.
            boolean modifiedSystem = commandLine
                    .executeSilently()
                    .mapOutput(this::packageChanged);

            if (modifiedSystem) {
                commandLine.recordSilentExecutionAsSystemModification();
            }

            return modifiedSystem;
        }

        private boolean packageChanged(String output) {
            Matcher unknownPackageMatcher = UNKNOWN_PACKAGE_PATTERN.matcher(output);
            if (unknownPackageMatcher.find()) {
                throw new IllegalArgumentException("Unknown package: " + unknownPackageMatcher.group(1));
            }

            return yumCommand.outputNoopPatterns.stream().noneMatch(pattern -> pattern.matcher(output).find());
        }

        protected GenericYumCommand getThis() { return this; }

        enum CommandType {
            install(INSTALL_NOOP_PATTERN), remove(REMOVE_NOOP_PATTERN), upgrade(INSTALL_NOOP_PATTERN, UPGRADE_NOOP_PATTERN);

            private final List<Pattern> outputNoopPatterns;
            CommandType(Pattern... outputNoopPatterns) {
                this.outputNoopPatterns = List.of(outputNoopPatterns);
            }
        }
    }


    public static class InstallFixedYumCommand extends YumCommand<InstallFixedYumCommand> {
        // Note: "(?dm)" makes newline be \n (only), and enables multiline mode where ^$ match lines with find()
        private static final Pattern CHECKING_FOR_UPDATE_PATTERN =
                Pattern.compile("(?dm)^Package matching [^ ]+ already installed\\. Checking for update\\.$");

        private final Terminal terminal;
        private final YumPackageName yumPackage;

        InstallFixedYumCommand(Terminal terminal, YumPackageName yumPackage) {
            super(terminal);
            this.terminal = terminal;
            this.yumPackage = yumPackage;
        }

        @Override
        public boolean converge(TaskContext context) {
            String targetVersionLockName = yumPackage.toVersionLockName();

            boolean alreadyLocked = false;
            Optional<String> versionLock = versionLockExists(context, terminal, yumPackage);
            if (versionLock.isPresent()) {
                if (versionLock.get().equals(targetVersionLockName)) {
                    alreadyLocked = true;
                } else {
                    YumCommand.deleteVersionLock(context, terminal, versionLock.get());
                }
            }

            boolean modified = false;

            if (!alreadyLocked) {
                CommandLine commandLine = terminal.newCommandLine(context).add("yum", "versionlock", "add");
                // If the targetVersionLockName refers to a package in a by-default-disabled repo,
                // we must enable the repo unless targetVersionLockName is already installed.
                // The other versionlock commands (list, delete) does not require --enablerepo.
                addParametersToCommandLine(commandLine);
                commandLine.add(targetVersionLockName).execute();
                modified = true;
            }

            // The following 3 things may happen with yum install:
            //  1. The package is installed or upgraded to the target version, in case we'd return
            //     true from converge()
            //  2. The package is already installed at target version, in case
            //     "Nothing to do" is printed in the last line and we may return false from converge()
            //  3. The package is already installed but at a later version than the target version,
            //     in case the last 2 lines of the output is:
            //       - "Package matching yakl-client-0.10-654.el7.x86_64 already installed. Checking for update."
            //       - "Nothing to do"
            //     And in case we need to downgrade and return true from converge()

            var installCommand = terminal.newCommandLine(context).add("yum", "install");
            addParametersToCommandLine(installCommand);
            installCommand.add(yumPackage.toName());

            String output = installCommand.executeSilently().getUntrimmedOutput();

            if (INSTALL_NOOP_PATTERN.matcher(output).find()) {
                if (CHECKING_FOR_UPDATE_PATTERN.matcher(output).find()) {
                    // case 3.
                    var upgradeCommand = terminal.newCommandLine(context).add("yum", "downgrade");
                    addParametersToCommandLine(upgradeCommand);
                    upgradeCommand.add(yumPackage.toName()).execute();
                    modified = true;
                } else {
                    // case 2.
                }
            } else {
                // case 1.
                installCommand.recordSilentExecutionAsSystemModification();
                modified = true;
            }

            return modified;
        }

        protected InstallFixedYumCommand getThis() { return this; }
    }

    public static class DeleteVersionLockYumCommand extends YumCommand<DeleteVersionLockYumCommand> {
        private final Terminal terminal;
        private final YumPackageName yumPackage;

        DeleteVersionLockYumCommand(Terminal terminal, YumPackageName yumPackage) {
            super(terminal);
            this.terminal = terminal;
            this.yumPackage = yumPackage;
        }

        @Override
        public boolean converge(TaskContext context) {
            return deleteVersionLock(context, terminal, yumPackage.toName());
        }

        protected DeleteVersionLockYumCommand getThis() { return this; }
    }

    protected boolean isInstalled(TaskContext context, YumPackageName yumPackage) {
        return queryInstalled(terminal, context, yumPackage).map(yumPackage::isSubsetOf).orElse(false);
    }

    static Optional<YumPackageName> queryInstalled(Terminal terminal, TaskContext context, YumPackageName yumPackage) {
        String packageName = yumPackage.toName();
        CommandResult commandResult = terminal.newCommandLine(context)
                .add("rpm", "-q", packageName, "--queryformat", RPM_QUERYFORMAT)
                .ignoreExitCode()
                .executeSilently();

        if (commandResult.getExitCode() != 0) return Optional.empty();

        YumPackageName.Builder builder = new YumPackageName.Builder();
        List<Function<String, YumPackageName.Builder>> builders = PACKAGE_NAME_BUILDERS_GENERATOR.apply(builder);
        List<Optional<String>> lines = commandResult.mapEachLine(line -> Optional.of(line).filter(s -> !"(none)".equals(s)));
        if (lines.size() % builders.size() != 0) throw new IllegalStateException(String.format("Unexpected response from rpm, expected %d lines, got '%s'", builders.size(), commandResult.getOutput()));
        if (lines.size() > builders.size()) throw new IllegalArgumentException("Found multiple installed packages for '" + packageName + "'. Version is required to match package exactly");

        IntStream.range(0, builders.size()).forEach(i -> lines.get(i).ifPresent(builders.get(i)::apply));
        if (builder.epoch().isEmpty()) builder.setEpoch("0");

        return Optional.of(builder.build());
    }

    private static Optional<String> versionLockExists(TaskContext context, Terminal terminal, YumPackageName yumPackage) {

        List<String> command = new ArrayList<>(4);
        command.add("yum");
        command.add("versionlock");
        command.add("list");

        return terminal
                .newCommandLine(context)
                .add(command)
                .executeSilently()
                .getOutputLinesStream()
                .map(YumPackageName::parseString)
                .filter(Optional::isPresent) // removes garbage first lines, even with --quiet
                .map(Optional::get)
                // Ignore lines for other packages
                .filter(packageName -> packageName.getName().equals(yumPackage.getName()))
                // If existing lock doesn't exactly match the full package name,
                // it means it's locked to another version and we must remove that lock.
                .map(YumPackageName::toVersionLockName)
                .findFirst();
    }

    private static boolean deleteVersionLock(TaskContext context, Terminal terminal, String wildcardEntry) {
        // Idempotent command, gives exit code 0 also when versionlock does not exist
        terminal.newCommandLine(context)
                       .add("yum", "versionlock", "delete", wildcardEntry)
                       .execute()
                       .getOutputLinesStream();
        return true;
    }

}