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$ 29 */ 30 31 #include <sys/param.h> 32 #include <sys/conf.h> 33 #include <sys/dirent.h> 34 #include <sys/file.h> 35 #include <sys/filedesc.h> 36 #include <sys/proc.h> 37 #include <sys/mount.h> 38 #include <sys/namei.h> 39 #include <sys/stat.h> 40 #include <sys/systm.h> 41 #include <sys/vnode.h> 42 43 #include <machine/../linux/linux.h> 44 #include <machine/../linux/linux_proto.h> 45 #include <compat/linux/linux_util.h> 46 47 #include <sys/sysctl.h> 48 49 struct linux_newstat { 50 #ifdef __alpha__ 51 u_int stat_dev; 52 u_int stat_ino; 53 u_int stat_mode; 54 u_int stat_nlink; 55 u_int stat_uid; 56 u_int stat_gid; 57 u_int stat_rdev; 58 long stat_size; 59 u_long stat_atime; 60 u_long stat_mtime; 61 u_long stat_ctime; 62 u_int stat_blksize; 63 int stat_blocks; 64 u_int stat_flags; 65 u_int stat_gen; 66 #else 67 u_short stat_dev; 68 u_short __pad1; 69 u_long stat_ino; 70 u_short stat_mode; 71 u_short stat_nlink; 72 u_short stat_uid; 73 u_short stat_gid; 74 u_short stat_rdev; 75 u_short __pad2; 76 u_long stat_size; 77 u_long stat_blksize; 78 u_long stat_blocks; 79 u_long stat_atime; 80 u_long __unused1; 81 u_long stat_mtime; 82 u_long __unused2; 83 u_long stat_ctime; 84 u_long __unused3; 85 u_long __unused4; 86 u_long __unused5; 87 #endif 88 }; 89 90 91 struct linux_ustat 92 { 93 int f_tfree; 94 u_long f_tinode; 95 char f_fname[6]; 96 char f_fpack[6]; 97 }; 98 99 static int 100 newstat_copyout(struct stat *buf, void *ubuf) 101 { 102 struct linux_newstat tbuf; 103 struct cdevsw *cdevsw; 104 dev_t dev; 105 106 tbuf.stat_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8); 107 tbuf.stat_ino = buf->st_ino; 108 tbuf.stat_mode = buf->st_mode; 109 tbuf.stat_nlink = buf->st_nlink; 110 tbuf.stat_uid = buf->st_uid; 111 tbuf.stat_gid = buf->st_gid; 112 tbuf.stat_rdev = buf->st_rdev; 113 tbuf.stat_size = buf->st_size; 114 tbuf.stat_atime = buf->st_atime; 115 tbuf.stat_mtime = buf->st_mtime; 116 tbuf.stat_ctime = buf->st_ctime; 117 tbuf.stat_blksize = buf->st_blksize; 118 tbuf.stat_blocks = buf->st_blocks; 119 120 /* Lie about disk drives which are character devices 121 * in FreeBSD but block devices under Linux. 122 */ 123 if (tbuf.stat_mode & S_IFCHR && 124 (dev = udev2dev(buf->st_rdev, 0)) != NODEV) { 125 cdevsw = devsw(dev); 126 if (cdevsw != NULL && (cdevsw->d_flags & D_DISK)) { 127 tbuf.stat_mode &= ~S_IFCHR; 128 tbuf.stat_mode |= S_IFBLK; 129 130 /* XXX this may not be quite right */ 131 /* Map major number to 0 */ 132 tbuf.stat_dev = uminor(buf->st_dev) & 0xf; 133 tbuf.stat_rdev = buf->st_rdev & 0xff; 134 } 135 } 136 137 return (copyout(&tbuf, ubuf, sizeof(tbuf))); 138 } 139 140 int 141 linux_newstat(struct proc *p, struct linux_newstat_args *args) 142 { 143 struct stat buf; 144 struct nameidata nd; 145 int error; 146 caddr_t sg; 147 148 sg = stackgap_init(); 149 CHECKALTEXIST(p, &sg, args->path); 150 151 #ifdef DEBUG 152 if (ldebug(newstat)) 153 printf(ARGS(newstat, "%s, *"), args->path); 154 #endif 155 156 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | NOOBJ, UIO_USERSPACE, 157 args->path, p); 158 error = namei(&nd); 159 if (error) 160 return (error); 161 NDFREE(&nd, NDF_ONLY_PNBUF); 162 163 error = vn_stat(nd.ni_vp, &buf, p); 164 vput(nd.ni_vp); 165 if (error) 166 return (error); 167 168 return (newstat_copyout(&buf, args->buf)); 169 } 170 171 /* 172 * Get file status; this version does not follow links. 173 */ 174 int 175 linux_newlstat(p, uap) 176 struct proc *p; 177 struct linux_newlstat_args *uap; 178 { 179 int error; 180 struct vnode *vp; 181 struct stat sb; 182 struct nameidata nd; 183 caddr_t sg; 184 185 sg = stackgap_init(); 186 CHECKALTEXIST(p, &sg, uap->path); 187 188 #ifdef DEBUG 189 if (ldebug(newlstat)) 190 printf(ARGS(newlstat, "%s, *"), uap->path); 191 #endif 192 193 NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF | NOOBJ, UIO_USERSPACE, 194 uap->path, p); 195 error = namei(&nd); 196 if (error) 197 return (error); 198 NDFREE(&nd, NDF_ONLY_PNBUF); 199 200 vp = nd.ni_vp; 201 error = vn_stat(vp, &sb, p); 202 vput(vp); 203 if (error) 204 return (error); 205 206 return (newstat_copyout(&sb, uap->buf)); 207 } 208 209 int 210 linux_newfstat(struct proc *p, struct linux_newfstat_args *args) 211 { 212 struct filedesc *fdp; 213 struct file *fp; 214 struct stat buf; 215 int error; 216 217 fdp = p->p_fd; 218 219 #ifdef DEBUG 220 if (ldebug(newfstat)) 221 printf(ARGS(newfstat, "%d, *"), args->fd); 222 #endif 223 224 if ((unsigned)args->fd >= fdp->fd_nfiles || 225 (fp = fdp->fd_ofiles[args->fd]) == NULL) 226 return (EBADF); 227 228 error = fo_stat(fp, &buf, p); 229 if (!error) 230 error = newstat_copyout(&buf, args->buf); 231 232 return (error); 233 } 234 235 struct linux_statfs_buf { 236 int ftype; 237 int fbsize; 238 int fblocks; 239 int fbfree; 240 int fbavail; 241 int ffiles; 242 int fffree; 243 linux_fsid_t ffsid; 244 int fnamelen; 245 int fspare[6]; 246 }; 247 248 #ifndef VT_NWFS 249 #define VT_NWFS VT_TFS /* XXX - bug compatibility with sys/nwfs/nwfs_node.h */ 250 #endif 251 252 #define LINUX_CODA_SUPER_MAGIC 0x73757245L 253 #define LINUX_EXT2_SUPER_MAGIC 0xEF53L 254 #define LINUX_HPFS_SUPER_MAGIC 0xf995e849L 255 #define LINUX_ISOFS_SUPER_MAGIC 0x9660L 256 #define LINUX_MSDOS_SUPER_MAGIC 0x4d44L 257 #define LINUX_NCP_SUPER_MAGIC 0x564cL 258 #define LINUX_NFS_SUPER_MAGIC 0x6969L 259 #define LINUX_NTFS_SUPER_MAGIC 0x5346544EL 260 #define LINUX_PROC_SUPER_MAGIC 0x9fa0L 261 #define LINUX_UFS_SUPER_MAGIC 0x00011954L /* XXX - UFS_MAGIC in Linux */ 262 263 /* 264 * ext2fs uses the VT_UFS tag. A mounted ext2 filesystem will therefore 265 * be seen as an ufs/mfs filesystem. 266 */ 267 static long 268 bsd_to_linux_ftype(int tag) 269 { 270 271 switch (tag) { 272 case VT_CODA: 273 return (LINUX_CODA_SUPER_MAGIC); 274 case VT_HPFS: 275 return (LINUX_HPFS_SUPER_MAGIC); 276 case VT_ISOFS: 277 return (LINUX_ISOFS_SUPER_MAGIC); 278 case VT_MFS: 279 return (LINUX_UFS_SUPER_MAGIC); 280 case VT_MSDOSFS: 281 return (LINUX_MSDOS_SUPER_MAGIC); 282 case VT_NFS: 283 return (LINUX_NFS_SUPER_MAGIC); 284 case VT_NTFS: 285 return (LINUX_NTFS_SUPER_MAGIC); 286 case VT_NWFS: 287 return (LINUX_NCP_SUPER_MAGIC); 288 case VT_PROCFS: 289 return (LINUX_PROC_SUPER_MAGIC); 290 case VT_UFS: 291 return (LINUX_UFS_SUPER_MAGIC); 292 } 293 294 return (0L); 295 } 296 297 int 298 linux_statfs(struct proc *p, struct linux_statfs_args *args) 299 { 300 struct mount *mp; 301 struct nameidata *ndp; 302 struct statfs *bsd_statfs; 303 struct nameidata nd; 304 struct linux_statfs_buf linux_statfs_buf; 305 int error; 306 caddr_t sg; 307 308 sg = stackgap_init(); 309 CHECKALTEXIST(p, &sg, args->path); 310 311 #ifdef DEBUG 312 if (ldebug(statfs)) 313 printf(ARGS(statfs, "%s, *"), args->path); 314 #endif 315 ndp = &nd; 316 NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args->path, curproc); 317 error = namei(ndp); 318 if (error) 319 return error; 320 NDFREE(ndp, NDF_ONLY_PNBUF); 321 mp = ndp->ni_vp->v_mount; 322 bsd_statfs = &mp->mnt_stat; 323 vrele(ndp->ni_vp); 324 error = VFS_STATFS(mp, bsd_statfs, p); 325 if (error) 326 return error; 327 bsd_statfs->f_flags = mp->mnt_flag & MNT_VISFLAGMASK; 328 linux_statfs_buf.ftype = bsd_to_linux_ftype(bsd_statfs->f_type); 329 linux_statfs_buf.fbsize = bsd_statfs->f_bsize; 330 linux_statfs_buf.fblocks = bsd_statfs->f_blocks; 331 linux_statfs_buf.fbfree = bsd_statfs->f_bfree; 332 linux_statfs_buf.fbavail = bsd_statfs->f_bavail; 333 linux_statfs_buf.fffree = bsd_statfs->f_ffree; 334 linux_statfs_buf.ffiles = bsd_statfs->f_files; 335 linux_statfs_buf.ffsid.val[0] = bsd_statfs->f_fsid.val[0]; 336 linux_statfs_buf.ffsid.val[1] = bsd_statfs->f_fsid.val[1]; 337 linux_statfs_buf.fnamelen = MAXNAMLEN; 338 return copyout((caddr_t)&linux_statfs_buf, (caddr_t)args->buf, 339 sizeof(struct linux_statfs_buf)); 340 } 341 342 int 343 linux_fstatfs(struct proc *p, struct linux_fstatfs_args *args) 344 { 345 struct file *fp; 346 struct mount *mp; 347 struct statfs *bsd_statfs; 348 struct linux_statfs_buf linux_statfs_buf; 349 int error; 350 351 #ifdef DEBUG 352 if (ldebug(fstatfs)) 353 printf(ARGS(fstatfs, "%d, *"), args->fd); 354 #endif 355 error = getvnode(p->p_fd, args->fd, &fp); 356 if (error) 357 return error; 358 mp = ((struct vnode *)fp->f_data)->v_mount; 359 bsd_statfs = &mp->mnt_stat; 360 error = VFS_STATFS(mp, bsd_statfs, p); 361 if (error) 362 return error; 363 bsd_statfs->f_flags = mp->mnt_flag & MNT_VISFLAGMASK; 364 linux_statfs_buf.ftype = bsd_to_linux_ftype(bsd_statfs->f_type); 365 linux_statfs_buf.fbsize = bsd_statfs->f_bsize; 366 linux_statfs_buf.fblocks = bsd_statfs->f_blocks; 367 linux_statfs_buf.fbfree = bsd_statfs->f_bfree; 368 linux_statfs_buf.fbavail = bsd_statfs->f_bavail; 369 linux_statfs_buf.fffree = bsd_statfs->f_ffree; 370 linux_statfs_buf.ffiles = bsd_statfs->f_files; 371 linux_statfs_buf.ffsid.val[0] = bsd_statfs->f_fsid.val[0]; 372 linux_statfs_buf.ffsid.val[1] = bsd_statfs->f_fsid.val[1]; 373 linux_statfs_buf.fnamelen = MAXNAMLEN; 374 return copyout((caddr_t)&linux_statfs_buf, (caddr_t)args->buf, 375 sizeof(struct linux_statfs_buf)); 376 } 377 378 int 379 linux_ustat(p, uap) 380 struct proc *p; 381 struct linux_ustat_args *uap; 382 { 383 struct linux_ustat lu; 384 dev_t dev; 385 struct vnode *vp; 386 struct statfs *stat; 387 int error; 388 389 #ifdef DEBUG 390 if (ldebug(ustat)) 391 printf(ARGS(ustat, "%d, *"), uap->dev); 392 #endif 393 394 /* 395 * lu.f_fname and lu.f_fpack are not used. They are always zeroed. 396 * lu.f_tinode and lu.f_tfree are set from the device's super block. 397 */ 398 bzero(&lu, sizeof(lu)); 399 400 /* 401 * XXX - Don't return an error if we can't find a vnode for the 402 * device. Our dev_t is 32-bits whereas Linux only has a 16-bits 403 * dev_t. The dev_t that is used now may as well be a truncated 404 * dev_t returned from previous syscalls. Just return a bzeroed 405 * ustat in that case. 406 */ 407 dev = makedev(uap->dev >> 8, uap->dev & 0xFF); 408 if (vfinddev(dev, VCHR, &vp)) { 409 if (vp->v_mount == NULL) 410 return (EINVAL); 411 stat = &(vp->v_mount->mnt_stat); 412 error = VFS_STATFS(vp->v_mount, stat, p); 413 if (error) 414 return (error); 415 416 lu.f_tfree = stat->f_bfree; 417 lu.f_tinode = stat->f_ffree; 418 } 419 420 return (copyout(&lu, uap->ubuf, sizeof(lu))); 421 } 422