summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/yum/Yum.java
blob: 85a7c065a86b7391e25588b32ce2d5fab449e4ba (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
// Copyright 2018 Yahoo Holdings. 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 hakonhall
 */
public class Yum {
    // 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 static final Pattern NOTHING_TO_DO_PATTERN = Pattern.compile("(?dm)^Nothing to do$");
    private static final Pattern INSTALL_NOOP_PATTERN = NOTHING_TO_DO_PATTERN;
    private static final Pattern UPGRADE_NOOP_PATTERN = Pattern.compile("(?dm)^No packages marked for update$");
    private static final Pattern REMOVE_NOOP_PATTERN = Pattern.compile("(?dm)^No Packages marked for removal$");
    private static final Pattern UNKNOWN_PACKAGE_PATTERN = Pattern.compile(
            "(?dm)^No package ([^ ]+) available\\.$");


    // 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 final Terminal terminal;

    public Yum(Terminal terminal) {
        this.terminal = terminal;
    }

    public Optional<YumPackageName> queryInstalled(TaskContext context, String packageName) {
        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()) throw new IllegalStateException(String.format(
                "Unexpected response from rpm, expected %d lines, got %s", builders.size(), commandResult.getOutput()));

        IntStream.range(0, builders.size()).forEach(i -> lines.get(i).ifPresent(builders.get(i)::apply));
        return Optional.of(builder.build());
    }

    /**
     * Lock and install, or if necessary downgrade, a package to a given version.
     *
     * @return false only if the package was already locked and installed at the given version (no-op)
     */
    public boolean installFixedVersion(TaskContext context, YumPackageName yumPackage) {
        String targetVersionLockName = yumPackage.toVersionLockName();

        boolean alreadyLocked = terminal
                .newCommandLine(context)
                .add("yum", "--quiet", "versionlock", "list")
                .executeSilently()
                .getOutputLinesStream()
                .map(YumPackageName::parseString)
                .filter(Optional::isPresent) // removes garbage first lines, even with --quiet
                .map(Optional::get)
                .anyMatch(packageName -> {
                    // Ignore lines for other packages
                    if (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.
                        String versionLockName = packageName.toVersionLockName();
                        if (versionLockName.equals(targetVersionLockName)) {
                            return true;
                        } else {
                            terminal.newCommandLine(context)
                                    .add("yum", "versionlock", "delete", versionLockName)
                                    .execute();
                        }
                    }

                    return false;
                });

        boolean modified = false;

        if (!alreadyLocked) {
            terminal.newCommandLine(context)
                    .add("yum", "versionlock", "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()

        CommandLine commandLine = terminal
                .newCommandLine(context)
                .add("yum", "install", "--assumeyes", yumPackage.toName());

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

        if (NOTHING_TO_DO_PATTERN.matcher(output).find()) {
            if (CHECKING_FOR_UPDATE_PATTERN.matcher(output).find()) {
                // case 3.
                terminal.newCommandLine(context)
                        .add("yum", "downgrade", "--assumeyes", yumPackage.toName())
                        .execute();
                modified = true;
            } else {
                // case 2.
            }
        } else {
            // case 1.
            commandLine.recordSilentExecutionAsSystemModification();
            modified = true;
        }

        return modified;
    }

    public GenericYumCommand install(YumPackageName... packages) {
        return newYumCommand("install", packages, INSTALL_NOOP_PATTERN);
    }

    public GenericYumCommand install(String package1, String... packages) {
        return install(toYumPackageNameArray(package1, packages));
    }

    public GenericYumCommand upgrade(YumPackageName... packages) {
        return newYumCommand("upgrade", packages, UPGRADE_NOOP_PATTERN);
    }

    public GenericYumCommand upgrade(String package1, String... packages) {
        return upgrade(toYumPackageNameArray(package1, packages));
    }

    public GenericYumCommand remove(YumPackageName... packages) {
        return newYumCommand("remove", packages, REMOVE_NOOP_PATTERN);
    }

    public GenericYumCommand remove(String package1, String... packages) {
        return remove(toYumPackageNameArray(package1, packages));
    }

    static YumPackageName[] toYumPackageNameArray(String package1, String... packages) {
        YumPackageName[] array = new YumPackageName[1 + packages.length];
        array[0] = YumPackageName.fromString(package1);
        for (int i = 0; i < packages.length; ++i) {
            array[1 + i] = YumPackageName.fromString(packages[i]);
        }
        return array;
    }

    private GenericYumCommand newYumCommand(String yumCommand,
                                            YumPackageName[] packages,
                                            Pattern noopPattern) {
        return new GenericYumCommand(
                terminal,
                yumCommand,
                List.of(packages),
                noopPattern);
    }

    public static class GenericYumCommand {
        private final Terminal terminal;
        private final String yumCommand;
        private final List<YumPackageName> packages;
        private final Pattern commandOutputNoopPattern;

        private final List<String> enabledRepo = new ArrayList<>();

        private GenericYumCommand(Terminal terminal,
                                  String yumCommand,
                                  List<YumPackageName> packages,
                                  Pattern commandOutputNoopPattern) {
            this.terminal = terminal;
            this.yumCommand = yumCommand;
            this.packages = packages;
            this.commandOutputNoopPattern = commandOutputNoopPattern;

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

        public GenericYumCommand enableRepos(String... repos) {
            enabledRepo.addAll(List.of(repos));
            return this;
        }

        public boolean converge(TaskContext context) {
            CommandLine commandLine = terminal.newCommandLine(context);
            commandLine.add("yum", yumCommand, "--assumeyes");
            enabledRepo.forEach(repo -> commandLine.add("--enablerepo=" + repo));
            commandLine.add(packages.stream().map(YumPackageName::toName).collect(Collectors.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::mapOutput);

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

            return modifiedSystem;
        }

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

            return !commandOutputNoopPattern.matcher(output).find();
        }
    }

}