The dtrace
dtrace -n 'syscall::read:entry { @[fds[arg0].fi_fs] = count(); }'
I want to find the argument read fds
trace -lvn 'syscall::*read*:entry'
933 syscall read_nocancel entry
Probe Description Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Types
None
963 syscall readv_nocancel entry
Probe Description Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Types
None
969 syscall pread_nocancel entry
Probe Description Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Attributes
Identifier Names: Private
Data Semantics: Private
Dependency Class: ISA
Argument Types
None
But the argument is None. How to find the arguments?
You are confusing the meaning of an argument with the type of an argument.
The meaning of an argument depends on the provider. If you want to learn about
syscall:::
probes then you need to consult the documentation for the syscall provider, which saysTherefore in the clause
, which corresponds to
,
arg0
would be the value offildes
,arg1
would be the value ofbuf
andarg2
would be the value ofnbyte
.The type of
arg0
,arg1
,arg2
etc. is always anint64_t
, regardless of the types of the arguments that they represent. This is enough for scalar quantities, but for a structure dtrace(1) needs to understand types. It's possible to cast arguments, e.g.but this is irritating. Sometimes, but not always, DTrace knows the types of the arguments themselves and allows them to be described using the notation
args[0]
,args[1]
etc.; thus under certain circumstances I could instead write the much more convenientFor the syscall provider, DTrace doesn't know the arguments' types, which is why you see
and why
is not valid.
For the io provider, however, DTrace does know the arguments' types, e.g.
By reading the documentation for the io provider one can see that the definition of a
bufinfo_t
includesand this allows one to write, e.g.
Finally, you mention
fds[]
. As I explained before, the type offds[n]
isfileinfo_t *
.I recommend that you follow this introduction.