Skip to content

Commit

Permalink
saner FASYNC handling on file close
Browse files Browse the repository at this point in the history
As it is, all instances of ->release() for files that have ->fasync()
need to remember to evict file from fasync lists; forgetting that
creates a hole and we actually have a bunch that *does* forget.

So let's keep our lives simple - let __fput() check FASYNC in
file->f_flags and call ->fasync() there if it's been set.  And lose that
crap in ->release() instances - leaving it there is still valid, but we
don't have to bother anymore.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and torvalds committed Nov 1, 2008
1 parent 3318a38 commit 233e70f
Show file tree
Hide file tree
Showing 36 changed files with 13 additions and 109 deletions.
5 changes: 0 additions & 5 deletions arch/ia64/kernel/perfmon.c
Expand Up @@ -1995,11 +1995,6 @@ pfm_close(struct inode *inode, struct file *filp)
return -EBADF;
}

if (filp->f_flags & FASYNC) {
DPRINT(("cleaning up async_queue=%p\n", ctx->ctx_async_queue));
pfm_do_fasync(-1, filp, ctx, 0);
}

PROTECT_CTX(ctx, flags);

state = ctx->ctx_state;
Expand Down
3 changes: 0 additions & 3 deletions drivers/char/hpet.c
Expand Up @@ -427,9 +427,6 @@ static int hpet_release(struct inode *inode, struct file *file)
if (irq)
free_irq(irq, devp);

if (file->f_flags & FASYNC)
hpet_fasync(-1, file, 0);

file->private_data = NULL;
return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/char/ipmi/ipmi_devintf.c
Expand Up @@ -162,8 +162,6 @@ static int ipmi_release(struct inode *inode, struct file *file)
if (rv)
return rv;

ipmi_fasync (-1, file, 0);

/* FIXME - free the messages in the list. */
kfree(priv);

Expand Down
1 change: 0 additions & 1 deletion drivers/char/ipmi/ipmi_watchdog.c
Expand Up @@ -870,7 +870,6 @@ static int ipmi_close(struct inode *ino, struct file *filep)
clear_bit(0, &ipmi_wdog_open);
}

ipmi_fasync(-1, filep, 0);
expect_close = 0;

return 0;
Expand Down
7 changes: 0 additions & 7 deletions drivers/char/random.c
Expand Up @@ -1139,26 +1139,19 @@ static int random_fasync(int fd, struct file *filp, int on)
return fasync_helper(fd, filp, on, &fasync);
}

static int random_release(struct inode *inode, struct file *filp)
{
return fasync_helper(-1, filp, 0, &fasync);
}

const struct file_operations random_fops = {
.read = random_read,
.write = random_write,
.poll = random_poll,
.unlocked_ioctl = random_ioctl,
.fasync = random_fasync,
.release = random_release,
};

const struct file_operations urandom_fops = {
.read = urandom_read,
.write = random_write,
.unlocked_ioctl = random_ioctl,
.fasync = random_fasync,
.release = random_release,
};

/***************************************************************
Expand Down
2 changes: 0 additions & 2 deletions drivers/char/rtc.c
Expand Up @@ -788,8 +788,6 @@ static int rtc_release(struct inode *inode, struct file *file)
}
spin_unlock_irq(&rtc_lock);

if (file->f_flags & FASYNC)
rtc_fasync(-1, file, 0);
no_irq:
#endif

Expand Down
1 change: 0 additions & 1 deletion drivers/char/sonypi.c
Expand Up @@ -898,7 +898,6 @@ static int sonypi_misc_fasync(int fd, struct file *filp, int on)

static int sonypi_misc_release(struct inode *inode, struct file *file)
{
sonypi_misc_fasync(-1, file, 0);
mutex_lock(&sonypi_device.lock);
sonypi_device.open_count--;
mutex_unlock(&sonypi_device.lock);
Expand Down
2 changes: 0 additions & 2 deletions drivers/gpu/drm/drm_fops.c
Expand Up @@ -406,8 +406,6 @@ int drm_release(struct inode *inode, struct file *filp)
if (dev->driver->driver_features & DRIVER_GEM)
drm_gem_release(dev, file_priv);

drm_fasync(-1, filp, 0);

mutex_lock(&dev->ctxlist_mutex);
if (!list_empty(&dev->ctxlist)) {
struct drm_ctx_list *pos, *n;
Expand Down
2 changes: 0 additions & 2 deletions drivers/hid/usbhid/hiddev.c
Expand Up @@ -242,8 +242,6 @@ static int hiddev_release(struct inode * inode, struct file * file)
struct hiddev_list *list = file->private_data;
unsigned long flags;

hiddev_fasync(-1, file, 0);

spin_lock_irqsave(&list->hiddev->list_lock, flags);
list_del(&list->node);
spin_unlock_irqrestore(&list->hiddev->list_lock, flags);
Expand Down
3 changes: 0 additions & 3 deletions drivers/ieee1394/dv1394.c
Expand Up @@ -1828,9 +1828,6 @@ static int dv1394_release(struct inode *inode, struct file *file)
/* OK to free the DMA buffer, no more mappings can exist */
do_dv1394_shutdown(video, 1);

