编程方式检查一个Linux内核模块是否存在在运行时(Programmatically check w

2019-08-01 16:51发布

我写一个C守护进程,它取决于两个内核模块的存在,以完成其工作。 该方案不直接使用这些(或任何其他)模块。 它只需要他们存在。 因此,我想以编程方式检查是否这些模块都已经加载与否,以提醒用户在运行时。

在我开始做的事情一样解析/proc/moduleslsmod输出,做一个效用函数已经存在的地方? 喜欢的东西is_module_loaded(const char* name) ;

我敢肯定,这已被问过。 不过,我觉得我缺少正确的字词进行搜索这一点。

Answer 1:

您可以使用popenlsmod | grep lsmod | grep绝招:

  FILE *fd = popen("lsmod | grep module_name", "r");

  char buf[16];
  if (fread (buf, 1, sizeof (buf), fd) > 0) // if there is some result the module must be loaded
    printf ("module is loaded\n");
  else
    printf ("module is not loaded\n");


Answer 2:

有没有这样的功能。 事实上,lsmod的(源代码lsmod.c )在它下面那行,引领你的解决方案:

file = fopen("/proc/modules", "r");

还有一个过时query_module但它似乎只在内核头文件中存在的这些天。



文章来源: Programmatically check whether a linux kernel module exists or not at runtime