我们有一个似乎挂起的 linux 应用程序(我们没有源代码)。两个进程之间的套接字报告为 ESTABLISHED,并且内核套接字缓冲区中有一些数据(尽管远不及通过 wmem/rmem 配置的 16M)。套接字的两端似乎都卡在了 sendto() 上。
下面是使用 netstat/lsof 和 strace 进行的一些调查:
主机 A (10.152.20.28)
[root@hosta ~]# lsof -n -u df01 | grep 12959 | grep 12u
q 12959 df01 12u IPv4 4398449 TCP 10.152.20.28:38521->10.152.20.29:gsigatekeeper (ESTABLISHED)
[root@hosta ~]# netstat -anp | grep 38521
tcp 268754 90712 10.152.20.28:38521 10.152.20.29:2119 ESTABLISHED 12959/q
[root@hosta ~]# strace -p 12959
Process 12959 attached - interrupt to quit
sendto(12, "sometext\0somecode\0More\0exJKsss"..., 542, 0, NULL, 0 <unfinished ...>
Process 12959 detached
[root@hosta~]#
主机 B (10.152.20.29)
[root@hostb ~]# netstat -anp | grep 38521
tcp 72858 110472 10.152.20.29:2119 10.152.20.28:38521 ESTABLISHED 25512/q
[root@hostb ~]# lsof -n -u df01 | grep 38521
q 25512 df01 14u IPv4 6456715 TCP 10.152.20.29:gsigatekeeper->10.152.20.28:38521 (ESTABLISHED)
[root@hostb ~]# strace -p 25512
Process 25512 attached - interrupt to quit
sendto(14, "\0\10\0\0\0Owner\0sym\0Type\0Ctpy\0Time\0Lo"..., 207, 0, NULL, 0 <unfinished ...>
Process 25512 detached
[root@hostb~]#
我们已将 NIC 驱动程序升级到最新最好的版本。系统运行 RHEL 5.6 x64 (2.6.18-238.el5),我检查了 RHEL 5.7 和 5.8 的 eratta,但我看不到 bnx2 驱动程序或内核的错误。
有人对如何进一步调试有任何想法吗?