2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
15 #include <sys/types.h>
17 #include <sys/syscall.h>
21 static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p)
24 p->mode = buf->st_mode;
25 p->nlink = buf->st_nlink;
28 p->size = buf->st_size;
29 p->atime.tv_sec = buf->st_atime;
31 p->ctime.tv_sec = buf->st_ctime;
33 p->mtime.tv_sec = buf->st_mtime;
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);
42 int stat_file(const char *path, struct hostfs_stat *p, int fd)
47 if (fstat64(fd, &buf) < 0)
49 } else if (lstat64(path, &buf) < 0) {
52 stat64_to_hostfs(&buf, p);
56 int access_file(char *path, int r, int w, int x)
66 if (access(path, mode) != 0)
71 int open_file(char *path, int r, int w, int append)
81 else panic("Impossible mode in open_file");
85 fd = open64(path, mode);
91 void *open_dir(char *path, int *err_out)
101 void seek_dir(void *stream, unsigned long long pos)
108 char *read_dir(void *stream, unsigned long long *pos_out,
109 unsigned long long *ino_out, int *len_out,
110 unsigned int *type_out)
118 *len_out = strlen(ent->d_name);
119 *ino_out = ent->d_ino;
120 *type_out = ent->d_type;
121 *pos_out = ent->d_off;
125 int read_file(int fd, unsigned long long *offset, char *buf, int len)
129 n = pread64(fd, buf, len, *offset);
136 int write_file(int fd, unsigned long long *offset, const char *buf, int len)
140 n = pwrite64(fd, buf, len, *offset);
147 int lseek_file(int fd, long long offset, int whence)
151 ret = lseek64(fd, offset, whence);
157 int fsync_file(int fd, int datasync)
170 int replace_file(int oldfd, int fd)
172 return dup2(oldfd, fd);
175 void close_file(void *stream)
177 close(*((int *) stream));
180 void close_dir(void *stream)
185 int file_create(char *name, int mode)
189 fd = open64(name, O_CREAT | O_RDWR, mode);
195 int set_attr(const char *file, struct hostfs_iattr *attrs, int fd)
197 struct hostfs_stat st;
198 struct timeval times[2];
201 if (attrs->ia_valid & HOSTFS_ATTR_MODE) {
203 if (fchmod(fd, attrs->ia_mode) != 0)
205 } else if (chmod(file, attrs->ia_mode) != 0) {
209 if (attrs->ia_valid & HOSTFS_ATTR_UID) {
211 if (fchown(fd, attrs->ia_uid, -1))
213 } else if (chown(file, attrs->ia_uid, -1)) {
217 if (attrs->ia_valid & HOSTFS_ATTR_GID) {
219 if (fchown(fd, -1, attrs->ia_gid))
221 } else if (chown(file, -1, attrs->ia_gid)) {
225 if (attrs->ia_valid & HOSTFS_ATTR_SIZE) {
227 if (ftruncate(fd, attrs->ia_size))
229 } else if (truncate(file, attrs->ia_size)) {
235 * Update accessed and/or modified time, in two parts: first set
236 * times according to the changes to perform, and then call futimes()
237 * or utimes() to apply them.
239 ma = (HOSTFS_ATTR_ATIME_SET | HOSTFS_ATTR_MTIME_SET);
240 if (attrs->ia_valid & ma) {
241 err = stat_file(file, &st, fd);
245 times[0].tv_sec = st.atime.tv_sec;
246 times[0].tv_usec = st.atime.tv_nsec / 1000;
247 times[1].tv_sec = st.mtime.tv_sec;
248 times[1].tv_usec = st.mtime.tv_nsec / 1000;
250 if (attrs->ia_valid & HOSTFS_ATTR_ATIME_SET) {
251 times[0].tv_sec = attrs->ia_atime.tv_sec;
252 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000;
254 if (attrs->ia_valid & HOSTFS_ATTR_MTIME_SET) {
255 times[1].tv_sec = attrs->ia_mtime.tv_sec;
256 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000;
260 if (futimes(fd, times) != 0)
262 } else if (utimes(file, times) != 0) {
267 /* Note: ctime is not handled */
268 if (attrs->ia_valid & (HOSTFS_ATTR_ATIME | HOSTFS_ATTR_MTIME)) {
269 err = stat_file(file, &st, fd);
270 attrs->ia_atime = st.atime;
271 attrs->ia_mtime = st.mtime;
278 int make_symlink(const char *from, const char *to)
282 err = symlink(to, from);
288 int unlink_file(const char *file)
298 int do_mkdir(const char *file, int mode)
302 err = mkdir(file, mode);
308 int hostfs_do_rmdir(const char *file)
318 int do_mknod(const char *file, int mode, unsigned int major, unsigned int minor)
322 err = mknod(file, mode, os_makedev(major, minor));
328 int link_file(const char *to, const char *from)
332 err = link(to, from);
338 int hostfs_do_readlink(char *file, char *buf, int size)
342 n = readlink(file, buf, size);
350 int rename_file(char *from, char *to)
354 err = rename(from, to);
360 int rename2_file(char *from, char *to, unsigned int flags)
364 #ifndef SYS_renameat2
366 # define SYS_renameat2 316
369 # define SYS_renameat2 353
374 err = syscall(SYS_renameat2, AT_FDCWD, from, AT_FDCWD, to, flags);
387 int do_statfs(char *root, long *bsize_out, long long *blocks_out,
388 long long *bfree_out, long long *bavail_out,
389 long long *files_out, long long *ffree_out,
390 void *fsid_out, int fsid_size, long *namelen_out)
395 err = statfs64(root, &buf);
399 *bsize_out = buf.f_bsize;
400 *blocks_out = buf.f_blocks;
401 *bfree_out = buf.f_bfree;
402 *bavail_out = buf.f_bavail;
403 *files_out = buf.f_files;
404 *ffree_out = buf.f_ffree;
405 memcpy(fsid_out, &buf.f_fsid,
406 sizeof(buf.f_fsid) > fsid_size ? fsid_size :
408 *namelen_out = buf.f_namelen;