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
|
// Copyright 2021 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package mitigate provides libraries for the mitigate command. The
// mitigate command mitigates side channel attacks such as MDS. Mitigate
// shuts down CPUs via /sys/devices/system/cpu/cpu{N}/online. In addition,
// the mitigate also handles computing available CPU in kubernetes kube_config
// files.
package mitigate
import (
"fmt"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/runsc/flag"
)
// Mitigate handles high level mitigate operations provided to runsc.
type Mitigate struct {
dryRun bool // Run the command without changing the underlying system.
other mitigate // Struct holds extra mitigate logic.
}
// Usage implments Usage for cmd.Mitigate.
func (m Mitigate) Usage() string {
usageString := `mitigate [flags]
Mitigate mitigates a system to the "MDS" vulnerability by implementing a manual shutdown of SMT. The command checks /proc/cpuinfo for cpus having the MDS vulnerability, and if found, shutdown all but one CPU per hyperthread pair via /sys/devices/system/cpu/cpu{N}/online. CPUs can be restored by writing "2" to each file in /sys/devices/system/cpu/cpu{N}/online or performing a system reboot.
`
return usageString + m.other.usage()
}
// SetFlags sets flags for the command Mitigate.
func (m Mitigate) SetFlags(f *flag.FlagSet) {
f.BoolVar(&m.dryRun, "dryrun", false, "run the command without changing system")
m.other.setFlags(f)
}
// Execute executes the Mitigate command.
func (m Mitigate) Execute(data []byte) error {
set, err := newCPUSet(data, m.other.vulnerable)
if err != nil {
return err
}
log.Infof("Mitigate found the following CPUs...")
log.Infof("%s", set)
shutdownList := set.getShutdownList()
log.Infof("Shutting down threads on thread pairs.")
for _, t := range shutdownList {
log.Infof("Shutting down thread: %s", t)
if m.dryRun {
continue
}
if err := t.shutdown(); err != nil {
return fmt.Errorf("error shutting down thread: %s err: %v", t, err)
}
}
log.Infof("Shutdown successful.")
m.other.execute(set, m.dryRun)
return nil
}
|