Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 103353
b: refs/heads/master
c: 73e1f7c
h: refs/heads/master
i:
  103351: 0c32efa
v: v3
  • Loading branch information
Harvey Harrison authored and John W. Linville committed Jul 8, 2008
1 parent 4c0ae68 commit 9e039f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 238f74a227fd7de8ea1bc66dcbbd36cf9920d1cb
refs/heads/master: 73e1f7c823252d671361cddde0b498bf2c0fe4e1
14 changes: 7 additions & 7 deletions trunk/net/mac80211/wpa.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static int ieee80211_get_hdr_info(const struct sk_buff *skb, u8 **sa, u8 **da,
*data_len = skb->len - hdrlen;

if (ieee80211_is_data_qos(fc))
*qos_tid = (*ieee80211_get_qos_ctl(hdr) & 0x0f) | 0x80;
*qos_tid = (*ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK) | 0x80;
else
*qos_tid = 0;

Expand Down Expand Up @@ -312,15 +312,15 @@ static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,
data_len -= CCMP_HDR_LEN + (encrypted ? CCMP_MIC_LEN : 0);
if (qos_tid & 0x80) {
qos_included = 1;
qos_tid &= 0x0f;
qos_tid &= IEEE80211_QOS_CTL_TID_MASK;
} else
qos_included = 0;
/* First block, b_0 */

b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
/* Nonce: QoS Priority | A2 | PN */
b_0[1] = qos_tid;
memcpy(&b_0[2], hdr->addr2, 6);
memcpy(&b_0[2], hdr->addr2, ETH_ALEN);
memcpy(&b_0[8], pn, CCMP_PN_LEN);
/* l(m) */
b_0[14] = (data_len >> 8) & 0xff;
Expand All @@ -332,25 +332,25 @@ static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,

len_a = a4_included ? 28 : 22;
if (qos_included)
len_a += 2;
len_a += IEEE80211_QOS_CTL_LEN;

aad[0] = 0; /* (len_a >> 8) & 0xff; */
aad[1] = len_a & 0xff;
/* Mask FC: zero subtype b4 b5 b6 */
aad[2] = fc_pos[0] & ~(BIT(4) | BIT(5) | BIT(6));
/* Retry, PwrMgt, MoreData; set Protected */
aad[3] = (fc_pos[1] & ~(BIT(3) | BIT(4) | BIT(5))) | BIT(6);
memcpy(&aad[4], &hdr->addr1, 18);
memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);

/* Mask Seq#, leave Frag# */
aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
aad[23] = 0;
if (a4_included) {
memcpy(&aad[24], hdr->addr4, 6);
memcpy(&aad[24], hdr->addr4, ETH_ALEN);
aad[30] = 0;
aad[31] = 0;
} else
memset(&aad[24], 0, 8);
memset(&aad[24], 0, ETH_ALEN + IEEE80211_QOS_CTL_LEN);
if (qos_included) {
u8 *dpos = &aad[a4_included ? 30 : 24];

Expand Down

0 comments on commit 9e039f6

Please sign in to comment.