/* clean up async I/O users */
dv1394_fasync(-1, file, 0);

/* give someone else a turn */
clear_bit(0, &video->open);

Expand Down
2 changes: 0 additions & 2 deletions drivers/infiniband/core/uverbs_main.c
Expand Up @@ -358,8 +358,6 @@ static int ib_uverbs_event_close(struct inode *inode, struct file *filp)
}
spin_unlock_irq(&file->lock);

ib_uverbs_event_fasync(-1, filp, 0);

if (file->is_async) {
ib_unregister_event_handler(&file->uverbs_file->event_handler);
kref_put(&file->uverbs_file->ref, ib_uverbs_release_file);
Expand Down
1 change: 0 additions & 1 deletion drivers/input/evdev.c
Expand Up @@ -235,7 +235,6 @@ static int evdev_release(struct inode *inode, struct file *file)
evdev_ungrab(evdev, client);
mutex_unlock(&evdev->mutex);

evdev_fasync(-1, file, 0);
evdev_detach_client(evdev, client);
kfree(client);

Expand Down
1 change: 0 additions & 1 deletion drivers/input/joydev.c
Expand Up @@ -244,7 +244,6 @@ static int joydev_release(struct inode *inode, struct file *file)
struct joydev_client *client = file->private_data;
struct joydev *joydev = client->joydev;

joydev_fasync(-1, file, 0);
joydev_detach_client(joydev, client);
kfree(client);

Expand Down
13 changes: 0 additions & 13 deletions drivers/input/misc/hp_sdc_rtc.c
Expand Up @@ -71,7 +71,6 @@ static int hp_sdc_rtc_ioctl(struct inode *inode, struct file *file,
static unsigned int hp_sdc_rtc_poll(struct file *file, poll_table *wait);

static int hp_sdc_rtc_open(struct inode *inode, struct file *file);
static int hp_sdc_rtc_release(struct inode *inode, struct file *file);
static int hp_sdc_rtc_fasync (int fd, struct file *filp, int on);

static int hp_sdc_rtc_read_proc(char *page, char **start, off_t off,
Expand Down Expand Up @@ -414,17 +413,6 @@ static int hp_sdc_rtc_open(struct inode *inode, struct file *file)
return 0;
}

static int hp_sdc_rtc_release(struct inode *inode, struct file *file)
{
/* Turn off interrupts? */

if (file->f_flags & FASYNC) {
hp_sdc_rtc_fasync (-1, file, 0);
}

return 0;
}

static int hp_sdc_rtc_fasync (int fd, struct file *filp, int on)
{
return fasync_helper (fd, filp, on, &hp_sdc_rtc_async_queue);
Expand Down Expand Up @@ -680,7 +668,6 @@ static const struct file_operations hp_sdc_rtc_fops = {
.poll = hp_sdc_rtc_poll,
.ioctl = hp_sdc_rtc_ioctl,
.open = hp_sdc_rtc_open,
.release = hp_sdc_rtc_release,
.fasync = hp_sdc_rtc_fasync,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/input/mousedev.c
Expand Up @@ -519,7 +519,6 @@ static int mousedev_release(struct inode *inode, struct file *file)
struct mousedev_client *client = file->private_data;
struct mousedev *mousedev = client->mousedev;

mousedev_fasync(-1, file, 0);
mousedev_detach_client(mousedev, client);
kfree(client);

Expand Down
1 change: 0 additions & 1 deletion drivers/input/serio/serio_raw.c
Expand Up @@ -135,7 +135,6 @@ static int serio_raw_release(struct inode *inode, struct file *file)

mutex_lock(&serio_raw_mutex);

serio_raw_fasync(-1, file, 0);
serio_raw_cleanup(serio_raw);

mutex_unlock(&serio_raw_mutex);
Expand Down
7 changes: 0 additions & 7 deletions drivers/message/fusion/mptctl.c
Expand Up @@ -559,12 +559,6 @@ mptctl_fasync(int fd, struct file *filep, int mode)
return ret;
}

static int
mptctl_release(struct inode *inode, struct file *filep)
{
return fasync_helper(-1, filep, 0, &async_queue);
}

/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/*
* MPT ioctl handler
Expand Down Expand Up @@ -2706,7 +2700,6 @@ mptctl_hp_targetinfo(unsigned long arg)
static const struct file_operations mptctl_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.release = mptctl_release,
.fasync = mptctl_fasync,
.unlocked_ioctl = mptctl_ioctl,
#ifdef CONFIG_COMPAT
Expand Down
21 changes: 5 additions & 16 deletions drivers/message/i2o/i2o_config.c
Expand Up @@ -1097,28 +1097,17 @@ static int cfg_fasync(int fd, struct file *fp, int on)
static int cfg_release(struct inode *inode, struct file *file)
{
ulong id = (ulong) file->private_data;
struct i2o_cfg_info *p1, *p2;
struct i2o_cfg_info *p, **q;
unsigned long flags;

lock_kernel();
p1 = p2 = NULL;

spin_lock_irqsave(&i2o_config_lock, flags);
for (p1 = open_files; p1;) {
if (p1->q_id == id) {

if (p1->fasync)
cfg_fasync(-1, file, 0);
if (p2)
p2->next = p1->next;
else
open_files = p1->next;

kfree(p1);
for (q = &open_files; (p = *q) != NULL; q = &p->next) {
if (p->q_id == id) {
*q = p->next;
kfree(p);
break;
}
p2 = p1;
p1 = p1->next;
}
spin_unlock_irqrestore(&i2o_config_lock, flags);
unlock_kernel();
Expand Down
1 change: 0 additions & 1 deletion drivers/misc/sony-laptop.c
Expand Up @@ -1920,7 +1920,6 @@ static int sonypi_misc_fasync(int fd, struct file *filp, int on)

static int sonypi_misc_release(struct inode *inode, struct file *file)
{
sonypi_misc_fasync(-1, file, 0);
atomic_dec(&sonypi_compat.open_count);
return 0;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/tun.c
Expand Up @@ -1070,8 +1070,6 @@ static int tun_chr_close(struct inode *inode, struct file *file)

DBG(KERN_INFO "%s: tun_chr_close\n", tun->dev->name);

tun_chr_fasync(-1, file, 0);

rtnl_lock();

/* Detach from net device */
Expand Down
3 changes: 0 additions & 3 deletions drivers/rtc/rtc-dev.c
Expand Up @@ -446,9 +446,6 @@ static int rtc_dev_release(struct inode *inode, struct file *file)
if (rtc->ops->release)
rtc->ops->release(rtc->dev.parent);

if (file->f_flags & FASYNC)
rtc_dev_fasync(-1, file, 0);

clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
return 0;
}
Expand Down
12 changes: 0 additions & 12 deletions drivers/scsi/megaraid/megaraid_sas.c
Expand Up @@ -2987,17 +2987,6 @@ static int megasas_mgmt_open(struct inode *inode, struct file *filep)
return 0;
}

/**
* megasas_mgmt_release - char node "release" entry point
*/
static int megasas_mgmt_release(struct inode *inode, struct file *filep)
{
filep->private_data = NULL;
fasync_helper(-1, filep, 0, &megasas_async_queue);

return 0;
}

/**
* megasas_mgmt_fasync - Async notifier registration from applications
*
Expand Down Expand Up @@ -3345,7 +3334,6 @@ megasas_mgmt_compat_ioctl(struct file *file, unsigned int cmd,
static const struct file_operations megasas_mgmt_fops = {
.owner = THIS_MODULE,
.open = megasas_mgmt_open,
.release = megasas_mgmt_release,
.fasync = megasas_mgmt_fasync,
.unlocked_ioctl = megasas_mgmt_ioctl,
#ifdef CONFIG_COMPAT
Expand Down
1 change: 0 additions & 1 deletion drivers/scsi/sg.c
Expand Up @@ -327,7 +327,6 @@ sg_release(struct inode *inode, struct file *filp)
if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
return -ENXIO;
SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
sg_fasync(-1, filp, 0); /* remove filp from async notification list */
if (0 == sg_remove_sfp(sdp, sfp)) { /* Returns 1 when sdp gone */
if (!sdp->detached) {
scsi_device_put(sdp->device);
Expand Down
3 changes: 0 additions & 3 deletions drivers/staging/me4000/me4000.c
Expand Up @@ -1633,9 +1633,6 @@ static int me4000_release(struct inode *inode_p, struct file *file_p)

free_irq(ext_int_context->irq, ext_int_context);

/* Delete the fasync structure and free memory */
me4000_ext_int_fasync(0, file_p, 0);

/* Mark as unused */
ext_int_context->in_use = 0;
} else {
Expand Down
1 change: 0 additions & 1 deletion drivers/telephony/ixj.c
Expand Up @@ -2328,7 +2328,6 @@ static int ixj_release(struct inode *inode, struct file *file_p)
j->rec_codec = j->play_codec = 0;
j->rec_frame_size = j->play_frame_size = 0;
j->flags.cidsent = j->flags.cidring = 0;
ixj_fasync(-1, file_p, 0); /* remove from list of async notification */

if(j->cardtype == QTI_LINEJACK && !j->readers && !j->writers) {
ixj_set_port(j, PORT_PSTN);
Expand Down
3 changes: 0 additions & 3 deletions drivers/uio/uio.c
Expand Up @@ -367,9 +367,6 @@ static int uio_release(struct inode *inode, struct file *filep)
ret = idev->info->release(idev->info, inode);

module_put(idev->owner);

if (filep->f_flags & FASYNC)
ret = uio_fasync(-1, filep, 0);
kfree(listener);
return ret;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/usb/gadget/inode.c
Expand Up @@ -1251,7 +1251,6 @@ dev_release (struct inode *inode, struct file *fd)
* alternatively, all host requests will time out.
*/

fasync_helper (-1, fd, 0, &dev->fasync);
kfree (dev->buf);
dev->buf = NULL;
put_dev (dev);
Expand Down
4 changes: 4 additions & 0 deletions fs/file_table.c
Expand Up @@ -269,6 +269,10 @@ void __fput(struct file *file)
eventpoll_release(file);
locks_remove_flock(file);

if (unlikely(file->f_flags & FASYNC)) {
if (file->f_op && file->f_op->fasync)
file->f_op->fasync(-1, file, 0);
}
if (file->f_op && file->f_op->release)
file->f_op->release(inode, file);
security_file_free(file);
Expand Down
1 change: 0 additions & 1 deletion fs/fuse/dev.c
Expand Up @@ -1056,7 +1056,6 @@ static int fuse_dev_release(struct inode *inode, struct file *file)
end_requests(fc, &fc->pending);
end_requests(fc, &fc->processing);
spin_unlock(&fc->lock);
fasync_helper(-1, file, 0, &fc->fasync);
fuse_conn_put(fc);
}

Expand Down
3 changes: 0 additions & 3 deletions fs/inotify_user.c
Expand Up @@ -537,9 +537,6 @@ static int inotify_release(struct inode *ignored, struct file *file)
inotify_dev_event_dequeue(dev);
mutex_unlock(&dev->ev_mutex);

if (file->f_flags & FASYNC)
inotify_fasync(-1, file, 0);

/* free this device: the put matching the get in inotify_init() */
put_inotify_dev(dev);

Expand Down
3 changes: 0 additions & 3 deletions fs/pipe.c
Expand Up @@ -717,14 +717,12 @@ pipe_rdwr_fasync(int fd, struct file *filp, int on)
static int
pipe_read_release(struct inode *inode, struct file *filp)
{
pipe_read_fasync(-1, filp, 0);
return pipe_release(inode, 1, 0);
}

static int
pipe_write_release(struct inode *inode, struct file *filp)
{
pipe_write_fasync(-1, filp, 0);
return pipe_release(inode, 0, 1);
}

Expand All @@ -733,7 +731,6 @@ pipe_rdwr_release(struct inode *inode, struct file *filp)
{
int decr, decw;

pipe_rdwr_fasync(-1, filp, 0);
decr = (filp->f_mode & FMODE_READ) != 0;
decw = (filp->f_mode & FMODE_WRITE) != 0;
return pipe_release(inode, decr, decw);
Expand Down
1 change: 0 additions & 1 deletion net/socket.c
Expand Up @@ -990,7 +990,6 @@ static int sock_close(struct inode *inode, struct file *filp)
printk(KERN_DEBUG "sock_close: NULL inode\n");
return 0;
}
sock_fasync(-1, filp, 0);
sock_release(SOCKET_I(inode));
return 0;
}
Expand Down

0 comments on commit 233e70f

Please sign in to comment.