脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Golang - Golang标准库syscall详解(什么是系统调用)

Golang标准库syscall详解(什么是系统调用)

2021-08-06 00:53西京刀客 Golang

最近在研究go语言,发现go语言系统调用源码只有调用函数的定义,今天通过本文给大家分享Golang标准库syscall详解及什么是系统调用,感兴趣的朋友一起看看吧

一、什么是系统调用

 

In computing, a system call is the programmatic way in which a computer program requests a service from the kernel of the operating system it is executed on. This may include hardware-related services (for example, accessing a hard disk drive), creation and execution of new processes, and communication with integral kernel services such as process scheduling. System calls provide an essential interface between a process and the operating system.

系统调用是程序向操作系统内核请求服务的过程,通常包含硬件相关的服务(例如访问硬盘),创建新进程等。系统调用提供了一个进程和操作系统之间的接口。

二、Golang标准库-syscall

 

syscall包包含一个指向底层操作系统原语的接口。

注意:该软件包已被锁定。标准以外的代码应该被迁移到golang.org/x/sys存储库中使用相应的软件包。这也是应用新系统或版本所需更新的地方。 Signal , Errno 和 SysProcAttr 在 golang.org/x/sys 中尚不可用,并且仍然必须从 syscall 程序包中引用。有关更多信息,请参见 https://golang.org/s/go1.4-syscall。

https://pkg.go.dev/golang.org/x/sys
该存储库包含用于与操作系统进行低级交互的补充Go软件包。

1. syscall无处不在

举个最常用的例子, fmt.Println(“hello world”), 这里就用到了系统调用 write, 我们翻一下源码。

  1. func Println(a ...interface{}) (n int, err error) {
  2. return Fprintln(os.Stdout, a...)
  3. }
  1. Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout")
  2.  
  3. func (f *File) write(b []byte) (n int, err error) {
  4. if len(b) == 0 {
  5. return 0, nil
  6. }
  7. // 实际的write方法,就是调用syscall.Write()
  8. return fixCount(syscall.Write(f.fd, b))
  9. }

2. syscall demo举例:

go版本的strace Strace

strace 是用于查看进程系统调用的工具, 一般使用方法如下:

strace -c 用于统计各个系统调用的次数

  1. [root@localhost ~]# strace -c echo hello
  2. hello
  3. % time seconds usecs/call calls errors syscall
  4. ------ ----------- ----------- --------- --------- ----------------
  5. 0.00 0.000000 0 1 read
  6. 0.00 0.000000 0 1 write
  7. 0.00 0.000000 0 3 open
  8. 0.00 0.000000 0 5 close
  9. 0.00 0.000000 0 4 fstat
  10. 0.00 0.000000 0 9 mmap
  11. 0.00 0.000000 0 4 mprotect
  12. 0.00 0.000000 0 2 munmap
  13. 0.00 0.000000 0 4 brk
  14. 0.00 0.000000 0 1 1 access
  15. 0.00 0.000000 0 1 execve
  16. 0.00 0.000000 0 1 arch_prctl
  17. ------ ----------- ----------- --------- --------- ----------------
  18. 100.00 0.000000 36 1 total
  19. [root@localhost ~]#

stace 的实现原理是系统调用 ptrace, 我们来看下 ptrace 是什么。

man page 描述如下:

The ptrace() system call provides a means by which one process (the “tracer”) may observe and control the execution of another process (the “tracee”), and examine and change the tracee's memory and registers. It is primarily used to implement breakpoint debuggingand system call tracing.

简单来说有三大能力:

追踪系统调用
读写内存和寄存器
向被追踪程序传递信号

ptrace接口:

  1. int ptrace(int request, pid_t pid, caddr_t addr, int data);
  2.  
  3. request包含:
  4. PTRACE_ATTACH
  5. PTRACE_SYSCALL
  6. PTRACE_PEEKTEXT, PTRACE_PEEKDATA

