From: Tushar Adeshara <adesharatushar@gmail.com>
To: linux-kernel@vger.kernel.org
Subject: Potential concurrency bug in ide-disk.c ?
Date: Fri, 2 Sep 2005 17:08:26 +0530 [thread overview]
Message-ID: <e8ac1af10509020438c71133d@mail.gmail.com> (raw)
Hi,
The way file ide-disk.c handles usage count, it seems to me that its
concurrency bug.
In open method and release, it uses code as follows
static int idedisk_open(struct inode *inode, struct file *filp)
{
ide_drive_t *drive = inode->i_bdev->bd_disk->private_data;
drive->usage++;
if (drive->removable && drive->usage == 1) {
ide_task_t args;
memset(&args, 0, sizeof(ide_task_t));
args.tfRegister[IDE_COMMAND_OFFSET] = WIN_DOORLOCK;
args.command_type = IDE_DRIVE_TASK_NO_DATA;
args.handler = &task_no_data_intr;
check_disk_change(inode->i_bdev);
/*
* Ignore the return code from door_lock,
* since the open() has already succeeded,
* and the door_lock is irrelevant at this point.
*/
if (drive->doorlocking && ide_raw_taskfile(drive, &args, NULL))
drive->doorlocking = 0;
}
return 0;
}
Here, if drive->usage=0 initially and two process concurrently executes
drive->usage++, then drive->usage will become 2. Both of them will
think that drive is already initialized. Something similar can happen
in case of release.
I think a semaphore need to be added in
ide_drive_t structure and method should be modified as
static int idedisk_open(struct inode *inode, struct file *filp)
{
ide_drive_t *drive = inode->i_bdev->bd_disk->private_data;
if(down_interruptible(&drive->sem)){
/*error handling code*/
}
drive->usage++;
if (drive->removable && drive->usage == 1) {
ide_task_t args;
memset(&args, 0, sizeof(ide_task_t));
args.tfRegister[IDE_COMMAND_OFFSET] = WIN_DOORLOCK;
args.command_type = IDE_DRIVE_TASK_NO_DATA;
args.handler = &task_no_data_intr;
check_disk_change(inode->i_bdev);
/*
* Ignore the return code from door_lock,
* since the open() has already succeeded,
* and the door_lock is irrelevant at this point.
*/
if (drive->doorlocking && ide_raw_taskfile(drive, &args, NULL))
drive->doorlocking = 0;
}
up(&drive->sem);
return 0;
}
Similar modifications are also required in release.
Please let me know if there is anything wrong in above code. Also let
me know to whom I should offer patches for this.
--
Regards,
Tushar
--------------------
It's not a problem, it's an opportunity for improvement. Lets improve.
next reply other threads:[~2005-09-02 11:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-02 11:38 Tushar Adeshara [this message]
2005-09-27 13:59 ` Potential concurrency bug in ide-disk.c ? Bartlomiej Zolnierkiewicz
2005-09-27 15:07 ` Tushar Adeshara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e8ac1af10509020438c71133d@mail.gmail.com \
--to=adesharatushar@gmail.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.