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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
//go:build faultinject
/*
* Copyright (C) 2021 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package osutil
import (
"fmt"
"io"
"os"
"path/filepath"
"strings"
)
var (
injectSysroot = "/"
stderr io.Writer = os.Stderr
foreverLoop = func() {
for {
}
}
)
func injectFault(tagKind string) (injected bool) {
s := strings.Split(tagKind, ":")
if len(s) != 2 {
fmt.Fprintf(stderr, "incorrect fault tag: %q\n", tagKind)
return false
}
tag := s[0]
kind := s[1]
stampFile := filepath.Join(injectSysroot, "/var/lib/snapd/faults", tagKind)
if FileExists(stampFile) {
// already injected once
return false
}
if err := os.MkdirAll(filepath.Join(injectSysroot, "/var/lib/snapd/faults"), 0755); err != nil {
fmt.Fprintf(stderr, "cannot create fault stamps directory: %v\n", err)
return false
}
makeStamp := func() bool {
if err := AtomicWriteFile(stampFile, nil, 0644, 0); err != nil {
fmt.Fprintf(stderr, "cannot create stamp file for tag %q\n", tagKind)
return false
}
return true
}
fmt.Fprintf(stderr, "injecting %q fault for tag %q\n", kind, tag)
switch kind {
case "panic":
if !makeStamp() {
return false
}
panic(fmt.Sprintf("fault %q", tagKind))
case "reboot":
f, err := os.OpenFile(filepath.Join(injectSysroot, "/proc/sysrq-trigger"), os.O_WRONLY, 0)
if err != nil {
fmt.Fprintf(stderr, "cannot open: %v\n", err)
return false
}
defer f.Close()
if !makeStamp() {
return false
}
if _, err := f.WriteString("b\n"); err != nil {
fmt.Fprintf(stderr, "cannot request reboot: %v\n", err)
return false
}
// we should be rebooting now
foreverLoop()
}
// not reached
return true
}
// MaybeInjectFault allows to inject faults into snapd through the environment
// settings. The faults to inject are listed in a SNAPD_FAULT_INJECT environment
// variable which has the format <tag>:<kind>[,<tag>:<kind>]. Where tag is a
// free form string that can be referenced directly in the code by placing
// MaybeInjectFault("<tag>"), while kind can be "panic" or "reboot". Panic
// causes snapd to panic, while reboot triggers an immediate reboot via
// sysrq-trigger. The fauls can only be injected iff SNAPPY_TESTING is true.
func MaybeInjectFault(tag string) {
if !GetenvBool("SNAPPY_TESTING") {
return
}
envTagKinds := os.Getenv("SNAPD_FAULT_INJECT")
if envTagKinds == "" {
return
}
if strings.ContainsAny(envTagKinds, " /") {
fmt.Fprintf(stderr, "invalid fault tags %q\n", envTagKinds)
return
}
faults := strings.Split(envTagKinds, ",")
prefix := tag + ":"
for _, envTagKind := range faults {
if !strings.HasPrefix(envTagKind, prefix) {
continue
}
injectFault(envTagKind)
}
}
|