Linux中的ioctl嗅探器

时间:2017-12-27 05:52:25

标签: linux ioctl sniffing

是否有任何实用程序允许在应用程序和内核之间嗅探ioctl命令和数据。我需要跟踪一个错误,该错误需要在工作应用程序和非工作应用程序之间发送ioctl命令序列。

谷歌搜索找到了一个Windows实用程序。

public function index() 
{
   $productLog = new ProductLog;

   $productLog->setTable('anotherTableName');

   $productLog->get(); // select * from anotherTableName


   $productLog->myTestProp = 'test';
   $productLog->save(); // now saves into anotherTableName
}

linux中是否有这样的实用程序

0 个答案:

没有答案