tracer 使用 PTRACE_ATTACH 命令,指定需要追踪的PID。紧接着调用 PTRACE_SYSCALL。
tracee 会一直运行,直到遇到系统调用,内核会停止执行。 此时,tracer 会收到 SIGTRAP 信号,tracer 就可以打印内存和寄存器中的信息了。

接着,tracer 继续调用 PTRACE_SYSCALL, tracee 继续执行,直到 tracee退出当前的系统调用。
需要注意的是,这里在进入syscall和退出syscall时,tracer都会察觉。

go版本的strace

 

了解以上内容后,presenter 现场实现了一个go版本的strace, 需要在 linux amd64 环境编译。
https://github.com/silentred/gosys

// strace.go

  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "os"
  6. "os/exec"
  7. "syscall"
  8. )
  9.  
  10. func main() {
  11. var err error
  12. var regs syscall.PtraceRegs
  13. var ss syscallCounter
  14. ss = ss.init()
  15.  
  16. fmt.Println("Run: ", os.Args[1:])
  17.  
  18. cmd := exec.Command(os.Args[1], os.Args[2:]...)
  19. cmd.Stderr = os.Stderr
  20. cmd.Stdout = os.Stdout
  21. cmd.Stdin = os.Stdin
  22. cmd.SysProcAttr = &syscall.SysProcAttr{
  23. Ptrace: true,
  24. }
  25.  
  26. cmd.Start()
  27. err = cmd.Wait()
  28. if err != nil {
  29. fmt.Printf("Wait err %v \n", err)
  30. }
  31.  
  32. pid := cmd.Process.Pid
  33. exit := true
  34.  
  35. for {
  36. // 记得 PTRACE_SYSCALL 会在进入和退出syscall时使 tracee 暂停,所以这里用一个变量控制,RAX的内容只打印一遍
  37. if exit {
  38. err = syscall.PtraceGetRegs(pid, &regs)
  39. if err != nil {
  40. break
  41. }
  42. //fmt.Printf("%#v \n",regs)
  43. name := ss.getName(regs.Orig_rax)
  44. fmt.Printf("name: %s, id: %d \n", name, regs.Orig_rax)
  45. ss.inc(regs.Orig_rax)
  46. }
  47. // 上面Ptrace有提到的一个request命令
  48. err = syscall.PtraceSyscall(pid, 0)
  49. if err != nil {
  50. panic(err)
  51. }
  52. // 猜测是等待进程进入下一个stop,这里如果不等待,那么会打印大量重复的调用函数名
  53. _, err = syscall.Wait4(pid, nil, 0, nil)
  54. if err != nil {
  55. panic(err)
  56. }
  57.  
  58. exit = !exit
  59. }
  60.  
  61. ss.print()
  62. }

// 用于统计信息的counter, syscallcounter.go

  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "os"
  6. "text/tabwriter"
  7.  
  8. "github.com/seccomp/libseccomp-golang"
  9. )
  10.  
  11. type syscallCounter []int
  12.  
  13. const maxSyscalls = 303
  14.  
  15. func (s syscallCounter) init() syscallCounter {
  16. s = make(syscallCounter, maxSyscalls)
  17. return s
  18. }
  19.  
  20. func (s syscallCounter) inc(syscallID uint64) error {
  21. if syscallID > maxSyscalls {
  22. return fmt.Errorf("invalid syscall ID (%x)", syscallID)
  23. }
  24.  
  25. s[syscallID]++
  26. return nil
  27. }
  28.  
  29. func (s syscallCounter) print() {
  30. w := tabwriter.NewWriter(os.Stdout, 0, 0, 8, ' ', tabwriter.AlignRight|tabwriter.Debug)
  31. for k, v := range s {
  32. if v > 0 {
  33. name, _ := seccomp.ScmpSyscall(k).GetName()
  34. fmt.Fprintf(w, "%d\t%s\n", v, name)
  35. }
  36. }
  37. w.Flush()
  38. }
  39.  
  40. func (s syscallCounter) getName(syscallID uint64) string {
  41. name, _ := seccomp.ScmpSyscall(syscallID).GetName()
  42. return name
  43. }

