systemtap tcp连接脚本错误

时间:2012-11-28 12:23:45

标签: linux systemtap

我正在尝试运行此脚本,它显示没有任何想法的TCP连接?操作系统:centos 6.3

#! /usr/bin/env stap

probe begin {
  printf("%6s %16s %6s %6s %16s\n",
         "UID", "CMD", "PID", "PORT", "IP_SOURCE")
}

probe kernel.function("tcp_accept").return?,
      kernel.function("inet_csk_accept").return? {
  sock = $return
  if (sock != 0)
    printf("%6d %16s %6d %6d %16s\n", uid(), execname(), pid(),
           inet_get_local_port(sock), inet_get_ip_source(sock))
}

输出:

[root@server src]# ./tcp_con.stp 
   Missing separate debuginfos, use: debuginfo-install kernel-2.6.32-279.1.1.el6.centos.plus.x86_64 
   UID              CMD    PID   PORT        IP_SOURCE

1 个答案:

答案 0 :(得分:2)

遵循systemtap的建议并安装kernel-debuginfo。 两个kernel.function()探针之后的问题都让stap安静地掉落了这两个。