]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ISDN: fix drivers, by handling errors thrown by ->readstat()
authorJeff Garzik <jeff@garzik.org>
Sun, 17 Dec 2006 23:07:43 +0000 (00:07 +0100)
committerAdrian Bunk <bunk@stusta.de>
Sun, 17 Dec 2006 23:07:43 +0000 (00:07 +0100)
commit99146a2190e4606aa6803f5995de885f178ebccd
tree680a9eae9cc94255f4aee183b5ddfdf502a9a113
parent83eda202f1f04d5aa2297998fe44cf6641a03b1d
ISDN: fix drivers, by handling errors thrown by ->readstat()

This is a particularly ugly on-failure bug, possibly security, since the
lack of error handling here is covering up another class of bug: failure to
handle copy_to_user() return values.

The I4L API function ->readstat() returns an integer, and by looking at
several existing driver implementations, it is clear that a negative return
value was meant to indicate an error.

Given that several drivers already return a negative value indicating an
errno-style error, the current code would blindly accept that [negative]
value as a valid amount of bytes read.  Obvious damage ensues.

Correcting ->readstat() handling to properly notice errors fixes the
existing code to work correctly on error, and enables future patches to
more easily indicate errors during operation.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
drivers/isdn/i4l/isdn_common.c