mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Fix all copy locks violations.
This required minor restructuring of how system call tables were saved and restored, but it makes way more sense this way. Updates #2243
This commit is contained in:
+3
-3
@@ -25,7 +25,7 @@ import (
|
||||
// GoogleEmitter is a wrapper that emits logs in a format compatible with
|
||||
// package github.com/golang/glog.
|
||||
type GoogleEmitter struct {
|
||||
Writer
|
||||
*Writer
|
||||
}
|
||||
|
||||
// pid is used for the threadid component of the header.
|
||||
@@ -46,7 +46,7 @@ var pid = os.Getpid()
|
||||
// line The line number
|
||||
// msg The user-supplied message
|
||||
//
|
||||
func (g *GoogleEmitter) Emit(depth int, level Level, timestamp time.Time, format string, args ...interface{}) {
|
||||
func (g GoogleEmitter) Emit(depth int, level Level, timestamp time.Time, format string, args ...interface{}) {
|
||||
// Log level.
|
||||
prefix := byte('?')
|
||||
switch level {
|
||||
@@ -81,5 +81,5 @@ func (g *GoogleEmitter) Emit(depth int, level Level, timestamp time.Time, format
|
||||
message := fmt.Sprintf(format, args...)
|
||||
|
||||
// Emit the formatted result.
|
||||
fmt.Fprintf(&g.Writer, "%c%02d%02d %02d:%02d:%02d.%06d % 7d %s:%d] %s\n", prefix, int(month), day, hour, minute, second, microsecond, pid, file, line, message)
|
||||
fmt.Fprintf(g.Writer, "%c%02d%02d %02d:%02d:%02d.%06d % 7d %s:%d] %s\n", prefix, int(month), day, hour, minute, second, microsecond, pid, file, line, message)
|
||||
}
|
||||
|
||||
+1
-1
@@ -58,7 +58,7 @@ func (lv *Level) UnmarshalJSON(b []byte) error {
|
||||
|
||||
// JSONEmitter logs messages in json format.
|
||||
type JSONEmitter struct {
|
||||
Writer
|
||||
*Writer
|
||||
}
|
||||
|
||||
// Emit implements Emitter.Emit.
|
||||
|
||||
+2
-2
@@ -29,11 +29,11 @@ type k8sJSONLog struct {
|
||||
// K8sJSONEmitter logs messages in json format that is compatible with
|
||||
// Kubernetes fluent configuration.
|
||||
type K8sJSONEmitter struct {
|
||||
Writer
|
||||
*Writer
|
||||
}
|
||||
|
||||
// Emit implements Emitter.Emit.
|
||||
func (e *K8sJSONEmitter) Emit(_ int, level Level, timestamp time.Time, format string, v ...interface{}) {
|
||||
func (e K8sJSONEmitter) Emit(_ int, level Level, timestamp time.Time, format string, v ...interface{}) {
|
||||
j := k8sJSONLog{
|
||||
Log: fmt.Sprintf(format, v...),
|
||||
Level: level,
|
||||
|
||||
+1
-1
@@ -374,5 +374,5 @@ func CopyStandardLogTo(l Level) error {
|
||||
|
||||
func init() {
|
||||
// Store the initial value for the log.
|
||||
log.Store(&BasicLogger{Level: Info, Emitter: &GoogleEmitter{Writer{Next: os.Stderr}}})
|
||||
log.Store(&BasicLogger{Level: Info, Emitter: GoogleEmitter{&Writer{Next: os.Stderr}}})
|
||||
}
|
||||
|
||||
+3
-3
@@ -52,7 +52,7 @@ func TestDropMessages(t *testing.T) {
|
||||
t.Fatalf("Write should have failed")
|
||||
}
|
||||
|
||||
fmt.Printf("writer: %+v\n", w)
|
||||
fmt.Printf("writer: %#v\n", &w)
|
||||
|
||||
tw.fail = false
|
||||
if _, err := w.Write([]byte("line 2\n")); err != nil {
|
||||
@@ -76,7 +76,7 @@ func TestDropMessages(t *testing.T) {
|
||||
|
||||
func TestCaller(t *testing.T) {
|
||||
tw := &testWriter{}
|
||||
e := &GoogleEmitter{Writer: Writer{Next: tw}}
|
||||
e := GoogleEmitter{Writer: &Writer{Next: tw}}
|
||||
bl := &BasicLogger{
|
||||
Emitter: e,
|
||||
Level: Debug,
|
||||
@@ -94,7 +94,7 @@ func BenchmarkGoogleLogging(b *testing.B) {
|
||||
tw := &testWriter{
|
||||
limit: 1, // Only record one message.
|
||||
}
|
||||
e := &GoogleEmitter{Writer: Writer{Next: tw}}
|
||||
e := GoogleEmitter{Writer: &Writer{Next: tw}}
|
||||
bl := &BasicLogger{
|
||||
Emitter: e,
|
||||
Level: Debug,
|
||||
|
||||
@@ -97,7 +97,7 @@ type hostClock struct {
|
||||
}
|
||||
|
||||
// Now implements ktime.Clock.Now.
|
||||
func (hostClock) Now() ktime.Time {
|
||||
func (*hostClock) Now() ktime.Time {
|
||||
return ktime.FromNanoseconds(time.Now().UnixNano())
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ func (t *TestContext) Value(key interface{}) interface{} {
|
||||
case uniqueid.CtxInotifyCookie:
|
||||
return atomic.AddUint32(&lastInotifyCookie, 1)
|
||||
case ktime.CtxRealtimeClock:
|
||||
return hostClock{}
|
||||
return &hostClock{}
|
||||
default:
|
||||
if val, ok := t.otherValues[key]; ok {
|
||||
return val
|
||||
|
||||
@@ -199,14 +199,14 @@ func TestListen(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestPasscred(t *testing.T) {
|
||||
e := ConnectedEndpoint{}
|
||||
e := &ConnectedEndpoint{}
|
||||
if got, want := e.Passcred(), false; got != want {
|
||||
t.Errorf("Got %#v.Passcred() = %t, want = %t", e, got, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetLocalAddress(t *testing.T) {
|
||||
e := ConnectedEndpoint{path: "foo"}
|
||||
e := &ConnectedEndpoint{path: "foo"}
|
||||
want := tcpip.FullAddress{Addr: tcpip.Address("foo")}
|
||||
if got, err := e.GetLocalAddress(); err != nil || got != want {
|
||||
t.Errorf("Got %#v.GetLocalAddress() = %#v, %v, want = %#v, %v", e, got, err, want, nil)
|
||||
@@ -214,7 +214,7 @@ func TestGetLocalAddress(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestQueuedSize(t *testing.T) {
|
||||
e := ConnectedEndpoint{}
|
||||
e := &ConnectedEndpoint{}
|
||||
tests := []struct {
|
||||
name string
|
||||
f func() int64
|
||||
|
||||
@@ -80,7 +80,7 @@ func newTCPMemInode(ctx context.Context, msrc *fs.MountSource, s inet.Stack, dir
|
||||
}
|
||||
|
||||
// Truncate implements fs.InodeOperations.Truncate.
|
||||
func (tcpMemInode) Truncate(context.Context, *fs.Inode, int64) error {
|
||||
func (*tcpMemInode) Truncate(context.Context, *fs.Inode, int64) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -196,7 +196,7 @@ func newTCPSackInode(ctx context.Context, msrc *fs.MountSource, s inet.Stack) *f
|
||||
}
|
||||
|
||||
// Truncate implements fs.InodeOperations.Truncate.
|
||||
func (tcpSack) Truncate(context.Context, *fs.Inode, int64) error {
|
||||
func (*tcpSack) Truncate(context.Context, *fs.Inode, int64) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
@@ -218,56 +218,55 @@ type Stracer interface {
|
||||
SyscallExit(context interface{}, t *Task, sysno, rval uintptr, err error)
|
||||
}
|
||||
|
||||
// SyscallTable is a lookup table of system calls. Critically, a SyscallTable
|
||||
// is *immutable*. In order to make supporting suspend and resume sane, they
|
||||
// must be uniquely registered and may not change during operation.
|
||||
// SyscallTable is a lookup table of system calls.
|
||||
//
|
||||
// +stateify savable
|
||||
// Note that a SyscallTable is not savable directly. Instead, they are saved as
|
||||
// an OS/Arch pair and lookup happens again on restore.
|
||||
type SyscallTable struct {
|
||||
// OS is the operating system that this syscall table implements.
|
||||
OS abi.OS `state:"wait"`
|
||||
OS abi.OS
|
||||
|
||||
// Arch is the architecture that this syscall table targets.
|
||||
Arch arch.Arch `state:"wait"`
|
||||
Arch arch.Arch
|
||||
|
||||
// The OS version that this syscall table implements.
|
||||
Version Version `state:"manual"`
|
||||
Version Version
|
||||
|
||||
// AuditNumber is a numeric constant that represents the syscall table. If
|
||||
// non-zero, auditNumber must be one of the AUDIT_ARCH_* values defined by
|
||||
// linux/audit.h.
|
||||
AuditNumber uint32 `state:"manual"`
|
||||
AuditNumber uint32
|
||||
|
||||
// Table is the collection of functions.
|
||||
Table map[uintptr]Syscall `state:"manual"`
|
||||
Table map[uintptr]Syscall
|
||||
|
||||
// lookup is a fixed-size array that holds the syscalls (indexed by
|
||||
// their numbers). It is used for fast look ups.
|
||||
lookup []SyscallFn `state:"manual"`
|
||||
lookup []SyscallFn
|
||||
|
||||
// Emulate is a collection of instruction addresses to emulate. The
|
||||
// keys are addresses, and the values are system call numbers.
|
||||
Emulate map[usermem.Addr]uintptr `state:"manual"`
|
||||
Emulate map[usermem.Addr]uintptr
|
||||
|
||||
// The function to call in case of a missing system call.
|
||||
Missing MissingFn `state:"manual"`
|
||||
Missing MissingFn
|
||||
|
||||
// Stracer traces this syscall table.
|
||||
Stracer Stracer `state:"manual"`
|
||||
Stracer Stracer
|
||||
|
||||
// External is used to handle an external callback.
|
||||
External func(*Kernel) `state:"manual"`
|
||||
External func(*Kernel)
|
||||
|
||||
// ExternalFilterBefore is called before External is called before the syscall is executed.
|
||||
// External is not called if it returns false.
|
||||
ExternalFilterBefore func(*Task, uintptr, arch.SyscallArguments) bool `state:"manual"`
|
||||
ExternalFilterBefore func(*Task, uintptr, arch.SyscallArguments) bool
|
||||
|
||||
// ExternalFilterAfter is called before External is called after the syscall is executed.
|
||||
// External is not called if it returns false.
|
||||
ExternalFilterAfter func(*Task, uintptr, arch.SyscallArguments) bool `state:"manual"`
|
||||
ExternalFilterAfter func(*Task, uintptr, arch.SyscallArguments) bool
|
||||
|
||||
// FeatureEnable stores the strace and one-shot enable bits.
|
||||
FeatureEnable SyscallFlagsTable `state:"manual"`
|
||||
FeatureEnable SyscallFlagsTable
|
||||
}
|
||||
|
||||
// allSyscallTables contains all known tables.
|
||||
|
||||
@@ -14,16 +14,34 @@
|
||||
|
||||
package kernel
|
||||
|
||||
import "fmt"
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
// afterLoad is invoked by stateify.
|
||||
func (s *SyscallTable) afterLoad() {
|
||||
otherTable, ok := LookupSyscallTable(s.OS, s.Arch)
|
||||
if !ok {
|
||||
// Couldn't find a reference?
|
||||
panic(fmt.Sprintf("syscall table not found for OS %v Arch %v", s.OS, s.Arch))
|
||||
}
|
||||
"gvisor.dev/gvisor/pkg/abi"
|
||||
"gvisor.dev/gvisor/pkg/sentry/arch"
|
||||
)
|
||||
|
||||
// Copy the table.
|
||||
*s = *otherTable
|
||||
// syscallTableInfo is used to reload the SyscallTable.
|
||||
//
|
||||
// +stateify savable
|
||||
type syscallTableInfo struct {
|
||||
OS abi.OS
|
||||
Arch arch.Arch
|
||||
}
|
||||
|
||||
// saveSt saves the SyscallTable.
|
||||
func (tc *TaskContext) saveSt() syscallTableInfo {
|
||||
return syscallTableInfo{
|
||||
OS: tc.st.OS,
|
||||
Arch: tc.st.Arch,
|
||||
}
|
||||
}
|
||||
|
||||
// loadSt loads the SyscallTable.
|
||||
func (tc *TaskContext) loadSt(sti syscallTableInfo) {
|
||||
st, ok := LookupSyscallTable(sti.OS, sti.Arch)
|
||||
if !ok {
|
||||
panic(fmt.Sprintf("syscall table not found for OS %v, Arch %v", sti.OS, sti.Arch))
|
||||
}
|
||||
tc.st = st // Save the table reference.
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ type TaskContext struct {
|
||||
fu *futex.Manager
|
||||
|
||||
// st is the task's syscall table.
|
||||
st *SyscallTable
|
||||
st *SyscallTable `state:".(syscallTableInfo)"`
|
||||
}
|
||||
|
||||
// release releases all resources held by the TaskContext. release is called by
|
||||
|
||||
@@ -245,7 +245,7 @@ type Clock interface {
|
||||
type WallRateClock struct{}
|
||||
|
||||
// WallTimeUntil implements Clock.WallTimeUntil.
|
||||
func (WallRateClock) WallTimeUntil(t, now Time) time.Duration {
|
||||
func (*WallRateClock) WallTimeUntil(t, now Time) time.Duration {
|
||||
return t.Sub(now)
|
||||
}
|
||||
|
||||
@@ -254,16 +254,16 @@ func (WallRateClock) WallTimeUntil(t, now Time) time.Duration {
|
||||
type NoClockEvents struct{}
|
||||
|
||||
// Readiness implements waiter.Waitable.Readiness.
|
||||
func (NoClockEvents) Readiness(mask waiter.EventMask) waiter.EventMask {
|
||||
func (*NoClockEvents) Readiness(mask waiter.EventMask) waiter.EventMask {
|
||||
return 0
|
||||
}
|
||||
|
||||
// EventRegister implements waiter.Waitable.EventRegister.
|
||||
func (NoClockEvents) EventRegister(e *waiter.Entry, mask waiter.EventMask) {
|
||||
func (*NoClockEvents) EventRegister(e *waiter.Entry, mask waiter.EventMask) {
|
||||
}
|
||||
|
||||
// EventUnregister implements waiter.Waitable.EventUnregister.
|
||||
func (NoClockEvents) EventUnregister(e *waiter.Entry) {
|
||||
func (*NoClockEvents) EventUnregister(e *waiter.Entry) {
|
||||
}
|
||||
|
||||
// ClockEventsQueue implements waiter.Waitable by wrapping waiter.Queue and
|
||||
@@ -273,7 +273,7 @@ type ClockEventsQueue struct {
|
||||
}
|
||||
|
||||
// Readiness implements waiter.Waitable.Readiness.
|
||||
func (ClockEventsQueue) Readiness(mask waiter.EventMask) waiter.EventMask {
|
||||
func (*ClockEventsQueue) Readiness(mask waiter.EventMask) waiter.EventMask {
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
+1
-4
@@ -241,10 +241,7 @@ func Register(name string, instance interface{}, fns Fns) {
|
||||
//
|
||||
// This function is used by the stateify tool.
|
||||
func IsZeroValue(val interface{}) bool {
|
||||
if val == nil {
|
||||
return true
|
||||
}
|
||||
return reflect.DeepEqual(val, reflect.Zero(reflect.TypeOf(val)).Interface())
|
||||
return val == nil || reflect.ValueOf(val).Elem().IsZero()
|
||||
}
|
||||
|
||||
// step captures one encoding / decoding step. On each step, there is up to one
|
||||
|
||||
@@ -65,7 +65,7 @@ func newCompatEmitter(logFD int) (*compatEmitter, error) {
|
||||
|
||||
if logFD > 0 {
|
||||
f := os.NewFile(uintptr(logFD), "user log file")
|
||||
target := &log.MultiEmitter{c.sink, &log.K8sJSONEmitter{log.Writer{Next: f}}}
|
||||
target := &log.MultiEmitter{c.sink, log.K8sJSONEmitter{&log.Writer{Next: f}}}
|
||||
c.sink = &log.BasicLogger{Level: log.Info, Emitter: target}
|
||||
}
|
||||
return c, nil
|
||||
|
||||
+3
-3
@@ -342,11 +342,11 @@ func main() {
|
||||
func newEmitter(format string, logFile io.Writer) log.Emitter {
|
||||
switch format {
|
||||
case "text":
|
||||
return &log.GoogleEmitter{log.Writer{Next: logFile}}
|
||||
return log.GoogleEmitter{&log.Writer{Next: logFile}}
|
||||
case "json":
|
||||
return &log.JSONEmitter{log.Writer{Next: logFile}}
|
||||
return log.JSONEmitter{&log.Writer{Next: logFile}}
|
||||
case "json-k8s":
|
||||
return &log.K8sJSONEmitter{log.Writer{Next: logFile}}
|
||||
return log.K8sJSONEmitter{&log.Writer{Next: logFile}}
|
||||
}
|
||||
cmd.Fatalf("invalid log format %q, must be 'text', 'json', or 'json-k8s'", format)
|
||||
panic("unreachable")
|
||||
|
||||
@@ -206,7 +206,7 @@ func main() {
|
||||
initCalls = append(initCalls, fmt.Sprintf("%sRegister(\"%s.%s\", (*%s)(nil), state.Fns{Save: (*%s).save, Load: (*%s).load})", statePrefix, *fullPkg, name, name, name, name))
|
||||
}
|
||||
emitZeroCheck := func(name string) {
|
||||
fmt.Fprintf(outputFile, " if !%sIsZeroValue(x.%s) { m.Failf(\"%s is %%v, expected zero\", x.%s) }\n", statePrefix, name, name, name)
|
||||
fmt.Fprintf(outputFile, " if !%sIsZeroValue(&x.%s) { m.Failf(\"%s is %%#v, expected zero\", &x.%s) }\n", statePrefix, name, name, name)
|
||||
}
|
||||
emitLoadValue := func(name, typName string) {
|
||||
fmt.Fprintf(outputFile, " m.LoadValue(\"%s\", new(%s), func(y interface{}) { x.load%s(y.(%s)) })\n", name, typName, camelCased(name), typName)
|
||||
|
||||
@@ -9,19 +9,6 @@
|
||||
"/external/": "allowed: not subject to unsafe naming rules"
|
||||
}
|
||||
},
|
||||
"copylocks": {
|
||||
"exclude_files": {
|
||||
".*_state_autogen.go": "fix: m.Failf copies by value",
|
||||
"/pkg/log/json.go": "fix: Emit passes lock by value: gvisor.dev/gvisor/pkg/log.JSONEmitter contains gvisor.dev/gvisor/pkg/log.Writer contains gvisor.dev/gvisor/pkg/sync.Mutex",
|
||||
"/pkg/log/log_test.go": "fix: call of fmt.Printf copies lock value: gvisor.dev/gvisor/pkg/log.Writer contains gvisor.dev/gvisor/pkg/sync.Mutex",
|
||||
"/pkg/sentry/fs/host/socket_test.go": "fix: call of t.Errorf copies lock value: gvisor.dev/gvisor/pkg/sentry/fs/host.ConnectedEndpoint contains gvisor.dev/gvisor/pkg/refs.AtomicRefCount contains gvisor.dev/gvisor/pkg/sync.Mutex",
|
||||
"/pkg/sentry/fs/proc/sys_net.go": "fix: Truncate passes lock by value: gvisor.dev/gvisor/pkg/sentry/fs/proc.tcpMemInode contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.SimpleFileInode contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.InodeSimpleAttributes contains gvisor.dev/gvisor/pkg/sync.RWMutex",
|
||||
"/pkg/sentry/fs/proc/sys_net.go": "fix: Truncate passes lock by value: gvisor.dev/gvisor/pkg/sentry/fs/proc.tcpSack contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.SimpleFileInode contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.InodeSimpleAttributes contains gvisor.dev/gvisor/pkg/sync.RWMutex",
|
||||
"/pkg/sentry/fs/tty/slave.go": "fix: Truncate passes lock by value: gvisor.dev/gvisor/pkg/sentry/fs/tty.slaveInodeOperations contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.SimpleFileInode contains gvisor.dev/gvisor/pkg/sentry/fs/fsutil.InodeSimpleAttributes contains gvisor.dev/gvisor/pkg/sync.RWMutex",
|
||||
"/pkg/sentry/kernel/time/time.go": "fix: Readiness passes lock by value: gvisor.dev/gvisor/pkg/sentry/kernel/time.ClockEventsQueue contains gvisor.dev/gvisor/pkg/waiter.Queue contains gvisor.dev/gvisor/pkg/sync.RWMutex",
|
||||
"/pkg/sentry/kernel/syscalls_state.go": "fix: assignment copies lock value to *s: gvisor.dev/gvisor/pkg/sentry/kernel.SyscallTable contains gvisor.dev/gvisor/pkg/sentry/kernel.SyscallFlagsTable contains gvisor.dev/gvisor/pkg/sync.Mutex"
|
||||
}
|
||||
},
|
||||
"lostcancel": {
|
||||
"exclude_files": {
|
||||
"/pkg/tcpip/network/arp/arp_test.go": "fix: the cancel function returned by context.WithTimeout should be called, not discarded, to avoid a context leak",
|
||||
|
||||
Reference in New Issue
Block a user