X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flvm.c;h=4bb1c3409ea25f9145d0c5148b9052568f5a3429;hb=0fd27c3d33f8729989b00df386cae5b14a34445d;hp=63107279be19da94f6754caf7423f2140da29114;hpb=88bd89f106abd5c0a9f9a80246e31a16c36a3c6d;p=collectd.git diff --git a/src/lvm.c b/src/lvm.c index 63107279..4bb1c340 100644 --- a/src/lvm.c +++ b/src/lvm.c @@ -21,13 +21,17 @@ * Benjamin Gilbert **/ -#include - #include "collectd.h" #include "common.h" #include "plugin.h" +#include + +#ifdef HAVE_SYS_CAPABILITY_H +#include +#endif /* HAVE_SYS_CAPABILITY_H */ + #define NO_VALUE UINT64_MAX #define PERCENT_SCALE_FACTOR 1e-8 @@ -183,6 +187,24 @@ static int lvm_read(void) { return 0; } /*lvm_read */ +static int lvm_init(void) { +#if defined(HAVE_SYS_CAPABILITY_H) && defined(CAP_SYS_ADMIN) + if (check_capability(CAP_SYS_ADMIN) != 0) { + if (getuid() == 0) + WARNING("smart plugin: Running collectd as root, but the " + "CAP_SYS_ADMIN capability is missing. The plugin's read " + "function will probably fail. Is your init system dropping " + "capabilities?"); + else + WARNING("smart plugin: collectd doesn't have the CAP_SYS_ADMIN " + "capability. If you don't want to run collectd as root, try " + "running \"setcap cap_sys_admin=ep\" on the collectd binary."); + } +#endif + return 0; +} + void module_register(void) { + plugin_register_init("lvm", lvm_init); plugin_register_read("lvm", lvm_read); } /* void module_register */