1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
strace.go 3.27 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-07 16:04 . fix: strutil commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2018 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 strace
import (
"fmt"
"os/exec"
"os/user"
"path/filepath"
"runtime"
"gitee.com/mysnapcore/mysnapd/dirs"
"gitee.com/mysnapcore/mysnapd/osutil"
)
// These syscalls are excluded because they make strace hang on all or
// some architectures (gettimeofday on arm64).
// Furthermore not all syscalls exist on all arches, and for some
// arches strace has a mapping for some of the non-existent
// syscalls. Thus there is no universal list of syscalls to exclude.
func getExcludedSyscalls() string {
switch runtime.GOARCH {
case "arm", "arm64", "riscv64":
return "!pselect6,_newselect,clock_gettime,sigaltstack,gettid,gettimeofday,nanosleep"
default:
return "!select,pselect6,_newselect,clock_gettime,sigaltstack,gettid,gettimeofday,nanosleep"
}
}
// Export excluded syscalls as used by this package and multiple
// testsuites
var ExcludedSyscalls = getExcludedSyscalls()
// Command returns how to run strace in the users context with the
// right set of excluded system calls.
func Command(extraStraceOpts []string, traceeCmd ...string) (*exec.Cmd, error) {
current, err := user.Current()
if err != nil {
return nil, err
}
sudoPath, err := exec.LookPath("sudo")
if err != nil {
return nil, fmt.Errorf("cannot use strace without sudo: %s", err)
}
// Try strace from the snap first, we use new syscalls like
// "_newselect" that are known to not work with the strace of e.g.
// ubuntu 14.04.
//
// TODO: some architectures do not have some syscalls (e.g.
// s390x does not have _newselect). In
// https://github.com/strace/strace/issues/57 options are
// discussed. We could use "-e trace=?syscall" but that is
// only available since strace 4.17 which is not even in
// ubutnu 17.10.
var stracePath string
cand := filepath.Join(dirs.SnapMountDir, "strace-static", "current", "bin", "strace")
if osutil.FileExists(cand) {
stracePath = cand
}
if stracePath == "" {
stracePath, err = exec.LookPath("strace")
if err != nil {
return nil, fmt.Errorf("cannot find an installed strace, please try 'snap install strace-static'")
}
}
args := []string{
sudoPath,
"-E",
stracePath,
"-u", current.Username,
"-f",
"-e", ExcludedSyscalls,
}
args = append(args, extraStraceOpts...)
args = append(args, traceeCmd...)
return &exec.Cmd{
Path: sudoPath,
Args: args,
}, nil
}
// TraceExecCommand returns an exec.Cmd suitable for tracking timings of
// execve{,at}() calls
func TraceExecCommand(straceLogPath string, origCmd ...string) (*exec.Cmd, error) {
extraStraceOpts := []string{"-ttt", "-e", "trace=execve,execveat", "-o", fmt.Sprintf("%s", straceLogPath)}
return Command(extraStraceOpts, origCmd...)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.0.1

搜索帮助

344bd9b3 5694891 D2dac590 5694891