strace调试(Linux Device Driver)

strace常用来跟踪进程执行时的系统调用和所接收的信号。 在Linux世界,进程不能直接访问硬件设备,当进程需要访问硬件设备(比如读取磁盘文件,接收网络数据等等)时,必须由用户态模式切换至内核态模式,通 过系统调用访问硬件设备。strace可以跟踪到一个进程产生的系统调用,包括参数,返回值,执行消耗的时间。
输出参数含义
复制代码

root@ubuntu:/usr# strace cat /dev/null
execve(“/bin/cat”, [“cat”, “/dev/null”], [/* 22 vars */]) = 0
brk(0) = 0xab1000
access(“/etc/ld.so.nohwcap”, F_OK) = -1 ENOENT (No such file or directory)
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f29379a7000
access(“/etc/ld.so.preload”, R_OK) = -1 ENOENT (No such file or directory)

brk(0) = 0xab1000
brk(0xad2000) = 0xad2000
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), …}) = 0
open(“/dev/null”, O_RDONLY) = 3
fstat(3, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), …}) = 0
read(3, “”, 32768) = 0
close(3) = 0
close(1) = 0
close(2) = 0
exit_group(0) = ?

复制代码

每一行都是一条系统调用,等号左边是系统调用的函数名及其参数,右边是该调用的返回值。
strace 显示这些调用的参数并返回符号形式的值。strace 从内核接收信息,而且不需要以任何特殊的方式来构建内核。
https://linux.cn/article-3935-1.html  
http://www.cnblogs.com/bangerlee/archive/2012/02/20/2356818.html

strace 命令是一个有力工具, 显示所有的用户空间程序发出的系统调用. 它不仅显示调用, 还以符号形式显示调用的参数和返回值. 当一个系统调用失败, 错误的符号值(例如,
ENOMEM)和对应的字串(Out of memory) 都显示. strace 有很多命令行选项; 其中最有用的是 -t 来显示每个调用执行的时间, -T 来显示调用中花费的时间, -e 来限制被跟踪调用的类型, 以及-o 来重定向输出到一个文件. 缺省地, strace 打印调用信息到 stderr.strace 从内核自身获取信息.
这意味着可以跟踪一个程序, 不管它是否带有调试支持编译(对 gcc 是 -g 选项)以及不管它是否 strip 过. 你也可以连接追踪到一个运行中的进程, 类似于一个调试器的方式连接到一个运行中的进程并控制它.跟踪信息常用来支持发给应用程序开发者的故障报告, 但是对内核程序员也是很有价值的.我们已经看到驱动代码运行如何响应系统调用; strace 允许我们检查每个调用的输入和输出数据的一致性.

weiqifa@weiqifa-Inspiron-3847:~/weiqifa/new_tm100/tm100$ strace --help
strace: invalid option -- '-'
usage: strace [-CdffhiqrtttTvVxxy] [-I n] [-e expr]...[-a column] [-o file] [-s strsize] [-P path]...-p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]or: strace -c[df] [-I n] [-e expr]... [-O overhead] [-S sortby]-p pid... / [-D] [-E var=val]... [-u username] PROG [ARGS]
-c -- count time, calls, and errors for each syscall and report summary
-C -- like -c but also print regular output
-d -- enable debug output to stderr
-D -- run tracer process as a detached grandchild, not as parent
-f -- follow forks, -ff -- with output into separate files
-i -- print instruction pointer at time of syscall
-q -- suppress messages about attaching, detaching, etc.
-r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs
-T -- print time spent in each syscall
-v -- verbose mode: print unabbreviated argv, stat, termios, etc. args
-x -- print non-ascii strings in hex, -xx -- print all strings in hex
-y -- print paths associated with file descriptor arguments
-h -- print help message, -V -- print version
-a column -- alignment COLUMN for printing syscall results (default 40)
-b execve -- detach on this syscall
-e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]...options: trace, abbrev, verbose, raw, signal, read, write
-I interruptible --1: no signals are blocked2: fatal signals are blocked while decoding syscall (default)3: fatal signals are always blocked (default if '-o FILE PROG')4: fatal signals and SIGTSTP (^Z) are always blocked(useful to make 'strace -o FILE PROG' not stop on ^Z)
-o file -- send trace output to FILE instead of stderr
-O overhead -- set overhead for tracing syscalls to OVERHEAD usecs
-p pid -- trace process with process id PID, may be repeated
-s strsize -- limit length of print strings to STRSIZE chars (default 32)
-S sortby -- sort syscall counts by: time, calls, name, nothing (default time)
-u username -- run command as username handling setuid and/or setgid
-E var=val -- put var=val in the environment for command
-E var -- remove var from the environment for command
-P path -- trace accesses to path

