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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
|
// Copyright 2018 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 kernel
import (
"fmt"
"strconv"
"google.golang.org/protobuf/proto"
"gvisor.dev/gvisor/pkg/abi"
"gvisor.dev/gvisor/pkg/abi/sentry"
"gvisor.dev/gvisor/pkg/atomicbitops"
"gvisor.dev/gvisor/pkg/bits"
"gvisor.dev/gvisor/pkg/hostarch"
"gvisor.dev/gvisor/pkg/metric"
"gvisor.dev/gvisor/pkg/sentry/arch"
"gvisor.dev/gvisor/pkg/sentry/seccheck"
pb "gvisor.dev/gvisor/pkg/sentry/seccheck/points/points_go_proto"
"gvisor.dev/gvisor/pkg/sync"
)
// outOfRangeSyscallNumber is used to represent a syscall number that is out of the
// range [0, maxSyscallNum] in monitoring.
var outOfRangeSyscallNumber = []*metric.FieldValue{&metric.FieldValue{"-1"}}
// SyscallSupportLevel is a syscall support levels.
type SyscallSupportLevel int
// String returns a human readable representation of the support level.
func (l SyscallSupportLevel) String() string {
switch l {
case SupportUnimplemented:
return "Unimplemented"
case SupportPartial:
return "Partial Support"
case SupportFull:
return "Full Support"
default:
return "Undocumented"
}
}
const (
// SupportUndocumented indicates the syscall is not documented yet.
SupportUndocumented = iota
// SupportUnimplemented indicates the syscall is unimplemented.
SupportUnimplemented
// SupportPartial indicates the syscall is partially supported.
SupportPartial
// SupportFull indicates the syscall is fully supported.
SupportFull
)
// Syscall includes the syscall implementation and compatibility information.
type Syscall struct {
// Name is the syscall name.
Name string
// Fn is the implementation of the syscall.
Fn SyscallFn
// SupportLevel is the level of support implemented in gVisor.
SupportLevel SyscallSupportLevel
// Note describes the compatibility of the syscall.
Note string
// URLs is set of URLs to any relevant bugs or issues.
URLs []string
// PointCallback is an optional callback that converts syscall arguments
// to a proto that can be used with seccheck.Sink.
// Callback functions must follow this naming convention:
// PointSyscallNameInCamelCase, e.g. PointReadat, PointRtSigaction.
PointCallback SyscallToProto
}
// SyscallFn is a syscall implementation.
type SyscallFn func(t *Task, sysno uintptr, args arch.SyscallArguments) (uintptr, *SyscallControl, error)
// MissingFn is a syscall to be called when an implementation is missing.
type MissingFn func(t *Task, sysno uintptr, args arch.SyscallArguments) (uintptr, error)
// Possible flags for SyscallFlagsTable.enable.
const (
// syscallPresent indicates that this is not a missing syscall.
//
// This flag is used internally in SyscallFlagsTable.
syscallPresent = 1 << iota
// StraceEnableLog enables syscall log tracing.
StraceEnableLog
// StraceEnableEvent enables syscall event tracing.
StraceEnableEvent
// ExternalBeforeEnable enables the external hook before syscall execution.
ExternalBeforeEnable
// ExternalAfterEnable enables the external hook after syscall execution.
ExternalAfterEnable
// SecCheckEnter represents a schematized/enter syscall seccheck event.
SecCheckEnter
// SecCheckExit represents a schematized/exit syscall seccheck event.
SecCheckExit
// SecCheckRawEnter represents raw/enter syscall seccheck event.
SecCheckRawEnter
// SecCheckRawExit represents raw/exit syscall seccheck event.
SecCheckRawExit
)
// StraceEnableBits combines both strace log and event flags.
const StraceEnableBits = StraceEnableLog | StraceEnableEvent
// SyscallFlagsTable manages a set of enable/disable bit fields on a per-syscall
// basis.
type SyscallFlagsTable struct {
// mu protects writes to the fields below.
//
// Atomic loads are always allowed. Atomic stores are allowed only
// while mu is held.
mu sync.Mutex
// enable contains the enable bits for each syscall.
//
// missing syscalls have the same value in enable as missingEnable to
// avoid an extra branch in Word.
enable [sentry.MaxSyscallNum + 1]atomicbitops.Uint32
// missingEnable contains the enable bits for missing syscalls.
missingEnable atomicbitops.Uint32
}
// Init initializes the struct, with all syscalls in table set to enable.
//
// max is the largest syscall number in table.
func (e *SyscallFlagsTable) init(table map[uintptr]Syscall) {
for num := range table {
enableFlags := uint32(syscallPresent)
e.enable[num] = atomicbitops.FromUint32(enableFlags)
}
seccheck.Global.AddSyscallFlagListener(e)
e.UpdateSecCheck(&seccheck.Global)
}
// UpdateSecCheck implements seccheck.SyscallFlagListener.
//
// It is called when per-syscall seccheck event enablement changes.
func (e *SyscallFlagsTable) UpdateSecCheck(state *seccheck.State) {
e.mu.Lock()
defer e.mu.Unlock()
for sysno := uintptr(0); sysno <= sentry.MaxSyscallNum; sysno++ {
oldFlags := e.enable[sysno].Load()
if !bits.IsOn32(oldFlags, syscallPresent) {
continue
}
flags := oldFlags
if state.SyscallEnabled(seccheck.SyscallEnter, sysno) {
flags |= SecCheckEnter
} else {
flags &^= SecCheckEnter
}
if state.SyscallEnabled(seccheck.SyscallExit, sysno) {
flags |= SecCheckExit
} else {
flags &^= SecCheckExit
}
if state.SyscallEnabled(seccheck.SyscallRawEnter, sysno) {
flags |= SecCheckRawEnter
} else {
flags &^= SecCheckRawEnter
}
if state.SyscallEnabled(seccheck.SyscallRawExit, sysno) {
flags |= SecCheckRawExit
} else {
flags &^= SecCheckRawExit
}
if flags != oldFlags {
e.enable[sysno].Store(flags)
}
}
}
// Word returns the enable bitfield for sysno.
func (e *SyscallFlagsTable) Word(sysno uintptr) uint32 {
if sysno <= sentry.MaxSyscallNum {
return e.enable[sysno].Load()
}
return e.missingEnable.Load()
}
// Enable sets enable bit `bit` for all syscalls based on s.
//
// Syscalls missing from `s` are disabled.
//
// Syscalls missing from the initial table passed to Init cannot be added as
// individual syscalls. If present in s they will be ignored.
//
// Callers to Word may see either the old or new value while this function
// is executing.
func (e *SyscallFlagsTable) Enable(bit uint32, s map[uintptr]bool, missingEnable bool) {
e.mu.Lock()
defer e.mu.Unlock()
missingVal := e.missingEnable.Load()
if missingEnable {
missingVal |= bit
} else {
missingVal &^= bit
}
e.missingEnable.Store(missingVal)
for num := range e.enable {
val := e.enable[num].Load()
if !bits.IsOn32(val, syscallPresent) {
// Missing.
e.enable[num].Store(missingVal)
continue
}
if s[uintptr(num)] {
val |= bit
} else {
val &^= bit
}
e.enable[num].Store(val)
}
}
// EnableAll sets enable bit bit for all syscalls, present and missing.
func (e *SyscallFlagsTable) EnableAll(bit uint32) {
e.mu.Lock()
defer e.mu.Unlock()
missingVal := e.missingEnable.Load()
missingVal |= bit
e.missingEnable.Store(missingVal)
for num := range e.enable {
val := e.enable[num].Load()
if !bits.IsOn32(val, syscallPresent) {
// Missing.
e.enable[num].Store(missingVal)
continue
}
val |= bit
e.enable[num].Store(val)
}
}
// Stracer traces syscall execution.
type Stracer interface {
// SyscallEnter is called on syscall entry.
//
// The returned private data is passed to SyscallExit.
SyscallEnter(t *Task, sysno uintptr, args arch.SyscallArguments, flags uint32) any
// SyscallExit is called on syscall exit.
SyscallExit(context any, t *Task, sysno, rval uintptr, err error)
}
// SyscallTable is a lookup table of system calls.
//
// 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
// Arch is the architecture that this syscall table targets.
Arch arch.Arch
// The OS version that this syscall table implements.
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
// Table is the collection of functions.
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 [sentry.MaxSyscallNum + 1]SyscallFn
// pointCallbacks is a fixed-size array that holds SyscallToProto callbacks
// (indexed by syscall numbers). It is used for fast lookups when
// seccheck.Point is enabled for the syscall.
pointCallbacks [sentry.MaxSyscallNum + 1]SyscallToProto
// Emulate is a collection of instruction addresses to emulate. The
// keys are addresses, and the values are system call numbers.
Emulate map[hostarch.Addr]uintptr
// The function to call in case of a missing system call.
Missing MissingFn
// Stracer traces this syscall table.
Stracer Stracer
// External is used to handle an external callback.
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
// 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
// FeatureEnable stores the strace and one-shot enable bits.
FeatureEnable SyscallFlagsTable
}
// MaxSysno returns the largest system call number.
func (s *SyscallTable) MaxSysno() (max uintptr) {
for num := range s.Table {
if num > max {
max = num
}
}
return max
}
// allSyscallTables contains all known tables.
var allSyscallTables []*SyscallTable
var (
// unimplementedSyscallCounterInit ensures the following fields are only initialized once.
unimplementedSyscallCounterInit sync.Once
// unimplementedSyscallNumbers maps syscall numbers to their string representation.
// Used such that incrementing unimplementedSyscallCounter does not require allocating memory.
// Each element in the mapped slices are of length 1, as there is only one field for the
// unimplemented syscall counter metric. Allocating a slice is necessary as it is passed as a
// variadic argument to the metric library.
unimplementedSyscallNumbers map[uintptr][]*metric.FieldValue
// unimplementedSyscallCounter tracks the number of times each unimplemented syscall has been
// called by the sandboxed application.
unimplementedSyscallCounter *metric.Uint64Metric
)
// SyscallTables returns a read-only slice of registered SyscallTables.
func SyscallTables() []*SyscallTable {
return allSyscallTables
}
// LookupSyscallTable returns the SyscallCall table for the OS/Arch combination.
func LookupSyscallTable(os abi.OS, a arch.Arch) (*SyscallTable, bool) {
for _, s := range allSyscallTables {
if s.OS == os && s.Arch == a {
return s, true
}
}
return nil, false
}
// RegisterSyscallTable registers a new syscall table for use by a Kernel.
func RegisterSyscallTable(s *SyscallTable) {
if max := s.MaxSysno(); max > sentry.MaxSyscallNum {
panic(fmt.Sprintf("SyscallTable %+v contains too large syscall number %d", s, max))
}
if _, ok := LookupSyscallTable(s.OS, s.Arch); ok {
panic(fmt.Sprintf("Duplicate SyscallTable registered for OS %v Arch %v", s.OS, s.Arch))
}
allSyscallTables = append(allSyscallTables, s)
unimplementedSyscallCounterInit.Do(func() {
allowedValues := make([]*metric.FieldValue, sentry.MaxSyscallNum+2)
unimplementedSyscallNumbers = make(map[uintptr][]*metric.FieldValue, len(allowedValues))
for i := uintptr(0); i <= sentry.MaxSyscallNum; i++ {
s := &metric.FieldValue{strconv.Itoa(int(i))}
allowedValues[i] = s
unimplementedSyscallNumbers[i] = []*metric.FieldValue{s}
}
allowedValues[len(allowedValues)-1] = outOfRangeSyscallNumber[0]
unimplementedSyscallCounter = metric.MustCreateNewUint64Metric("/unimplemented_syscalls",
metric.Uint64Metadata{
Cumulative: true,
Sync: true,
Description: "Number of times the application tried to call an unimplemented syscall, broken down by syscall number",
Fields: []metric.Field{
metric.NewField("sysno", allowedValues...),
},
})
})
s.Init()
}
// Init initializes the system call table.
//
// This should normally be called only during registration.
func (s *SyscallTable) Init() {
if s.Table == nil {
// Ensure non-nil lookup table.
s.Table = make(map[uintptr]Syscall)
}
if s.Emulate == nil {
// Ensure non-nil emulate table.
s.Emulate = make(map[hostarch.Addr]uintptr)
}
// Initialize the fast-lookup tables.
for num, sc := range s.Table {
s.lookup[num] = sc.Fn
}
for num, sc := range s.Table {
s.pointCallbacks[num] = sc.PointCallback
}
// Initialize all features.
s.FeatureEnable.init(s.Table)
}
// Lookup returns the syscall implementation, if one exists.
func (s *SyscallTable) Lookup(sysno uintptr) SyscallFn {
if sysno <= sentry.MaxSyscallNum {
return s.lookup[sysno]
}
return nil
}
// LookupName looks up a syscall name.
func (s *SyscallTable) LookupName(sysno uintptr) string {
if sc, ok := s.Table[sysno]; ok {
return sc.Name
}
return fmt.Sprintf("sys_%d", sysno) // Unlikely.
}
// LookupNo looks up a syscall number by name.
func (s *SyscallTable) LookupNo(name string) (uintptr, error) {
for i, syscall := range s.Table {
if syscall.Name == name {
return uintptr(i), nil
}
}
return 0, fmt.Errorf("syscall %q not found", name)
}
// LookupEmulate looks up an emulation syscall number.
func (s *SyscallTable) LookupEmulate(addr hostarch.Addr) (uintptr, bool) {
sysno, ok := s.Emulate[addr]
return sysno, ok
}
// mapLookup is similar to Lookup, except that it only uses the syscall table,
// that is, it skips the fast look array. This is available for benchmarking.
func (s *SyscallTable) mapLookup(sysno uintptr) SyscallFn {
if sc, ok := s.Table[sysno]; ok {
return sc.Fn
}
return nil
}
// LookupSyscallToProto looks up the SyscallToProto callback for the given
// syscall. It may return nil if none is registered.
func (s *SyscallTable) LookupSyscallToProto(sysno uintptr) SyscallToProto {
if sysno > sentry.MaxSyscallNum {
return nil
}
return s.pointCallbacks[sysno]
}
// SyscallToProto is a callback function that converts generic syscall data to
// schematized protobuf for the corresponding syscall.
type SyscallToProto func(*Task, seccheck.FieldSet, *pb.ContextData, SyscallInfo) (proto.Message, pb.MessageType)
// SyscallInfo provides generic information about the syscall.
type SyscallInfo struct {
Exit bool
Sysno uintptr
Args arch.SyscallArguments
Rval uintptr
Errno int
}
// IncrementUnimplementedSyscallCounter increments the "unimplemented syscall" metric for the given
// syscall number.
// A syscall table must have been initialized prior to calling this function.
//
// FIXME(gvisor.dev/issue/10556): checkescape can't distinguish between this
// file and files named syscalls.go in other directories, resulting in false
// positives, so this function cannot be +checkescape:all.
//
//go:nosplit
func IncrementUnimplementedSyscallCounter(sysno uintptr) {
s, found := unimplementedSyscallNumbers[sysno]
if !found {
s = outOfRangeSyscallNumber
}
unimplementedSyscallCounter.Increment(s...)
}
|