From: Stefan Schmidt <stefan@osg.samsung.com>
To: Simon Vincent <simon.vincent@xsilon.com>, alex.aring@gmail.com
Cc: linux-wpan@vger.kernel.org, phoebe.buckheister@itwm.fraunhofer.de
Subject: Re: [PATCH bluetooth-next] mac802154: fix llsec authentication without encryption BUG
Date: Thu, 18 Jun 2015 19:03:49 +0200 [thread overview]
Message-ID: <5582F9F5.5070205@osg.samsung.com> (raw)
In-Reply-To: <1434642901-11646-1-git-send-email-simon.vincent@xsilon.com>
Hello.
On 18/06/15 17:55, Simon Vincent wrote:
> 802.15.4 security levels 1,2,3 provide data authenticity but
> no encryption. Currently the llsec implementation hits a BUG() if these modes
> are used. This is due to the scatterlist length being set to 0 when
> encryption is not used. This patch fixes this issue.
I have not reviewed the patch yet, but adding a comment here that Phoebe
pointed out where the problem is might be nice for credits.
regards
Stefan Schmidt
> Signed-off-by: Simon Vincent <simon.vincent@xsilon.com>
> ---
> net/mac802154/llsec.c | 22 +++++++++++-----------
> 1 file changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/net/mac802154/llsec.c b/net/mac802154/llsec.c
> index 5b2be12..f8081f0 100644
> --- a/net/mac802154/llsec.c
> +++ b/net/mac802154/llsec.c
> @@ -648,7 +648,8 @@ llsec_do_encrypt_auth(struct sk_buff *skb, const struct mac802154_llsec *sec,
> {
> u8 iv[16];
> unsigned char *data;
> - int authlen, assoclen, datalen, rc;
> + int authlen, datalen, rc;
> + int assoclen = 0;
> struct scatterlist src, assoc[2], dst[2];
> struct aead_request *req;
>
> @@ -659,26 +660,25 @@ llsec_do_encrypt_auth(struct sk_buff *skb, const struct mac802154_llsec *sec,
> if (!req)
> return -ENOMEM;
>
> - sg_init_table(assoc, 2);
> - sg_set_buf(&assoc[0], skb_mac_header(skb), skb->mac_len);
> - assoclen = skb->mac_len;
> -
> data = skb_mac_header(skb) + skb->mac_len;
> datalen = skb_tail_pointer(skb) - data;
>
> if (hdr->sec.level & IEEE802154_SCF_SECLEVEL_ENC) {
> - sg_set_buf(&assoc[1], data, 0);
> + sg_init_table(assoc, 1);
> + sg_init_table(dst, 2);
> + sg_set_buf(&dst[0], data, datalen);
> + sg_set_buf(&dst[1], skb_put(skb, authlen), authlen);
> + sg_init_one(&src, data, datalen);
> } else {
> + sg_init_table(assoc, 2);
> sg_set_buf(&assoc[1], data, datalen);
> assoclen += datalen;
> datalen = 0;
> + sg_init_one(dst, skb_put(skb, authlen), authlen);
> }
>
> - sg_init_one(&src, data, datalen);
> -
> - sg_init_table(dst, 2);
> - sg_set_buf(&dst[0], data, datalen);
> - sg_set_buf(&dst[1], skb_put(skb, authlen), authlen);
> + sg_set_buf(&assoc[0], skb_mac_header(skb), skb->mac_len);
> + assoclen += skb->mac_len;
>
> aead_request_set_callback(req, 0, NULL, NULL);
> aead_request_set_assoc(req, assoc, assoclen);
next prev parent reply other threads:[~2015-06-18 17:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-18 15:55 [PATCH bluetooth-next] mac802154: fix llsec authentication without encryption BUG Simon Vincent
2015-06-18 17:03 ` Stefan Schmidt [this message]
2015-06-18 22:36 ` Phoebe Buckheister
2015-06-19 7:48 ` Alexander Aring
2015-06-19 9:23 ` 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=5582F9F5.5070205@osg.samsung.com \
--to=stefan@osg.samsung.com \
--cc=alex.aring@gmail.com \
--cc=linux-wpan@vger.kernel.org \
--cc=phoebe.buckheister@itwm.fraunhofer.de \
--cc=simon.vincent@xsilon.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.