]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/fcntl.c | |
3 | * | |
4 | * Copyright (C) 1991, 1992 Linus Torvalds | |
5 | */ | |
6 | ||
7 | #include <linux/syscalls.h> | |
8 | #include <linux/init.h> | |
9 | #include <linux/mm.h> | |
29930025 | 10 | #include <linux/sched/task.h> |
1da177e4 LT |
11 | #include <linux/fs.h> |
12 | #include <linux/file.h> | |
9f3acc31 | 13 | #include <linux/fdtable.h> |
16f7e0fe | 14 | #include <linux/capability.h> |
1da177e4 | 15 | #include <linux/dnotify.h> |
1da177e4 LT |
16 | #include <linux/slab.h> |
17 | #include <linux/module.h> | |
35f3d14d | 18 | #include <linux/pipe_fs_i.h> |
1da177e4 LT |
19 | #include <linux/security.h> |
20 | #include <linux/ptrace.h> | |
7ed20e1a | 21 | #include <linux/signal.h> |
ab2af1f5 | 22 | #include <linux/rcupdate.h> |
b488893a | 23 | #include <linux/pid_namespace.h> |
1d151c33 | 24 | #include <linux/user_namespace.h> |
40e041a2 | 25 | #include <linux/shmem_fs.h> |
80f0cce6 | 26 | #include <linux/compat.h> |
1da177e4 LT |
27 | |
28 | #include <asm/poll.h> | |
29 | #include <asm/siginfo.h> | |
7c0f6ba6 | 30 | #include <linux/uaccess.h> |
1da177e4 | 31 | |
76398425 | 32 | #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME) |
1da177e4 LT |
33 | |
34 | static int setfl(int fd, struct file * filp, unsigned long arg) | |
35 | { | |
496ad9aa | 36 | struct inode * inode = file_inode(filp); |
1da177e4 LT |
37 | int error = 0; |
38 | ||
7d95c8f2 | 39 | /* |
40 | * O_APPEND cannot be cleared if the file is marked as append-only | |
41 | * and the file is open for write. | |
42 | */ | |
43 | if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode)) | |
1da177e4 LT |
44 | return -EPERM; |
45 | ||
46 | /* O_NOATIME can only be set by the owner or superuser */ | |
47 | if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME)) | |
2e149670 | 48 | if (!inode_owner_or_capable(inode)) |
1da177e4 LT |
49 | return -EPERM; |
50 | ||
51 | /* required for strict SunOS emulation */ | |
52 | if (O_NONBLOCK != O_NDELAY) | |
53 | if (arg & O_NDELAY) | |
54 | arg |= O_NONBLOCK; | |
55 | ||
0dbf5f20 | 56 | /* Pipe packetized mode is controlled by O_DIRECT flag */ |
45063097 | 57 | if (!S_ISFIFO(inode->i_mode) && (arg & O_DIRECT)) { |
1da177e4 LT |
58 | if (!filp->f_mapping || !filp->f_mapping->a_ops || |
59 | !filp->f_mapping->a_ops->direct_IO) | |
60 | return -EINVAL; | |
61 | } | |
62 | ||
72c2d531 | 63 | if (filp->f_op->check_flags) |
1da177e4 LT |
64 | error = filp->f_op->check_flags(arg); |
65 | if (error) | |
66 | return error; | |
67 | ||
218d11a8 | 68 | /* |
76398425 | 69 | * ->fasync() is responsible for setting the FASYNC bit. |
218d11a8 | 70 | */ |
72c2d531 | 71 | if (((arg ^ filp->f_flags) & FASYNC) && filp->f_op->fasync) { |
76398425 JC |
72 | error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0); |
73 | if (error < 0) | |
74 | goto out; | |
60aa4924 JC |
75 | if (error > 0) |
76 | error = 0; | |
1da177e4 | 77 | } |
db1dd4d3 | 78 | spin_lock(&filp->f_lock); |
1da177e4 | 79 | filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK); |
db1dd4d3 | 80 | spin_unlock(&filp->f_lock); |
76398425 | 81 | |
1da177e4 | 82 | out: |
1da177e4 LT |
83 | return error; |
84 | } | |
85 | ||
609d7fa9 | 86 | static void f_modown(struct file *filp, struct pid *pid, enum pid_type type, |
2f38d70f | 87 | int force) |
1da177e4 | 88 | { |
80e1e823 | 89 | write_lock_irq(&filp->f_owner.lock); |
1da177e4 | 90 | if (force || !filp->f_owner.pid) { |
609d7fa9 EB |
91 | put_pid(filp->f_owner.pid); |
92 | filp->f_owner.pid = get_pid(pid); | |
93 | filp->f_owner.pid_type = type; | |
2f38d70f ON |
94 | |
95 | if (pid) { | |
96 | const struct cred *cred = current_cred(); | |
97 | filp->f_owner.uid = cred->uid; | |
98 | filp->f_owner.euid = cred->euid; | |
99 | } | |
1da177e4 | 100 | } |
80e1e823 | 101 | write_unlock_irq(&filp->f_owner.lock); |
1da177e4 LT |
102 | } |
103 | ||
e0b93edd | 104 | void __f_setown(struct file *filp, struct pid *pid, enum pid_type type, |
609d7fa9 | 105 | int force) |
1da177e4 | 106 | { |
e0b93edd | 107 | security_file_set_fowner(filp); |
2f38d70f | 108 | f_modown(filp, pid, type, force); |
1da177e4 | 109 | } |
609d7fa9 | 110 | EXPORT_SYMBOL(__f_setown); |
1da177e4 | 111 | |
393cc3f5 | 112 | int f_setown(struct file *filp, unsigned long arg, int force) |
609d7fa9 EB |
113 | { |
114 | enum pid_type type; | |
f7312735 JL |
115 | struct pid *pid = NULL; |
116 | int who = arg, ret = 0; | |
117 | ||
609d7fa9 EB |
118 | type = PIDTYPE_PID; |
119 | if (who < 0) { | |
fc3dc674 JS |
120 | /* avoid overflow below */ |
121 | if (who == INT_MIN) | |
122 | return -EINVAL; | |
123 | ||
609d7fa9 EB |
124 | type = PIDTYPE_PGID; |
125 | who = -who; | |
126 | } | |
f7312735 | 127 | |
609d7fa9 | 128 | rcu_read_lock(); |
f7312735 JL |
129 | if (who) { |
130 | pid = find_vpid(who); | |
131 | if (!pid) | |
132 | ret = -ESRCH; | |
133 | } | |
134 | ||
135 | if (!ret) | |
136 | __f_setown(filp, pid, type, force); | |
609d7fa9 | 137 | rcu_read_unlock(); |
393cc3f5 | 138 | |
f7312735 | 139 | return ret; |
609d7fa9 | 140 | } |
1da177e4 LT |
141 | EXPORT_SYMBOL(f_setown); |
142 | ||
143 | void f_delown(struct file *filp) | |
144 | { | |
2f38d70f | 145 | f_modown(filp, NULL, PIDTYPE_PID, 1); |
609d7fa9 EB |
146 | } |
147 | ||
148 | pid_t f_getown(struct file *filp) | |
149 | { | |
150 | pid_t pid; | |
43fa1adb | 151 | read_lock(&filp->f_owner.lock); |
6c5f3e7b | 152 | pid = pid_vnr(filp->f_owner.pid); |
609d7fa9 EB |
153 | if (filp->f_owner.pid_type == PIDTYPE_PGID) |
154 | pid = -pid; | |
43fa1adb | 155 | read_unlock(&filp->f_owner.lock); |
609d7fa9 | 156 | return pid; |
1da177e4 LT |
157 | } |
158 | ||
ba0a6c9f PZ |
159 | static int f_setown_ex(struct file *filp, unsigned long arg) |
160 | { | |
63784dd0 | 161 | struct f_owner_ex __user *owner_p = (void __user *)arg; |
ba0a6c9f PZ |
162 | struct f_owner_ex owner; |
163 | struct pid *pid; | |
164 | int type; | |
165 | int ret; | |
166 | ||
167 | ret = copy_from_user(&owner, owner_p, sizeof(owner)); | |
168 | if (ret) | |
5b54470d | 169 | return -EFAULT; |
ba0a6c9f PZ |
170 | |
171 | switch (owner.type) { | |
172 | case F_OWNER_TID: | |
173 | type = PIDTYPE_MAX; | |
174 | break; | |
175 | ||
176 | case F_OWNER_PID: | |
177 | type = PIDTYPE_PID; | |
178 | break; | |
179 | ||
978b4053 | 180 | case F_OWNER_PGRP: |
ba0a6c9f PZ |
181 | type = PIDTYPE_PGID; |
182 | break; | |
183 | ||
184 | default: | |
185 | return -EINVAL; | |
186 | } | |
187 | ||
188 | rcu_read_lock(); | |
189 | pid = find_vpid(owner.pid); | |
190 | if (owner.pid && !pid) | |
191 | ret = -ESRCH; | |
192 | else | |
e0b93edd | 193 | __f_setown(filp, pid, type, 1); |
ba0a6c9f PZ |
194 | rcu_read_unlock(); |
195 | ||
196 | return ret; | |
197 | } | |
198 | ||
199 | static int f_getown_ex(struct file *filp, unsigned long arg) | |
200 | { | |
63784dd0 | 201 | struct f_owner_ex __user *owner_p = (void __user *)arg; |
ba0a6c9f PZ |
202 | struct f_owner_ex owner; |
203 | int ret = 0; | |
204 | ||
205 | read_lock(&filp->f_owner.lock); | |
206 | owner.pid = pid_vnr(filp->f_owner.pid); | |
207 | switch (filp->f_owner.pid_type) { | |
208 | case PIDTYPE_MAX: | |
209 | owner.type = F_OWNER_TID; | |
210 | break; | |
211 | ||
212 | case PIDTYPE_PID: | |
213 | owner.type = F_OWNER_PID; | |
214 | break; | |
215 | ||
216 | case PIDTYPE_PGID: | |
978b4053 | 217 | owner.type = F_OWNER_PGRP; |
ba0a6c9f PZ |
218 | break; |
219 | ||
220 | default: | |
221 | WARN_ON(1); | |
222 | ret = -EINVAL; | |
223 | break; | |
224 | } | |
225 | read_unlock(&filp->f_owner.lock); | |
226 | ||
5b54470d | 227 | if (!ret) { |
ba0a6c9f | 228 | ret = copy_to_user(owner_p, &owner, sizeof(owner)); |
5b54470d DC |
229 | if (ret) |
230 | ret = -EFAULT; | |
231 | } | |
ba0a6c9f PZ |
232 | return ret; |
233 | } | |
234 | ||
1d151c33 CG |
235 | #ifdef CONFIG_CHECKPOINT_RESTORE |
236 | static int f_getowner_uids(struct file *filp, unsigned long arg) | |
237 | { | |
238 | struct user_namespace *user_ns = current_user_ns(); | |
63784dd0 | 239 | uid_t __user *dst = (void __user *)arg; |
1d151c33 CG |
240 | uid_t src[2]; |
241 | int err; | |
242 | ||
243 | read_lock(&filp->f_owner.lock); | |
244 | src[0] = from_kuid(user_ns, filp->f_owner.uid); | |
245 | src[1] = from_kuid(user_ns, filp->f_owner.euid); | |
246 | read_unlock(&filp->f_owner.lock); | |
247 | ||
248 | err = put_user(src[0], &dst[0]); | |
249 | err |= put_user(src[1], &dst[1]); | |
250 | ||
251 | return err; | |
252 | } | |
253 | #else | |
254 | static int f_getowner_uids(struct file *filp, unsigned long arg) | |
255 | { | |
256 | return -EINVAL; | |
257 | } | |
258 | #endif | |
259 | ||
c75b1d94 JA |
260 | static bool rw_hint_valid(enum rw_hint hint) |
261 | { | |
262 | switch (hint) { | |
263 | case RWF_WRITE_LIFE_NOT_SET: | |
264 | case RWH_WRITE_LIFE_NONE: | |
265 | case RWH_WRITE_LIFE_SHORT: | |
266 | case RWH_WRITE_LIFE_MEDIUM: | |
267 | case RWH_WRITE_LIFE_LONG: | |
268 | case RWH_WRITE_LIFE_EXTREME: | |
269 | return true; | |
270 | default: | |
271 | return false; | |
272 | } | |
273 | } | |
274 | ||
275 | static long fcntl_rw_hint(struct file *file, unsigned int cmd, | |
276 | unsigned long arg) | |
277 | { | |
278 | struct inode *inode = file_inode(file); | |
279 | u64 *argp = (u64 __user *)arg; | |
280 | enum rw_hint hint; | |
5657cb07 | 281 | u64 h; |
c75b1d94 JA |
282 | |
283 | switch (cmd) { | |
284 | case F_GET_FILE_RW_HINT: | |
5657cb07 JA |
285 | h = file_write_hint(file); |
286 | if (copy_to_user(argp, &h, sizeof(*argp))) | |
c75b1d94 JA |
287 | return -EFAULT; |
288 | return 0; | |
289 | case F_SET_FILE_RW_HINT: | |
5657cb07 | 290 | if (copy_from_user(&h, argp, sizeof(h))) |
c75b1d94 | 291 | return -EFAULT; |
5657cb07 | 292 | hint = (enum rw_hint) h; |
c75b1d94 JA |
293 | if (!rw_hint_valid(hint)) |
294 | return -EINVAL; | |
295 | ||
296 | spin_lock(&file->f_lock); | |
297 | file->f_write_hint = hint; | |
298 | spin_unlock(&file->f_lock); | |
299 | return 0; | |
300 | case F_GET_RW_HINT: | |
5657cb07 JA |
301 | h = inode->i_write_hint; |
302 | if (copy_to_user(argp, &h, sizeof(*argp))) | |
c75b1d94 JA |
303 | return -EFAULT; |
304 | return 0; | |
305 | case F_SET_RW_HINT: | |
5657cb07 | 306 | if (copy_from_user(&h, argp, sizeof(h))) |
c75b1d94 | 307 | return -EFAULT; |
5657cb07 | 308 | hint = (enum rw_hint) h; |
c75b1d94 JA |
309 | if (!rw_hint_valid(hint)) |
310 | return -EINVAL; | |
311 | ||
312 | inode_lock(inode); | |
313 | inode->i_write_hint = hint; | |
314 | inode_unlock(inode); | |
315 | return 0; | |
316 | default: | |
317 | return -EINVAL; | |
318 | } | |
319 | } | |
320 | ||
1da177e4 LT |
321 | static long do_fcntl(int fd, unsigned int cmd, unsigned long arg, |
322 | struct file *filp) | |
323 | { | |
a75d30c7 CH |
324 | void __user *argp = (void __user *)arg; |
325 | struct flock flock; | |
1da177e4 LT |
326 | long err = -EINVAL; |
327 | ||
328 | switch (cmd) { | |
329 | case F_DUPFD: | |
fe17f22d AV |
330 | err = f_dupfd(arg, filp, 0); |
331 | break; | |
22d2b35b | 332 | case F_DUPFD_CLOEXEC: |
12197718 | 333 | err = f_dupfd(arg, filp, O_CLOEXEC); |
1da177e4 LT |
334 | break; |
335 | case F_GETFD: | |
336 | err = get_close_on_exec(fd) ? FD_CLOEXEC : 0; | |
337 | break; | |
338 | case F_SETFD: | |
339 | err = 0; | |
340 | set_close_on_exec(fd, arg & FD_CLOEXEC); | |
341 | break; | |
342 | case F_GETFL: | |
343 | err = filp->f_flags; | |
344 | break; | |
345 | case F_SETFL: | |
346 | err = setfl(fd, filp, arg); | |
347 | break; | |
5d50ffd7 JL |
348 | #if BITS_PER_LONG != 32 |
349 | /* 32-bit arches must use fcntl64() */ | |
0d3f7a2d | 350 | case F_OFD_GETLK: |
5d50ffd7 | 351 | #endif |
1da177e4 | 352 | case F_GETLK: |
a75d30c7 CH |
353 | if (copy_from_user(&flock, argp, sizeof(flock))) |
354 | return -EFAULT; | |
355 | err = fcntl_getlk(filp, cmd, &flock); | |
356 | if (!err && copy_to_user(argp, &flock, sizeof(flock))) | |
357 | return -EFAULT; | |
1da177e4 | 358 | break; |
5d50ffd7 JL |
359 | #if BITS_PER_LONG != 32 |
360 | /* 32-bit arches must use fcntl64() */ | |
0d3f7a2d JL |
361 | case F_OFD_SETLK: |
362 | case F_OFD_SETLKW: | |
5d50ffd7 JL |
363 | #endif |
364 | /* Fallthrough */ | |
1da177e4 LT |
365 | case F_SETLK: |
366 | case F_SETLKW: | |
a75d30c7 CH |
367 | if (copy_from_user(&flock, argp, sizeof(flock))) |
368 | return -EFAULT; | |
369 | err = fcntl_setlk(fd, filp, cmd, &flock); | |
1da177e4 LT |
370 | break; |
371 | case F_GETOWN: | |
372 | /* | |
373 | * XXX If f_owner is a process group, the | |
374 | * negative return value will get converted | |
375 | * into an error. Oops. If we keep the | |
376 | * current syscall conventions, the only way | |
377 | * to fix this will be in libc. | |
378 | */ | |
609d7fa9 | 379 | err = f_getown(filp); |
1da177e4 LT |
380 | force_successful_syscall_return(); |
381 | break; | |
382 | case F_SETOWN: | |
393cc3f5 | 383 | err = f_setown(filp, arg, 1); |
1da177e4 | 384 | break; |
ba0a6c9f PZ |
385 | case F_GETOWN_EX: |
386 | err = f_getown_ex(filp, arg); | |
387 | break; | |
388 | case F_SETOWN_EX: | |
389 | err = f_setown_ex(filp, arg); | |
390 | break; | |
1d151c33 CG |
391 | case F_GETOWNER_UIDS: |
392 | err = f_getowner_uids(filp, arg); | |
393 | break; | |
1da177e4 LT |
394 | case F_GETSIG: |
395 | err = filp->f_owner.signum; | |
396 | break; | |
397 | case F_SETSIG: | |
398 | /* arg == 0 restores default behaviour. */ | |
7ed20e1a | 399 | if (!valid_signal(arg)) { |
1da177e4 LT |
400 | break; |
401 | } | |
402 | err = 0; | |
403 | filp->f_owner.signum = arg; | |
404 | break; | |
405 | case F_GETLEASE: | |
406 | err = fcntl_getlease(filp); | |
407 | break; | |
408 | case F_SETLEASE: | |
409 | err = fcntl_setlease(fd, filp, arg); | |
410 | break; | |
411 | case F_NOTIFY: | |
412 | err = fcntl_dirnotify(fd, filp, arg); | |
413 | break; | |
35f3d14d JA |
414 | case F_SETPIPE_SZ: |
415 | case F_GETPIPE_SZ: | |
416 | err = pipe_fcntl(filp, cmd, arg); | |
417 | break; | |
40e041a2 DR |
418 | case F_ADD_SEALS: |
419 | case F_GET_SEALS: | |
420 | err = shmem_fcntl(filp, cmd, arg); | |
421 | break; | |
c75b1d94 JA |
422 | case F_GET_RW_HINT: |
423 | case F_SET_RW_HINT: | |
424 | case F_GET_FILE_RW_HINT: | |
425 | case F_SET_FILE_RW_HINT: | |
426 | err = fcntl_rw_hint(filp, cmd, arg); | |
427 | break; | |
1da177e4 LT |
428 | default: |
429 | break; | |
430 | } | |
431 | return err; | |
432 | } | |
433 | ||
1abf0c71 AV |
434 | static int check_fcntl_cmd(unsigned cmd) |
435 | { | |
436 | switch (cmd) { | |
437 | case F_DUPFD: | |
438 | case F_DUPFD_CLOEXEC: | |
439 | case F_GETFD: | |
440 | case F_SETFD: | |
441 | case F_GETFL: | |
442 | return 1; | |
443 | } | |
444 | return 0; | |
445 | } | |
446 | ||
a26eab24 | 447 | SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) |
1da177e4 | 448 | { |
2903ff01 | 449 | struct fd f = fdget_raw(fd); |
1da177e4 LT |
450 | long err = -EBADF; |
451 | ||
2903ff01 | 452 | if (!f.file) |
1da177e4 LT |
453 | goto out; |
454 | ||
2903ff01 | 455 | if (unlikely(f.file->f_mode & FMODE_PATH)) { |
545ec2c7 AV |
456 | if (!check_fcntl_cmd(cmd)) |
457 | goto out1; | |
1abf0c71 AV |
458 | } |
459 | ||
2903ff01 | 460 | err = security_file_fcntl(f.file, cmd, arg); |
545ec2c7 | 461 | if (!err) |
2903ff01 | 462 | err = do_fcntl(fd, cmd, arg, f.file); |
1da177e4 | 463 | |
545ec2c7 | 464 | out1: |
2903ff01 | 465 | fdput(f); |
1da177e4 LT |
466 | out: |
467 | return err; | |
468 | } | |
469 | ||
470 | #if BITS_PER_LONG == 32 | |
a26eab24 HC |
471 | SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, |
472 | unsigned long, arg) | |
1da177e4 | 473 | { |
a75d30c7 | 474 | void __user *argp = (void __user *)arg; |
2903ff01 | 475 | struct fd f = fdget_raw(fd); |
a75d30c7 | 476 | struct flock64 flock; |
545ec2c7 | 477 | long err = -EBADF; |
1da177e4 | 478 | |
2903ff01 | 479 | if (!f.file) |
1da177e4 LT |
480 | goto out; |
481 | ||
2903ff01 | 482 | if (unlikely(f.file->f_mode & FMODE_PATH)) { |
545ec2c7 AV |
483 | if (!check_fcntl_cmd(cmd)) |
484 | goto out1; | |
1abf0c71 AV |
485 | } |
486 | ||
2903ff01 | 487 | err = security_file_fcntl(f.file, cmd, arg); |
545ec2c7 AV |
488 | if (err) |
489 | goto out1; | |
1da177e4 LT |
490 | |
491 | switch (cmd) { | |
5d50ffd7 | 492 | case F_GETLK64: |
0d3f7a2d | 493 | case F_OFD_GETLK: |
a75d30c7 CH |
494 | err = -EFAULT; |
495 | if (copy_from_user(&flock, argp, sizeof(flock))) | |
496 | break; | |
497 | err = fcntl_getlk64(f.file, cmd, &flock); | |
498 | if (!err && copy_to_user(argp, &flock, sizeof(flock))) | |
499 | err = -EFAULT; | |
5d50ffd7 JL |
500 | break; |
501 | case F_SETLK64: | |
502 | case F_SETLKW64: | |
0d3f7a2d JL |
503 | case F_OFD_SETLK: |
504 | case F_OFD_SETLKW: | |
a75d30c7 CH |
505 | err = -EFAULT; |
506 | if (copy_from_user(&flock, argp, sizeof(flock))) | |
507 | break; | |
508 | err = fcntl_setlk64(fd, f.file, cmd, &flock); | |
5d50ffd7 JL |
509 | break; |
510 | default: | |
511 | err = do_fcntl(fd, cmd, arg, f.file); | |
512 | break; | |
1da177e4 | 513 | } |
545ec2c7 | 514 | out1: |
2903ff01 | 515 | fdput(f); |
1da177e4 LT |
516 | out: |
517 | return err; | |
518 | } | |
519 | #endif | |
520 | ||
80f0cce6 | 521 | #ifdef CONFIG_COMPAT |
8c6657cb | 522 | /* careful - don't use anywhere else */ |
b59eea55 LT |
523 | #define copy_flock_fields(dst, src) \ |
524 | (dst)->l_type = (src)->l_type; \ | |
525 | (dst)->l_whence = (src)->l_whence; \ | |
526 | (dst)->l_start = (src)->l_start; \ | |
527 | (dst)->l_len = (src)->l_len; \ | |
528 | (dst)->l_pid = (src)->l_pid; | |
529 | ||
530 | static int get_compat_flock(struct flock *kfl, const struct compat_flock __user *ufl) | |
80f0cce6 | 531 | { |
8c6657cb AV |
532 | struct compat_flock fl; |
533 | ||
534 | if (copy_from_user(&fl, ufl, sizeof(struct compat_flock))) | |
80f0cce6 | 535 | return -EFAULT; |
b59eea55 | 536 | copy_flock_fields(kfl, &fl); |
80f0cce6 AV |
537 | return 0; |
538 | } | |
539 | ||
b59eea55 | 540 | static int get_compat_flock64(struct flock *kfl, const struct compat_flock64 __user *ufl) |
80f0cce6 | 541 | { |
8c6657cb AV |
542 | struct compat_flock64 fl; |
543 | ||
544 | if (copy_from_user(&fl, ufl, sizeof(struct compat_flock64))) | |
80f0cce6 | 545 | return -EFAULT; |
b59eea55 | 546 | copy_flock_fields(kfl, &fl); |
80f0cce6 AV |
547 | return 0; |
548 | } | |
549 | ||
b59eea55 | 550 | static int put_compat_flock(const struct flock *kfl, struct compat_flock __user *ufl) |
80f0cce6 | 551 | { |
8c6657cb AV |
552 | struct compat_flock fl; |
553 | ||
554 | memset(&fl, 0, sizeof(struct compat_flock)); | |
b59eea55 | 555 | copy_flock_fields(&fl, kfl); |
8c6657cb | 556 | if (copy_to_user(ufl, &fl, sizeof(struct compat_flock))) |
80f0cce6 AV |
557 | return -EFAULT; |
558 | return 0; | |
559 | } | |
80f0cce6 | 560 | |
b59eea55 | 561 | static int put_compat_flock64(const struct flock *kfl, struct compat_flock64 __user *ufl) |
80f0cce6 | 562 | { |
8c6657cb AV |
563 | struct compat_flock64 fl; |
564 | ||
565 | memset(&fl, 0, sizeof(struct compat_flock64)); | |
b59eea55 | 566 | copy_flock_fields(&fl, kfl); |
8c6657cb | 567 | if (copy_to_user(ufl, &fl, sizeof(struct compat_flock64))) |
80f0cce6 AV |
568 | return -EFAULT; |
569 | return 0; | |
570 | } | |
8c6657cb | 571 | #undef copy_flock_fields |
80f0cce6 AV |
572 | |
573 | static unsigned int | |
574 | convert_fcntl_cmd(unsigned int cmd) | |
575 | { | |
576 | switch (cmd) { | |
577 | case F_GETLK64: | |
578 | return F_GETLK; | |
579 | case F_SETLK64: | |
580 | return F_SETLK; | |
581 | case F_SETLKW64: | |
582 | return F_SETLKW; | |
583 | } | |
584 | ||
585 | return cmd; | |
586 | } | |
587 | ||
94073ad7 CH |
588 | /* |
589 | * GETLK was successful and we need to return the data, but it needs to fit in | |
590 | * the compat structure. | |
591 | * l_start shouldn't be too big, unless the original start + end is greater than | |
592 | * COMPAT_OFF_T_MAX, in which case the app was asking for trouble, so we return | |
593 | * -EOVERFLOW in that case. l_len could be too big, in which case we just | |
594 | * truncate it, and only allow the app to see that part of the conflicting lock | |
595 | * that might make sense to it anyway | |
596 | */ | |
597 | static int fixup_compat_flock(struct flock *flock) | |
598 | { | |
599 | if (flock->l_start > COMPAT_OFF_T_MAX) | |
600 | return -EOVERFLOW; | |
601 | if (flock->l_len > COMPAT_OFF_T_MAX) | |
602 | flock->l_len = COMPAT_OFF_T_MAX; | |
603 | return 0; | |
604 | } | |
605 | ||
80f0cce6 AV |
606 | COMPAT_SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, |
607 | compat_ulong_t, arg) | |
608 | { | |
94073ad7 CH |
609 | struct fd f = fdget_raw(fd); |
610 | struct flock flock; | |
611 | long err = -EBADF; | |
612 | ||
613 | if (!f.file) | |
614 | return err; | |
615 | ||
616 | if (unlikely(f.file->f_mode & FMODE_PATH)) { | |
617 | if (!check_fcntl_cmd(cmd)) | |
618 | goto out_put; | |
619 | } | |
620 | ||
621 | err = security_file_fcntl(f.file, cmd, arg); | |
622 | if (err) | |
623 | goto out_put; | |
80f0cce6 AV |
624 | |
625 | switch (cmd) { | |
626 | case F_GETLK: | |
94073ad7 CH |
627 | err = get_compat_flock(&flock, compat_ptr(arg)); |
628 | if (err) | |
629 | break; | |
630 | err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock); | |
631 | if (err) | |
632 | break; | |
633 | err = fixup_compat_flock(&flock); | |
634 | if (err) | |
635 | return err; | |
636 | err = put_compat_flock(&flock, compat_ptr(arg)); | |
637 | break; | |
638 | case F_GETLK64: | |
639 | case F_OFD_GETLK: | |
640 | err = get_compat_flock64(&flock, compat_ptr(arg)); | |
641 | if (err) | |
642 | break; | |
643 | err = fcntl_getlk(f.file, convert_fcntl_cmd(cmd), &flock); | |
644 | if (err) | |
645 | break; | |
646 | err = fixup_compat_flock(&flock); | |
647 | if (err) | |
648 | return err; | |
649 | err = put_compat_flock64(&flock, compat_ptr(arg)); | |
650 | break; | |
80f0cce6 AV |
651 | case F_SETLK: |
652 | case F_SETLKW: | |
94073ad7 CH |
653 | err = get_compat_flock(&flock, compat_ptr(arg)); |
654 | if (err) | |
80f0cce6 | 655 | break; |
94073ad7 | 656 | err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock); |
80f0cce6 | 657 | break; |
80f0cce6 AV |
658 | case F_SETLK64: |
659 | case F_SETLKW64: | |
80f0cce6 AV |
660 | case F_OFD_SETLK: |
661 | case F_OFD_SETLKW: | |
94073ad7 CH |
662 | err = get_compat_flock64(&flock, compat_ptr(arg)); |
663 | if (err) | |
80f0cce6 | 664 | break; |
94073ad7 | 665 | err = fcntl_setlk(fd, f.file, convert_fcntl_cmd(cmd), &flock); |
80f0cce6 | 666 | break; |
80f0cce6 | 667 | default: |
94073ad7 | 668 | err = do_fcntl(fd, cmd, arg, f.file); |
80f0cce6 AV |
669 | break; |
670 | } | |
94073ad7 CH |
671 | out_put: |
672 | fdput(f); | |
673 | return err; | |
80f0cce6 AV |
674 | } |
675 | ||
676 | COMPAT_SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, | |
677 | compat_ulong_t, arg) | |
678 | { | |
679 | switch (cmd) { | |
680 | case F_GETLK64: | |
681 | case F_SETLK64: | |
682 | case F_SETLKW64: | |
683 | case F_OFD_GETLK: | |
684 | case F_OFD_SETLK: | |
685 | case F_OFD_SETLKW: | |
686 | return -EINVAL; | |
687 | } | |
688 | return compat_sys_fcntl64(fd, cmd, arg); | |
689 | } | |
690 | #endif | |
691 | ||
1da177e4 LT |
692 | /* Table to convert sigio signal codes into poll band bitmaps */ |
693 | ||
fa3536cc | 694 | static const long band_table[NSIGPOLL] = { |
1da177e4 LT |
695 | POLLIN | POLLRDNORM, /* POLL_IN */ |
696 | POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */ | |
697 | POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */ | |
698 | POLLERR, /* POLL_ERR */ | |
699 | POLLPRI | POLLRDBAND, /* POLL_PRI */ | |
700 | POLLHUP | POLLERR /* POLL_HUP */ | |
701 | }; | |
702 | ||
703 | static inline int sigio_perm(struct task_struct *p, | |
704 | struct fown_struct *fown, int sig) | |
705 | { | |
c69e8d9c DH |
706 | const struct cred *cred; |
707 | int ret; | |
708 | ||
709 | rcu_read_lock(); | |
710 | cred = __task_cred(p); | |
8e96e3b7 EB |
711 | ret = ((uid_eq(fown->euid, GLOBAL_ROOT_UID) || |
712 | uid_eq(fown->euid, cred->suid) || uid_eq(fown->euid, cred->uid) || | |
713 | uid_eq(fown->uid, cred->suid) || uid_eq(fown->uid, cred->uid)) && | |
c69e8d9c DH |
714 | !security_file_send_sigiotask(p, fown, sig)); |
715 | rcu_read_unlock(); | |
716 | return ret; | |
1da177e4 LT |
717 | } |
718 | ||
719 | static void send_sigio_to_task(struct task_struct *p, | |
8eeee4e2 | 720 | struct fown_struct *fown, |
ba0a6c9f | 721 | int fd, int reason, int group) |
1da177e4 | 722 | { |
8eeee4e2 ON |
723 | /* |
724 | * F_SETSIG can change ->signum lockless in parallel, make | |
725 | * sure we read it once and use the same value throughout. | |
726 | */ | |
727 | int signum = ACCESS_ONCE(fown->signum); | |
728 | ||
729 | if (!sigio_perm(p, fown, signum)) | |
1da177e4 LT |
730 | return; |
731 | ||
8eeee4e2 | 732 | switch (signum) { |
1da177e4 LT |
733 | siginfo_t si; |
734 | default: | |
735 | /* Queue a rt signal with the appropriate fd as its | |
736 | value. We use SI_SIGIO as the source, not | |
737 | SI_KERNEL, since kernel signals always get | |
738 | delivered even if we can't queue. Failure to | |
739 | queue in this case _should_ be reported; we fall | |
740 | back to SIGIO in that case. --sct */ | |
8eeee4e2 | 741 | si.si_signo = signum; |
1da177e4 LT |
742 | si.si_errno = 0; |
743 | si.si_code = reason; | |
d08477aa EB |
744 | /* |
745 | * Posix definies POLL_IN and friends to be signal | |
746 | * specific si_codes for SIG_POLL. Linux extended | |
747 | * these si_codes to other signals in a way that is | |
748 | * ambiguous if other signals also have signal | |
749 | * specific si_codes. In that case use SI_SIGIO instead | |
750 | * to remove the ambiguity. | |
751 | */ | |
54640d23 | 752 | if ((signum != SIGPOLL) && sig_specific_sicodes(signum)) |
d08477aa EB |
753 | si.si_code = SI_SIGIO; |
754 | ||
1da177e4 LT |
755 | /* Make sure we are called with one of the POLL_* |
756 | reasons, otherwise we could leak kernel stack into | |
757 | userspace. */ | |
d08477aa | 758 | BUG_ON((reason < POLL_IN) || ((reason - POLL_IN) >= NSIGPOLL)); |
1da177e4 LT |
759 | if (reason - POLL_IN >= NSIGPOLL) |
760 | si.si_band = ~0L; | |
761 | else | |
762 | si.si_band = band_table[reason - POLL_IN]; | |
763 | si.si_fd = fd; | |
ba0a6c9f | 764 | if (!do_send_sig_info(signum, &si, p, group)) |
1da177e4 LT |
765 | break; |
766 | /* fall-through: fall back on the old plain SIGIO signal */ | |
767 | case 0: | |
ba0a6c9f | 768 | do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, group); |
1da177e4 LT |
769 | } |
770 | } | |
771 | ||
772 | void send_sigio(struct fown_struct *fown, int fd, int band) | |
773 | { | |
774 | struct task_struct *p; | |
609d7fa9 EB |
775 | enum pid_type type; |
776 | struct pid *pid; | |
ba0a6c9f | 777 | int group = 1; |
1da177e4 LT |
778 | |
779 | read_lock(&fown->lock); | |
ba0a6c9f | 780 | |
609d7fa9 | 781 | type = fown->pid_type; |
ba0a6c9f PZ |
782 | if (type == PIDTYPE_MAX) { |
783 | group = 0; | |
784 | type = PIDTYPE_PID; | |
785 | } | |
786 | ||
1da177e4 LT |
787 | pid = fown->pid; |
788 | if (!pid) | |
789 | goto out_unlock_fown; | |
790 | ||
791 | read_lock(&tasklist_lock); | |
609d7fa9 | 792 | do_each_pid_task(pid, type, p) { |
ba0a6c9f | 793 | send_sigio_to_task(p, fown, fd, band, group); |
609d7fa9 | 794 | } while_each_pid_task(pid, type, p); |
1da177e4 LT |
795 | read_unlock(&tasklist_lock); |
796 | out_unlock_fown: | |
797 | read_unlock(&fown->lock); | |
798 | } | |
799 | ||
800 | static void send_sigurg_to_task(struct task_struct *p, | |
ba0a6c9f | 801 | struct fown_struct *fown, int group) |
1da177e4 LT |
802 | { |
803 | if (sigio_perm(p, fown, SIGURG)) | |
ba0a6c9f | 804 | do_send_sig_info(SIGURG, SEND_SIG_PRIV, p, group); |
1da177e4 LT |
805 | } |
806 | ||
807 | int send_sigurg(struct fown_struct *fown) | |
808 | { | |
809 | struct task_struct *p; | |
609d7fa9 EB |
810 | enum pid_type type; |
811 | struct pid *pid; | |
ba0a6c9f | 812 | int group = 1; |
609d7fa9 | 813 | int ret = 0; |
1da177e4 LT |
814 | |
815 | read_lock(&fown->lock); | |
ba0a6c9f | 816 | |
609d7fa9 | 817 | type = fown->pid_type; |
ba0a6c9f PZ |
818 | if (type == PIDTYPE_MAX) { |
819 | group = 0; | |
820 | type = PIDTYPE_PID; | |
821 | } | |
822 | ||
1da177e4 LT |
823 | pid = fown->pid; |
824 | if (!pid) | |
825 | goto out_unlock_fown; | |
826 | ||
827 | ret = 1; | |
828 | ||
829 | read_lock(&tasklist_lock); | |
609d7fa9 | 830 | do_each_pid_task(pid, type, p) { |
ba0a6c9f | 831 | send_sigurg_to_task(p, fown, group); |
609d7fa9 | 832 | } while_each_pid_task(pid, type, p); |
1da177e4 LT |
833 | read_unlock(&tasklist_lock); |
834 | out_unlock_fown: | |
835 | read_unlock(&fown->lock); | |
836 | return ret; | |
837 | } | |
838 | ||
989a2979 | 839 | static DEFINE_SPINLOCK(fasync_lock); |
e18b890b | 840 | static struct kmem_cache *fasync_cache __read_mostly; |
1da177e4 | 841 | |
989a2979 ED |
842 | static void fasync_free_rcu(struct rcu_head *head) |
843 | { | |
844 | kmem_cache_free(fasync_cache, | |
845 | container_of(head, struct fasync_struct, fa_rcu)); | |
846 | } | |
847 | ||
1da177e4 | 848 | /* |
53281b6d LT |
849 | * Remove a fasync entry. If successfully removed, return |
850 | * positive and clear the FASYNC flag. If no entry exists, | |
851 | * do nothing and return 0. | |
852 | * | |
853 | * NOTE! It is very important that the FASYNC flag always | |
854 | * match the state "is the filp on a fasync list". | |
855 | * | |
1da177e4 | 856 | */ |
f7347ce4 | 857 | int fasync_remove_entry(struct file *filp, struct fasync_struct **fapp) |
1da177e4 LT |
858 | { |
859 | struct fasync_struct *fa, **fp; | |
1da177e4 LT |
860 | int result = 0; |
861 | ||
53281b6d | 862 | spin_lock(&filp->f_lock); |
989a2979 | 863 | spin_lock(&fasync_lock); |
53281b6d LT |
864 | for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) { |
865 | if (fa->fa_file != filp) | |
866 | continue; | |
989a2979 ED |
867 | |
868 | spin_lock_irq(&fa->fa_lock); | |
869 | fa->fa_file = NULL; | |
870 | spin_unlock_irq(&fa->fa_lock); | |
871 | ||
53281b6d | 872 | *fp = fa->fa_next; |
989a2979 | 873 | call_rcu(&fa->fa_rcu, fasync_free_rcu); |
53281b6d LT |
874 | filp->f_flags &= ~FASYNC; |
875 | result = 1; | |
876 | break; | |
1da177e4 | 877 | } |
989a2979 | 878 | spin_unlock(&fasync_lock); |
53281b6d LT |
879 | spin_unlock(&filp->f_lock); |
880 | return result; | |
881 | } | |
882 | ||
f7347ce4 LT |
883 | struct fasync_struct *fasync_alloc(void) |
884 | { | |
885 | return kmem_cache_alloc(fasync_cache, GFP_KERNEL); | |
886 | } | |
887 | ||
53281b6d | 888 | /* |
f7347ce4 LT |
889 | * NOTE! This can be used only for unused fasync entries: |
890 | * entries that actually got inserted on the fasync list | |
891 | * need to be released by rcu - see fasync_remove_entry. | |
53281b6d | 892 | */ |
f7347ce4 | 893 | void fasync_free(struct fasync_struct *new) |
53281b6d | 894 | { |
f7347ce4 LT |
895 | kmem_cache_free(fasync_cache, new); |
896 | } | |
53281b6d | 897 | |
f7347ce4 LT |
898 | /* |
899 | * Insert a new entry into the fasync list. Return the pointer to the | |
900 | * old one if we didn't use the new one. | |
55f335a8 LT |
901 | * |
902 | * NOTE! It is very important that the FASYNC flag always | |
903 | * match the state "is the filp on a fasync list". | |
f7347ce4 LT |
904 | */ |
905 | struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, struct fasync_struct *new) | |
906 | { | |
907 | struct fasync_struct *fa, **fp; | |
4a6a4499 | 908 | |
4a6a4499 | 909 | spin_lock(&filp->f_lock); |
989a2979 | 910 | spin_lock(&fasync_lock); |
1da177e4 | 911 | for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) { |
53281b6d LT |
912 | if (fa->fa_file != filp) |
913 | continue; | |
989a2979 ED |
914 | |
915 | spin_lock_irq(&fa->fa_lock); | |
53281b6d | 916 | fa->fa_fd = fd; |
989a2979 | 917 | spin_unlock_irq(&fa->fa_lock); |
53281b6d | 918 | goto out; |
1da177e4 LT |
919 | } |
920 | ||
989a2979 | 921 | spin_lock_init(&new->fa_lock); |
53281b6d LT |
922 | new->magic = FASYNC_MAGIC; |
923 | new->fa_file = filp; | |
924 | new->fa_fd = fd; | |
925 | new->fa_next = *fapp; | |
989a2979 | 926 | rcu_assign_pointer(*fapp, new); |
53281b6d LT |
927 | filp->f_flags |= FASYNC; |
928 | ||
1da177e4 | 929 | out: |
989a2979 | 930 | spin_unlock(&fasync_lock); |
4a6a4499 | 931 | spin_unlock(&filp->f_lock); |
f7347ce4 LT |
932 | return fa; |
933 | } | |
934 | ||
935 | /* | |
936 | * Add a fasync entry. Return negative on error, positive if | |
937 | * added, and zero if did nothing but change an existing one. | |
f7347ce4 LT |
938 | */ |
939 | static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp) | |
940 | { | |
941 | struct fasync_struct *new; | |
942 | ||
943 | new = fasync_alloc(); | |
944 | if (!new) | |
945 | return -ENOMEM; | |
946 | ||
947 | /* | |
948 | * fasync_insert_entry() returns the old (update) entry if | |
949 | * it existed. | |
950 | * | |
951 | * So free the (unused) new entry and return 0 to let the | |
952 | * caller know that we didn't add any new fasync entries. | |
953 | */ | |
954 | if (fasync_insert_entry(fd, filp, fapp, new)) { | |
955 | fasync_free(new); | |
956 | return 0; | |
957 | } | |
958 | ||
959 | return 1; | |
1da177e4 LT |
960 | } |
961 | ||
53281b6d LT |
962 | /* |
963 | * fasync_helper() is used by almost all character device drivers | |
964 | * to set up the fasync queue, and for regular files by the file | |
965 | * lease code. It returns negative on error, 0 if it did no changes | |
966 | * and positive if it added/deleted the entry. | |
967 | */ | |
968 | int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp) | |
969 | { | |
970 | if (!on) | |
971 | return fasync_remove_entry(filp, fapp); | |
972 | return fasync_add_entry(fd, filp, fapp); | |
973 | } | |
974 | ||
1da177e4 LT |
975 | EXPORT_SYMBOL(fasync_helper); |
976 | ||
989a2979 ED |
977 | /* |
978 | * rcu_read_lock() is held | |
979 | */ | |
980 | static void kill_fasync_rcu(struct fasync_struct *fa, int sig, int band) | |
1da177e4 LT |
981 | { |
982 | while (fa) { | |
989a2979 | 983 | struct fown_struct *fown; |
f4985dc7 AM |
984 | unsigned long flags; |
985 | ||
1da177e4 LT |
986 | if (fa->magic != FASYNC_MAGIC) { |
987 | printk(KERN_ERR "kill_fasync: bad magic number in " | |
988 | "fasync_struct!\n"); | |
989 | return; | |
990 | } | |
f4985dc7 | 991 | spin_lock_irqsave(&fa->fa_lock, flags); |
989a2979 ED |
992 | if (fa->fa_file) { |
993 | fown = &fa->fa_file->f_owner; | |
994 | /* Don't send SIGURG to processes which have not set a | |
995 | queued signum: SIGURG has its own default signalling | |
996 | mechanism. */ | |
997 | if (!(sig == SIGURG && fown->signum == 0)) | |
998 | send_sigio(fown, fa->fa_fd, band); | |
999 | } | |
f4985dc7 | 1000 | spin_unlock_irqrestore(&fa->fa_lock, flags); |
989a2979 | 1001 | fa = rcu_dereference(fa->fa_next); |
1da177e4 LT |
1002 | } |
1003 | } | |
1004 | ||
1da177e4 LT |
1005 | void kill_fasync(struct fasync_struct **fp, int sig, int band) |
1006 | { | |
1007 | /* First a quick test without locking: usually | |
1008 | * the list is empty. | |
1009 | */ | |
1010 | if (*fp) { | |
989a2979 ED |
1011 | rcu_read_lock(); |
1012 | kill_fasync_rcu(rcu_dereference(*fp), sig, band); | |
1013 | rcu_read_unlock(); | |
1da177e4 LT |
1014 | } |
1015 | } | |
1016 | EXPORT_SYMBOL(kill_fasync); | |
1017 | ||
454eedb8 | 1018 | static int __init fcntl_init(void) |
1da177e4 | 1019 | { |
3ab04d5c JB |
1020 | /* |
1021 | * Please add new bits here to ensure allocation uniqueness. | |
1022 | * Exceptions: O_NONBLOCK is a two bit define on parisc; O_NDELAY | |
1023 | * is defined as O_NONBLOCK on some platforms and not on others. | |
1024 | */ | |
80f18379 CH |
1025 | BUILD_BUG_ON(21 - 1 /* for O_RDONLY being 0 */ != |
1026 | HWEIGHT32( | |
1027 | (VALID_OPEN_FLAGS & ~(O_NONBLOCK | O_NDELAY)) | | |
1028 | __FMODE_EXEC | __FMODE_NONOTIFY)); | |
454eedb8 | 1029 | |
1da177e4 | 1030 | fasync_cache = kmem_cache_create("fasync_cache", |
20c2df83 | 1031 | sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL); |
1da177e4 LT |
1032 | return 0; |
1033 | } | |
1034 | ||
454eedb8 | 1035 | module_init(fcntl_init) |