linux_file64.c revision 1.63 1 1.63 rin /* $NetBSD: linux_file64.c,v 1.63 2021/09/21 09:24:15 rin Exp $ */
2 1.1 jdolecek
3 1.1 jdolecek /*-
4 1.46 ad * Copyright (c) 1995, 1998, 2000, 2008 The NetBSD Foundation, Inc.
5 1.1 jdolecek * All rights reserved.
6 1.1 jdolecek *
7 1.1 jdolecek * This code is derived from software contributed to The NetBSD Foundation
8 1.1 jdolecek * by Frank van der Linden and Eric Haszlakiewicz.
9 1.1 jdolecek *
10 1.1 jdolecek * Redistribution and use in source and binary forms, with or without
11 1.1 jdolecek * modification, are permitted provided that the following conditions
12 1.1 jdolecek * are met:
13 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright
14 1.1 jdolecek * notice, this list of conditions and the following disclaimer.
15 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the
17 1.1 jdolecek * documentation and/or other materials provided with the distribution.
18 1.1 jdolecek *
19 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 jdolecek * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 jdolecek * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 jdolecek * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 jdolecek * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 jdolecek * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 jdolecek * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 jdolecek * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 jdolecek * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 jdolecek * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 jdolecek * POSSIBILITY OF SUCH DAMAGE.
30 1.1 jdolecek */
31 1.1 jdolecek
32 1.1 jdolecek /*
33 1.1 jdolecek * Linux 64bit filesystem calls. Used on 32bit archs, not used on 64bit ones.
34 1.1 jdolecek */
35 1.6 lukem
36 1.6 lukem #include <sys/cdefs.h>
37 1.63 rin __KERNEL_RCSID(0, "$NetBSD: linux_file64.c,v 1.63 2021/09/21 09:24:15 rin Exp $");
38 1.1 jdolecek
39 1.1 jdolecek #include <sys/param.h>
40 1.1 jdolecek #include <sys/systm.h>
41 1.1 jdolecek #include <sys/namei.h>
42 1.1 jdolecek #include <sys/proc.h>
43 1.11 tron #include <sys/dirent.h>
44 1.1 jdolecek #include <sys/file.h>
45 1.1 jdolecek #include <sys/stat.h>
46 1.1 jdolecek #include <sys/filedesc.h>
47 1.1 jdolecek #include <sys/ioctl.h>
48 1.1 jdolecek #include <sys/kernel.h>
49 1.1 jdolecek #include <sys/mount.h>
50 1.1 jdolecek #include <sys/malloc.h>
51 1.37 dsl #include <sys/namei.h>
52 1.37 dsl #include <sys/vfs_syscalls.h>
53 1.1 jdolecek #include <sys/vnode.h>
54 1.1 jdolecek #include <sys/tty.h>
55 1.1 jdolecek #include <sys/conf.h>
56 1.1 jdolecek
57 1.1 jdolecek #include <sys/syscallargs.h>
58 1.1 jdolecek
59 1.1 jdolecek #include <compat/linux/common/linux_types.h>
60 1.1 jdolecek #include <compat/linux/common/linux_signal.h>
61 1.1 jdolecek #include <compat/linux/common/linux_fcntl.h>
62 1.1 jdolecek #include <compat/linux/common/linux_util.h>
63 1.1 jdolecek #include <compat/linux/common/linux_machdep.h>
64 1.11 tron #include <compat/linux/common/linux_dirent.h>
65 1.40 njoly #include <compat/linux/common/linux_ipc.h>
66 1.40 njoly #include <compat/linux/common/linux_sem.h>
67 1.1 jdolecek
68 1.1 jdolecek #include <compat/linux/linux_syscallargs.h>
69 1.1 jdolecek
70 1.42 dsl static void bsd_to_linux_stat(struct stat *, struct linux_stat64 *);
71 1.1 jdolecek
72 1.1 jdolecek /*
73 1.1 jdolecek * Convert a NetBSD stat structure to a Linux stat structure.
74 1.1 jdolecek * Only the order of the fields and the padding in the structure
75 1.1 jdolecek * is different. linux_fakedev is a machine-dependent function
76 1.1 jdolecek * which optionally converts device driver major/minor numbers
77 1.1 jdolecek * (XXX horrible, but what can you do against code that compares
78 1.1 jdolecek * things against constant major device numbers? sigh)
79 1.1 jdolecek */
80 1.1 jdolecek static void
81 1.43 dsl bsd_to_linux_stat(struct stat *bsp, struct linux_stat64 *lsp)
82 1.1 jdolecek {
83 1.61 maxv memset(lsp, 0, sizeof(*lsp));
84 1.7 christos lsp->lst_dev = linux_fakedev(bsp->st_dev, 0);
85 1.1 jdolecek lsp->lst_ino = bsp->st_ino;
86 1.1 jdolecek lsp->lst_mode = (linux_mode_t)bsp->st_mode;
87 1.1 jdolecek if (bsp->st_nlink >= (1 << 15))
88 1.1 jdolecek lsp->lst_nlink = (1 << 15) - 1;
89 1.1 jdolecek else
90 1.1 jdolecek lsp->lst_nlink = (linux_nlink_t)bsp->st_nlink;
91 1.1 jdolecek lsp->lst_uid = bsp->st_uid;
92 1.1 jdolecek lsp->lst_gid = bsp->st_gid;
93 1.7 christos lsp->lst_rdev = linux_fakedev(bsp->st_rdev, 1);
94 1.1 jdolecek lsp->lst_size = bsp->st_size;
95 1.1 jdolecek lsp->lst_blksize = bsp->st_blksize;
96 1.1 jdolecek lsp->lst_blocks = bsp->st_blocks;
97 1.1 jdolecek lsp->lst_atime = bsp->st_atime;
98 1.1 jdolecek lsp->lst_mtime = bsp->st_mtime;
99 1.1 jdolecek lsp->lst_ctime = bsp->st_ctime;
100 1.31 manu # ifdef LINUX_STAT64_HAS_NSEC
101 1.25 christos lsp->lst_atime_nsec = bsp->st_atimensec;
102 1.25 christos lsp->lst_mtime_nsec = bsp->st_mtimensec;
103 1.25 christos lsp->lst_ctime_nsec = bsp->st_ctimensec;
104 1.31 manu # endif
105 1.31 manu # if LINUX_STAT64_HAS_BROKEN_ST_INO
106 1.16 jdolecek lsp->__lst_ino = (linux_ino_t) bsp->st_ino;
107 1.31 manu # endif
108 1.1 jdolecek }
109 1.1 jdolecek
110 1.1 jdolecek /*
111 1.1 jdolecek * The stat functions below are plain sailing. stat and lstat are handled
112 1.1 jdolecek * by one function to avoid code duplication.
113 1.1 jdolecek */
114 1.1 jdolecek int
115 1.44 dsl linux_sys_fstat64(struct lwp *l, const struct linux_sys_fstat64_args *uap, register_t *retval)
116 1.1 jdolecek {
117 1.44 dsl /* {
118 1.1 jdolecek syscallarg(int) fd;
119 1.5 manu syscallarg(struct linux_stat64 *) sp;
120 1.44 dsl } */
121 1.1 jdolecek struct linux_stat64 tmplst;
122 1.37 dsl struct stat tmpst;
123 1.1 jdolecek int error;
124 1.1 jdolecek
125 1.46 ad error = do_sys_fstat(SCARG(uap, fd), &tmpst);
126 1.37 dsl if (error != 0)
127 1.1 jdolecek return error;
128 1.1 jdolecek
129 1.1 jdolecek bsd_to_linux_stat(&tmpst, &tmplst);
130 1.1 jdolecek
131 1.37 dsl return copyout(&tmplst, SCARG(uap, sp), sizeof tmplst);
132 1.1 jdolecek }
133 1.1 jdolecek
134 1.1 jdolecek static int
135 1.44 dsl linux_do_stat64(struct lwp *l, const struct linux_sys_stat64_args *uap, register_t *retval, int flags)
136 1.1 jdolecek {
137 1.1 jdolecek struct linux_stat64 tmplst;
138 1.37 dsl struct stat tmpst;
139 1.1 jdolecek int error;
140 1.1 jdolecek
141 1.46 ad error = do_sys_stat(SCARG(uap, path), flags, &tmpst);
142 1.37 dsl if (error != 0)
143 1.1 jdolecek return error;
144 1.1 jdolecek
145 1.1 jdolecek bsd_to_linux_stat(&tmpst, &tmplst);
146 1.1 jdolecek
147 1.37 dsl return copyout(&tmplst, SCARG(uap, sp), sizeof tmplst);
148 1.1 jdolecek }
149 1.1 jdolecek
150 1.1 jdolecek int
151 1.44 dsl linux_sys_stat64(struct lwp *l, const struct linux_sys_stat64_args *uap, register_t *retval)
152 1.1 jdolecek {
153 1.44 dsl /* {
154 1.1 jdolecek syscallarg(const char *) path;
155 1.1 jdolecek syscallarg(struct linux_stat64 *) sp;
156 1.44 dsl } */
157 1.1 jdolecek
158 1.37 dsl return linux_do_stat64(l, uap, retval, FOLLOW);
159 1.1 jdolecek }
160 1.1 jdolecek
161 1.1 jdolecek int
162 1.44 dsl linux_sys_lstat64(struct lwp *l, const struct linux_sys_lstat64_args *uap, register_t *retval)
163 1.1 jdolecek {
164 1.44 dsl /* {
165 1.1 jdolecek syscallarg(const char *) path;
166 1.1 jdolecek syscallarg(struct linux_stat64 *) sp;
167 1.44 dsl } */
168 1.1 jdolecek
169 1.44 dsl return linux_do_stat64(l, (const void *)uap, retval, NOFOLLOW);
170 1.2 jdolecek }
171 1.2 jdolecek
172 1.2 jdolecek int
173 1.54 chs linux_sys_fstatat64(struct lwp *l, const struct linux_sys_fstatat64_args *uap, register_t *retval)
174 1.54 chs {
175 1.54 chs /* {
176 1.54 chs syscallarg(int) fd;
177 1.54 chs syscallarg(const char *) path;
178 1.54 chs syscallarg(struct linux_stat64 *) sp;
179 1.54 chs syscallarg(int) flag;
180 1.54 chs } */
181 1.54 chs struct linux_stat64 tmplst;
182 1.54 chs struct stat tmpst;
183 1.63 rin struct vnode *vp;
184 1.63 rin int error, nd_flag, fd;
185 1.63 rin uint8_t c;
186 1.63 rin
187 1.63 rin if (SCARG(uap, flag) & LINUX_AT_EMPTY_PATH) {
188 1.63 rin /*
189 1.63 rin * If path is null string:
190 1.63 rin */
191 1.63 rin error = ufetch_8(SCARG(uap, path), &c);
192 1.63 rin if (error != 0)
193 1.63 rin return error;
194 1.63 rin if (c == '\0') {
195 1.63 rin fd = SCARG(uap, fd);
196 1.63 rin if (fd == AT_FDCWD) {
197 1.63 rin /*
198 1.63 rin * operate on current directory
199 1.63 rin */
200 1.63 rin vp = l->l_proc->p_cwdi->cwdi_cdir;
201 1.63 rin vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
202 1.63 rin error = vn_stat(vp, &tmpst);
203 1.63 rin VOP_UNLOCK(vp);
204 1.63 rin } else {
205 1.63 rin /*
206 1.63 rin * operate on fd
207 1.63 rin */
208 1.63 rin error = do_sys_fstat(fd, &tmpst);
209 1.63 rin }
210 1.63 rin if (error != 0)
211 1.63 rin return error;
212 1.63 rin goto done;
213 1.63 rin }
214 1.63 rin }
215 1.54 chs
216 1.54 chs if (SCARG(uap, flag) & LINUX_AT_SYMLINK_NOFOLLOW)
217 1.54 chs nd_flag = NOFOLLOW;
218 1.54 chs else
219 1.54 chs nd_flag = FOLLOW;
220 1.54 chs
221 1.54 chs error = do_sys_statat(l, SCARG(uap, fd), SCARG(uap, path), nd_flag, &tmpst);
222 1.54 chs if (error != 0)
223 1.54 chs return error;
224 1.54 chs
225 1.63 rin done:
226 1.54 chs bsd_to_linux_stat(&tmpst, &tmplst);
227 1.54 chs
228 1.54 chs return copyout(&tmplst, SCARG(uap, sp), sizeof tmplst);
229 1.54 chs }
230 1.54 chs
231 1.55 njoly #ifndef __alpha__
232 1.54 chs int
233 1.44 dsl linux_sys_truncate64(struct lwp *l, const struct linux_sys_truncate64_args *uap, register_t *retval)
234 1.2 jdolecek {
235 1.44 dsl /* {
236 1.2 jdolecek syscallarg(const char *) path;
237 1.2 jdolecek syscallarg(off_t) length;
238 1.44 dsl } */
239 1.22 jdolecek struct sys_truncate_args ta;
240 1.2 jdolecek
241 1.22 jdolecek /* Linux doesn't have the 'pad' pseudo-parameter */
242 1.22 jdolecek SCARG(&ta, path) = SCARG(uap, path);
243 1.49 pooka SCARG(&ta, PAD) = 0;
244 1.22 jdolecek SCARG(&ta, length) = SCARG(uap, length);
245 1.22 jdolecek
246 1.22 jdolecek return sys_truncate(l, &ta, retval);
247 1.22 jdolecek }
248 1.22 jdolecek
249 1.22 jdolecek int
250 1.44 dsl linux_sys_ftruncate64(struct lwp *l, const struct linux_sys_ftruncate64_args *uap, register_t *retval)
251 1.22 jdolecek {
252 1.44 dsl /* {
253 1.22 jdolecek syscallarg(unsigned int) fd;
254 1.22 jdolecek syscallarg(off_t) length;
255 1.44 dsl } */
256 1.22 jdolecek struct sys_ftruncate_args ta;
257 1.22 jdolecek
258 1.22 jdolecek /* Linux doesn't have the 'pad' pseudo-parameter */
259 1.22 jdolecek SCARG(&ta, fd) = SCARG(uap, fd);
260 1.49 pooka SCARG(&ta, PAD) = 0;
261 1.22 jdolecek SCARG(&ta, length) = SCARG(uap, length);
262 1.22 jdolecek
263 1.22 jdolecek return sys_ftruncate(l, &ta, retval);
264 1.1 jdolecek }
265 1.55 njoly #endif /* __alpha__ */
266 1.11 tron
267 1.11 tron /*
268 1.11 tron * Linux 'readdir' call. This code is mostly taken from the
269 1.11 tron * SunOS getdents call (see compat/sunos/sunos_misc.c), though
270 1.18 jdolecek * an attempt has been made to keep it a little cleaner.
271 1.11 tron *
272 1.18 jdolecek * The d_off field contains the offset of the next valid entry,
273 1.18 jdolecek * unless the older Linux getdents(2), which used to have it set
274 1.18 jdolecek * to the offset of the entry itself. This function also doesn't
275 1.18 jdolecek * need to deal with the old count == 1 glibc problem.
276 1.11 tron *
277 1.11 tron * Read in BSD-style entries, convert them, and copy them out.
278 1.11 tron *
279 1.11 tron * Note that this doesn't handle union-mounted filesystems.
280 1.11 tron */
281 1.11 tron int
282 1.44 dsl linux_sys_getdents64(struct lwp *l, const struct linux_sys_getdents64_args *uap, register_t *retval)
283 1.11 tron {
284 1.44 dsl /* {
285 1.11 tron syscallarg(int) fd;
286 1.11 tron syscallarg(struct linux_dirent64 *) dent;
287 1.11 tron syscallarg(unsigned int) count;
288 1.44 dsl } */
289 1.11 tron struct dirent *bdp;
290 1.11 tron struct vnode *vp;
291 1.36 christos char *inp, *tbuf; /* BSD-format */
292 1.11 tron int len, reclen; /* BSD-format */
293 1.36 christos char *outp; /* Linux-format */
294 1.11 tron int resid, linux_reclen = 0; /* Linux-format */
295 1.46 ad file_t *fp;
296 1.11 tron struct uio auio;
297 1.11 tron struct iovec aiov;
298 1.11 tron struct linux_dirent64 idb;
299 1.11 tron off_t off; /* true file offset */
300 1.18 jdolecek int buflen, error, eofflag, nbytes;
301 1.11 tron struct vattr va;
302 1.11 tron off_t *cookiebuf = NULL, *cookie;
303 1.11 tron int ncookies;
304 1.11 tron
305 1.48 ad /* fd_getvnode() will use the descriptor for us */
306 1.48 ad if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
307 1.11 tron return (error);
308 1.11 tron
309 1.11 tron if ((fp->f_flag & FREAD) == 0) {
310 1.11 tron error = EBADF;
311 1.11 tron goto out1;
312 1.11 tron }
313 1.11 tron
314 1.11 tron vp = (struct vnode *)fp->f_data;
315 1.11 tron if (vp->v_type != VDIR) {
316 1.52 njoly error = ENOTDIR;
317 1.11 tron goto out1;
318 1.11 tron }
319 1.11 tron
320 1.53 hannken vn_lock(vp, LK_SHARED | LK_RETRY);
321 1.53 hannken error = VOP_GETATTR(vp, &va, l->l_cred);
322 1.53 hannken VOP_UNLOCK(vp);
323 1.53 hannken if (error)
324 1.11 tron goto out1;
325 1.11 tron
326 1.11 tron nbytes = SCARG(uap, count);
327 1.60 riastrad buflen = uimin(MAXBSIZE, nbytes);
328 1.18 jdolecek if (buflen < va.va_blocksize)
329 1.18 jdolecek buflen = va.va_blocksize;
330 1.28 christos tbuf = malloc(buflen, M_TEMP, M_WAITOK);
331 1.11 tron
332 1.11 tron vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
333 1.11 tron off = fp->f_offset;
334 1.11 tron again:
335 1.28 christos aiov.iov_base = tbuf;
336 1.11 tron aiov.iov_len = buflen;
337 1.11 tron auio.uio_iov = &aiov;
338 1.11 tron auio.uio_iovcnt = 1;
339 1.11 tron auio.uio_rw = UIO_READ;
340 1.11 tron auio.uio_resid = buflen;
341 1.11 tron auio.uio_offset = off;
342 1.32 yamt UIO_SETUP_SYSSPACE(&auio);
343 1.11 tron /*
344 1.11 tron * First we read into the malloc'ed buffer, then
345 1.11 tron * we massage it into user space, one record at a time.
346 1.11 tron */
347 1.11 tron error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
348 1.11 tron &ncookies);
349 1.11 tron if (error)
350 1.11 tron goto out;
351 1.11 tron
352 1.28 christos inp = tbuf;
353 1.36 christos outp = (void *)SCARG(uap, dent);
354 1.11 tron resid = nbytes;
355 1.11 tron if ((len = buflen - auio.uio_resid) == 0)
356 1.11 tron goto eof;
357 1.11 tron
358 1.11 tron for (cookie = cookiebuf; len > 0; len -= reclen) {
359 1.11 tron bdp = (struct dirent *)inp;
360 1.11 tron reclen = bdp->d_reclen;
361 1.59 riastrad if (reclen & 3) {
362 1.59 riastrad error = EIO;
363 1.59 riastrad goto out;
364 1.59 riastrad }
365 1.11 tron if (bdp->d_fileno == 0) {
366 1.11 tron inp += reclen; /* it is a hole; squish it out */
367 1.26 christos if (cookie)
368 1.26 christos off = *cookie++;
369 1.26 christos else
370 1.26 christos off += reclen;
371 1.11 tron continue;
372 1.11 tron }
373 1.11 tron linux_reclen = LINUX_RECLEN(&idb, bdp->d_namlen);
374 1.11 tron if (reclen > len || resid < linux_reclen) {
375 1.11 tron /* entry too big for buffer, so just stop */
376 1.11 tron outp++;
377 1.11 tron break;
378 1.11 tron }
379 1.26 christos if (cookie)
380 1.26 christos off = *cookie++; /* each entry points to next */
381 1.26 christos else
382 1.26 christos off += reclen;
383 1.11 tron /*
384 1.11 tron * Massage in place to make a Linux-shaped dirent (otherwise
385 1.11 tron * we have to worry about touching user memory outside of
386 1.11 tron * the copyout() call).
387 1.11 tron */
388 1.62 maxv memset(&idb, 0, sizeof(idb));
389 1.11 tron idb.d_ino = bdp->d_fileno;
390 1.11 tron idb.d_type = bdp->d_type;
391 1.18 jdolecek idb.d_off = off;
392 1.18 jdolecek idb.d_reclen = (u_short)linux_reclen;
393 1.56 christos memcpy(idb.d_name, bdp->d_name, MIN(sizeof(idb.d_name),
394 1.58 christos bdp->d_namlen + 1));
395 1.36 christos if ((error = copyout((void *)&idb, outp, linux_reclen)))
396 1.11 tron goto out;
397 1.11 tron /* advance past this real entry */
398 1.11 tron inp += reclen;
399 1.11 tron /* advance output past Linux-shaped entry */
400 1.11 tron outp += linux_reclen;
401 1.11 tron resid -= linux_reclen;
402 1.11 tron }
403 1.11 tron
404 1.11 tron /* if we squished out the whole block, try again */
405 1.50 he if (outp == (void *)SCARG(uap, dent)) {
406 1.50 he if (cookiebuf)
407 1.50 he free(cookiebuf, M_TEMP);
408 1.50 he cookiebuf = NULL;
409 1.11 tron goto again;
410 1.50 he }
411 1.11 tron fp->f_offset = off; /* update the vnode offset */
412 1.11 tron
413 1.11 tron eof:
414 1.11 tron *retval = nbytes - resid;
415 1.11 tron out:
416 1.51 hannken VOP_UNLOCK(vp);
417 1.11 tron if (cookiebuf)
418 1.11 tron free(cookiebuf, M_TEMP);
419 1.28 christos free(tbuf, M_TEMP);
420 1.11 tron out1:
421 1.46 ad fd_putfile(SCARG(uap, fd));
422 1.3 manu return error;
423 1.3 manu }
424