fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / fs / fcntl.c
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>
10 #include <linux/fs.h>
11 #include <linux/file.h>
12 #include <linux/capability.h>
13 #include <linux/dnotify.h>
14 #include <linux/smp_lock.h>
15 #include <linux/slab.h>
16 #include <linux/module.h>
17 #include <linux/security.h>
18 #include <linux/ptrace.h>
19 #include <linux/signal.h>
20 #include <linux/rcupdate.h>
21 #include <linux/vs_limit.h>
22
23 #include <asm/poll.h>
24 #include <asm/siginfo.h>
25 #include <asm/uaccess.h>
26
27 void fastcall set_close_on_exec(unsigned int fd, int flag)
28 {
29         struct files_struct *files = current->files;
30         struct fdtable *fdt;
31         spin_lock(&files->file_lock);
32         fdt = files_fdtable(files);
33         if (flag)
34                 FD_SET(fd, fdt->close_on_exec);
35         else
36                 FD_CLR(fd, fdt->close_on_exec);
37         spin_unlock(&files->file_lock);
38 }
39
40 static int get_close_on_exec(unsigned int fd)
41 {
42         struct files_struct *files = current->files;
43         struct fdtable *fdt;
44         int res;
45         rcu_read_lock();
46         fdt = files_fdtable(files);
47         res = FD_ISSET(fd, fdt->close_on_exec);
48         rcu_read_unlock();
49         return res;
50 }
51
52 /*
53  * locate_fd finds a free file descriptor in the open_fds fdset,
54  * expanding the fd arrays if necessary.  Must be called with the
55  * file_lock held for write.
56  */
57
58 static int locate_fd(struct files_struct *files, 
59                             struct file *file, unsigned int orig_start)
60 {
61         unsigned int newfd;
62         unsigned int start;
63         int error;
64         struct fdtable *fdt;
65
66         error = -EINVAL;
67         if (orig_start >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
68                 goto out;
69
70 repeat:
71         fdt = files_fdtable(files);
72         /*
73          * Someone might have closed fd's in the range
74          * orig_start..fdt->next_fd
75          */
76         start = orig_start;
77         if (start < files->next_fd)
78                 start = files->next_fd;
79
80         newfd = start;
81         if (start < fdt->max_fds)
82                 newfd = find_next_zero_bit(fdt->open_fds->fds_bits,
83                                            fdt->max_fds, start);
84         
85         error = -EMFILE;
86         if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
87                 goto out;
88         if (!vx_files_avail(1))
89                 goto out;
90
91         error = expand_files(files, newfd);
92         if (error < 0)
93                 goto out;
94
95         /*
96          * If we needed to expand the fs array we
97          * might have blocked - try again.
98          */
99         if (error)
100                 goto repeat;
101
102         /*
103          * We reacquired files_lock, so we are safe as long as
104          * we reacquire the fdtable pointer and use it while holding
105          * the lock, no one can free it during that time.
106          */
107         if (start <= files->next_fd)
108                 files->next_fd = newfd + 1;
109
110         error = newfd;
111         
112 out:
113         return error;
114 }
115
116 static int dupfd(struct file *file, unsigned int start)
117 {
118         struct files_struct * files = current->files;
119         struct fdtable *fdt;
120         int fd;
121
122         spin_lock(&files->file_lock);
123         fd = locate_fd(files, file, start);
124         if (fd >= 0) {
125                 /* locate_fd() may have expanded fdtable, load the ptr */
126                 fdt = files_fdtable(files);
127                 FD_SET(fd, fdt->open_fds);
128                 FD_CLR(fd, fdt->close_on_exec);
129                 spin_unlock(&files->file_lock);
130                 vx_openfd_inc(fd);
131                 fd_install(fd, file);
132         } else {
133                 spin_unlock(&files->file_lock);
134                 fput(file);
135         }
136
137         return fd;
138 }
139
140 asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
141 {
142         int err = -EBADF;
143         struct file * file, *tofree;
144         struct files_struct * files = current->files;
145         struct fdtable *fdt;
146
147         spin_lock(&files->file_lock);
148         if (!(file = fcheck(oldfd)))
149                 goto out_unlock;
150         err = newfd;
151         if (newfd == oldfd)
152                 goto out_unlock;
153         err = -EBADF;
154         if (newfd >= current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
155                 goto out_unlock;
156         get_file(file);                 /* We are now finished with oldfd */
157
158         err = expand_files(files, newfd);
159         if (err < 0)
160                 goto out_fput;
161
162         /* To avoid races with open() and dup(), we will mark the fd as
163          * in-use in the open-file bitmap throughout the entire dup2()
164          * process.  This is quite safe: do_close() uses the fd array
165          * entry, not the bitmap, to decide what work needs to be
166          * done.  --sct */
167         /* Doesn't work. open() might be there first. --AV */
168
169         /* Yes. It's a race. In user space. Nothing sane to do */
170         err = -EBUSY;
171         fdt = files_fdtable(files);
172         tofree = fdt->fd[newfd];
173         if (!tofree && FD_ISSET(newfd, fdt->open_fds))
174                 goto out_fput;
175
176         rcu_assign_pointer(fdt->fd[newfd], file);
177         FD_SET(newfd, fdt->open_fds);
178         FD_CLR(newfd, fdt->close_on_exec);
179         spin_unlock(&files->file_lock);
180
181         if (tofree)
182                 filp_close(tofree, files);
183         else
184                 vx_openfd_inc(newfd);   /* fd was unused */
185
186         err = newfd;
187 out:
188         return err;
189 out_unlock:
190         spin_unlock(&files->file_lock);
191         goto out;
192
193 out_fput:
194         spin_unlock(&files->file_lock);
195         fput(file);
196         goto out;
197 }
198
199 asmlinkage long sys_dup(unsigned int fildes)
200 {
201         int ret = -EBADF;
202         struct file * file = fget(fildes);
203
204         if (file)
205                 ret = dupfd(file, 0);
206         return ret;
207 }
208
209 #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT | O_NOATIME)
210
211 static int setfl(int fd, struct file * filp, unsigned long arg)
212 {
213         struct inode * inode = filp->f_path.dentry->d_inode;
214         int error = 0;
215
216         /*
217          * O_APPEND cannot be cleared if the file is marked as append-only
218          * and the file is open for write.
219          */
220         if (((arg ^ filp->f_flags) & O_APPEND) && IS_APPEND(inode))
221                 return -EPERM;
222
223         /* O_NOATIME can only be set by the owner or superuser */
224         if ((arg & O_NOATIME) && !(filp->f_flags & O_NOATIME))
225                 if (current->fsuid != inode->i_uid && !capable(CAP_FOWNER))
226                         return -EPERM;
227
228         /* required for strict SunOS emulation */
229         if (O_NONBLOCK != O_NDELAY)
230                if (arg & O_NDELAY)
231                    arg |= O_NONBLOCK;
232
233         if (arg & O_DIRECT) {
234                 if (!filp->f_mapping || !filp->f_mapping->a_ops ||
235                         !filp->f_mapping->a_ops->direct_IO)
236                                 return -EINVAL;
237         }
238
239         if (filp->f_op && filp->f_op->check_flags)
240                 error = filp->f_op->check_flags(arg);
241         if (error)
242                 return error;
243
244         lock_kernel();
245         if ((arg ^ filp->f_flags) & FASYNC) {
246                 if (filp->f_op && filp->f_op->fasync) {
247                         error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
248                         if (error < 0)
249                                 goto out;
250                 }
251         }
252
253         filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
254  out:
255         unlock_kernel();
256         return error;
257 }
258
259 static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
260                      uid_t uid, uid_t euid, int force)
261 {
262         write_lock_irq(&filp->f_owner.lock);
263         if (force || !filp->f_owner.pid) {
264                 put_pid(filp->f_owner.pid);
265                 filp->f_owner.pid = get_pid(pid);
266                 filp->f_owner.pid_type = type;
267                 filp->f_owner.uid = uid;
268                 filp->f_owner.euid = euid;
269         }
270         write_unlock_irq(&filp->f_owner.lock);
271 }
272
273 int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
274                 int force)
275 {
276         int err;
277         
278         err = security_file_set_fowner(filp);
279         if (err)
280                 return err;
281
282         f_modown(filp, pid, type, current->uid, current->euid, force);
283         return 0;
284 }
285 EXPORT_SYMBOL(__f_setown);
286
287 int f_setown(struct file *filp, unsigned long arg, int force)
288 {
289         enum pid_type type;
290         struct pid *pid;
291         int who = arg;
292         int result;
293         type = PIDTYPE_PID;
294         if (who < 0) {
295                 type = PIDTYPE_PGID;
296                 who = -who;
297         }
298         rcu_read_lock();
299         pid = find_pid(who);
300         result = __f_setown(filp, pid, type, force);
301         rcu_read_unlock();
302         return result;
303 }
304 EXPORT_SYMBOL(f_setown);
305
306 void f_delown(struct file *filp)
307 {
308         f_modown(filp, NULL, PIDTYPE_PID, 0, 0, 1);
309 }
310
311 pid_t f_getown(struct file *filp)
312 {
313         pid_t pid;
314         read_lock(&filp->f_owner.lock);
315         pid = pid_nr(filp->f_owner.pid);
316         if (filp->f_owner.pid_type == PIDTYPE_PGID)
317                 pid = -pid;
318         read_unlock(&filp->f_owner.lock);
319         return pid;
320 }
321
322 static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
323                 struct file *filp)
324 {
325         long err = -EINVAL;
326
327         switch (cmd) {
328         case F_DUPFD:
329                 get_file(filp);
330                 err = dupfd(filp, arg);
331                 break;
332         case F_GETFD:
333                 err = get_close_on_exec(fd) ? FD_CLOEXEC : 0;
334                 break;
335         case F_SETFD:
336                 err = 0;
337                 set_close_on_exec(fd, arg & FD_CLOEXEC);
338                 break;
339         case F_GETFL:
340                 err = filp->f_flags;
341                 break;
342         case F_SETFL:
343                 err = setfl(fd, filp, arg);
344                 break;
345         case F_GETLK:
346                 err = fcntl_getlk(filp, (struct flock __user *) arg);
347                 break;
348         case F_SETLK:
349         case F_SETLKW:
350                 err = fcntl_setlk(fd, filp, cmd, (struct flock __user *) arg);
351                 break;
352         case F_GETOWN:
353                 /*
354                  * XXX If f_owner is a process group, the
355                  * negative return value will get converted
356                  * into an error.  Oops.  If we keep the
357                  * current syscall conventions, the only way
358                  * to fix this will be in libc.
359                  */
360                 err = f_getown(filp);
361                 force_successful_syscall_return();
362                 break;
363         case F_SETOWN:
364                 err = f_setown(filp, arg, 1);
365                 break;
366         case F_GETSIG:
367                 err = filp->f_owner.signum;
368                 break;
369         case F_SETSIG:
370                 /* arg == 0 restores default behaviour. */
371                 if (!valid_signal(arg)) {
372                         break;
373                 }
374                 err = 0;
375                 filp->f_owner.signum = arg;
376                 break;
377         case F_GETLEASE:
378                 err = fcntl_getlease(filp);
379                 break;
380         case F_SETLEASE:
381                 err = fcntl_setlease(fd, filp, arg);
382                 break;
383         case F_NOTIFY:
384                 err = fcntl_dirnotify(fd, filp, arg);
385                 break;
386         default:
387                 break;
388         }
389         return err;
390 }
391
392 asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
393 {       
394         struct file *filp;
395         long err = -EBADF;
396
397         filp = fget(fd);
398         if (!filp)
399                 goto out;
400
401         err = security_file_fcntl(filp, cmd, arg);
402         if (err) {
403                 fput(filp);
404                 return err;
405         }
406
407         err = do_fcntl(fd, cmd, arg, filp);
408
409         fput(filp);
410 out:
411         return err;
412 }
413
414 #if BITS_PER_LONG == 32
415 asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
416 {       
417         struct file * filp;
418         long err;
419
420         err = -EBADF;
421         filp = fget(fd);
422         if (!filp)
423                 goto out;
424
425         err = security_file_fcntl(filp, cmd, arg);
426         if (err) {
427                 fput(filp);
428                 return err;
429         }
430         err = -EBADF;
431         
432         switch (cmd) {
433                 case F_GETLK64:
434                         err = fcntl_getlk64(filp, (struct flock64 __user *) arg);
435                         break;
436                 case F_SETLK64:
437                 case F_SETLKW64:
438                         err = fcntl_setlk64(fd, filp, cmd,
439                                         (struct flock64 __user *) arg);
440                         break;
441                 default:
442                         err = do_fcntl(fd, cmd, arg, filp);
443                         break;
444         }
445         fput(filp);
446 out:
447         return err;
448 }
449 #endif
450
451 /* Table to convert sigio signal codes into poll band bitmaps */
452
453 static const long band_table[NSIGPOLL] = {
454         POLLIN | POLLRDNORM,                    /* POLL_IN */
455         POLLOUT | POLLWRNORM | POLLWRBAND,      /* POLL_OUT */
456         POLLIN | POLLRDNORM | POLLMSG,          /* POLL_MSG */
457         POLLERR,                                /* POLL_ERR */
458         POLLPRI | POLLRDBAND,                   /* POLL_PRI */
459         POLLHUP | POLLERR                       /* POLL_HUP */
460 };
461
462 static inline int sigio_perm(struct task_struct *p,
463                              struct fown_struct *fown, int sig)
464 {
465         return (((fown->euid == 0) ||
466                  (fown->euid == p->suid) || (fown->euid == p->uid) ||
467                  (fown->uid == p->suid) || (fown->uid == p->uid)) &&
468                 !security_file_send_sigiotask(p, fown, sig));
469 }
470
471 static void send_sigio_to_task(struct task_struct *p,
472                                struct fown_struct *fown, 
473                                int fd,
474                                int reason)
475 {
476         if (!sigio_perm(p, fown, fown->signum))
477                 return;
478
479         switch (fown->signum) {
480                 siginfo_t si;
481                 default:
482                         /* Queue a rt signal with the appropriate fd as its
483                            value.  We use SI_SIGIO as the source, not 
484                            SI_KERNEL, since kernel signals always get 
485                            delivered even if we can't queue.  Failure to
486                            queue in this case _should_ be reported; we fall
487                            back to SIGIO in that case. --sct */
488                         si.si_signo = fown->signum;
489                         si.si_errno = 0;
490                         si.si_code  = reason;
491                         /* Make sure we are called with one of the POLL_*
492                            reasons, otherwise we could leak kernel stack into
493                            userspace.  */
494                         BUG_ON((reason & __SI_MASK) != __SI_POLL);
495                         if (reason - POLL_IN >= NSIGPOLL)
496                                 si.si_band  = ~0L;
497                         else
498                                 si.si_band = band_table[reason - POLL_IN];
499                         si.si_fd    = fd;
500                         if (!group_send_sig_info(fown->signum, &si, p))
501                                 break;
502                 /* fall-through: fall back on the old plain SIGIO signal */
503                 case 0:
504                         group_send_sig_info(SIGIO, SEND_SIG_PRIV, p);
505         }
506 }
507
508 void send_sigio(struct fown_struct *fown, int fd, int band)
509 {
510         struct task_struct *p;
511         enum pid_type type;
512         struct pid *pid;
513         
514         read_lock(&fown->lock);
515         type = fown->pid_type;
516         pid = fown->pid;
517         if (!pid)
518                 goto out_unlock_fown;
519         
520         read_lock(&tasklist_lock);
521         do_each_pid_task(pid, type, p) {
522                 send_sigio_to_task(p, fown, fd, band);
523         } while_each_pid_task(pid, type, p);
524         read_unlock(&tasklist_lock);
525  out_unlock_fown:
526         read_unlock(&fown->lock);
527 }
528
529 static void send_sigurg_to_task(struct task_struct *p,
530                                 struct fown_struct *fown)
531 {
532         if (sigio_perm(p, fown, SIGURG))
533                 group_send_sig_info(SIGURG, SEND_SIG_PRIV, p);
534 }
535
536 int send_sigurg(struct fown_struct *fown)
537 {
538         struct task_struct *p;
539         enum pid_type type;
540         struct pid *pid;
541         int ret = 0;
542         
543         read_lock(&fown->lock);
544         type = fown->pid_type;
545         pid = fown->pid;
546         if (!pid)
547                 goto out_unlock_fown;
548
549         ret = 1;
550         
551         read_lock(&tasklist_lock);
552         do_each_pid_task(pid, type, p) {
553                 send_sigurg_to_task(p, fown);
554         } while_each_pid_task(pid, type, p);
555         read_unlock(&tasklist_lock);
556  out_unlock_fown:
557         read_unlock(&fown->lock);
558         return ret;
559 }
560
561 EXPORT_SYMBOL(send_sigurg);
562
563 static DEFINE_RWLOCK(fasync_lock);
564 static struct kmem_cache *fasync_cache __read_mostly;
565
566 /*
567  * fasync_helper() is used by some character device drivers (mainly mice)
568  * to set up the fasync queue. It returns negative on error, 0 if it did
569  * no changes and positive if it added/deleted the entry.
570  */
571 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
572 {
573         struct fasync_struct *fa, **fp;
574         struct fasync_struct *new = NULL;
575         int result = 0;
576
577         if (on) {
578                 new = kmem_cache_alloc(fasync_cache, GFP_KERNEL);
579                 if (!new)
580                         return -ENOMEM;
581         }
582         write_lock_irq(&fasync_lock);
583         for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
584                 if (fa->fa_file == filp) {
585                         if(on) {
586                                 fa->fa_fd = fd;
587                                 kmem_cache_free(fasync_cache, new);
588                         } else {
589                                 *fp = fa->fa_next;
590                                 kmem_cache_free(fasync_cache, fa);
591                                 result = 1;
592                         }
593                         goto out;
594                 }
595         }
596
597         if (on) {
598                 new->magic = FASYNC_MAGIC;
599                 new->fa_file = filp;
600                 new->fa_fd = fd;
601                 new->fa_next = *fapp;
602                 *fapp = new;
603                 result = 1;
604         }
605 out:
606         write_unlock_irq(&fasync_lock);
607         return result;
608 }
609
610 EXPORT_SYMBOL(fasync_helper);
611
612 void __kill_fasync(struct fasync_struct *fa, int sig, int band)
613 {
614         while (fa) {
615                 struct fown_struct * fown;
616                 if (fa->magic != FASYNC_MAGIC) {
617                         printk(KERN_ERR "kill_fasync: bad magic number in "
618                                "fasync_struct!\n");
619                         return;
620                 }
621                 fown = &fa->fa_file->f_owner;
622                 /* Don't send SIGURG to processes which have not set a
623                    queued signum: SIGURG has its own default signalling
624                    mechanism. */
625                 if (!(sig == SIGURG && fown->signum == 0))
626                         send_sigio(fown, fa->fa_fd, band);
627                 fa = fa->fa_next;
628         }
629 }
630
631 EXPORT_SYMBOL(__kill_fasync);
632
633 void kill_fasync(struct fasync_struct **fp, int sig, int band)
634 {
635         /* First a quick test without locking: usually
636          * the list is empty.
637          */
638         if (*fp) {
639                 read_lock(&fasync_lock);
640                 /* reread *fp after obtaining the lock */
641                 __kill_fasync(*fp, sig, band);
642                 read_unlock(&fasync_lock);
643         }
644 }
645 EXPORT_SYMBOL(kill_fasync);
646
647 static int __init fasync_init(void)
648 {
649         fasync_cache = kmem_cache_create("fasync_cache",
650                 sizeof(struct fasync_struct), 0, SLAB_PANIC, NULL, NULL);
651         return 0;
652 }
653
654 module_init(fasync_init)