vfs_syscalls_50.c revision 1.2 1 1.2 christos /* $NetBSD: vfs_syscalls_50.c,v 1.2 2009/01/11 02:45:47 christos Exp $ */
2 1.2 christos
3 1.2 christos /*-
4 1.2 christos * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 1.2 christos * All rights reserved.
6 1.2 christos *
7 1.2 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.2 christos * by Christos Zoulas.
9 1.2 christos *
10 1.2 christos * Redistribution and use in source and binary forms, with or without
11 1.2 christos * modification, are permitted provided that the following conditions
12 1.2 christos * are met:
13 1.2 christos * 1. Redistributions of source code must retain the above copyright
14 1.2 christos * notice, this list of conditions and the following disclaimer.
15 1.2 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 christos * notice, this list of conditions and the following disclaimer in the
17 1.2 christos * documentation and/or other materials provided with the distribution.
18 1.2 christos * 3. All advertising materials mentioning features or use of this software
19 1.2 christos * must display the following acknowledgement:
20 1.2 christos * This product includes software developed by the NetBSD
21 1.2 christos * Foundation, Inc. and its contributors.
22 1.2 christos * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2 christos * contributors may be used to endorse or promote products derived
24 1.2 christos * from this software without specific prior written permission.
25 1.2 christos *
26 1.2 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.2 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.2 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2 christos * POSSIBILITY OF SUCH DAMAGE.
37 1.2 christos */
38 1.2 christos #include <sys/cdefs.h>
39 1.2 christos __KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_50.c,v 1.2 2009/01/11 02:45:47 christos Exp $");
40 1.2 christos
41 1.2 christos #include <sys/param.h>
42 1.2 christos #include <sys/systm.h>
43 1.2 christos #include <sys/namei.h>
44 1.2 christos #include <sys/filedesc.h>
45 1.2 christos #include <sys/kernel.h>
46 1.2 christos #include <sys/file.h>
47 1.2 christos #include <sys/stat.h>
48 1.2 christos #include <sys/socketvar.h>
49 1.2 christos #include <sys/vnode.h>
50 1.2 christos #include <sys/mount.h>
51 1.2 christos #include <sys/proc.h>
52 1.2 christos #include <sys/uio.h>
53 1.2 christos #include <sys/dirent.h>
54 1.2 christos #include <sys/malloc.h>
55 1.2 christos #include <sys/kauth.h>
56 1.2 christos #include <sys/time.h>
57 1.2 christos #include <sys/vfs_syscalls.h>
58 1.2 christos #ifndef LFS
59 1.2 christos #define LFS
60 1.2 christos #endif
61 1.2 christos #include <sys/syscallargs.h>
62 1.2 christos
63 1.2 christos #include <ufs/lfs/lfs_extern.h>
64 1.2 christos
65 1.2 christos #include <compat/common/compat_util.h>
66 1.2 christos #include <compat/sys/time.h>
67 1.2 christos #include <compat/sys/stat.h>
68 1.2 christos #include <compat/sys/dirent.h>
69 1.2 christos #include <compat/sys/mount.h>
70 1.2 christos
71 1.2 christos static void cvtstat(struct stat30 *, const struct stat *);
72 1.2 christos
73 1.2 christos /*
74 1.2 christos * Convert from a new to an old stat structure.
75 1.2 christos */
76 1.2 christos static void
77 1.2 christos cvtstat(struct stat30 *ost, const struct stat *st)
78 1.2 christos {
79 1.2 christos
80 1.2 christos ost->st_dev = st->st_dev;
81 1.2 christos ost->st_ino = st->st_ino;
82 1.2 christos ost->st_mode = st->st_mode;
83 1.2 christos ost->st_nlink = st->st_nlink;
84 1.2 christos ost->st_uid = st->st_uid;
85 1.2 christos ost->st_gid = st->st_gid;
86 1.2 christos ost->st_rdev = st->st_rdev;
87 1.2 christos timespec_to_timespec50(&st->st_atimespec, &ost->st_atimespec);
88 1.2 christos timespec_to_timespec50(&st->st_mtimespec, &ost->st_mtimespec);
89 1.2 christos timespec_to_timespec50(&st->st_ctimespec, &ost->st_ctimespec);
90 1.2 christos timespec_to_timespec50(&st->st_birthtimespec, &ost->st_birthtimespec);
91 1.2 christos ost->st_size = st->st_size;
92 1.2 christos ost->st_blocks = st->st_blocks;
93 1.2 christos ost->st_blksize = st->st_blksize;
94 1.2 christos ost->st_flags = st->st_flags;
95 1.2 christos ost->st_gen = st->st_gen;
96 1.2 christos }
97 1.2 christos
98 1.2 christos /*
99 1.2 christos * Get file status; this version follows links.
100 1.2 christos */
101 1.2 christos /* ARGSUSED */
102 1.2 christos int
103 1.2 christos compat_50_sys___stat30(struct lwp *l, const struct compat_50_sys___stat30_args *uap, register_t *retval)
104 1.2 christos {
105 1.2 christos /* {
106 1.2 christos syscallarg(const char *) path;
107 1.2 christos syscallarg(struct stat30 *) ub;
108 1.2 christos } */
109 1.2 christos struct stat sb;
110 1.2 christos struct stat30 osb;
111 1.2 christos int error;
112 1.2 christos
113 1.2 christos error = do_sys_stat(SCARG(uap, path), FOLLOW, &sb);
114 1.2 christos if (error)
115 1.2 christos return error;
116 1.2 christos cvtstat(&osb, &sb);
117 1.2 christos error = copyout(&osb, SCARG(uap, ub), sizeof (osb));
118 1.2 christos return error;
119 1.2 christos }
120 1.2 christos
121 1.2 christos
122 1.2 christos /*
123 1.2 christos * Get file status; this version does not follow links.
124 1.2 christos */
125 1.2 christos /* ARGSUSED */
126 1.2 christos int
127 1.2 christos compat_50_sys___lstat30(struct lwp *l, const struct compat_50_sys___lstat30_args *uap, register_t *retval)
128 1.2 christos {
129 1.2 christos /* {
130 1.2 christos syscallarg(const char *) path;
131 1.2 christos syscallarg(struct stat30 *) ub;
132 1.2 christos } */
133 1.2 christos struct stat sb;
134 1.2 christos struct stat30 osb;
135 1.2 christos int error;
136 1.2 christos
137 1.2 christos error = do_sys_stat(SCARG(uap, path), NOFOLLOW, &sb);
138 1.2 christos if (error)
139 1.2 christos return error;
140 1.2 christos cvtstat(&osb, &sb);
141 1.2 christos error = copyout(&osb, SCARG(uap, ub), sizeof (osb));
142 1.2 christos return error;
143 1.2 christos }
144 1.2 christos
145 1.2 christos /*
146 1.2 christos * Return status information about a file descriptor.
147 1.2 christos */
148 1.2 christos /* ARGSUSED */
149 1.2 christos int
150 1.2 christos compat_50_sys___fstat30(struct lwp *l, const struct compat_50_sys___fstat30_args *uap, register_t *retval)
151 1.2 christos {
152 1.2 christos /* {
153 1.2 christos syscallarg(int) fd;
154 1.2 christos syscallarg(struct stat30 *) sb;
155 1.2 christos } */
156 1.2 christos int fd = SCARG(uap, fd);
157 1.2 christos struct file *fp;
158 1.2 christos struct stat sb;
159 1.2 christos struct stat30 osb;
160 1.2 christos int error;
161 1.2 christos
162 1.2 christos if ((fp = fd_getfile(fd)) == NULL)
163 1.2 christos return EBADF;
164 1.2 christos
165 1.2 christos error = (*fp->f_ops->fo_stat)(fp, &sb);
166 1.2 christos fd_putfile(fd);
167 1.2 christos
168 1.2 christos if (error)
169 1.2 christos return error;
170 1.2 christos cvtstat(&osb, &sb);
171 1.2 christos error = copyout(&osb, SCARG(uap, sb), sizeof (osb));
172 1.2 christos return error;
173 1.2 christos }
174 1.2 christos
175 1.2 christos /* ARGSUSED */
176 1.2 christos int
177 1.2 christos compat_50_sys___fhstat40(struct lwp *l, const struct compat_50_sys___fhstat40_args *uap, register_t *retval)
178 1.2 christos {
179 1.2 christos /* {
180 1.2 christos syscallarg(const void *) fhp;
181 1.2 christos syscallarg(size_t) fh_size;
182 1.2 christos syscallarg(struct stat30 *) sb;
183 1.2 christos } */
184 1.2 christos struct stat sb;
185 1.2 christos struct stat30 osb;
186 1.2 christos int error;
187 1.2 christos
188 1.2 christos error = do_fhstat(l, SCARG(uap, fhp), SCARG(uap, fh_size), &sb);
189 1.2 christos if (error)
190 1.2 christos return error;
191 1.2 christos cvtstat(&osb, &sb);
192 1.2 christos error = copyout(&osb, SCARG(uap, sb), sizeof (osb));
193 1.2 christos return error;
194 1.2 christos }
195 1.2 christos
196 1.2 christos static int
197 1.2 christos compat_50_do_sys_utimes(struct lwp *l, struct vnode *vp, const char *path,
198 1.2 christos int flag, const struct timeval50 *tptr)
199 1.2 christos {
200 1.2 christos struct timeval tv[2];
201 1.2 christos struct timeval50 tv50[2];
202 1.2 christos int error = copyin(tptr, tv50, sizeof(tv50));
203 1.2 christos if (error)
204 1.2 christos return error;
205 1.2 christos timeval50_to_timeval(&tv50[0], &tv[0]);
206 1.2 christos timeval50_to_timeval(&tv50[1], &tv[1]);
207 1.2 christos return do_sys_utimes(l, vp, path, flag, tv, UIO_SYSSPACE);
208 1.2 christos }
209 1.2 christos
210 1.2 christos /*
211 1.2 christos * Set the access and modification times given a path name; this
212 1.2 christos * version follows links.
213 1.2 christos */
214 1.2 christos /* ARGSUSED */
215 1.2 christos int
216 1.2 christos compat_50_sys_utimes(struct lwp *l, const struct compat_50_sys_utimes_args *uap,
217 1.2 christos register_t *retval)
218 1.2 christos {
219 1.2 christos /* {
220 1.2 christos syscallarg(const char *) path;
221 1.2 christos syscallarg(const struct timeval50 *) tptr;
222 1.2 christos } */
223 1.2 christos
224 1.2 christos return compat_50_do_sys_utimes(l, NULL, SCARG(uap, path), FOLLOW,
225 1.2 christos SCARG(uap, tptr));
226 1.2 christos }
227 1.2 christos
228 1.2 christos /*
229 1.2 christos * Set the access and modification times given a file descriptor.
230 1.2 christos */
231 1.2 christos /* ARGSUSED */
232 1.2 christos int
233 1.2 christos compat_50_sys_futimes(struct lwp *l,
234 1.2 christos const struct compat_50_sys_futimes_args *uap, register_t *retval)
235 1.2 christos {
236 1.2 christos /* {
237 1.2 christos syscallarg(int) fd;
238 1.2 christos syscallarg(const struct timeval50 *) tptr;
239 1.2 christos } */
240 1.2 christos int error;
241 1.2 christos struct file *fp;
242 1.2 christos
243 1.2 christos /* fd_getvnode() will use the descriptor for us */
244 1.2 christos if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
245 1.2 christos return error;
246 1.2 christos error = compat_50_do_sys_utimes(l, fp->f_data, NULL, 0,
247 1.2 christos SCARG(uap, tptr));
248 1.2 christos fd_putfile(SCARG(uap, fd));
249 1.2 christos return error;
250 1.2 christos }
251 1.2 christos
252 1.2 christos /*
253 1.2 christos * Set the access and modification times given a path name; this
254 1.2 christos * version does not follow links.
255 1.2 christos */
256 1.2 christos int
257 1.2 christos compat_50_sys_lutimes(struct lwp *l,
258 1.2 christos const struct compat_50_sys_lutimes_args *uap, register_t *retval)
259 1.2 christos {
260 1.2 christos /* {
261 1.2 christos syscallarg(const char *) path;
262 1.2 christos syscallarg(const struct timeval50 *) tptr;
263 1.2 christos } */
264 1.2 christos
265 1.2 christos return compat_50_do_sys_utimes(l, NULL, SCARG(uap, path), NOFOLLOW,
266 1.2 christos SCARG(uap, tptr));
267 1.2 christos }
268 1.2 christos
269 1.2 christos int
270 1.2 christos compat_50_sys_lfs_segwait(struct lwp *l,
271 1.2 christos const struct compat_50_sys_lfs_segwait_args *uap, register_t *retval)
272 1.2 christos {
273 1.2 christos /* {
274 1.2 christos syscallarg(fsid_t *) fsidp;
275 1.2 christos syscallarg(struct timeval50 *) tv;
276 1.2 christos } */
277 1.2 christos #ifdef notyet
278 1.2 christos struct timeval atv;
279 1.2 christos struct timeval50 atv50;
280 1.2 christos fsid_t fsid;
281 1.2 christos int error;
282 1.2 christos
283 1.2 christos /* XXX need we be su to segwait? */
284 1.2 christos if ((error = kauth_authorize_generic(l->l_cred, KAUTH_GENERIC_ISSUSER,
285 1.2 christos NULL)) != 0)
286 1.2 christos return (error);
287 1.2 christos if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
288 1.2 christos return (error);
289 1.2 christos
290 1.2 christos if (SCARG(uap, tv)) {
291 1.2 christos error = copyin(SCARG(uap, tv), &atv50, sizeof(atv50));
292 1.2 christos if (error)
293 1.2 christos return (error);
294 1.2 christos timeval50_to_timeval(&atv50, &atv);
295 1.2 christos if (itimerfix(&atv))
296 1.2 christos return (EINVAL);
297 1.2 christos } else /* NULL or invalid */
298 1.2 christos atv.tv_sec = atv.tv_usec = 0;
299 1.2 christos return lfs_segwait(&fsid, &atv);
300 1.2 christos #else
301 1.2 christos return ENOSYS;
302 1.2 christos #endif
303 1.2 christos }
304 1.2 christos
305 1.2 christos int
306 1.2 christos compat_50_sys_mknod(struct lwp *l,
307 1.2 christos const struct compat_50_sys_mknod_args *uap, register_t *retval)
308 1.2 christos {
309 1.2 christos /* {
310 1.2 christos syscallarg(const char *) path;
311 1.2 christos syscallarg(mode_t) mode;
312 1.2 christos syscallarg(uint32_t) dev;
313 1.2 christos } */
314 1.2 christos return do_sys_mknod(l, SCARG(uap, path), SCARG(uap, mode),
315 1.2 christos SCARG(uap, dev), retval);
316 1.2 christos }
317