如下是实例:

1|root@mid713l_lp_lvds:/ # strace -T /dev/input/event4                         
execve("/dev/input/event4", ["/dev/input/event4"], [/* 25 vars */]) = -1 EACCES (Permission denied) <0.000954>
write(2, "strace: exec", 12strace: exec)            = 12 <0.005100>
write(2, ": ", 2: )                       = 2 <0.001029>
write(2, "Permission denied", 17Permission denied)       = 17 <0.000269>
write(2, "\n", 1
)                       = 1 <0.002202>
exit_group(1)                           = ?
1|root@mid713l_lp_lvds:/ # strace -T /dev/input/event4 

strace -ttt system/xbi/busybox 查看busybox的使用调用情况 列表如下

 strace -ttt system/xbi/busybox                                                     <
1357029942.164145 execve("system/xbin/busybox", ["system/xbin/busybox"], [/* 25 vars */]) = 0
1357029942.178440 brk(0)                = 0x93c000
1357029942.182622 brk(0x93c4b8)         = 0x93c4b8
1357029942.185678 set_tls(0x93c490, 0x11e464, 0, 0x1212d4, 0x121a50) = 0
1357029942.191336 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
1357029942.195093 ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
1357029942.202561 getuid32()            = 0
1357029942.208745 ioctl(0, TIOCGWINSZ, {ws_row=0, ws_col=0, ws_xpixel=0, ws_ypixel=0}) = 0
1357029942.213450 dup2(1, 2)            = 2
1357029942.218086 write(2, "BusyBox v1.21.1 (2013-07-08 10:2"..., 41BusyBox v1.21.1 (2013-07-08 10:26:30 CDT)) = 41
1357029942.223062 write(2, " multi-call binary.\n", 20 multi-call binary.
) = 20
1357029942.227870 write(2, "BusyBox is copyrighted by many a"..., 539BusyBox is copyrighted by many authors between 1998-2012.
Licensed under GPLv2. See source distribution for detailed
copyright notices.Usage: busybox [function [arguments]...]or: busybox --list[-full]or: busybox --install [-s] [DIR]or: function [arguments]...BusyBox is a multi-call binary that combines many common Unixutilities into a single executable.  Most people will create alink to busybox for each function they wish to use and BusyBoxwill act like whatever it was invoked as.Currently defined functions:
) = 539
1357029942.236050 write(2, "\t", 1  )     = 1
1357029942.240429 write(2, "[", 1[)      = 1
1357029942.241966 write(2, ", ", 2, )     = 2
1357029942.244555 write(2, "[[", 2[[)     = 2
1357029942.245292 write(2, ", ", 2, )     = 2
1357029942.246183 write(2, "acpid", 5acpid)  = 5
1357029942.247706 write(2, ", ", 2, )     = 2
1357029942.248437 write(2, "add-shell", 9add-shell) = 9
1357029942.252078 write(2, ", ", 2, )     = 2
1357029942.252936 write(2, "addgroup", 8addgroup) = 8
1357029942.253986 write(2, ", ", 2, )     = 2
1357029942.255638 write(2, "adduser", 7adduser) = 7
1357029942.256660 write(2, ", ", 2, )     = 2
1357029942.258274 write(2, "adjtimex", 8adjtimex) = 8
1357029942.259147 write(2, ", ", 2, )     = 2
1357029942.262591 write(2, "arp", 3arp)    = 3
1357029942.264350 write(2, ", ", 2, )     = 2
1357029942.266202 write(2, "arping", 6arping) = 6
1357029942.268030 write(2, ", ", 2, )     = 2
1357029942.271160 write(2, "ash", 3ash)    = 3
1357029942.273002 write(2, ",\n", 2,
)    = 2
1357029942.274807 write(2, "\t", 1  )     = 1
1357029942.275769 write(2, "awk", 3awk)    = 3
1357029942.277461 write(2, ", ", 2, )     = 2
1357029942.279009 write(2, "base64", 6base64) = 6
1357029942.282269 write(2, ", ", 2, )     = 2
1357029942.283981 write(2, "basename", 8basename) = 8
1357029942.285709 write(2, ", ", 2, )     = 2
1357029942.287381 write(2, "beep", 4beep)   = 4
1357029942.289075 write(2, ", ", 2, )     = 2
1357029942.292113 write(2, "blkid", 5blkid)  = 5
1357029942.293823 write(2, ", ", 2, )     = 2
1357029942.295509 write(2, "blockdev", 8blockdev) = 8
1357029942.297266 write(2, ", ", 2, )     = 2
1357029942.298931 write(2, "bootchartd", 10bootchartd) = 10
1357029942.302217 write(2, ", ", 2, )     = 2
1357029942.303743 write(2, "brctl", 5brctl)  = 5
1357029942.305639 write(2, ",\n", 2,
)    = 2
1357029942.307332 write(2, "\t", 1  )     = 1
1357029942.309011 write(2, "bunzip2", 7bunzip2) = 7
1357029942.312026 write(2, ", ", 2, )     = 2
1357029942.313707 write(2, "bzcat", 5bzcat)  = 5
1357029942.315428 write(2, ", ", 2, )     = 2
1357029942.317106 write(2, "bzip2", 5bzip2)  = 5
1357029942.318821 write(2, ", ", 2, )     = 2
1357029942.323463 write(2, "cal", 3cal)    = 3
1357029942.325169 write(2, ", ", 2, )     = 2
1357029942.326848 write(2, "cat", 3cat)    = 3
1357029942.328519 write(2, ", ", 2, )     = 2
1357029942.331470 write(2, "catv", 4catv)   = 4
1357029942.333238 write(2, ", ", 2, )     = 2
1357029942.334950 write(2, "chat", 4chat)   = 4
1357029942.336668 write(2, ", ", 2, )     = 2
1357029942.337607 write(2, "chattr", 6chattr) = 6
1357029942.340726 write(2, ", ", 2, )     = 2
1357029942.342281 write(2, "chgrp", 5chgrp)  = 5
1357029942.343967 write(2, ", ", 2, )     = 2
1357029942.345622 write(2, "chmod", 5chmod)  = 5
1357029942.347408 write(2, ",\n", 2,
)    = 2
1357029942.349119 write(2, "\t", 1  )     = 1
1357029942.352351 write(2, "chown", 5chown)  = 5
1357029942.354056 write(2, ", ", 2, )     = 2
1357029942.355118 write(2, "chpasswd", 8chpasswd) = 8
1357029942.356883 write(2, ", ", 2, )     = 2
1357029942.362810 write(2, "chpst", 5chpst)  = 5
1357029942.364715 write(2, ", ", 2, )     = 2
1357029942.366292 write(2, "chroot", 6chroot) = 6
1357029942.368063 write(2, ", ", 2, )     = 2
1357029942.370988 write(2, "chrt", 4chrt)   = 4
1357029942.372698 write(2, ", ", 2, )     = 2
1357029942.374392 write(2, "chvt", 4chvt)   = 4
1357029942.376113 write(2, ", ", 2, )     = 2
1357029942.377788 write(2, "cksum", 5cksum)  = 5
1357029942.381052 write(2, ", ", 2, )     = 2
1357029942.382598 write(2, "clear", 5clear)  = 5
1357029942.384305 write(2, ", ", 2, )     = 2
1357029942.385996 write(2, "cmp", 3cmp)    = 3
1357029942.387659 write(2, ", ", 2, )     = 2
1357029942.390869 write(2, "comm", 4comm)   = 4
1357029942.392656 write(2, ",\n", 2,
)    = 2
1357029942.394381 write(2, "\t", 1  )     = 1
1357029942.396071 write(2, "conspy", 6conspy) = 6
1357029942.397044 write(2, ", ", 2, )     = 2
1357029942.398727 write(2, "cp", 2cp)     = 2
1357029942.401569 write(2, ", ", 2, )     = 2
1357029942.403275 write(2, "cpio", 4cpio)   = 4
1357029942.404976 write(2, ", ", 2, )     = 2
1357029942.406659 write(2, "crond", 5crond)  = 5
1357029942.408353 write(2, ", ", 2, )     = 2
1357029942.411464 write(2, "crontab", 7crontab) = 7
1357029942.413264 write(2, ", ", 2, )     = 2
1357029942.414967 write(2, "cryptpw", 7cryptpw) = 7
1357029942.416708 write(2, ", ", 2, )     = 2
1357029942.418405 write(2, "cttyhack", 8cttyhack) = 8
1357029942.421579 write(2, ", ", 2, )     = 2
1357029942.423337 write(2, "cut", 3cut)    = 3
1357029942.425098 write(2, ", ", 2, )     = 2

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/469302.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Pytorch神经网络基础理论篇】 07 线性回归 + 基础优化算法

同学你好&#xff01;本文章于2021年末编写&#xff0c;获得广泛的好评&#xff01; 故在2022年末对本系列进行填充与更新&#xff0c;欢迎大家订阅最新的专栏&#xff0c;获取基于Pytorch1.10版本的理论代码(2023版)实现&#xff0c; Pytorch深度学习理论篇(2023版)目录地址…

浅谈命令查询职责分离(CQRS)模式

在常用的三层架构中&#xff0c;通常都是通过数据访问层来修改或者查询数据&#xff0c;一般修改和查询使用的是相同的实体。在一些业务逻辑简单的系统中可能没有什么问题&#xff0c;但是随着系统逻辑变得复杂&#xff0c;用户增多&#xff0c;这种设计就会出现一些性能问题。…

Linux shell sed awk

&#xff11;、我们的平台编译kernel的时候总是要输入项目名称&#xff0c;很麻烦 ################################################ ## Compile kernel and pack it into boot.img ## ################################################ #!/bin/shPROJECT$1 echo $PROJEC…

【Pytorch神经网络实战案例】20 基于Cora数据集实现图卷积神经网络论文分类

1 案例说明&#xff08;图卷积神经网络&#xff09; CORA数据集里面含有每一篇论文的关键词以及分类信息&#xff0c;同时还有论文间互相引用的信息。搭建AI模型&#xff0c;对数据集中的论文信息进行分析&#xff0c;根据已有论文的分类特征&#xff0c;从而预测出未知分类的…

mybatis基础学习3---特殊sql语句(备忘)

1&#xff1a; 2&#xff1a; 3:resultMap的用法 转载于:https://www.cnblogs.com/kaiwen/p/6486283.html

使用gdb

1、gdb调试 gdb 对于看系统内部是非常有用. 在这个级别精通调试器的使用要求对 gdb 命令有信心, 需要理解目标平台的汇编代码, 以及对应源码和优化的汇编码的能力. LINUX DEVICE DRIVERS,3RD EDITION 调试器必须把内核作为一个应用程序来调用. 除了指定内核映象的文件名之外…

【Pytorch神经网络实战案例】21 基于Cora数据集实现Multi_Sample Dropout图卷积网络模型的论文分类

Multi-sample Dropout是Dropout的一个变种方法&#xff0c;该方法比普通Dropout的泛化能力更好&#xff0c;同时又可以缩短模型的训练时间。XMuli-sampleDropout还可以降低训练集和验证集的错误率和损失&#xff0c;参见的论文编号为arXⅳ:1905.09788,2019 1 实例说明 本例就…

linux自旋锁

1、为什么要有自旋锁 我们写驱动代码的时候,往往忽略这一点,然后版本发布后会经常遇到一些异常的问题,资源的竞争相当重要,很容易出现空指针 引用: if (!dptr->data[s_pos]) { dptr->data[s_pos] = kmalloc(quantum, GFP_KERNEL); if (!dptr->data[s_pos])…

java基础-public/private/protected的具体区别

在说明这四个关键字之前&#xff0c;我想就class之间的关系做一个简单的定义&#xff0c;对于继承自己的class&#xff0c;base class可以认为他们都是自己的子女&#xff0c;而对于和自己一个目录下的classes&#xff0c;认为都是自己的朋友。 1、public&#xff1a;publi…

【Pytorch神经网络理论篇】 26 基于空间域的图卷积GCNs(ConvGNNs):定点域+谱域+图卷积的操作步骤

同学你好&#xff01;本文章于2021年末编写&#xff0c;获得广泛的好评&#xff01; 故在2022年末对本系列进行填充与更新&#xff0c;欢迎大家订阅最新的专栏&#xff0c;获取基于Pytorch1.10版本的理论代码(2023版)实现&#xff0c; Pytorch深度学习理论篇(2023版)目录地址…

Linux设备驱动之mmap设备操作

1.mmap系统调用 void *mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset); 功能&#xff1a;负责把文件内容映射到进程的虚拟地址空间&#xff0c;通过对这段内存的读取和修改来实现对文件的读取和修改&#xff0c;而不需要再调用read和write&#xff…

hadoop安装以及Java API操作hdfs

因为工作需求&#xff0c;需要我这边实现一个大文件上传到HDFS的功能&#xff0c;因为本机无法连接公司内网的集群&#xff0c;无奈只好自己动手搭建一个单节点的Hadoop来满足工作的需求。下面简单介绍下安装过程中遇到的坑我的机器是阿里云的最低配 安装文件&#xff1a;hadoo…

【Pytorch神经网络理论篇】 27 图神经网络DGL库:简介+安装+卸载+数据集+PYG库+NetWorkx库

同学你好&#xff01;本文章于2021年末编写&#xff0c;获得广泛的好评&#xff01; 故在2022年末对本系列进行填充与更新&#xff0c;欢迎大家订阅最新的专栏&#xff0c;获取基于Pytorch1.10版本的理论代码(2023版)实现&#xff0c; Pytorch深度学习理论篇(2023版)目录地址…

给ubuntuGedit安装gedit-source-code-browser

插件链接下载 https://bugs.launchpad.net/ubuntu/source/gedit-source-code-browser-plugin/bug/1242126 下载这个安装完后还用不了&#xff0c;还要添加下面的补丁 diff -Naur old-plugins/sourcecodebrowser/ctags.py plugins/sourcecodebrowser/ctags.py --- old-plugin…

Hint: This means that multiple copies of the OpenMP runtime have been linked into the program.

解决OMP: Hint: This means that multiple copies of the OpenMP runtime have been linked into the program. That is dangerous, since it can degrade performance or cause incorrect results. The best thing to do is to ensure that only a single OpenMP runtime is l…

Linux 系统版本信息

1、# uname &#xff0d;a &#xff08;Linux查看版本当前操作系统内核信息&#xff09; 2、# cat /proc/version &#xff08;Linux查看当前操作系统版本信息&#xff09; 3、# cat /etc/issue 或cat /etc/redhat-release&#xff08;Linux查看版本当前操作系统发行版信息&…

DEVICE_ATTR的使用

使用DEVICE_ATTR&#xff0c;可以在sys fs中添加“文件”&#xff0c;通过修改该文件内容&#xff0c;可以实现在运行过程中动态控制device的目的。类似的还有DRIVER_ATTR&#xff0c;BUS_ATTR&#xff0c;CLASS_ATTR。 这几个东东的区别就是&#xff0c;DEVICE_ATTR对应的文件…

【Pytorch神经网络理论篇】 28 DGLGraph图的基本操作(缺一部分 明天补)

同学你好&#xff01;本文章于2021年末编写&#xff0c;获得广泛的好评&#xff01; 故在2022年末对本系列进行填充与更新&#xff0c;欢迎大家订阅最新的专栏&#xff0c;获取基于Pytorch1.10版本的理论代码(2023版)实现&#xff0c; Pytorch深度学习理论篇(2023版)目录地址…

泛型(模拟list)

package Test; import java.util.Arrays; public class genericity<T> { private Object[] t; public genericity() { super(); t new Object[0]; } //增加数据 public void add(T t1) { t Arrays.copyOf(t, t.length 1); t[t.length - 1] t1; } //查询数据 public i…

中断处理的tasklet(小任务)机制-不过如此

中断服务程序一般都是在中断请求关闭的条件下执行的,以避免嵌套而使中断控制复杂化。但是&#xff0c;中断是一个随机事件&#xff0c;它随时会到来&#xff0c;如果关中断的时间太长&#xff0c;CPU就不能及时响应其他的中断请求&#xff0c;从而造成中断的丢失。因此&#xf…