2010-08-10 22:05:51 +02:00
|
|
|
/* VTreeFS - stadir.c - by Alen Stojanov and David van Moolenbroek */
|
|
|
|
|
|
|
|
#include "inc.h"
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/statvfs.h>
|
2011-07-01 21:35:54 +02:00
|
|
|
#include <string.h>
|
2010-08-10 22:05:51 +02:00
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* fs_stat *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int fs_stat(void)
|
2010-08-10 22:05:51 +02:00
|
|
|
{
|
|
|
|
/* Retrieve file status.
|
|
|
|
*/
|
|
|
|
char path[PATH_MAX];
|
|
|
|
struct stat statbuf;
|
|
|
|
time_t cur_time;
|
|
|
|
struct inode *node;
|
|
|
|
int r;
|
|
|
|
|
2014-05-01 10:05:07 +02:00
|
|
|
if ((node = find_inode(fs_m_in.m_vfs_fs_stat.inode)) == NULL)
|
2010-08-10 22:05:51 +02:00
|
|
|
return EINVAL;
|
|
|
|
|
2011-07-01 21:35:54 +02:00
|
|
|
memset(&statbuf, 0, sizeof(struct stat));
|
|
|
|
|
2010-08-10 22:05:51 +02:00
|
|
|
/* Fill in the basic info. */
|
|
|
|
statbuf.st_dev = fs_dev;
|
|
|
|
statbuf.st_ino = get_inode_number(node);
|
|
|
|
statbuf.st_mode = node->i_stat.mode;
|
|
|
|
statbuf.st_nlink = !is_inode_deleted(node);
|
|
|
|
statbuf.st_uid = node->i_stat.uid;
|
|
|
|
statbuf.st_gid = node->i_stat.gid;
|
|
|
|
statbuf.st_rdev = (dev_t) node->i_stat.dev;
|
|
|
|
statbuf.st_size = node->i_stat.size;
|
|
|
|
|
|
|
|
/* If it is a symbolic link, return the size of the link target. */
|
|
|
|
if (S_ISLNK(node->i_stat.mode) && vtreefs_hooks->rdlink_hook != NULL) {
|
|
|
|
r = vtreefs_hooks->rdlink_hook(node, path, sizeof(path),
|
|
|
|
get_inode_cbdata(node));
|
|
|
|
|
|
|
|
if (r == OK)
|
|
|
|
statbuf.st_size = strlen(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Take the current time as file time for all files. */
|
|
|
|
cur_time = time(NULL);
|
|
|
|
statbuf.st_atime = cur_time;
|
|
|
|
statbuf.st_mtime = cur_time;
|
|
|
|
statbuf.st_ctime = cur_time;
|
|
|
|
|
|
|
|
/* Copy the struct to user space. */
|
2014-05-01 10:05:07 +02:00
|
|
|
return sys_safecopyto(fs_m_in.m_source, fs_m_in.m_vfs_fs_stat.grant, 0,
|
2012-06-16 03:46:15 +02:00
|
|
|
(vir_bytes) &statbuf, (phys_bytes) sizeof(statbuf));
|
2010-08-10 22:05:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*
|
2013-08-20 00:55:49 +02:00
|
|
|
* fs_statvfs *
|
2010-08-10 22:05:51 +02:00
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int fs_statvfs(void)
|
2010-08-10 22:05:51 +02:00
|
|
|
{
|
|
|
|
/* Retrieve file system statistics.
|
|
|
|
*/
|
|
|
|
struct statvfs statvfs;
|
|
|
|
|
|
|
|
memset(&statvfs, 0, sizeof(statvfs));
|
|
|
|
|
2013-08-20 01:35:35 +02:00
|
|
|
statvfs.f_flag = ST_NOTRUNC;
|
2010-08-10 22:05:51 +02:00
|
|
|
statvfs.f_namemax = PNAME_MAX;
|
|
|
|
|
2014-05-01 11:19:18 +02:00
|
|
|
return sys_safecopyto(fs_m_in.m_source, fs_m_in.m_vfs_fs_statvfs.grant,
|
|
|
|
0, (vir_bytes) &statvfs, sizeof(statvfs));
|
2010-08-10 22:05:51 +02:00
|
|
|
}
|