mke2fs: Use e4fsprogs programs if available.
[libguestfs.git] / daemon / stat.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <sys/statvfs.h>
27 #include <unistd.h>
28
29 #include "../src/guestfs_protocol.h"
30 #include "daemon.h"
31 #include "actions.h"
32
33 guestfs_int_stat *
34 do_stat (const char *path)
35 {
36   int r;
37   guestfs_int_stat *ret;
38   struct stat statbuf;
39
40   CHROOT_IN;
41   r = stat (path, &statbuf);
42   CHROOT_OUT;
43
44   if (r == -1) {
45     reply_with_perror ("stat");
46     return NULL;
47   }
48
49   ret = malloc (sizeof *ret);
50   if (ret == NULL) {
51     reply_with_perror ("malloc");
52     return NULL;
53   }
54
55   ret->dev = statbuf.st_dev;
56   ret->ino = statbuf.st_ino;
57   ret->mode = statbuf.st_mode;
58   ret->nlink = statbuf.st_nlink;
59   ret->uid = statbuf.st_uid;
60   ret->gid = statbuf.st_gid;
61   ret->rdev = statbuf.st_rdev;
62   ret->size = statbuf.st_size;
63   ret->blksize = statbuf.st_blksize;
64   ret->blocks = statbuf.st_blocks;
65   ret->atime = statbuf.st_atime;
66   ret->mtime = statbuf.st_mtime;
67   ret->ctime = statbuf.st_ctime;
68
69   return ret;
70 }
71
72 guestfs_int_stat *
73 do_lstat (const char *path)
74 {
75   int r;
76   guestfs_int_stat *ret;
77   struct stat statbuf;
78
79   CHROOT_IN;
80   r = lstat (path, &statbuf);
81   CHROOT_OUT;
82
83   if (r == -1) {
84     reply_with_perror ("stat");
85     return NULL;
86   }
87
88   ret = malloc (sizeof *ret);
89   if (ret == NULL) {
90     reply_with_perror ("malloc");
91     return NULL;
92   }
93
94   ret->dev = statbuf.st_dev;
95   ret->ino = statbuf.st_ino;
96   ret->mode = statbuf.st_mode;
97   ret->nlink = statbuf.st_nlink;
98   ret->uid = statbuf.st_uid;
99   ret->gid = statbuf.st_gid;
100   ret->rdev = statbuf.st_rdev;
101   ret->size = statbuf.st_size;
102   ret->blksize = statbuf.st_blksize;
103   ret->blocks = statbuf.st_blocks;
104   ret->atime = statbuf.st_atime;
105   ret->mtime = statbuf.st_mtime;
106   ret->ctime = statbuf.st_ctime;
107
108   return ret;
109 }
110
111 guestfs_int_statvfs *
112 do_statvfs (const char *path)
113 {
114   int r;
115   guestfs_int_statvfs *ret;
116   struct statvfs statbuf;
117
118   CHROOT_IN;
119   r = statvfs (path, &statbuf);
120   CHROOT_OUT;
121
122   if (r == -1) {
123     reply_with_perror ("statvfs");
124     return NULL;
125   }
126
127   ret = malloc (sizeof *ret);
128   if (ret == NULL) {
129     reply_with_perror ("malloc");
130     return NULL;
131   }
132
133   ret->bsize = statbuf.f_bsize;
134   ret->frsize = statbuf.f_frsize;
135   ret->blocks = statbuf.f_blocks;
136   ret->bfree = statbuf.f_bfree;
137   ret->bavail = statbuf.f_bavail;
138   ret->files = statbuf.f_files;
139   ret->ffree = statbuf.f_ffree;
140   ret->favail = statbuf.f_favail;
141   ret->fsid = statbuf.f_fsid;
142   ret->flag = statbuf.f_flag;
143   ret->namemax = statbuf.f_namemax;
144
145   return ret;
146 }