Bug 90771 - open() with O_EXCL on non-sg* devices does not block
Summary: open() with O_EXCL on non-sg* devices does not block
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: x86-64 Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-04 20:40 UTC by sworddragon2
Modified: 2015-01-04 20:40 UTC (History)
0 users

See Also:
Kernel Version: 3.16.7-ckt1
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description sworddragon2 2015-01-04 20:40:00 UTC
Here is my setup:

root@ubuntu:~# cdrskin drive_scsi_dev_family=sg --devices
cdrskin 1.3.8 : limited cdrecord compatibility wrapper for libburn
cdrskin: scanning for devices ...
cdrskin: ... scanning for devices done
cdrskin: Overview of accessible drives (1 found) :
-----------------------------------------------------------------------------
0  dev='/dev/sg1'  rwrw-- :  'HL-DT-ST'  'DVDRAM GH24LS50'
-----------------------------------------------------------------------------
root@ubuntu:~# cdrskin drive_scsi_dev_family=sr --devices
cdrskin 1.3.8 : limited cdrecord compatibility wrapper for libburn
cdrskin: scanning for devices ...
cdrskin: ... scanning for devices done
cdrskin: Overview of accessible drives (1 found) :
-----------------------------------------------------------------------------
0  dev='/dev/sr0'  rwrw-- :  'HL-DT-ST'  'DVDRAM GH24LS50'
-----------------------------------------------------------------------------


The optical drive does contain a media with data on it but it is not mounted.


Here is the testcode (compiled with "gcc -Wall -o test -pedantic test.c"):

#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>

int main(int argc, char **argv)
{
	int file;

	if(argc < 2)
	{
		printf("Missing argument \"device\"\n");
		return 1;
	}
	if((file = open(argv[1], O_RDWR | O_EXCL)) < 0)
	{
		printf("Error\n");
		return 1;
	}
	printf("Device locked\n");
	sleep(15);
	close(file);
	return 0;
}


Test on /dev/sg*:

On executing "./test /dev/sg1" on the first terminal I'm seeing "Device locked" and on executing the same command on the second terminal it blocks (this is what I would expect).


Test on /dev/sr*:

On executing "./test /dev/sr0" on the first terminal I'm seeing "Device locked" and on executing the same command on the second terminal I'm seeing "Error" (but I would expect a blocking behavior).

Note You need to log in before you can comment on or make changes to this bug.