1c454339c1159e679d3c0b3355c7795a1325486c
[dragonfly.git] / sys / emulation / linux / linux_stats.c
1 /*-
2  * Copyright (c) 1994-1995 Søren Schmidt
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer 
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software withough specific prior written permission
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/compat/linux/linux_stats.c,v 1.22.2.3 2001/11/05 19:08:23 marcel Exp $
29  * $DragonFly: src/sys/emulation/linux/linux_stats.c,v 1.14 2004/10/05 07:57:41 dillon Exp $
30  */
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/conf.h>
35 #include <sys/dirent.h>
36 #include <sys/file.h>
37 #include <sys/filedesc.h>
38 #include <sys/proc.h>
39 #include <sys/mount.h>
40 #include <sys/namei.h>
41 #include <sys/nlookup.h>
42 #include <sys/stat.h>
43 #include <sys/sysctl.h>
44 #include <sys/systm.h>
45 #include <sys/vnode.h>
46 #include <sys/device.h>
47 #include <sys/file2.h>
48 #include <sys/kern_syscall.h>
49
50 #include <arch_linux/linux.h>
51 #include <arch_linux/linux_proto.h>
52 #include "linux_util.h"
53
54 static int
55 newstat_copyout(struct stat *buf, void *ubuf)
56 {
57         struct l_newstat tbuf;
58         dev_t dev;
59         int error;
60
61         tbuf.st_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8);
62         tbuf.st_ino = buf->st_ino;
63         tbuf.st_mode = buf->st_mode;
64         tbuf.st_nlink = buf->st_nlink;
65         tbuf.st_uid = buf->st_uid;
66         tbuf.st_gid = buf->st_gid;
67         tbuf.st_rdev = buf->st_rdev;
68         tbuf.st_size = buf->st_size;
69         tbuf.st_atime = buf->st_atime;
70         tbuf.st_mtime = buf->st_mtime;
71         tbuf.st_ctime = buf->st_ctime;
72         tbuf.st_blksize = buf->st_blksize;
73         tbuf.st_blocks = buf->st_blocks;
74
75         /* Lie about disk drives which are character devices
76          * in FreeBSD but block devices under Linux.
77          */
78         if (S_ISCHR(tbuf.st_mode) &&
79             (dev = udev2dev(buf->st_rdev, 0)) != NODEV) {
80                 if (dev_is_good(dev) && (dev_dflags(dev) & D_DISK)) {
81                         tbuf.st_mode &= ~S_IFMT;
82                         tbuf.st_mode |= S_IFBLK;
83
84                         /* XXX this may not be quite right */
85                         /* Map major number to 0 */
86                         tbuf.st_dev = uminor(buf->st_dev) & 0xf;
87                         tbuf.st_rdev = buf->st_rdev & 0xff;
88                 }
89         }
90
91         error = copyout(&tbuf, ubuf, sizeof(tbuf));
92         return (error);
93 }
94
95 int
96 linux_newstat(struct linux_newstat_args *args)
97 {
98         struct stat buf;
99         struct nlookupdata nd;
100         char *path;
101         int error;
102
103         error = linux_copyin_path(args->path, &path, LINUX_PATH_EXISTS);
104         if (error)
105                 return (error);
106 #ifdef DEBUG
107         if (ldebug(newstat))
108                 printf(ARGS(newstat, "%s, *"), path);
109 #endif
110         error = nlookup_init(&nd, path, UIO_SYSSPACE, NLC_FOLLOW);
111         if (error == 0) {
112                 error = kern_stat(&nd, &buf);
113                 if (error == 0)
114                         error = newstat_copyout(&buf, args->buf);
115                 nlookup_done(&nd);
116         }
117         linux_free_path(&path);
118         return (error);
119 }
120
121 int
122 linux_newlstat(struct linux_newlstat_args *args)
123 {
124         struct stat sb;
125         struct nlookupdata nd;
126         char *path;
127         int error;
128
129         error = linux_copyin_path(args->path, &path, LINUX_PATH_EXISTS);
130         if (error)
131                 return (error);
132 #ifdef DEBUG
133         if (ldebug(newlstat))
134                 printf(ARGS(newlstat, "%s, *"), path);
135 #endif
136         error = nlookup_init(&nd, path, UIO_SYSSPACE, 0);
137         if (error == 0) {
138                 error = kern_stat(&nd, &sb);
139                 if (error == 0)
140                         error = newstat_copyout(&sb, args->buf);
141                 nlookup_done(&nd);
142         }
143         linux_free_path(&path);
144         return (error);
145 }
146
147 int
148 linux_newfstat(struct linux_newfstat_args *args)
149 {
150         struct stat buf;
151         int error;
152
153 #ifdef DEBUG
154         if (ldebug(newfstat))
155                 printf(ARGS(newfstat, "%d, *"), args->fd);
156 #endif
157         error = kern_fstat(args->fd, &buf);
158
159         if (error == 0)
160                 error = newstat_copyout(&buf, args->buf);
161         return (error);
162 }
163
164 /* XXX - All fields of type l_int are defined as l_long on i386 */
165 struct l_statfs {
166         l_int           f_type;
167         l_int           f_bsize;
168         l_int           f_blocks;
169         l_int           f_bfree;
170         l_int           f_bavail;
171         l_int           f_files;
172         l_int           f_ffree;
173         l_fsid_t        f_fsid;
174         l_int           f_namelen;
175         l_int           f_spare[6];
176 };
177
178 #define LINUX_CODA_SUPER_MAGIC  0x73757245L
179 #define LINUX_EXT2_SUPER_MAGIC  0xEF53L
180 #define LINUX_HPFS_SUPER_MAGIC  0xf995e849L
181 #define LINUX_ISOFS_SUPER_MAGIC 0x9660L
182 #define LINUX_MSDOS_SUPER_MAGIC 0x4d44L
183 #define LINUX_NCP_SUPER_MAGIC   0x564cL
184 #define LINUX_NFS_SUPER_MAGIC   0x6969L
185 #define LINUX_NTFS_SUPER_MAGIC  0x5346544EL
186 #define LINUX_PROC_SUPER_MAGIC  0x9fa0L
187 #define LINUX_UFS_SUPER_MAGIC   0x00011954L     /* XXX - UFS_MAGIC in Linux */
188
189 static long
190 bsd_to_linux_ftype(const char *fstypename)
191 {
192         int i;
193         static struct {const char *bsd_name; long linux_type;} b2l_tbl[] = {
194                 {"ufs",     LINUX_UFS_SUPER_MAGIC},
195                 {"cd9660",  LINUX_ISOFS_SUPER_MAGIC},
196                 {"nfs",     LINUX_NFS_SUPER_MAGIC},
197                 {"ext2fs",  LINUX_EXT2_SUPER_MAGIC},
198                 {"procfs",  LINUX_PROC_SUPER_MAGIC},
199                 {"msdosfs", LINUX_MSDOS_SUPER_MAGIC},
200                 {"ntfs",    LINUX_NTFS_SUPER_MAGIC},
201                 {"nwfs",    LINUX_NCP_SUPER_MAGIC},
202                 {"hpfs",    LINUX_HPFS_SUPER_MAGIC},
203                 {"coda",    LINUX_CODA_SUPER_MAGIC},
204                 {NULL,      0L}};
205
206         for (i = 0; b2l_tbl[i].bsd_name != NULL; i++)
207                 if (strcmp(b2l_tbl[i].bsd_name, fstypename) == 0)
208                         return (b2l_tbl[i].linux_type);
209
210         return (0L);
211 }
212
213 static int
214 statfs_copyout(struct statfs *statfs, struct l_statfs_buf *buf)
215 {
216         struct l_statfs linux_statfs;
217         int error;
218
219         linux_statfs.f_type = bsd_to_linux_ftype(statfs->f_fstypename);
220         linux_statfs.f_bsize = statfs->f_bsize;
221         linux_statfs.f_blocks = statfs->f_blocks;
222         linux_statfs.f_bfree = statfs->f_bfree;
223         linux_statfs.f_bavail = statfs->f_bavail;
224         linux_statfs.f_ffree = statfs->f_ffree;
225         linux_statfs.f_files = statfs->f_files;
226         linux_statfs.f_fsid.val[0] = statfs->f_fsid.val[0];
227         linux_statfs.f_fsid.val[1] = statfs->f_fsid.val[1];
228         linux_statfs.f_namelen = MAXNAMLEN; /* Bogus */
229
230         error = copyout(&linux_statfs, buf, sizeof(linux_statfs));
231         return (error);
232 }
233
234 int
235 linux_statfs(struct linux_statfs_args *args)
236 {
237         struct thread *td = curthread;
238         struct statfs statfs;
239         struct nameidata nd;
240         char *path;
241         int error;
242
243         error = linux_copyin_path(args->path, &path, LINUX_PATH_EXISTS);
244         if (error)
245                 return (error);
246 #ifdef DEBUG
247         if (ldebug(statfs))
248                 printf(ARGS(statfs, "%s, *"), path);
249 #endif
250         NDINIT(&nd, NAMEI_LOOKUP, CNP_FOLLOW, UIO_SYSSPACE, path, td);
251
252         error = kern_statfs(&nd, &statfs);
253
254         if (error == 0)
255                 error = statfs_copyout(&statfs, args->buf);
256         linux_free_path(&path);
257         return (error);
258 }
259
260 int
261 linux_fstatfs(struct linux_fstatfs_args *args)
262 {
263         struct statfs statfs;
264         int error;
265
266 #ifdef DEBUG
267         if (ldebug(fstatfs))
268                 printf(ARGS(fstatfs, "%d, *"), args->fd);
269 #endif
270         error = kern_fstatfs(args->fd, &statfs);
271
272         if (error == 0)
273                 error = statfs_copyout(&statfs, args->buf);
274         return (error);
275 }
276
277 struct l_ustat 
278 {
279         l_daddr_t       f_tfree;
280         l_ino_t         f_tinode;
281         char            f_fname[6];
282         char            f_fpack[6];
283 };
284
285 int
286 linux_ustat(struct linux_ustat_args *args)
287 {
288         struct thread *td = curthread;
289         struct l_ustat lu;
290         dev_t dev;
291         struct vnode *vp;
292         struct statfs *stat;
293         int error;
294
295 #ifdef DEBUG
296         if (ldebug(ustat))
297                 printf(ARGS(ustat, "%d, *"), args->dev);
298 #endif
299
300         /*
301          * lu.f_fname and lu.f_fpack are not used. They are always zeroed.
302          * lu.f_tinode and lu.f_tfree are set from the device's super block.
303          */
304         bzero(&lu, sizeof(lu));
305
306         /*
307          * XXX - Don't return an error if we can't find a vnode for the
308          * device. Our dev_t is 32-bits whereas Linux only has a 16-bits
309          * dev_t. The dev_t that is used now may as well be a truncated
310          * dev_t returned from previous syscalls. Just return a bzeroed
311          * ustat in that case.
312          */
313         dev = udev2dev(makeudev(args->dev >> 8, args->dev & 0xFF), 0);
314         if (dev != NODEV && vfinddev(dev, VCHR, &vp)) {
315                 if (vp->v_mount == NULL) {
316                         return (EINVAL);
317                 }
318                 stat = &(vp->v_mount->mnt_stat);
319                 error = VFS_STATFS(vp->v_mount, stat, td);
320                 if (error) {
321                         return (error);
322                 }
323                 lu.f_tfree = stat->f_bfree;
324                 lu.f_tinode = stat->f_ffree;
325         }
326         return (copyout(&lu, args->ubuf, sizeof(lu)));
327 }
328
329 #if defined(__i386__)
330
331 static int
332 stat64_copyout(struct stat *buf, void *ubuf)
333 {
334         struct l_stat64 lbuf;
335         int error;
336
337         bzero(&lbuf, sizeof(lbuf));
338         lbuf.st_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8);
339         lbuf.st_ino = buf->st_ino;
340         lbuf.st_mode = buf->st_mode;
341         lbuf.st_nlink = buf->st_nlink;
342         lbuf.st_uid = buf->st_uid;
343         lbuf.st_gid = buf->st_gid;
344         lbuf.st_rdev = buf->st_rdev;
345         lbuf.st_size = buf->st_size;
346         lbuf.st_atime = buf->st_atime;
347         lbuf.st_mtime = buf->st_mtime;
348         lbuf.st_ctime = buf->st_ctime;
349         lbuf.st_blksize = buf->st_blksize;
350         lbuf.st_blocks = buf->st_blocks;
351
352         /*
353          * The __st_ino field makes all the difference. In the Linux kernel
354          * it is conditionally compiled based on STAT64_HAS_BROKEN_ST_INO,
355          * but without the assignment to __st_ino the runtime linker refuses
356          * to mmap(2) any shared libraries. I guess it's broken alright :-)
357          */
358         lbuf.__st_ino = buf->st_ino;
359
360         error = copyout(&lbuf, ubuf, sizeof(lbuf));
361         return (error);
362 }
363
364 int
365 linux_stat64(struct linux_stat64_args *args)
366 {
367         struct nlookupdata nd;
368         struct stat buf;
369         char *path;
370         int error;
371
372         error = linux_copyin_path(args->filename, &path, LINUX_PATH_EXISTS);
373         if (error)
374                 return (error);
375 #ifdef DEBUG
376         if (ldebug(stat64))
377                 printf(ARGS(stat64, "%s, *"), path);
378 #endif
379         error = nlookup_init(&nd, path, UIO_SYSSPACE, NLC_FOLLOW);
380         if (error == 0) {
381                 error = kern_stat(&nd, &buf);
382                 if (error == 0)
383                         error = stat64_copyout(&buf, args->statbuf);
384                 nlookup_done(&nd);
385         }
386         linux_free_path(&path);
387         return (error);
388 }
389
390 int
391 linux_lstat64(struct linux_lstat64_args *args)
392 {
393         struct nlookupdata nd;
394         struct stat sb;
395         char *path;
396         int error;
397
398         error = linux_copyin_path(args->filename, &path, LINUX_PATH_EXISTS);
399         if (error)
400                 return (error);
401 #ifdef DEBUG
402         if (ldebug(lstat64))
403                 printf(ARGS(lstat64, "%s, *"), path);
404 #endif
405         error = nlookup_init(&nd, path, UIO_SYSSPACE, 0);
406         if (error == 0) {
407                 error = kern_stat(&nd, &sb);
408                 if (error == 0)
409                         error = stat64_copyout(&sb, args->statbuf);
410                 nlookup_done(&nd);
411         }
412         linux_free_path(&path);
413         return (error);
414 }
415
416 int
417 linux_fstat64(struct linux_fstat64_args *args)
418 {
419         struct stat buf;
420         int error;
421
422 #ifdef DEBUG
423         if (ldebug(fstat64))
424                 printf(ARGS(fstat64, "%d, *"), args->fd);
425 #endif
426         error = kern_fstat(args->fd, &buf);
427
428         if (error == 0)
429                 error = stat64_copyout(&buf, args->statbuf);
430         return (error);
431 }
432
433 #endif /* __i386__ */