Commit 03ef23cc authored by David S. Miller's avatar David S. Miller

Merge pizda.ninka.net:/home/davem/src/BK/openprom-bugs-2.5

into nuts.ninka.net:/home/davem/src/BK/sparc-2.5
parents 15289fb0 7243d652
...@@ -94,7 +94,7 @@ static ssize_t property_read(struct file *filp, char *buf, ...@@ -94,7 +94,7 @@ static ssize_t property_read(struct file *filp, char *buf,
openprom_property *op; openprom_property *op;
char buffer[64]; char buffer[64];
if (filp->f_pos >= 0xffffff) if (filp->f_pos >= 0xffffff || count >= 0xffffff)
return -EINVAL; return -EINVAL;
if (!filp->private_data) { if (!filp->private_data) {
node = nodes[(u16)((long)inode->u.generic_ip)].node; node = nodes[(u16)((long)inode->u.generic_ip)].node;
...@@ -282,11 +282,11 @@ static ssize_t property_read(struct file *filp, char *buf, ...@@ -282,11 +282,11 @@ static ssize_t property_read(struct file *filp, char *buf,
k += count; k += count;
} else if (op->flag & OPP_HEXSTRING) { } else if (op->flag & OPP_HEXSTRING) {
char buffer[8]; char buffer[3];
if ((k < i - 1) && (k & 1)) { if ((k < i - 1) && (k & 1)) {
sprintf (buffer, "%02x", sprintf (buffer, "%02x",
(unsigned) *(op->value + (k >> 1)) & 0xff); (unsigned char) *(op->value + (k >> 1)) & 0xff);
if (put_user(buffer[1], &buf[k++ - filp->f_pos])) if (put_user(buffer[1], &buf[k++ - filp->f_pos]))
return -EFAULT; return -EFAULT;
count--; count--;
...@@ -294,7 +294,7 @@ static ssize_t property_read(struct file *filp, char *buf, ...@@ -294,7 +294,7 @@ static ssize_t property_read(struct file *filp, char *buf,
for (; (count > 1) && (k < i - 1); k += 2) { for (; (count > 1) && (k < i - 1); k += 2) {
sprintf (buffer, "%02x", sprintf (buffer, "%02x",
(unsigned) *(op->value + (k >> 1)) & 0xff); (unsigned char) *(op->value + (k >> 1)) & 0xff);
if (copy_to_user(buf + k - filp->f_pos, buffer, 2)) if (copy_to_user(buf + k - filp->f_pos, buffer, 2))
return -EFAULT; return -EFAULT;
count -= 2; count -= 2;
...@@ -302,7 +302,7 @@ static ssize_t property_read(struct file *filp, char *buf, ...@@ -302,7 +302,7 @@ static ssize_t property_read(struct file *filp, char *buf,
if (count && (k < i - 1)) { if (count && (k < i - 1)) {
sprintf (buffer, "%02x", sprintf (buffer, "%02x",
(unsigned) *(op->value + (k >> 1)) & 0xff); (unsigned char) *(op->value + (k >> 1)) & 0xff);
if (put_user(buffer[0], &buf[k++ - filp->f_pos])) if (put_user(buffer[0], &buf[k++ - filp->f_pos]))
return -EFAULT; return -EFAULT;
count--; count--;
...@@ -327,7 +327,7 @@ static ssize_t property_write(struct file *filp, const char *buf, ...@@ -327,7 +327,7 @@ static ssize_t property_write(struct file *filp, const char *buf,
void *b; void *b;
openprom_property *op; openprom_property *op;
if ((filp->f_pos + count) >= 0xffffff) if (filp->f_pos >= 0xffffff || count >= 0xffffff)
return -EINVAL; return -EINVAL;
if (!filp->private_data) { if (!filp->private_data) {
i = property_read (filp, NULL, 0, 0); i = property_read (filp, NULL, 0, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment