aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2008-08-15 18:15:16 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2008-10-15 16:21:08 -0400
commitf22e52b89e036fd12b9374212da8b5d4a447bd1e (patch)
tree84e8cb2fca80197dc1b2afee85d2c46fd8446af0 /drivers/ieee1394
parentddfb908d3f905dbb5964d6fbf783e69c417eb13e (diff)
ieee1394: raw1394: make write() thread-safe
Application programs should use a libraw1394 handle only in a single thread. The raw1394 driver was apparently relying on this, because it did nothing to protect its fi->state variable from corruption due to concurrent accesses. We now serialize the fi->state accesses. This affects the write() path. We re-use the state_mutex which was introduced to protect fi->iso_state accesses in the ioctl() path. These paths and accesses are independent of each other, hence separate mutexes could be used. But I don't see much benefit in that. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394')
-rw-r--r--drivers/ieee1394/raw1394.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ieee1394/raw1394.c b/drivers/ieee1394/raw1394.c
index d1594427601f..2cf4ae75beca 100644
--- a/drivers/ieee1394/raw1394.c
+++ b/drivers/ieee1394/raw1394.c
@@ -2268,6 +2268,8 @@ static ssize_t raw1394_write(struct file *file, const char __user * buffer,
2268 return -EFAULT; 2268 return -EFAULT;
2269 } 2269 }
2270 2270
2271 mutex_lock(&fi->state_mutex);
2272
2271 switch (fi->state) { 2273 switch (fi->state) {
2272 case opened: 2274 case opened:
2273 retval = state_opened(fi, req); 2275 retval = state_opened(fi, req);
@@ -2282,6 +2284,8 @@ static ssize_t raw1394_write(struct file *file, const char __user * buffer,
2282 break; 2284 break;
2283 } 2285 }
2284 2286
2287 mutex_unlock(&fi->state_mutex);
2288
2285 if (retval < 0) { 2289 if (retval < 0) {
2286 free_pending_request(req); 2290 free_pending_request(req);
2287 } else { 2291 } else {