This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbtask/taskdisk.c

147 lines
3.8 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Give status of all filesystems
*
*****************************************************************************
2002-01-11 19:01:00 +00:00
* Copyright (C) 1997-2002
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 Internet: mbse@user.sourceforge.net
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* MB BBS 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MB BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
2002-06-30 13:20:57 +00:00
#include "../config.h"
2001-08-17 05:46:24 +00:00
#include "libs.h"
#include "../lib/structs.h"
2001-08-17 05:46:24 +00:00
#include "taskdisk.h"
#include "taskutil.h"
/*
* This function returns the information of all mounted filesystems,
* but no more then 10 filesystems.
*/
char *get_diskstat()
{
2002-02-04 21:22:27 +00:00
static char buf[SS_BUFSIZE];
char *tmp = NULL;
char tt[80];
struct statfs sfs;
unsigned long temp;
2002-02-04 20:37:01 +00:00
#if defined(__linux__)
2002-02-04 21:22:27 +00:00
char *mtab, *dev, *fs, *type;
FILE *fp;
int i = 0;
2002-02-04 20:37:01 +00:00
#elif defined(__FreeBSD__) || (__NetBSD__)
2002-02-04 21:22:27 +00:00
struct statfs *mntbuf;
long mntsize;
int i, j = 0;
2002-02-04 20:37:01 +00:00
#endif
2001-08-17 05:46:24 +00:00
2002-02-04 21:22:27 +00:00
buf[0] = '\0';
2002-02-04 20:37:01 +00:00
#if defined (__linux__)
2002-02-04 21:22:27 +00:00
if ((fp = fopen((char *)"/etc/mtab", "r")) == NULL) {
sprintf(buf, "100:0;");
return buf;
}
mtab = calloc(PATH_MAX, sizeof(char));
while (fgets(mtab, PATH_MAX - 1, fp)) {
dev = strtok(mtab, " \t");
fs = strtok(NULL, " \t");
type = strtok(NULL, " \t");
if (strncmp((char *)"/dev/", dev, 5) == 0) {
if (statfs(fs, &sfs) == 0) {
i++;
if (tmp == NULL)
tmp = xstrcpy((char *)",");
else
tmp = xstrcat(tmp, (char *)",");
tt[0] = '\0';
temp = (unsigned long)(sfs.f_bsize / 512L);
sprintf(tt, "%lu %lu %s %s",
(unsigned long)(sfs.f_blocks * temp) / 2048L,
(unsigned long)(sfs.f_bavail * temp) / 2048L,
fs, type);
tmp = xstrcat(tmp, tt);
}
if (i == 10) /* No more then 10 filesystems */
break;
2001-08-17 05:46:24 +00:00
}
2002-02-04 21:22:27 +00:00
}
fclose(fp);
free(mtab);
2001-08-17 05:46:24 +00:00
2002-02-04 21:22:27 +00:00
if (strlen(tmp) > (SS_BUFSIZE - 8))
sprintf(buf, "100:0;");
else
sprintf(buf, "100:%d%s;", i, tmp);
2001-08-17 05:46:24 +00:00
2002-02-04 20:37:01 +00:00
#elif defined(__FreeBSD__) || (__NetBSD__)
2002-02-04 21:22:27 +00:00
if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) {
sprintf(buf, "100:0;");
return buf;
}
for (i = 0; i < mntsize; i++) {
if ((strncmp(mntbuf[i].f_fstypename, (char *)"kernfs", 6)) &&
(strncmp(mntbuf[i].f_fstypename, (char *)"procfs", 6)) &&
(statfs(mntbuf[i].f_mntonname, &sfs) == 0)) {
if (tmp == NULL)
tmp = xstrcpy((char *)",");
else
tmp = xstrcat(tmp, (char *)",");
tt[0] = '\0';
temp = (unsigned long)(sfs.f_bsize / 512L);
sprintf(tt, "%lu %lu %s %s",
(unsigned long)(sfs.f_blocks * temp) / 2048L,
(unsigned long)(sfs.f_bavail * temp) / 2048L,
mntbuf[i].f_mntonname, mntbuf[i].f_fstypename);
tmp = xstrcat(tmp, tt);
j++;
if (j == 10) /* No more then 10 filesystems */
break;
2002-02-04 20:37:01 +00:00
}
2002-02-04 21:22:27 +00:00
}
if (strlen(tmp) > (SS_BUFSIZE - 8))
2002-02-04 20:37:01 +00:00
sprintf(buf, "100:0;");
2002-02-04 21:22:27 +00:00
else
sprintf(buf, "100:%d%s;", j, tmp);
#else
/*
* Not supported, so return nothing usefull.
*/
sprintf(buf, "100:0;");
2002-02-04 20:37:01 +00:00
#endif
2002-02-04 21:22:27 +00:00
if (tmp != NULL)
free(tmp);
return buf;
2001-08-17 05:46:24 +00:00
}