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

694 lines
17 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
*
*****************************************************************************
2004-02-21 17:22:00 +00:00
* Copyright (C) 1997-2004
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
2003-09-02 18:29:19 +00:00
* Beekmansbos 10
2001-08-17 05:46:24 +00:00
* 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"
2004-02-21 17:22:00 +00:00
#include "../lib/mbselib.h"
2001-08-17 05:46:24 +00:00
#include "taskdisk.h"
#include "taskutil.h"
2004-03-20 19:25:57 +00:00
typedef struct _mfs_list {
struct _mfs_list *next; /* Linked list */
char *mountpoint; /* Mountpoint */
char *fstype; /* FS type */
unsigned long size; /* Size in MB */
unsigned long avail; /* Available in MB */
2004-03-21 12:55:45 +00:00
unsigned ro : 1; /* Read-Only fs. */
2004-03-20 19:25:57 +00:00
} mfs_list;
mfs_list *mfs = NULL; /* List of filesystems */
2004-03-20 23:00:22 +00:00
int disk_reread = FALSE; /* Reread tables */
extern int T_Shutdown; /* Program shutdown */
int disk_run = FALSE; /* Thread running */
2004-03-22 11:35:47 +00:00
int recursecount = 0; /* Recurse counter */
2004-03-20 23:00:22 +00:00
pthread_mutex_t a_mutex = PTHREAD_MUTEX_INITIALIZER;
2004-03-20 19:25:57 +00:00
/*
* Internal prototypes
*/
2004-04-07 20:01:49 +00:00
char *mbt_realpath(const char *, char *);
2004-03-20 19:25:57 +00:00
void tidy_mfslist(mfs_list **);
int in_mfslist(char *, mfs_list **);
void fill_mfslist(mfs_list **, char *, char *);
void update_diskstat(void);
void add_path(char *);
2004-04-07 20:01:49 +00:00
/*
* realpath.c -- canonicalize pathname by removing symlinks
* Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
*/
#define HAVE_GETCWD
/*
* This routine is part of libc. We include it nevertheless,
* since the libc version has some security flaws.
*/
#define MAX_READLINKS 32
char *mbt_realpath(const char *path, char *resolved_path)
{
char copy_path[PATH_MAX], link_path[PATH_MAX], *new_path = resolved_path, *max_path;
int readlinks = 0, n;
/* Make a copy of the source path since we may need to modify it. */
if (strlen(path) >= PATH_MAX) {
errno = ENAMETOOLONG;
return NULL;
}
strcpy(copy_path, path);
path = copy_path;
max_path = copy_path + PATH_MAX - 2;
/* If it's a relative pathname use getwd for starters. */
if (*path != '/') {
getcwd(new_path, PATH_MAX - 1);
new_path += strlen(new_path);
if (new_path[-1] != '/')
*new_path++ = '/';
} else {
*new_path++ = '/';
path++;
}
/* Expand each slash-separated pathname component. */
while (*path != '\0') {
/* Ignore stray "/". */
if (*path == '/') {
path++;
continue;
}
if (*path == '.') {
/* Ignore ".". */
if (path[1] == '\0' || path[1] == '/') {
path++;
continue;
}
if (path[1] == '.') {
if (path[2] == '\0' || path[2] == '/') {
path += 2;
/* Ignore ".." at root. */
if (new_path == resolved_path + 1)
continue;
/* Handle ".." by backing up. */
while ((--new_path)[-1] != '/')
;
continue;
}
}
}
/* Safely copy the next pathname component. */
while (*path != '\0' && *path != '/') {
if (path > max_path) {
errno = ENAMETOOLONG;
return NULL;
}
*new_path++ = *path++;
}
#ifdef S_IFLNK
/* Protect against infinite loops. */
if (readlinks++ > MAX_READLINKS) {
errno = ELOOP;
return NULL;
}
/* See if latest pathname component is a symlink. */
*new_path = '\0';
n = readlink(resolved_path, link_path, PATH_MAX - 1);
if (n < 0) {
/* EINVAL means the file exists but isn't a symlink. */
if (errno != EINVAL)
return NULL;
} else {
/* Note: readlink doesn't add the null byte. */
link_path[n] = '\0';
if (*link_path == '/')
/* Start over for an absolute symlink. */
new_path = resolved_path;
else
/* Otherwise back up over this component. */
while (*(--new_path) != '/')
;
/* Safe sex check. */
if (strlen(path) + n >= PATH_MAX) {
errno = ENAMETOOLONG;
return NULL;
}
/* Insert symlink contents into path. */
strcat(link_path, path);
strcpy(copy_path, link_path);
path = copy_path;
}
#endif /* S_IFLNK */
*new_path++ = '/';
}
/* Delete trailing slash but don't whomp a lone slash. */
if (new_path != resolved_path + 1 && new_path[-1] == '/')
new_path--;
/* Make sure it's null terminated. */
*new_path = '\0';
return resolved_path;
}
2004-03-20 19:25:57 +00:00
/*
* Reset mounted filesystems array
*/
void tidy_mfslist(mfs_list **fap)
{
mfs_list *tmp, *old;
for (tmp = *fap; tmp; tmp = old) {
old = tmp->next;
free(tmp->mountpoint);
2004-03-21 12:55:45 +00:00
free(tmp->fstype);
2004-03-20 19:25:57 +00:00
free(tmp);
}
*fap = NULL;
}
int in_mfslist(char *mountpoint, mfs_list **fap)
{
mfs_list *tmp;
for (tmp = *fap; tmp; tmp = tmp->next)
if (strcmp(tmp->mountpoint, mountpoint) == 0)
return TRUE;
return FALSE;
}
void fill_mfslist(mfs_list **fap, char *mountpoint, char *fstype)
{
mfs_list *tmp;
if (in_mfslist(mountpoint, fap))
return;
tmp = (mfs_list *)malloc(sizeof(mfs_list));
tmp->next = *fap;
tmp->mountpoint = xstrcpy(mountpoint);
tmp->fstype = xstrcpy(fstype);
tmp->size = 0L;
tmp->avail = 0L;
2004-03-21 12:55:45 +00:00
tmp->ro = TRUE; // Read-only, statfs will set real value.
2004-03-20 19:25:57 +00:00
*fap = tmp;
}
2004-03-20 13:26:34 +00:00
/*
* This function signals the diskwatcher to reread the tables.
*/
char *disk_reset(void)
{
static char buf[10];
disk_reread = TRUE;
sprintf(buf, "100:0;");
return buf;
}
/*
2004-03-20 19:25:57 +00:00
* Check free diskspace on all by mbse used filesystems.
* The amount of needed space is given in MBytes.
2004-03-20 13:26:34 +00:00
*/
2004-03-20 19:25:57 +00:00
char *disk_check(char *token)
2004-03-20 13:26:34 +00:00
{
2004-03-20 19:25:57 +00:00
static char buf[SS_BUFSIZE];
mfs_list *tmp;
2004-03-21 12:55:45 +00:00
unsigned long needed, lowest = 0xffffffff;
2004-03-20 23:00:22 +00:00
int rc;
2004-03-20 19:25:57 +00:00
strtok(token, ",");
needed = atol(strtok(NULL, ";"));
if (mfs == NULL) {
/*
* Answer Error
*/
sprintf(buf, "100:1,3");
return buf;
}
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_lock(&a_mutex)))
Syslog('!', "disk_check() mutex_lock failed rc=%d", rc);
2004-03-20 19:25:57 +00:00
for (tmp = mfs; tmp; tmp = tmp->next) {
2004-03-21 12:55:45 +00:00
if (!tmp->ro && (tmp->avail < lowest))
lowest = tmp->avail;
2004-03-20 19:25:57 +00:00
}
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_unlock(&a_mutex)))
Syslog('!', "disk_check() mutex_unlock failed rc=%d", rc);
2004-03-21 12:55:45 +00:00
if (lowest < needed) {
sprintf(buf, "100:2,0,%ld;", lowest);
} else {
sprintf(buf, "100:2,1,%ld;", lowest);
}
2004-03-20 13:26:34 +00:00
return buf;
}
2001-08-17 05:46:24 +00:00
/*
* This function returns the information of all mounted filesystems,
* but no more then 10 filesystems.
*/
2004-03-20 13:26:34 +00:00
char *disk_getfs()
2001-08-17 05:46:24 +00:00
{
2002-02-04 21:22:27 +00:00
static char buf[SS_BUFSIZE];
2004-03-20 19:25:57 +00:00
char tt[80], *ans = NULL;
mfs_list *tmp;
2004-03-20 23:00:22 +00:00
int rc, i = 0;
2001-08-17 05:46:24 +00:00
2002-02-04 21:22:27 +00:00
buf[0] = '\0';
2004-03-20 19:25:57 +00:00
if (mfs == NULL) {
2002-02-04 21:22:27 +00:00
sprintf(buf, "100:0;");
return buf;
}
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_lock(&a_mutex)))
Syslog('!', "disk_getfs() mutex_lock failed rc=%d", rc);
2004-03-20 19:25:57 +00:00
for (tmp = mfs; tmp; tmp = tmp->next) {
i++;
if (ans == NULL)
ans = xstrcpy((char *)",");
else
ans = xstrcat(ans, (char *)",");
tt[0] = '\0';
2004-03-21 13:40:25 +00:00
sprintf(tt, "%lu %lu %s %s %d", tmp->size, tmp->avail, tmp->mountpoint, tmp->fstype, tmp->ro);
2004-03-20 19:25:57 +00:00
ans = xstrcat(ans, tt);
if (i == 10) /* No more then 10 filesystems */
break;
2002-02-04 21:22:27 +00:00
}
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_unlock(&a_mutex)))
Syslog('!', "disk_getfs() mutex_unlock failed rc=%d", rc);
2001-08-17 05:46:24 +00:00
2004-03-20 19:25:57 +00:00
if (strlen(ans) > (SS_BUFSIZE - 8))
2002-02-04 21:22:27 +00:00
sprintf(buf, "100:0;");
else
2004-03-20 19:25:57 +00:00
sprintf(buf, "100:%d%s;", i, ans);
2001-08-17 05:46:24 +00:00
2004-03-20 19:25:57 +00:00
if (ans != NULL)
free(ans);
2004-04-06 21:32:06 +00:00
ans = NULL;
2002-02-04 20:37:01 +00:00
2004-03-20 19:25:57 +00:00
return buf;
}
2002-02-04 21:22:27 +00:00
2002-02-04 20:37:01 +00:00
2002-02-04 21:22:27 +00:00
2004-03-20 19:25:57 +00:00
/*
2004-03-22 11:35:47 +00:00
* Update disk useage status. The calling function must lock the mutex!
2004-03-20 19:25:57 +00:00
*/
void update_diskstat(void)
{
struct statfs sfs;
unsigned long temp;
mfs_list *tmp;
for (tmp = mfs; tmp; tmp = tmp->next) {
if (statfs(tmp->mountpoint, &sfs) == 0) {
temp = (unsigned long)(sfs.f_bsize / 512L);
tmp->size = (unsigned long)(sfs.f_blocks * temp) / 2048L;
tmp->avail = (unsigned long)(sfs.f_bavail * temp) / 2048L;
2004-03-21 12:55:45 +00:00
#if defined(__linux__)
/*
* The struct statfs (or statvfs) seems to have no information
* about read-only filesystems, so we guess it based on fstype.
* See man 2 statvfs about what approximately is defined.
*/
tmp->ro = (strstr(tmp->fstype, "iso") != NULL);
#elif defined(__FreeBSD__) || defined(__NetBSD__)
2004-03-22 11:35:47 +00:00
/*
* XxxxBSD has the info in the statfs structure.
*/
tmp->ro = (sfs.f_flags & MNT_RDONLY);
2004-03-21 12:55:45 +00:00
#endif
2004-03-20 19:25:57 +00:00
}
}
2001-08-17 05:46:24 +00:00
}
2004-03-20 16:09:35 +00:00
/*
* Add path to table.
* Find out if the parameter is a path or a file on a path.
*/
2004-04-06 21:32:06 +00:00
void add_path(char *lpath)
2004-03-20 13:26:34 +00:00
{
2004-03-20 16:09:35 +00:00
struct stat sb;
2004-04-06 21:32:06 +00:00
char *p, fsname[PATH_MAX], fstype[PATH_MAX], *rpath;
2004-03-20 16:09:35 +00:00
#if defined(__linux__)
char *mtab, *fs;
FILE *fp;
#elif defined(__FreeBSD__) || defined(__NetBSD__)
struct statfs *mntbuf;
2004-03-20 16:19:27 +00:00
long mntsize;
2004-03-20 16:09:35 +00:00
int i;
#endif
2004-04-06 21:32:06 +00:00
if (strlen(lpath) == 0) {
2004-03-20 16:09:35 +00:00
return;
}
2004-03-22 11:35:47 +00:00
/*
* Safety recursive call count.
*/
recursecount++;
if (recursecount > 2) {
2004-04-06 21:32:06 +00:00
Syslog('!', "add_path(%s), too many recursive calls", lpath);
2004-03-22 11:35:47 +00:00
recursecount--;
return;
}
2004-04-15 21:29:59 +00:00
rpath = calloc(PATH_MAX, sizeof(char));
mbt_realpath(lpath, rpath);
2004-04-06 21:32:06 +00:00
if (lstat(rpath, &sb) == 0) {
2004-03-20 16:09:35 +00:00
if (S_ISDIR(sb.st_mode)) {
#if defined(__linux__)
2004-03-21 12:55:45 +00:00
2004-03-20 16:09:35 +00:00
if ((fp = fopen((char *)"/etc/mtab", "r"))) {
mtab = calloc(PATH_MAX, sizeof(char));
fsname[0] = '\0';
while (fgets(mtab, PATH_MAX -1, fp)) {
fs = strtok(mtab, " \t");
fs = strtok(NULL, " \t");
/*
* Overwrite fsname each time a match is found, the last
* mounted filesystem that matches must be the one we seek.
*/
2004-04-06 21:32:06 +00:00
if (strncmp(fs, rpath, strlen(fs)) == 0) {
2004-03-20 16:09:35 +00:00
sprintf(fsname, "%s", fs);
2004-03-20 19:25:57 +00:00
fs = strtok(NULL, " \t");
sprintf(fstype, "%s", fs);
2004-03-20 16:09:35 +00:00
}
}
fclose(fp);
free(mtab);
2004-03-20 19:25:57 +00:00
fill_mfslist(&mfs, fsname, fstype);
2004-03-20 16:09:35 +00:00
}
#elif defined(__FreeBSD__) || defined(__NetBSD__)
if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT))) {
2004-03-20 19:25:57 +00:00
2004-03-20 16:09:35 +00:00
for (i = 0; i < mntsize; i++) {
2004-04-06 21:32:06 +00:00
if (strncmp(mntbuf[i].f_mntonname, rpath, strlen(mntbuf[i].f_mntonname)) == 0) {
2004-03-20 16:19:27 +00:00
sprintf(fsname, "%s", mntbuf[i].f_mntonname);
2004-03-20 19:25:57 +00:00
sprintf(fstype, "%s", mntbuf[i].f_fstypename);
2004-03-20 16:09:35 +00:00
}
}
2004-03-20 21:30:11 +00:00
fill_mfslist(&mfs, fsname, fstype);
2004-03-20 16:09:35 +00:00
}
2004-03-21 12:55:45 +00:00
#else
#error "Unknow OS - don't know what to do"
2004-03-20 16:09:35 +00:00
#endif
} else {
2004-03-21 12:55:45 +00:00
/*
* Not a directory, maybe a file.
*/
2004-04-06 21:32:06 +00:00
if ((p = strrchr(rpath, '/')))
2004-03-21 12:55:45 +00:00
*p = '\0';
2004-04-06 21:32:06 +00:00
add_path(rpath);
2004-03-20 16:09:35 +00:00
}
} else {
/*
* Possible cause, we were given a filename that
* may not be present because this is a temporary file.
* Strip the last part of the name and try again.
*/
2004-04-06 21:32:06 +00:00
if ((p = strrchr(rpath, '/')))
2004-03-20 16:09:35 +00:00
*p = '\0';
2004-04-06 21:32:06 +00:00
add_path(rpath);
2004-03-20 16:09:35 +00:00
}
2004-03-22 11:35:47 +00:00
recursecount--;
2004-04-06 21:32:06 +00:00
free(rpath);
2004-03-20 13:26:34 +00:00
}
/*
* Diskwatch thread
*/
void *disk_thread(void)
{
2004-03-20 19:25:57 +00:00
FILE *fp;
char *temp;
mfs_list *tmp;
2004-03-20 23:00:22 +00:00
int rc;
2004-03-20 16:09:35 +00:00
2004-03-20 13:26:34 +00:00
Syslog('+', "Start disk thread");
disk_run = TRUE;
disk_reread = TRUE;
while (! T_Shutdown) {
if (disk_reread) {
disk_reread = FALSE;
Syslog('+', "Reread disk filesystems");
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_lock(&a_mutex)))
Syslog('!', "disk_thread() mutex_lock failed rc=%d", rc);
2004-03-20 19:25:57 +00:00
tidy_mfslist(&mfs);
2004-03-20 16:09:35 +00:00
add_path(getenv("MBSE_ROOT"));
2004-03-20 13:26:34 +00:00
add_path(CFG.bbs_menus);
2004-03-20 16:09:35 +00:00
add_path(CFG.bbs_txtfiles);
add_path(CFG.alists_path);
add_path(CFG.req_magic);
add_path(CFG.bbs_usersdir);
add_path(CFG.nodelists);
add_path(CFG.inbound);
add_path(CFG.pinbound);
add_path(CFG.outbound);
add_path(CFG.ftp_base);
add_path(CFG.bbs_macros);
add_path(CFG.out_queue);
add_path(CFG.rulesdir);
add_path(CFG.tmailshort);
add_path(CFG.tmaillong);
temp = calloc(PATH_MAX, sizeof(char ));
sprintf(temp, "%s/etc/fareas.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&areahdr, sizeof(areahdr), 1, fp);
fseek(fp, areahdr.hdrsize, SEEK_SET);
while (fread(&area, areahdr.recsize, 1, fp)) {
if (area.Available) {
if (area.CDrom)
add_path(area.FilesBbs);
else
add_path(area.Path);
}
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/mareas.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&msgshdr, sizeof(msgshdr), 1, fp);
fseek(fp, msgshdr.hdrsize, SEEK_SET);
while (fread(&msgs, msgshdr.recsize, 1, fp)) {
if (msgs.Active)
add_path(msgs.Base);
fseek(fp, msgshdr.syssize, SEEK_CUR);
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/language.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&langhdr, sizeof(langhdr), 1, fp);
fseek(fp, langhdr.hdrsize, SEEK_SET);
while (fread(&lang, langhdr.recsize, 1, fp)) {
if (lang.Available) {
add_path(lang.MenuPath);
add_path(lang.TextPath);
add_path(lang.MacroPath);
}
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/nodes.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&nodeshdr, sizeof(nodeshdr), 1, fp);
fseek(fp, nodeshdr.hdrsize, SEEK_SET);
while (fread(&nodes, nodeshdr.recsize, 1, fp)) {
if (nodes.Session_in == S_DIR)
add_path(nodes.Dir_in_path);
if (nodes.Session_out == S_DIR)
add_path(nodes.Dir_out_path);
add_path(nodes.OutBox);
fseek(fp, nodeshdr.filegrp + nodeshdr.mailgrp, SEEK_CUR);
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/fgroups.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&fgrouphdr, sizeof(fgrouphdr), 1, fp);
fseek(fp, fgrouphdr.hdrsize, SEEK_SET);
while (fread(&fgroup, fgrouphdr.recsize, 1, fp)) {
if (fgroup.Active)
add_path(fgroup.BasePath);
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/mgroups.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&mgrouphdr, sizeof(mgrouphdr), 1, fp);
fseek(fp, mgrouphdr.hdrsize, SEEK_SET);
while (fread(&mgroup, mgrouphdr.recsize, 1, fp)) {
if (mgroup.Active)
add_path(mgroup.BasePath);
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/hatch.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&hatchhdr, sizeof(hatchhdr), 1, fp);
fseek(fp, hatchhdr.hdrsize, SEEK_SET);
while (fread(&hatch, hatchhdr.recsize, 1, fp)) {
if (hatch.Active)
add_path(hatch.Spec);
}
fclose(fp);
}
2004-03-22 11:35:47 +00:00
if (T_Shutdown)
break;
2004-03-20 16:09:35 +00:00
sprintf(temp, "%s/etc/magic.data", getenv("MBSE_ROOT"));
if ((fp = fopen(temp, "r"))) {
Syslog('d', "+ %s", temp);
fread(&magichdr, sizeof(magichdr), 1, fp);
fseek(fp, magichdr.hdrsize, SEEK_SET);
while (fread(&magic, magichdr.recsize, 1, fp)) {
if (magic.Active && ((magic.Attrib == MG_COPY) || (magic.Attrib == MG_UNPACK)))
add_path(magic.Path);
}
fclose(fp);
}
free(temp);
Syslog('d', "All directories added");
2004-03-20 19:25:57 +00:00
2004-03-22 11:35:47 +00:00
/*
* Now update the new table with filesystems information. This must
* be done before we unlock the mutex so that waiting clients get
* usefull information.
*/
update_diskstat();
2004-03-20 19:25:57 +00:00
for (tmp = mfs; tmp; tmp = tmp->next) {
2004-03-22 11:35:47 +00:00
Syslog('+', "Found filesystem: %s type: %s status: %s", tmp->mountpoint, tmp->fstype, tmp->ro ?"RO":"RW");
2004-03-20 19:25:57 +00:00
}
2004-03-20 23:00:22 +00:00
if ((rc = pthread_mutex_unlock(&a_mutex)))
Syslog('!', "disk_thread() mutex_unlock failed rc=%d", rc);
2004-03-20 13:26:34 +00:00
}
2004-03-22 11:35:47 +00:00
if ((rc = pthread_mutex_lock(&a_mutex)))
Syslog('!', "disk_thread() mutex_lock failed rc=%d", rc);
2004-03-20 19:25:57 +00:00
update_diskstat();
2004-03-22 11:35:47 +00:00
if ((rc = pthread_mutex_unlock(&a_mutex)))
Syslog('!', "disk_thread() mutex_unlock failed rc=%d", rc);
2004-03-20 13:26:34 +00:00
sleep(1);
}
2004-03-22 11:35:47 +00:00
tidy_mfslist(&mfs);
2004-03-20 13:26:34 +00:00
disk_run = FALSE;
Syslog('+', "Disk thread stopped");
pthread_exit(NULL);
2004-04-06 21:32:06 +00:00
2004-04-15 21:29:59 +00:00
#if defined(__NetBSD__)
return NULL;
2004-04-06 21:32:06 +00:00
#endif
2004-03-20 13:26:34 +00:00
}