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
|
// 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 strace
import (
"gvisor.dev/gvisor/pkg/abi"
"gvisor.dev/gvisor/pkg/sentry/arch"
"gvisor.dev/gvisor/pkg/sentry/kernel"
)
// FormatSpecifier values describe how an individual syscall argument should be
// formatted.
type FormatSpecifier int
// Valid FormatSpecifiers.
//
// Unless otherwise specified, values are formatted before syscall execution
// and not updated after syscall execution (the same value is output).
const (
// Hex is just a hexadecimal number.
Hex FormatSpecifier = iota
// Oct is just an octal number.
Oct
// FD is a file descriptor.
FD
// ReadBuffer is a buffer for a read-style call. The syscall return
// value is used for the length.
//
// Formatted after syscall execution.
ReadBuffer
// WriteBuffer is a buffer for a write-style call. The following arg is
// used for the length.
//
// Contents omitted after syscall execution.
WriteBuffer
// ReadIOVec is a pointer to a struct iovec for a writev-style call.
// The following arg is used for the length. The return value is used
// for the total length.
//
// Complete contents only formatted after syscall execution.
ReadIOVec
// WriteIOVec is a pointer to a struct iovec for a writev-style call.
// The following arg is used for the length.
//
// Complete contents only formatted before syscall execution, omitted
// after.
WriteIOVec
// IOVec is a generic pointer to a struct iovec. Contents are not dumped.
IOVec
// SendMsgHdr is a pointer to a struct msghdr for a sendmsg-style call.
// Contents formatted only before syscall execution, omitted after.
SendMsgHdr
// RecvMsgHdr is a pointer to a struct msghdr for a recvmsg-style call.
// Contents formatted only after syscall execution.
RecvMsgHdr
// Path is a pointer to a char* path.
Path
// PostPath is a pointer to a char* path, formatted after syscall
// execution.
PostPath
// ExecveStringVector is a NULL-terminated array of strings. Enforces
// the maximum execve array length.
ExecveStringVector
// PipeFDs is an array of two FDs, formatted after syscall execution.
PipeFDs
// Uname is a pointer to a struct uname, formatted after syscall execution.
Uname
// Stat is a pointer to a struct stat, formatted after syscall execution.
Stat
// SockAddr is a pointer to a struct sockaddr. The following arg is
// used for length.
SockAddr
// PostSockAddr is a pointer to a struct sockaddr, formatted after
// syscall execution. The following arg is a pointer to the socklen_t
// length.
PostSockAddr
// SockLen is a pointer to a socklen_t, formatted before and after
// syscall execution.
SockLen
// SockFamily is a socket protocol family value.
SockFamily
// SockType is a socket type and flags value.
SockType
// SockProtocol is a socket protocol value. Argument n-2 is the socket
// protocol family.
SockProtocol
// SockFlags are socket flags.
SockFlags
// Timespec is a pointer to a struct timespec.
Timespec
// PostTimespec is a pointer to a struct timespec, formatted after
// syscall execution.
PostTimespec
// UTimeTimespec is a pointer to a struct timespec. Formatting includes
// UTIME_NOW and UTIME_OMIT.
UTimeTimespec
// ItimerVal is a pointer to a struct itimerval.
ItimerVal
// PostItimerVal is a pointer to a struct itimerval, formatted after
// syscall execution.
PostItimerVal
// ItimerSpec is a pointer to a struct itimerspec.
ItimerSpec
// PostItimerSpec is a pointer to a struct itimerspec, formatted after
// syscall execution.
PostItimerSpec
// Timeval is a pointer to a struct timeval, formatted before and after
// syscall execution.
Timeval
// Utimbuf is a pointer to a struct utimbuf.
Utimbuf
// Rusage is a struct rusage, formatted after syscall execution.
Rusage
// CloneFlags are clone(2) flags.
CloneFlags
// OpenFlags are open(2) flags.
OpenFlags
// Mode is a mode_t.
Mode
// FutexOp is the futex(2) operation.
FutexOp
// PtraceRequest is the ptrace(2) request.
PtraceRequest
// ItimerType is an itimer type (ITIMER_REAL, etc).
ItimerType
// Signal is a signal number.
Signal
// SignalMaskAction is a signal mask action passed to rt_sigprocmask(2).
SignalMaskAction
// SigSet is a signal set.
SigSet
// PostSigSet is a signal set, formatted after syscall execution.
PostSigSet
// SigAction is a struct sigaction.
SigAction
// PostSigAction is a struct sigaction, formatted after syscall execution.
PostSigAction
// CapHeader is a cap_user_header_t.
CapHeader
// CapData is the data argument to capget(2)/capset(2). The previous
// argument must be CapHeader.
CapData
// PostCapData is the data argument to capget(2)/capset(2), formatted
// after syscall execution. The previous argument must be CapHeader.
PostCapData
// PollFDs is an array of struct pollfd. The number of entries in the
// array is in the next argument.
PollFDs
// SelectFDSet is an fd_set argument in select(2)/pselect(2). The
// number of FDs represented must be the first argument.
SelectFDSet
// GetSockOptVal is the optval argument in getsockopt(2).
//
// Formatted after syscall execution.
GetSockOptVal
// SetSockOptVal is the optval argument in setsockopt(2).
//
// Contents omitted after syscall execution.
SetSockOptVal
// SockOptLevel is the level argument in getsockopt(2) and
// setsockopt(2).
SockOptLevel
// SockOptLevel is the optname argument in getsockopt(2) and
// setsockopt(2).
SockOptName
// EpollCtlOp is the op argument to epoll_ctl(2).
EpollCtlOp
// EpollEvent is the event argument in epoll_ctl(2).
EpollEvent
// EpollEvents is an array of struct epoll_event. It is the events
// argument in epoll_wait(2)/epoll_pwait(2).
EpollEvents
// MmapProt is the protection argument in mmap(2).
MmapProt
// MmapFlags is the flags argument in mmap(2).
MmapFlags
// CloseRangeFlags are close_range(2) flags.
CloseRangeFlags
)
// defaultFormat is the syscall argument format to use if the actual format is
// not known. It formats all six arguments as hex.
var defaultFormat = []FormatSpecifier{Hex, Hex, Hex, Hex, Hex, Hex}
// SyscallInfo captures the name and printing format of a syscall.
type SyscallInfo struct {
// name is the name of the syscall.
name string
// format contains the format specifiers for each argument.
//
// Syscall calls can have up to six arguments. Arguments without a
// corresponding entry in format will not be printed.
format []FormatSpecifier
}
// makeSyscallInfo returns a SyscallInfo for a syscall.
func makeSyscallInfo(name string, f ...FormatSpecifier) SyscallInfo {
return SyscallInfo{name: name, format: f}
}
// SyscallMap maps syscalls into names and printing formats.
type SyscallMap map[uintptr]SyscallInfo
var _ kernel.Stracer = (SyscallMap)(nil)
// syscallTable contains the syscalls for a specific OS/Arch.
type syscallTable struct {
// os is the operating system this table targets.
os abi.OS
// arch is the architecture this table targets.
arch arch.Arch
// syscalls contains the syscall mappings.
syscalls SyscallMap
}
var syscallTables []syscallTable
// Lookup returns the SyscallMap for the OS/Arch combination. The returned map
// must not be changed.
func Lookup(os abi.OS, a arch.Arch) (SyscallMap, bool) {
for _, s := range syscallTables {
if s.os == os && s.arch == a {
return s.syscalls, true
}
}
return nil, false
}
|