/*
* Copyright (c) 2006 Antti Kantee. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/*
* create root directory, do it "by hand" to avoid special-casing
* dtfs_genfile()
*/
dff = dtfs_newdir();
dff->df_dotdot = NULL;
pn = puffs_pn_new(pu, dff);
if (!pn)
errx(1, "puffs_newpnode");
puffs_setroot(pu, pn);
if (!typestr) {
rtnorm(pu, NULL, VDIR);
} else {
for (i = 0; i < NTYPES; i++) {
if (strncmp(rtypes[i].tstr, typestr,
strlen(rtypes[i].tstr)) == 0) {
if (rtypes[i].pfunc(pu, typestr,
rtypes[i].vt) != 0) {
fprintf(stderr, "failed to parse "
"\"%s\"\n", typestr);
return 1;
}
break;
}
}
if (i == NTYPES) {
fprintf(stderr, "no matching type for %s\n", typestr);
return 1;
}
}
return 0;
}
/*
* statvfs() should fill in the following members of struct statvfs:
*
* unsigned long f_bsize; file system block size
* unsigned long f_frsize; fundamental file system block size
* unsigned long f_iosize; optimal file system block size
* fsblkcnt_t f_blocks; number of blocks in file system,
* (in units of f_frsize)
*
* fsblkcnt_t f_bfree; free blocks avail in file system
* fsblkcnt_t f_bavail; free blocks avail to non-root
* fsblkcnt_t f_bresvd; blocks reserved for root
*
* fsfilcnt_t f_files; total file nodes in file system
* fsfilcnt_t f_ffree; free file nodes in file system
* fsfilcnt_t f_favail; free file nodes avail to non-root
* fsfilcnt_t f_fresvd; file nodes reserved for root
*
*
* The rest are filled in by the kernel.
*/
#define ROUND(a,b) (((a) + ((b)-1)) & ~((b)-1))
#define NFILES 1024*1024
int
dtfs_fs_statvfs(struct puffs_usermount *pu, struct puffs_statvfs *sbp)
{
struct rlimit rlim;
struct dtfs_mount *dtm;
off_t btot, bfree;
int pgsize;
/*
* Use datasize rlimit as an _approximation_ for free size.
* This, of course, is not accurate due to overhead and not
* accounting for metadata.
*/
if (getrlimit(RLIMIT_DATA, &rlim) == 0)
btot = rlim.rlim_cur;
else
btot = 16*1024*1024;
bfree = btot - dtm->dtm_fsizes;