最后结果:

Run:  [echo hello]
Wait err stop signal: trace/breakpoint trap
name: execve, id: 59
name: brk, id: 12
name: access, id: 21
name: mmap, id: 9
name: access, id: 21
name: open, id: 2
name: fstat, id: 5
name: mmap, id: 9
name: close, id: 3
name: access, id: 21
name: open, id: 2
name: read, id: 0
name: fstat, id: 5
name: mmap, id: 9
name: mprotect, id: 10
name: mmap, id: 9
name: mmap, id: 9
name: close, id: 3
name: mmap, id: 9
name: arch_prctl, id: 158
name: mprotect, id: 10
name: mprotect, id: 10
name: mprotect, id: 10
name: munmap, id: 11
name: brk, id: 12
name: brk, id: 12
name: open, id: 2
name: fstat, id: 5
name: mmap, id: 9
name: close, id: 3
name: fstat, id: 5
hello
name: write, id: 1
name: close, id: 3
name: close, id: 3
        1|read
        1|write
        3|open
        5|close
        4|fstat
        7|mmap
        4|mprotect
        1|munmap
        3|brk
        3|access
        1|execve
        1|arch_prctl

三、参考

 

Golang标准库——syscall
参考URL: https://www.jianshu.com/p/44109d5e045b
Golang 与系统调用
参考URL: https://blog.csdn.net/weixin_33744141/article/details/89033990

以上就是Golang标准库syscall详解(什么是系统调用)的详细内容,更多关于Golang标准库syscall的资料请关注服务器之家其它相关文章!

原文链接:https://blog.csdn.net/inthat/article/details/117248718

延伸 · 阅读

精彩推荐
  • Golanggolang如何使用struct的tag属性的详细介绍

    golang如何使用struct的tag属性的详细介绍

    这篇文章主要介绍了golang如何使用struct的tag属性的详细介绍,从例子说起,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看...

    Go语言中文网11352020-05-21
  • Golanggolang的httpserver优雅重启方法详解

    golang的httpserver优雅重启方法详解

    这篇文章主要给大家介绍了关于golang的httpserver优雅重启的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,...

    helight2992020-05-14
  • Golanggolang json.Marshal 特殊html字符被转义的解决方法

    golang json.Marshal 特殊html字符被转义的解决方法

    今天小编就为大家分享一篇golang json.Marshal 特殊html字符被转义的解决方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧 ...

    李浩的life12792020-05-27
  • Golanggo语言制作端口扫描器

    go语言制作端口扫描器

    本文给大家分享的是使用go语言编写的TCP端口扫描器,可以选择IP范围,扫描的端口,以及多线程,有需要的小伙伴可以参考下。 ...

    脚本之家3642020-04-25
  • GolangGolang中Bit数组的实现方式

    Golang中Bit数组的实现方式

    这篇文章主要介绍了Golang中Bit数组的实现方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    天易独尊11682021-06-09
  • GolangGolang通脉之数据类型详情

    Golang通脉之数据类型详情

    这篇文章主要介绍了Golang通脉之数据类型,在编程语言中标识符就是定义的具有某种意义的词,比如变量名、常量名、函数名等等,Go语言中标识符允许由...

    4272021-11-24
  • Golanggolang 通过ssh代理连接mysql的操作

    golang 通过ssh代理连接mysql的操作

    这篇文章主要介绍了golang 通过ssh代理连接mysql的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    a165861639710342021-03-08
  • Golanggo日志系统logrus显示文件和行号的操作

    go日志系统logrus显示文件和行号的操作

    这篇文章主要介绍了go日志系统logrus显示文件和行号的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    SmallQinYan12302021-02-02