From: Marcel Holtmann <marcel@holtmann.org>
To: Andi Kleen <ak@suse.de>
Cc: BlueZ Mailing List <bluez-devel@lists.sourceforge.net>,
netdev@oss.sgi.com, viro@zenII.linux.org.uk
Subject: Re: some bluetooth fixes
Date: Wed, 11 Feb 2004 21:47:01 +0100 [thread overview]
Message-ID: <1076532421.3041.2.camel@pegasus> (raw)
In-Reply-To: <20040215002513.7c6fc532.ak@suse.de>
[-- Attachment #1: Type: text/plain, Size: 346 bytes --]
Hi Andi,
> + if (req.conn_num * sizeof(*ci) > PAGE_SIZE * 2)
> + return -EINVAL;
>
> This can still overflow. It should be
>
> if (req.conn_num > (PAGE_SIZE * 2)/sizeof(*ci))
> return -EINVAL
thanks for reviewing the patch again. The fixed version is only attached
for control. It goes out to Dave in the next minutes.
Regards
Marcel
[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 4516 bytes --]
===== net/bluetooth/hci_conn.c 1.9 vs edited =====
--- 1.9/net/bluetooth/hci_conn.c Tue Jan 13 03:50:09 2004
+++ edited/net/bluetooth/hci_conn.c Wed Feb 11 21:00:52 2004
@@ -353,21 +353,24 @@
struct hci_conn_info *ci;
struct hci_dev *hdev;
struct list_head *p;
- int n = 0, size;
+ int n = 0, size, err;
if (copy_from_user(&req, (void *) arg, sizeof(req)))
return -EFAULT;
- if (!(hdev = hci_dev_get(req.dev_id)))
- return -ENODEV;
-
- size = req.conn_num * sizeof(struct hci_conn_info) + sizeof(req);
+ if (!req.conn_num || req.conn_num > (PAGE_SIZE * 2) / sizeof(*ci))
+ return -EINVAL;
- if (verify_area(VERIFY_WRITE, (void *)arg, size))
- return -EFAULT;
+ size = sizeof(req) + req.conn_num * sizeof(*ci);
if (!(cl = (void *) kmalloc(size, GFP_KERNEL)))
return -ENOMEM;
+
+ if (!(hdev = hci_dev_get(req.dev_id))) {
+ kfree(cl);
+ return -ENODEV;
+ }
+
ci = cl->conn_info;
hci_dev_lock_bh(hdev);
@@ -381,20 +384,21 @@
(ci + n)->out = c->out;
(ci + n)->state = c->state;
(ci + n)->link_mode = c->link_mode;
- n++;
+ if (++n >= req.conn_num)
+ break;
}
hci_dev_unlock_bh(hdev);
cl->dev_id = hdev->id;
cl->conn_num = n;
- size = n * sizeof(struct hci_conn_info) + sizeof(req);
+ size = sizeof(req) + n * sizeof(*ci);
hci_dev_put(hdev);
- copy_to_user((void *) arg, cl, size);
+ err = copy_to_user((void *) arg, cl, size);
kfree(cl);
- return 0;
+ return err ? -EFAULT : 0;
}
int hci_get_conn_info(struct hci_dev *hdev, unsigned long arg)
@@ -407,9 +411,6 @@
if (copy_from_user(&req, (void *) arg, sizeof(req)))
return -EFAULT;
- if (verify_area(VERIFY_WRITE, ptr, sizeof(ci)))
- return -EFAULT;
-
hci_dev_lock_bh(hdev);
conn = hci_conn_hash_lookup_ba(hdev, req.type, &req.bdaddr);
if (conn) {
@@ -425,6 +426,5 @@
if (!conn)
return -ENOENT;
- copy_to_user(ptr, &ci, sizeof(ci));
- return 0;
+ return copy_to_user(ptr, &ci, sizeof(ci)) ? -EFAULT : 0;
}
===== net/bluetooth/hci_core.c 1.22 vs edited =====
--- 1.22/net/bluetooth/hci_core.c Thu Feb 5 13:07:36 2004
+++ edited/net/bluetooth/hci_core.c Wed Feb 11 20:59:03 2004
@@ -716,22 +716,20 @@
struct hci_dev_list_req *dl;
struct hci_dev_req *dr;
struct list_head *p;
- int n = 0, size;
+ int n = 0, size, err;
__u16 dev_num;
if (get_user(dev_num, (__u16 *) arg))
return -EFAULT;
- if (!dev_num)
+ if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
return -EINVAL;
-
- size = dev_num * sizeof(*dr) + sizeof(*dl);
- if (verify_area(VERIFY_WRITE, (void *) arg, size))
- return -EFAULT;
+ size = sizeof(*dl) + dev_num * sizeof(*dr);
if (!(dl = kmalloc(size, GFP_KERNEL)))
return -ENOMEM;
+
dr = dl->dev_req;
read_lock_bh(&hci_dev_list_lock);
@@ -746,12 +744,12 @@
read_unlock_bh(&hci_dev_list_lock);
dl->dev_num = n;
- size = n * sizeof(*dr) + sizeof(*dl);
+ size = sizeof(*dl) + n * sizeof(*dr);
- copy_to_user((void *) arg, dl, size);
+ err = copy_to_user((void *) arg, dl, size);
kfree(dl);
- return 0;
+ return err ? -EFAULT : 0;
}
int hci_get_dev_info(unsigned long arg)
===== net/bluetooth/rfcomm/tty.c 1.28 vs edited =====
--- 1.28/net/bluetooth/rfcomm/tty.c Thu Aug 7 02:24:51 2003
+++ edited/net/bluetooth/rfcomm/tty.c Wed Feb 11 21:01:25 2004
@@ -349,7 +349,7 @@
struct rfcomm_dev_list_req *dl;
struct rfcomm_dev_info *di;
struct list_head *p;
- int n = 0, size;
+ int n = 0, size, err;
u16 dev_num;
BT_DBG("");
@@ -357,14 +357,11 @@
if (get_user(dev_num, (u16 *) arg))
return -EFAULT;
- if (!dev_num)
+ if (!dev_num || dev_num > (PAGE_SIZE * 4) / sizeof(*di))
return -EINVAL;
size = sizeof(*dl) + dev_num * sizeof(*di);
- if (verify_area(VERIFY_WRITE, (void *)arg, size))
- return -EFAULT;
-
if (!(dl = kmalloc(size, GFP_KERNEL)))
return -ENOMEM;
@@ -389,9 +386,10 @@
dl->dev_num = n;
size = sizeof(*dl) + n * sizeof(*di);
- copy_to_user((void *) arg, dl, size);
+ err = copy_to_user((void *) arg, dl, size);
kfree(dl);
- return 0;
+
+ return err ? -EFAULT : 0;
}
static int rfcomm_get_dev_info(unsigned long arg)
@@ -563,8 +561,10 @@
set_bit(RFCOMM_TTY_ATTACHED, &dev->flags);
err = rfcomm_dlc_open(dlc, &dev->src, &dev->dst, dev->channel);
- if (err < 0)
+ if (err < 0) {
+ rfcomm_dev_put(dev);
return err;
+ }
/* Wait for DLC to connect */
add_wait_queue(&dev->wait, &wait);
@@ -588,6 +588,9 @@
}
set_current_state(TASK_RUNNING);
remove_wait_queue(&dev->wait, &wait);
+
+ if (err < 0)
+ rfcomm_dev_put(dev);
return err;
}
next prev parent reply other threads:[~2004-02-11 20:47 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-02-06 4:00 some bluetooth fixes Andi Kleen
2004-02-06 14:58 ` Marcel Holtmann
2004-02-07 2:24 ` Andi Kleen
2004-02-07 11:13 ` Marcel Holtmann
2004-02-07 11:57 ` Andi Kleen
2004-02-07 16:57 ` Marcel Holtmann
2004-02-07 17:24 ` Andi Kleen
2004-02-11 18:55 ` Marcel Holtmann
2004-02-11 19:33 ` Andi Kleen
2004-02-11 20:47 ` Marcel Holtmann [this message]
2004-02-11 19:55 ` Andi Kleen
2004-02-06 23:30 ` Marcel Holtmann
2004-02-06 23:34 ` David S. Miller
2004-02-06 23:46 ` Marcel Holtmann
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=1076532421.3041.2.camel@pegasus \
--to=marcel@holtmann.org \
--cc=ak@suse.de \
--cc=bluez-devel@lists.sourceforge.net \
--cc=netdev@oss.sgi.com \
--cc=viro@zenII.linux.org.uk \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).