diff mbox

[v2,1/3] ieee802154: add security bit check function

Message ID 1457988374-31220-1-git-send-email-web+oss@zopieux.com (mailing list archive)
State Superseded
Headers show

Commit Message

web+oss@zopieux.com March 14, 2016, 8:46 p.m. UTC
ieee802154_is_secen checks if the 802.15.4 security bit is set in the
frame control field.

Signed-off-by: Alexander Aring <aar@pengutronix.de>
Signed-off-by: Alexandre Macabies <web+oss@zopieux.com>
Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
---
 include/linux/ieee802154.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

Comments

Stefan Schmidt March 30, 2016, 8:45 a.m. UTC | #1
Hello.

Added Alan Ott in CC.

Alan, can we get your review on this? Its sit son the list for almost 
three weeks now.
If you are to busy just say so and we can get the ACK from Alex and put 
them in.

regards
Stefan Schmidt

On 14/03/16 21:46, Alexandre Macabies wrote:
> ieee802154_is_secen checks if the 802.15.4 security bit is set in the
> frame control field.
>
> Signed-off-by: Alexander Aring <aar@pengutronix.de>
> Signed-off-by: Alexandre Macabies <web+oss@zopieux.com>
> Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
> ---
>   include/linux/ieee802154.h | 10 ++++++++++
>   1 file changed, 10 insertions(+)
>
> diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
> index d3e4156..56090f1 100644
> --- a/include/linux/ieee802154.h
> +++ b/include/linux/ieee802154.h
> @@ -218,6 +218,7 @@ enum {
>   /* frame control handling */
>   #define IEEE802154_FCTL_FTYPE		0x0003
>   #define IEEE802154_FCTL_ACKREQ		0x0020
> +#define IEEE802154_FCTL_SECEN		0x0004
>   #define IEEE802154_FCTL_INTRA_PAN	0x0040
>   
>   #define IEEE802154_FTYPE_DATA		0x0001
> @@ -233,6 +234,15 @@ static inline int ieee802154_is_data(__le16 fc)
>   }
>   
>   /**
> + * ieee802154_is_secen - check if Security bit is set
> + * @fc: frame control bytes in little-endian byteorder
> + */
> +static inline bool ieee802154_is_secen(__le16 fc)
> +{
> +	return fc & cpu_to_le16(IEEE802154_FCTL_SECEN);
> +}
> +
> +/**
>    * ieee802154_is_ackreq - check if acknowledgment request bit is set
>    * @fc: frame control bytes in little-endian byteorder
>    */

--
To unsubscribe from this list: send the line "unsubscribe linux-wpan" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Alan Ott March 30, 2016, 2:05 p.m. UTC | #2
On 03/30/2016 04:45 AM, Stefan Schmidt wrote:
> Added Alan Ott in CC.
>
> Alan, can we get your review on this? Its sit son the list for almost 
> three weeks now.
> If you are to busy just say so and we can get the ACK from Alex and 
> put them in.
>

Hi Stefan,

Sorry I've been slow on this. Thanks for forwarding. I actually went 
looking for v2 of this the other day in my inbox and it wasn't there.

Alexandre, make sure you use scripts/get_maintainer.pl to get the list 
of people you should send patches to. It looks like you put me on v1 but 
left me off v2.

For all three:
Acked-by: Alan Ott <alan@signal11.us>

Alan.

>
> On 14/03/16 21:46, Alexandre Macabies wrote:
>> ieee802154_is_secen checks if the 802.15.4 security bit is set in the
>> frame control field.
>>
>> Signed-off-by: Alexander Aring <aar@pengutronix.de>
>> Signed-off-by: Alexandre Macabies <web+oss@zopieux.com>
>> Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
>> ---
>>   include/linux/ieee802154.h | 10 ++++++++++
>>   1 file changed, 10 insertions(+)
>>
>> diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
>> index d3e4156..56090f1 100644
>> --- a/include/linux/ieee802154.h
>> +++ b/include/linux/ieee802154.h
>> @@ -218,6 +218,7 @@ enum {
>>   /* frame control handling */
>>   #define IEEE802154_FCTL_FTYPE        0x0003
>>   #define IEEE802154_FCTL_ACKREQ        0x0020
>> +#define IEEE802154_FCTL_SECEN        0x0004
>>   #define IEEE802154_FCTL_INTRA_PAN    0x0040
>>     #define IEEE802154_FTYPE_DATA        0x0001
>> @@ -233,6 +234,15 @@ static inline int ieee802154_is_data(__le16 fc)
>>   }
>>     /**
>> + * ieee802154_is_secen - check if Security bit is set
>> + * @fc: frame control bytes in little-endian byteorder
>> + */
>> +static inline bool ieee802154_is_secen(__le16 fc)
>> +{
>> +    return fc & cpu_to_le16(IEEE802154_FCTL_SECEN);
>> +}
>> +
>> +/**
>>    * ieee802154_is_ackreq - check if acknowledgment request bit is set
>>    * @fc: frame control bytes in little-endian byteorder
>>    */
>

