Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / fs / hostfs / hostfs_user.c
blob67838f3aa20a8fa6937eb6e48b39a9bef15d51aa
1 /*
2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #include <stdio.h>
7 #include <stddef.h>
8 #include <unistd.h>
9 #include <dirent.h>
10 #include <errno.h>
11 #include <fcntl.h>
12 #include <string.h>
13 #include <sys/stat.h>
14 #include <sys/time.h>
15 #include <sys/types.h>
16 #include <sys/vfs.h>
17 #include "hostfs.h"
18 #include <utime.h>
20 static void stat64_to_hostfs(const struct stat64 *buf, struct hostfs_stat *p)
22 p->ino = buf->st_ino;
23 p->mode = buf->st_mode;
24 p->nlink = buf->st_nlink;
25 p->uid = buf->st_uid;
26 p->gid = buf->st_gid;
27 p->size = buf->st_size;
28 p->atime.tv_sec = buf->st_atime;
29 p->atime.tv_nsec = 0;
30 p->ctime.tv_sec = buf->st_ctime;
31 p->ctime.tv_nsec = 0;
32 p->mtime.tv_sec = buf->st_mtime;
33 p->mtime.tv_nsec = 0;
34 p->blksize = buf->st_blksize;
35 p->blocks = buf->st_blocks;
36 p->maj = os_major(buf->st_rdev);
37 p->min = os_minor(buf->st_rdev);
40 int stat_file(const char *path, struct hostfs_stat *p, int fd)
42 struct stat64 buf;
44 if (fd >= 0) {
45 if (fstat64(fd, &buf) < 0)
46 return -errno;
47 } else if (lstat64(path, &buf) < 0) {
48 return -errno;
50 stat64_to_hostfs(&buf, p);
51 return 0;
54 int access_file(char *path, int r, int w, int x)
56 int mode = 0;
58 if (r)
59 mode = R_OK;
60 if (w)
61 mode |= W_OK;
62 if (x)
63 mode |= X_OK;
64 if (access(path, mode) != 0)
65 return -errno;
66 else return 0;
69 int open_file(char *path, int r, int w, int append)
71 int mode = 0, fd;
73 if (r && !w)
74 mode = O_RDONLY;
75 else if (!r && w)
76 mode = O_WRONLY;
77 else if (r && w)
78 mode = O_RDWR;
79 else panic("Impossible mode in open_file");
81 if (append)
82 mode |= O_APPEND;
83 fd = open64(path, mode);
84 if (fd < 0)
85 return -errno;
86 else return fd;
89 void *open_dir(char *path, int *err_out)
91 DIR *dir;
93 dir = opendir(path);
94 *err_out = errno;
96 return dir;
99 char *read_dir(void *stream, unsigned long long *pos,
100 unsigned long long *ino_out, int *len_out,
101 unsigned int *type_out)
103 DIR *dir = stream;
104 struct dirent *ent;
106 seekdir(dir, *pos);
107 ent = readdir(dir);
108 if (ent == NULL)
109 return NULL;
110 *len_out = strlen(ent->d_name);
111 *ino_out = ent->d_ino;
112 *type_out = ent->d_type;
113 *pos = telldir(dir);
114 return ent->d_name;
117 int read_file(int fd, unsigned long long *offset, char *buf, int len)
119 int n;
121 n = pread64(fd, buf, len, *offset);
122 if (n < 0)
123 return -errno;
124 *offset += n;
125 return n;
128 int write_file(int fd, unsigned long long *offset, const char *buf, int len)
130 int n;
132 n = pwrite64(fd, buf, len, *offset);
133 if (n < 0)
134 return -errno;
135 *offset += n;
136 return n;
139 int lseek_file(int fd, long long offset, int whence)
141 int ret;
143 ret = lseek64(fd, offset, whence);
144 if (ret < 0)
145 return -errno;
146 return 0;
149 int fsync_file(int fd, int datasync)
151 int ret;
152 if (datasync)
153 ret = fdatasync(fd);
154 else
155 ret = fsync(fd);
157 if (ret < 0)
158 return -errno;
159 return 0;
162 int replace_file(int oldfd, int fd)
164 return dup2(oldfd, fd);
167 void close_file(void *stream)
169 close(*((int *) stream));
172 void close_dir(void *stream)
174 closedir(stream);
177 int file_create(char *name, int ur, int uw, int ux, int gr,
178 int gw, int gx, int or, int ow, int ox)
180 int mode, fd;
182 mode = 0;
183 mode |= ur ? S_IRUSR : 0;
184 mode |= uw ? S_IWUSR : 0;
185 mode |= ux ? S_IXUSR : 0;
186 mode |= gr ? S_IRGRP : 0;
187 mode |= gw ? S_IWGRP : 0;
188 mode |= gx ? S_IXGRP : 0;
189 mode |= or ? S_IROTH : 0;
190 mode |= ow ? S_IWOTH : 0;
191 mode |= ox ? S_IXOTH : 0;
192 fd = open64(name, O_CREAT | O_RDWR, mode);
193 if (fd < 0)
194 return -errno;
195 return fd;
198 int set_attr(const char *file, struct hostfs_iattr *attrs, int fd)
200 struct hostfs_stat st;
201 struct timeval times[2];
202 int err, ma;
204 if (attrs->ia_valid & HOSTFS_ATTR_MODE) {
205 if (fd >= 0) {
206 if (fchmod(fd, attrs->ia_mode) != 0)
207 return -errno;
208 } else if (chmod(file, attrs->ia_mode) != 0) {
209 return -errno;
212 if (attrs->ia_valid & HOSTFS_ATTR_UID) {
213 if (fd >= 0) {
214 if (fchown(fd, attrs->ia_uid, -1))
215 return -errno;
216 } else if (chown(file, attrs->ia_uid, -1)) {
217 return -errno;
220 if (attrs->ia_valid & HOSTFS_ATTR_GID) {
221 if (fd >= 0) {
222 if (fchown(fd, -1, attrs->ia_gid))
223 return -errno;
224 } else if (chown(file, -1, attrs->ia_gid)) {
225 return -errno;
228 if (attrs->ia_valid & HOSTFS_ATTR_SIZE) {
229 if (fd >= 0) {
230 if (ftruncate(fd, attrs->ia_size))
231 return -errno;
232 } else if (truncate(file, attrs->ia_size)) {
233 return -errno;
238 * Update accessed and/or modified time, in two parts: first set
239 * times according to the changes to perform, and then call futimes()
240 * or utimes() to apply them.
242 ma = (HOSTFS_ATTR_ATIME_SET | HOSTFS_ATTR_MTIME_SET);
243 if (attrs->ia_valid & ma) {
244 err = stat_file(file, &st, fd);
245 if (err != 0)
246 return err;
248 times[0].tv_sec = st.atime.tv_sec;
249 times[0].tv_usec = st.atime.tv_nsec / 1000;
250 times[1].tv_sec = st.mtime.tv_sec;
251 times[1].tv_usec = st.mtime.tv_nsec / 1000;
253 if (attrs->ia_valid & HOSTFS_ATTR_ATIME_SET) {
254 times[0].tv_sec = attrs->ia_atime.tv_sec;
255 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000;
257 if (attrs->ia_valid & HOSTFS_ATTR_MTIME_SET) {
258 times[1].tv_sec = attrs->ia_mtime.tv_sec;
259 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000;
262 if (fd >= 0) {
263 if (futimes(fd, times) != 0)
264 return -errno;
265 } else if (utimes(file, times) != 0) {
266 return -errno;
270 /* Note: ctime is not handled */
271 if (attrs->ia_valid & (HOSTFS_ATTR_ATIME | HOSTFS_ATTR_MTIME)) {
272 err = stat_file(file, &st, fd);
273 attrs->ia_atime = st.atime;
274 attrs->ia_mtime = st.mtime;
275 if (err != 0)
276 return err;
278 return 0;
281 int make_symlink(const char *from, const char *to)
283 int err;
285 err = symlink(to, from);
286 if (err)
287 return -errno;
288 return 0;
291 int unlink_file(const char *file)
293 int err;
295 err = unlink(file);
296 if (err)
297 return -errno;
298 return 0;
301 int do_mkdir(const char *file, int mode)
303 int err;
305 err = mkdir(file, mode);
306 if (err)
307 return -errno;
308 return 0;
311 int do_rmdir(const char *file)
313 int err;
315 err = rmdir(file);
316 if (err)
317 return -errno;
318 return 0;
321 int do_mknod(const char *file, int mode, unsigned int major, unsigned int minor)
323 int err;
325 err = mknod(file, mode, os_makedev(major, minor));
326 if (err)
327 return -errno;
328 return 0;
331 int link_file(const char *to, const char *from)
333 int err;
335 err = link(to, from);
336 if (err)
337 return -errno;
338 return 0;
341 int hostfs_do_readlink(char *file, char *buf, int size)
343 int n;
345 n = readlink(file, buf, size);
346 if (n < 0)
347 return -errno;
348 if (n < size)
349 buf[n] = '\0';
350 return n;
353 int rename_file(char *from, char *to)
355 int err;
357 err = rename(from, to);
358 if (err < 0)
359 return -errno;
360 return 0;
363 int do_statfs(char *root, long *bsize_out, long long *blocks_out,
364 long long *bfree_out, long long *bavail_out,
365 long long *files_out, long long *ffree_out,
366 void *fsid_out, int fsid_size, long *namelen_out)
368 struct statfs64 buf;
369 int err;
371 err = statfs64(root, &buf);
372 if (err < 0)
373 return -errno;
375 *bsize_out = buf.f_bsize;
376 *blocks_out = buf.f_blocks;
377 *bfree_out = buf.f_bfree;
378 *bavail_out = buf.f_bavail;
379 *files_out = buf.f_files;
380 *ffree_out = buf.f_ffree;
381 memcpy(fsid_out, &buf.f_fsid,
382 sizeof(buf.f_fsid) > fsid_size ? fsid_size :
383 sizeof(buf.f_fsid));
384 *namelen_out = buf.f_namelen;
386 return 0;