Source
SET_MSG_RESULT(result, zbx_dsprintf(NULL, "Cannot obtain system information: %s", zbx_strerror(errno)));
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
static zbx_mntopt_t mntopts[] = {
{MNT_ASYNC, "asynchronous"},
{MNT_EXPORTED, "NFS exported"},
{MNT_LOCAL, "local"},
{MNT_NODEV, "nodev"},
{MNT_NOEXEC, "noexec"},
{MNT_NOSUID, "nosuid"},
{MNT_QUOTA, "with quotas"},
{MNT_RDONLY, "read-only"},
{MNT_SYNCHRONOUS, "synchronous"},
{MNT_UNION, "union"},
{MNT_AUTOMOUNTED, "automounted"},
{MNT_JOURNALED, "journaled"},
{MNT_DEFWRITE, "defwrite"},
{MNT_IGNORE_OWNERSHIP, "noowners"},
{MNT_NOATIME, "noatime"},
{MNT_QUARANTINE, "quarantine"},
{MNT_DONTBROWSE, "nobrowse"},
{0, NULL}
};
static int get_fs_size_stat(const char *fs, zbx_uint64_t *total, zbx_uint64_t *free,
zbx_uint64_t *used, double *pfree, double *pused, char **error)
{
struct ZBX_STATFS s;
if (0 != ZBX_STATFS(fs, &s))
{
*error = zbx_dsprintf(NULL, "Cannot obtain filesystem information: %s", zbx_strerror(errno));
zabbix_log(LOG_LEVEL_DEBUG,"%s failed with error: %s",__func__, *error);
return SYSINFO_RET_FAIL;
}
/* Available space could be negative (top bit set) if we hit disk space */
/* reserved for non-privileged users. Treat it as 0. */
if (0 != ZBX_IS_TOP_BIT_SET(s.f_bavail))
s.f_bavail = 0;
if (NULL != total)
*total = (zbx_uint64_t)s.f_blocks * s.ZBX_BSIZE;
if (NULL != free)
*free = (zbx_uint64_t)s.f_bavail * s.ZBX_BSIZE;
if (NULL != used)
*used = (zbx_uint64_t)(s.f_blocks - s.f_bfree) * s.ZBX_BSIZE;
if (NULL != pfree)
{
if (0 != s.f_blocks - s.f_bfree + s.f_bavail)
*pfree = (double)(100.0 * s.f_bavail) / (s.f_blocks - s.f_bfree + s.f_bavail);
else
*pfree = 0;
}
if (NULL != pused)
{
if (0 != s.f_blocks - s.f_bfree + s.f_bavail)
*pused = 100.0 - (double)(100.0 * s.f_bavail) / (s.f_blocks - s.f_bfree + s.f_bavail);
else
*pused = 0;
}