blob: 91ebfcefa409a50699cfb94d50596aa6bb0b4160 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikef1adc052007-05-08 00:23:18 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <stdio.h>
Jeff Dike84b3db02007-10-16 01:27:13 -07007#include <stddef.h>
8#include <unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <dirent.h>
10#include <errno.h>
Jeff Dike84b3db02007-10-16 01:27:13 -070011#include <fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <string.h>
13#include <sys/stat.h>
14#include <sys/time.h>
Jeff Dike84b3db02007-10-16 01:27:13 -070015#include <sys/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <sys/vfs.h>
17#include "hostfs.h"
Jeff Dike84b3db02007-10-16 01:27:13 -070018#include "os.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "user.h"
Jeff Dike84b3db02007-10-16 01:27:13 -070020#include <utime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Al Viro39b743c2010-06-06 20:08:56 -040022static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p)
23{
24 p->ino = buf->st_ino;
25 p->mode = buf->st_mode;
26 p->nlink = buf->st_nlink;
27 p->uid = buf->st_uid;
28 p->gid = buf->st_gid;
29 p->size = buf->st_size;
30 p->atime.tv_sec = buf->st_atime;
31 p->atime.tv_nsec = 0;
32 p->ctime.tv_sec = buf->st_ctime;
33 p->ctime.tv_nsec = 0;
34 p->mtime.tv_sec = buf->st_mtime;
35 p->mtime.tv_nsec = 0;
36 p->blksize = buf->st_blksize;
37 p->blocks = buf->st_blocks;
38 p->maj = os_major(buf->st_rdev);
39 p->min = os_minor(buf->st_rdev);
40}
41
42int stat_file(const char *path, struct hostfs_stat *p, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct stat64 buf;
45
Jeff Dike84b3db02007-10-16 01:27:13 -070046 if (fd >= 0) {
Alberto Bertogli5822b7f2007-05-08 00:23:16 -070047 if (fstat64(fd, &buf) < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070048 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -070049 } else if (lstat64(path, &buf) < 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -070050 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -070051 }
Al Viro39b743c2010-06-06 20:08:56 -040052 stat64_to_hostfs(&buf, p);
Jeff Dikef1adc052007-05-08 00:23:18 -070053 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056int access_file(char *path, int r, int w, int x)
57{
58 int mode = 0;
59
Jeff Dike84b3db02007-10-16 01:27:13 -070060 if (r)
61 mode = R_OK;
62 if (w)
63 mode |= W_OK;
64 if (x)
65 mode |= X_OK;
66 if (access(path, mode) != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070067 return -errno;
68 else return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71int open_file(char *path, int r, int w, int append)
72{
73 int mode = 0, fd;
74
Jeff Dike84b3db02007-10-16 01:27:13 -070075 if (r && !w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 mode = O_RDONLY;
Jeff Dike84b3db02007-10-16 01:27:13 -070077 else if (!r && w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 mode = O_WRONLY;
Jeff Dike84b3db02007-10-16 01:27:13 -070079 else if (r && w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 mode = O_RDWR;
81 else panic("Impossible mode in open_file");
82
Jeff Dike84b3db02007-10-16 01:27:13 -070083 if (append)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 mode |= O_APPEND;
85 fd = open64(path, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -070086 if (fd < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070087 return -errno;
88 else return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91void *open_dir(char *path, int *err_out)
92{
93 DIR *dir;
94
95 dir = opendir(path);
96 *err_out = errno;
Jeff Dike84b3db02007-10-16 01:27:13 -070097 if (dir == NULL)
Jeff Dikef1adc052007-05-08 00:23:18 -070098 return NULL;
99 return dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102char *read_dir(void *stream, unsigned long long *pos,
103 unsigned long long *ino_out, int *len_out)
104{
105 DIR *dir = stream;
106 struct dirent *ent;
107
108 seekdir(dir, *pos);
109 ent = readdir(dir);
Jeff Dike84b3db02007-10-16 01:27:13 -0700110 if (ent == NULL)
Jeff Dikef1adc052007-05-08 00:23:18 -0700111 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 *len_out = strlen(ent->d_name);
113 *ino_out = ent->d_ino;
114 *pos = telldir(dir);
Jeff Dikef1adc052007-05-08 00:23:18 -0700115 return ent->d_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118int read_file(int fd, unsigned long long *offset, char *buf, int len)
119{
120 int n;
121
122 n = pread64(fd, buf, len, *offset);
Jeff Dike84b3db02007-10-16 01:27:13 -0700123 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700124 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 *offset += n;
Jeff Dikef1adc052007-05-08 00:23:18 -0700126 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129int write_file(int fd, unsigned long long *offset, const char *buf, int len)
130{
131 int n;
132
133 n = pwrite64(fd, buf, len, *offset);
Jeff Dike84b3db02007-10-16 01:27:13 -0700134 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700135 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *offset += n;
Jeff Dikef1adc052007-05-08 00:23:18 -0700137 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140int lseek_file(int fd, long long offset, int whence)
141{
142 int ret;
143
144 ret = lseek64(fd, offset, whence);
Jeff Dike84b3db02007-10-16 01:27:13 -0700145 if (ret < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700146 return -errno;
147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Paolo 'Blaisorblade' Giarrussoa2d76bd2005-07-28 21:16:15 -0700150int fsync_file(int fd, int datasync)
151{
152 int ret;
153 if (datasync)
154 ret = fdatasync(fd);
155 else
156 ret = fsync(fd);
157
158 if (ret < 0)
159 return -errno;
160 return 0;
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163void close_file(void *stream)
164{
165 close(*((int *) stream));
166}
167
168void close_dir(void *stream)
169{
170 closedir(stream);
171}
172
173int file_create(char *name, int ur, int uw, int ux, int gr,
174 int gw, int gx, int or, int ow, int ox)
175{
176 int mode, fd;
177
178 mode = 0;
179 mode |= ur ? S_IRUSR : 0;
180 mode |= uw ? S_IWUSR : 0;
181 mode |= ux ? S_IXUSR : 0;
182 mode |= gr ? S_IRGRP : 0;
183 mode |= gw ? S_IWGRP : 0;
184 mode |= gx ? S_IXGRP : 0;
185 mode |= or ? S_IROTH : 0;
186 mode |= ow ? S_IWOTH : 0;
187 mode |= ox ? S_IXOTH : 0;
188 fd = open64(name, O_CREAT | O_RDWR, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -0700189 if (fd < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700190 return -errno;
191 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700194int set_attr(const char *file, struct hostfs_iattr *attrs, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Al Viro39b743c2010-06-06 20:08:56 -0400196 struct hostfs_stat st;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700197 struct timeval times[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int err, ma;
199
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700200 if (attrs->ia_valid & HOSTFS_ATTR_MODE) {
201 if (fd >= 0) {
202 if (fchmod(fd, attrs->ia_mode) != 0)
203 return (-errno);
204 } else if (chmod(file, attrs->ia_mode) != 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700205 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700208 if (attrs->ia_valid & HOSTFS_ATTR_UID) {
209 if (fd >= 0) {
210 if (fchown(fd, attrs->ia_uid, -1))
Jeff Dikef1adc052007-05-08 00:23:18 -0700211 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -0700212 } else if (chown(file, attrs->ia_uid, -1)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700213 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700216 if (attrs->ia_valid & HOSTFS_ATTR_GID) {
217 if (fd >= 0) {
218 if (fchown(fd, -1, attrs->ia_gid))
Jeff Dikef1adc052007-05-08 00:23:18 -0700219 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700220 } else if (chown(file, -1, attrs->ia_gid)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700221 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700224 if (attrs->ia_valid & HOSTFS_ATTR_SIZE) {
225 if (fd >= 0) {
226 if (ftruncate(fd, attrs->ia_size))
Jeff Dikef1adc052007-05-08 00:23:18 -0700227 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700228 } else if (truncate(file, attrs->ia_size)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700229 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jeff Dike84b3db02007-10-16 01:27:13 -0700233 /*
234 * Update accessed and/or modified time, in two parts: first set
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700235 * times according to the changes to perform, and then call futimes()
Jeff Dike84b3db02007-10-16 01:27:13 -0700236 * or utimes() to apply them.
237 */
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700238 ma = (HOSTFS_ATTR_ATIME_SET | HOSTFS_ATTR_MTIME_SET);
239 if (attrs->ia_valid & ma) {
Al Viro39b743c2010-06-06 20:08:56 -0400240 err = stat_file(file, &st, fd);
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700241 if (err != 0)
242 return err;
243
Al Viro39b743c2010-06-06 20:08:56 -0400244 times[0].tv_sec = st.atime.tv_sec;
245 times[0].tv_usec = st.atime.tv_nsec / 1000;
246 times[1].tv_sec = st.mtime.tv_sec;
247 times[1].tv_usec = st.mtime.tv_nsec / 1000;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700248
249 if (attrs->ia_valid & HOSTFS_ATTR_ATIME_SET) {
250 times[0].tv_sec = attrs->ia_atime.tv_sec;
Dominique Quatravauxd7b88512008-02-04 22:31:15 -0800251 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700253 if (attrs->ia_valid & HOSTFS_ATTR_MTIME_SET) {
254 times[1].tv_sec = attrs->ia_mtime.tv_sec;
Dominique Quatravauxd7b88512008-02-04 22:31:15 -0800255 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700256 }
257
258 if (fd >= 0) {
259 if (futimes(fd, times) != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700260 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700261 } else if (utimes(file, times) != 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700262 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700265
Jeff Dikebaabd152007-10-16 01:27:13 -0700266 /* Note: ctime is not handled */
Jeff Dike84b3db02007-10-16 01:27:13 -0700267 if (attrs->ia_valid & (HOSTFS_ATTR_ATIME | HOSTFS_ATTR_MTIME)) {
Al Viro39b743c2010-06-06 20:08:56 -0400268 err = stat_file(file, &st, fd);
269 attrs->ia_atime = st.atime;
270 attrs->ia_mtime = st.mtime;
Jeff Dike84b3db02007-10-16 01:27:13 -0700271 if (err != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700272 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
Jeff Dikef1adc052007-05-08 00:23:18 -0700274 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277int make_symlink(const char *from, const char *to)
278{
279 int err;
280
281 err = symlink(to, from);
Jeff Dike84b3db02007-10-16 01:27:13 -0700282 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700283 return -errno;
284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287int unlink_file(const char *file)
288{
289 int err;
290
291 err = unlink(file);
Jeff Dike84b3db02007-10-16 01:27:13 -0700292 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700293 return -errno;
294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297int do_mkdir(const char *file, int mode)
298{
299 int err;
300
301 err = mkdir(file, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -0700302 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700303 return -errno;
304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307int do_rmdir(const char *file)
308{
309 int err;
310
311 err = rmdir(file);
Jeff Dike84b3db02007-10-16 01:27:13 -0700312 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700313 return -errno;
314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Johannes Stezenbach88f6cd02007-01-29 13:19:44 -0800317int do_mknod(const char *file, int mode, unsigned int major, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 int err;
320
Al Viro005a59e2009-04-21 01:27:08 -0400321 err = mknod(file, mode, os_makedev(major, minor));
Jeff Dike84b3db02007-10-16 01:27:13 -0700322 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700323 return -errno;
324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327int link_file(const char *to, const char *from)
328{
329 int err;
330
331 err = link(to, from);
Jeff Dike84b3db02007-10-16 01:27:13 -0700332 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700333 return -errno;
334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
WANG Congea7e7432008-11-19 15:36:46 -0800337int hostfs_do_readlink(char *file, char *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 int n;
340
341 n = readlink(file, buf, size);
Jeff Dike84b3db02007-10-16 01:27:13 -0700342 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700343 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -0700344 if (n < size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 buf[n] = '\0';
Jeff Dikef1adc052007-05-08 00:23:18 -0700346 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349int rename_file(char *from, char *to)
350{
351 int err;
352
353 err = rename(from, to);
Jeff Dike84b3db02007-10-16 01:27:13 -0700354 if (err < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700355 return -errno;
356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359int do_statfs(char *root, long *bsize_out, long long *blocks_out,
360 long long *bfree_out, long long *bavail_out,
361 long long *files_out, long long *ffree_out,
362 void *fsid_out, int fsid_size, long *namelen_out,
363 long *spare_out)
364{
365 struct statfs64 buf;
366 int err;
367
368 err = statfs64(root, &buf);
Jeff Dike84b3db02007-10-16 01:27:13 -0700369 if (err < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700370 return -errno;
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *bsize_out = buf.f_bsize;
373 *blocks_out = buf.f_blocks;
374 *bfree_out = buf.f_bfree;
375 *bavail_out = buf.f_bavail;
376 *files_out = buf.f_files;
377 *ffree_out = buf.f_ffree;
378 memcpy(fsid_out, &buf.f_fsid,
379 sizeof(buf.f_fsid) > fsid_size ? fsid_size :
380 sizeof(buf.f_fsid));
381 *namelen_out = buf.f_namelen;
382 spare_out[0] = buf.f_spare[0];
383 spare_out[1] = buf.f_spare[1];
384 spare_out[2] = buf.f_spare[2];
385 spare_out[3] = buf.f_spare[3];
386 spare_out[4] = buf.f_spare[4];
Jeff Dikef1adc052007-05-08 00:23:18 -0700387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}