blob: dd7bc38a38251e9c123b08e87d42477f44f302b5 [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"
Jeff Dike84b3db02007-10-16 01:27:13 -070019#include <utime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Al Viro39b743c2010-06-06 20:08:56 -040021static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p)
22{
23 p->ino = buf->st_ino;
24 p->mode = buf->st_mode;
25 p->nlink = buf->st_nlink;
26 p->uid = buf->st_uid;
27 p->gid = buf->st_gid;
28 p->size = buf->st_size;
29 p->atime.tv_sec = buf->st_atime;
30 p->atime.tv_nsec = 0;
31 p->ctime.tv_sec = buf->st_ctime;
32 p->ctime.tv_nsec = 0;
33 p->mtime.tv_sec = buf->st_mtime;
34 p->mtime.tv_nsec = 0;
35 p->blksize = buf->st_blksize;
36 p->blocks = buf->st_blocks;
37 p->maj = os_major(buf->st_rdev);
38 p->min = os_minor(buf->st_rdev);
39}
40
41int stat_file(const char *path, struct hostfs_stat *p, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 struct stat64 buf;
44
Jeff Dike84b3db02007-10-16 01:27:13 -070045 if (fd >= 0) {
Alberto Bertogli5822b7f2007-05-08 00:23:16 -070046 if (fstat64(fd, &buf) < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070047 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -070048 } else if (lstat64(path, &buf) < 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -070049 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -070050 }
Al Viro39b743c2010-06-06 20:08:56 -040051 stat64_to_hostfs(&buf, p);
Jeff Dikef1adc052007-05-08 00:23:18 -070052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055int access_file(char *path, int r, int w, int x)
56{
57 int mode = 0;
58
Jeff Dike84b3db02007-10-16 01:27:13 -070059 if (r)
60 mode = R_OK;
61 if (w)
62 mode |= W_OK;
63 if (x)
64 mode |= X_OK;
65 if (access(path, mode) != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070066 return -errno;
67 else return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70int open_file(char *path, int r, int w, int append)
71{
72 int mode = 0, fd;
73
Jeff Dike84b3db02007-10-16 01:27:13 -070074 if (r && !w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 mode = O_RDONLY;
Jeff Dike84b3db02007-10-16 01:27:13 -070076 else if (!r && w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 mode = O_WRONLY;
Jeff Dike84b3db02007-10-16 01:27:13 -070078 else if (r && w)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 mode = O_RDWR;
80 else panic("Impossible mode in open_file");
81
Jeff Dike84b3db02007-10-16 01:27:13 -070082 if (append)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 mode |= O_APPEND;
84 fd = open64(path, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -070085 if (fd < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -070086 return -errno;
87 else return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90void *open_dir(char *path, int *err_out)
91{
92 DIR *dir;
93
94 dir = opendir(path);
95 *err_out = errno;
Richard Weinbergerc5c6dd42010-10-26 14:22:20 -070096
Jeff Dikef1adc052007-05-08 00:23:18 -070097 return dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100char *read_dir(void *stream, unsigned long long *pos,
101 unsigned long long *ino_out, int *len_out)
102{
103 DIR *dir = stream;
104 struct dirent *ent;
105
106 seekdir(dir, *pos);
107 ent = readdir(dir);
Jeff Dike84b3db02007-10-16 01:27:13 -0700108 if (ent == NULL)
Jeff Dikef1adc052007-05-08 00:23:18 -0700109 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 *len_out = strlen(ent->d_name);
111 *ino_out = ent->d_ino;
112 *pos = telldir(dir);
Jeff Dikef1adc052007-05-08 00:23:18 -0700113 return ent->d_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116int read_file(int fd, unsigned long long *offset, char *buf, int len)
117{
118 int n;
119
120 n = pread64(fd, buf, len, *offset);
Jeff Dike84b3db02007-10-16 01:27:13 -0700121 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700122 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *offset += n;
Jeff Dikef1adc052007-05-08 00:23:18 -0700124 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127int write_file(int fd, unsigned long long *offset, const char *buf, int len)
128{
129 int n;
130
131 n = pwrite64(fd, buf, len, *offset);
Jeff Dike84b3db02007-10-16 01:27:13 -0700132 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700133 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *offset += n;
Jeff Dikef1adc052007-05-08 00:23:18 -0700135 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138int lseek_file(int fd, long long offset, int whence)
139{
140 int ret;
141
142 ret = lseek64(fd, offset, whence);
Jeff Dike84b3db02007-10-16 01:27:13 -0700143 if (ret < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700144 return -errno;
145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Paolo 'Blaisorblade' Giarrussoa2d76bd2005-07-28 21:16:15 -0700148int fsync_file(int fd, int datasync)
149{
150 int ret;
151 if (datasync)
152 ret = fdatasync(fd);
153 else
154 ret = fsync(fd);
155
156 if (ret < 0)
157 return -errno;
158 return 0;
159}
160
Al Virof8ad8502010-06-06 23:49:18 -0400161int replace_file(int oldfd, int fd)
162{
163 return dup2(oldfd, fd);
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166void close_file(void *stream)
167{
168 close(*((int *) stream));
169}
170
171void close_dir(void *stream)
172{
173 closedir(stream);
174}
175
176int file_create(char *name, int ur, int uw, int ux, int gr,
177 int gw, int gx, int or, int ow, int ox)
178{
179 int mode, fd;
180
181 mode = 0;
182 mode |= ur ? S_IRUSR : 0;
183 mode |= uw ? S_IWUSR : 0;
184 mode |= ux ? S_IXUSR : 0;
185 mode |= gr ? S_IRGRP : 0;
186 mode |= gw ? S_IWGRP : 0;
187 mode |= gx ? S_IXGRP : 0;
188 mode |= or ? S_IROTH : 0;
189 mode |= ow ? S_IWOTH : 0;
190 mode |= ox ? S_IXOTH : 0;
191 fd = open64(name, O_CREAT | O_RDWR, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -0700192 if (fd < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700193 return -errno;
194 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700197int set_attr(const char *file, struct hostfs_iattr *attrs, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Al Viro39b743c2010-06-06 20:08:56 -0400199 struct hostfs_stat st;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700200 struct timeval times[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 int err, ma;
202
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700203 if (attrs->ia_valid & HOSTFS_ATTR_MODE) {
204 if (fd >= 0) {
205 if (fchmod(fd, attrs->ia_mode) != 0)
Richard Weinbergerc5c6dd42010-10-26 14:22:20 -0700206 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700207 } else if (chmod(file, attrs->ia_mode) != 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700208 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700211 if (attrs->ia_valid & HOSTFS_ATTR_UID) {
212 if (fd >= 0) {
213 if (fchown(fd, attrs->ia_uid, -1))
Jeff Dikef1adc052007-05-08 00:23:18 -0700214 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -0700215 } else if (chown(file, attrs->ia_uid, -1)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700216 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700219 if (attrs->ia_valid & HOSTFS_ATTR_GID) {
220 if (fd >= 0) {
221 if (fchown(fd, -1, attrs->ia_gid))
Jeff Dikef1adc052007-05-08 00:23:18 -0700222 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700223 } else if (chown(file, -1, attrs->ia_gid)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700224 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700227 if (attrs->ia_valid & HOSTFS_ATTR_SIZE) {
228 if (fd >= 0) {
229 if (ftruncate(fd, attrs->ia_size))
Jeff Dikef1adc052007-05-08 00:23:18 -0700230 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700231 } else if (truncate(file, attrs->ia_size)) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700232 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jeff Dike84b3db02007-10-16 01:27:13 -0700236 /*
237 * Update accessed and/or modified time, in two parts: first set
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700238 * times according to the changes to perform, and then call futimes()
Jeff Dike84b3db02007-10-16 01:27:13 -0700239 * or utimes() to apply them.
240 */
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700241 ma = (HOSTFS_ATTR_ATIME_SET | HOSTFS_ATTR_MTIME_SET);
242 if (attrs->ia_valid & ma) {
Al Viro39b743c2010-06-06 20:08:56 -0400243 err = stat_file(file, &st, fd);
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700244 if (err != 0)
245 return err;
246
Al Viro39b743c2010-06-06 20:08:56 -0400247 times[0].tv_sec = st.atime.tv_sec;
248 times[0].tv_usec = st.atime.tv_nsec / 1000;
249 times[1].tv_sec = st.mtime.tv_sec;
250 times[1].tv_usec = st.mtime.tv_nsec / 1000;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700251
252 if (attrs->ia_valid & HOSTFS_ATTR_ATIME_SET) {
253 times[0].tv_sec = attrs->ia_atime.tv_sec;
Dominique Quatravauxd7b88512008-02-04 22:31:15 -0800254 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700256 if (attrs->ia_valid & HOSTFS_ATTR_MTIME_SET) {
257 times[1].tv_sec = attrs->ia_mtime.tv_sec;
Dominique Quatravauxd7b88512008-02-04 22:31:15 -0800258 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700259 }
260
261 if (fd >= 0) {
262 if (futimes(fd, times) != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700263 return -errno;
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700264 } else if (utimes(file, times) != 0) {
Jeff Dikef1adc052007-05-08 00:23:18 -0700265 return -errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267 }
Alberto Bertogli5822b7f2007-05-08 00:23:16 -0700268
Jeff Dikebaabd152007-10-16 01:27:13 -0700269 /* Note: ctime is not handled */
Jeff Dike84b3db02007-10-16 01:27:13 -0700270 if (attrs->ia_valid & (HOSTFS_ATTR_ATIME | HOSTFS_ATTR_MTIME)) {
Al Viro39b743c2010-06-06 20:08:56 -0400271 err = stat_file(file, &st, fd);
272 attrs->ia_atime = st.atime;
273 attrs->ia_mtime = st.mtime;
Jeff Dike84b3db02007-10-16 01:27:13 -0700274 if (err != 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700275 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Jeff Dikef1adc052007-05-08 00:23:18 -0700277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280int make_symlink(const char *from, const char *to)
281{
282 int err;
283
284 err = symlink(to, from);
Jeff Dike84b3db02007-10-16 01:27:13 -0700285 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700286 return -errno;
287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290int unlink_file(const char *file)
291{
292 int err;
293
294 err = unlink(file);
Jeff Dike84b3db02007-10-16 01:27:13 -0700295 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700296 return -errno;
297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300int do_mkdir(const char *file, int mode)
301{
302 int err;
303
304 err = mkdir(file, mode);
Jeff Dike84b3db02007-10-16 01:27:13 -0700305 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700306 return -errno;
307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310int do_rmdir(const char *file)
311{
312 int err;
313
314 err = rmdir(file);
Jeff Dike84b3db02007-10-16 01:27:13 -0700315 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700316 return -errno;
317 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Johannes Stezenbach88f6cd02007-01-29 13:19:44 -0800320int do_mknod(const char *file, int mode, unsigned int major, unsigned int minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 int err;
323
Al Viro005a59e2009-04-21 01:27:08 -0400324 err = mknod(file, mode, os_makedev(major, minor));
Jeff Dike84b3db02007-10-16 01:27:13 -0700325 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700326 return -errno;
327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330int link_file(const char *to, const char *from)
331{
332 int err;
333
334 err = link(to, from);
Jeff Dike84b3db02007-10-16 01:27:13 -0700335 if (err)
Jeff Dikef1adc052007-05-08 00:23:18 -0700336 return -errno;
337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
WANG Congea7e7432008-11-19 15:36:46 -0800340int hostfs_do_readlink(char *file, char *buf, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 int n;
343
344 n = readlink(file, buf, size);
Jeff Dike84b3db02007-10-16 01:27:13 -0700345 if (n < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700346 return -errno;
Jeff Dike84b3db02007-10-16 01:27:13 -0700347 if (n < size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 buf[n] = '\0';
Jeff Dikef1adc052007-05-08 00:23:18 -0700349 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352int rename_file(char *from, char *to)
353{
354 int err;
355
356 err = rename(from, to);
Jeff Dike84b3db02007-10-16 01:27:13 -0700357 if (err < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700358 return -errno;
359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362int do_statfs(char *root, long *bsize_out, long long *blocks_out,
363 long long *bfree_out, long long *bavail_out,
364 long long *files_out, long long *ffree_out,
Richard Weinberger1b627d52010-10-26 14:21:18 -0700365 void *fsid_out, int fsid_size, long *namelen_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct statfs64 buf;
368 int err;
369
370 err = statfs64(root, &buf);
Jeff Dike84b3db02007-10-16 01:27:13 -0700371 if (err < 0)
Jeff Dikef1adc052007-05-08 00:23:18 -0700372 return -errno;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *bsize_out = buf.f_bsize;
375 *blocks_out = buf.f_blocks;
376 *bfree_out = buf.f_bfree;
377 *bavail_out = buf.f_bavail;
378 *files_out = buf.f_files;
379 *ffree_out = buf.f_ffree;
380 memcpy(fsid_out, &buf.f_fsid,
381 sizeof(buf.f_fsid) > fsid_size ? fsid_size :
382 sizeof(buf.f_fsid));
383 *namelen_out = buf.f_namelen;
Richard Weinberger1b627d52010-10-26 14:21:18 -0700384
Jeff Dikef1adc052007-05-08 00:23:18 -0700385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}