forked from gerard/ext4fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
op_getattr.c
45 lines (35 loc) · 1.05 KB
/
op_getattr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (c) 2010, Gerard Lledó Vives, [email protected]
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation. See README and COPYING for
* more details.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include "inode.h"
#include "logging.h"
int op_getattr(const char *path, struct stat *stbuf)
{
struct ext4_inode inode;
int ret = 0;
DEBUG("getattr(%s)", path);
memset(stbuf, 0, sizeof(struct stat));
ret = inode_get_by_path(path, &inode);
if (ret < 0) {
return ret;
}
DEBUG("getattr done");
stbuf->st_mode = inode.i_mode & ~0222;
stbuf->st_nlink = inode.i_links_count;
stbuf->st_size = inode_get_size(&inode);
stbuf->st_blocks = inode.i_blocks_lo;
stbuf->st_uid = inode.i_uid;
stbuf->st_gid = inode.i_gid;
stbuf->st_atime = inode.i_atime;
stbuf->st_mtime = inode.i_mtime;
stbuf->st_ctime = inode.i_ctime;
return 0;
}