--
To unsubscribe from this list: send the line "unsubscribe linux-wpan" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Stefan Schmidt March 30, 2016, 4:43 p.m. UTC | #3
Hello.

On 30/03/16 16:05, Alan Ott wrote:
> On 03/30/2016 04:45 AM, Stefan Schmidt wrote:
>> Added Alan Ott in CC.
>>
>> Alan, can we get your review on this? Its sit son the list for almost 
>> three weeks now.
>> If you are to busy just say so and we can get the ACK from Alex and 
>> put them in.
>>
>
> Hi Stefan,
>
> Sorry I've been slow on this. Thanks for forwarding. I actually went 
> looking for v2 of this the other day in my inbox and it wasn't there.

Sorry for pushing this but I wanted to get these patches in a state 
where they can get applied. With my review and your ack they should be 
fine now.

>
> Alexandre, make sure you use scripts/get_maintainer.pl to get the list 
> of people you should send patches to. It looks like you put me on v1 
> but left me off v2.
>

Good point!

> For all three:
> Acked-by: Alan Ott <alan@signal11.us>
>

regards
Stefan Schmidt

> Alan.
>
>>
>> On 14/03/16 21:46, Alexandre Macabies wrote:
>>> ieee802154_is_secen checks if the 802.15.4 security bit is set in the
>>> frame control field.
>>>
>>> Signed-off-by: Alexander Aring <aar@pengutronix.de>
>>> Signed-off-by: Alexandre Macabies <web+oss@zopieux.com>
>>> Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
>>> ---
>>>   include/linux/ieee802154.h | 10 ++++++++++
>>>   1 file changed, 10 insertions(+)
>>>
>>> diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
>>> index d3e4156..56090f1 100644
>>> --- a/include/linux/ieee802154.h
>>> +++ b/include/linux/ieee802154.h
>>> @@ -218,6 +218,7 @@ enum {
>>>   /* frame control handling */
>>>   #define IEEE802154_FCTL_FTYPE        0x0003
>>>   #define IEEE802154_FCTL_ACKREQ        0x0020
>>> +#define IEEE802154_FCTL_SECEN        0x0004
>>>   #define IEEE802154_FCTL_INTRA_PAN    0x0040
>>>     #define IEEE802154_FTYPE_DATA        0x0001
>>> @@ -233,6 +234,15 @@ static inline int ieee802154_is_data(__le16 fc)
>>>   }
>>>     /**
>>> + * ieee802154_is_secen - check if Security bit is set
>>> + * @fc: frame control bytes in little-endian byteorder
>>> + */
>>> +static inline bool ieee802154_is_secen(__le16 fc)
>>> +{
>>> +    return fc & cpu_to_le16(IEEE802154_FCTL_SECEN);
>>> +}
>>> +
>>> +/**
>>>    * ieee802154_is_ackreq - check if acknowledgment request bit is set
>>>    * @fc: frame control bytes in little-endian byteorder
>>>    */
>>
>

--
To unsubscribe from this list: send the line "unsubscribe linux-wpan" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Marcel Holtmann April 8, 2016, 5:35 p.m. UTC | #4
Hi Stefan,

>>> Alan, can we get your review on this? Its sit son the list for almost three weeks now.
>>> If you are to busy just say so and we can get the ACK from Alex and put them in.
>>> 
>> 
>> Hi Stefan,
>> 
>> Sorry I've been slow on this. Thanks for forwarding. I actually went looking for v2 of this the other day in my inbox and it wasn't there.
> 
> Sorry for pushing this but I wanted to get these patches in a state where they can get applied. With my review and your ack they should be fine now.

can you please resend these ones with the ack included. I seem to have lost the original thread.

Regards

Marcel

--
To unsubscribe from this list: send the line "unsubscribe linux-wpan" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/linux/ieee802154.h b/include/linux/ieee802154.h
index d3e4156..56090f1 100644
--- a/include/linux/ieee802154.h
+++ b/include/linux/ieee802154.h
@@ -218,6 +218,7 @@  enum {
 /* frame control handling */
 #define IEEE802154_FCTL_FTYPE		0x0003
 #define IEEE802154_FCTL_ACKREQ		0x0020
+#define IEEE802154_FCTL_SECEN		0x0004
 #define IEEE802154_FCTL_INTRA_PAN	0x0040
 
 #define IEEE802154_FTYPE_DATA		0x0001
@@ -233,6 +234,15 @@  static inline int ieee802154_is_data(__le16 fc)
 }
 
 /**
+ * ieee802154_is_secen - check if Security bit is set
+ * @fc: frame control bytes in little-endian byteorder
+ */
+static inline bool ieee802154_is_secen(__le16 fc)
+{
+	return fc & cpu_to_le16(IEEE802154_FCTL_SECEN);
+}
+
+/**
  * ieee802154_is_ackreq - check if acknowledgment request bit is set
  * @fc: frame control bytes in little-endian byteorder
  */