Skip to content

Commit

Permalink
wifi: iwlwifi: mvm: add an helper function radiotap TLVs
Browse files Browse the repository at this point in the history
Add a helper function setting type, length, zeroing out
TLV data and including adding padding if necessary.

Signed-off-by: Mordechay Goodstein <mordechay.goodstein@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230305124407.8ac5195bb3e6.I19ad99c1ad3108453aede64bddf6ef1a7c4a0b74@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
  • Loading branch information
Mordechay Goodstein authored and Johannes Berg committed Mar 7, 2023
1 parent 11a2638 commit 056805b
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c
Original file line number Diff line number Diff line change
@@ -205,36 +205,45 @@ static int iwl_mvm_create_skb(struct iwl_mvm *mvm, struct sk_buff *skb,
return 0;
}

/* put a TLV on the skb and return data pointer
*
* Also pad to 4 the len and zero out all data part
*/
static void *
iwl_mvm_radiotap_put_tlv(struct sk_buff *skb, u16 type, u16 len)
{
struct ieee80211_radiotap_tlv *tlv;

tlv = skb_put(skb, sizeof(*tlv));
tlv->type = cpu_to_le16(type);
tlv->len = cpu_to_le16(len);
return skb_put_zero(skb, ALIGN(len, 4));
}

static void iwl_mvm_add_rtap_sniffer_config(struct iwl_mvm *mvm,
struct sk_buff *skb)
{
struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
struct ieee80211_radiotap_vendor_tlv *radiotap;
struct ieee80211_radiotap_vendor_content *radiotap;
const u16 vendor_data_len = sizeof(mvm->cur_aid);
const u16 padding = ALIGN(vendor_data_len, 4) - vendor_data_len;

if (!mvm->cur_aid)
return;

radiotap = skb_put(skb, sizeof(*radiotap) + vendor_data_len + padding);
radiotap->type = cpu_to_le16(IEEE80211_RADIOTAP_VENDOR_NAMESPACE);
radiotap->len = cpu_to_le16(sizeof(*radiotap) -
sizeof(struct ieee80211_radiotap_tlv) +
vendor_data_len);
radiotap = iwl_mvm_radiotap_put_tlv(skb,
IEEE80211_RADIOTAP_VENDOR_NAMESPACE,
sizeof(*radiotap) + vendor_data_len);

/* Intel OUI */
radiotap->content.oui[0] = 0xf6;
radiotap->content.oui[1] = 0x54;
radiotap->content.oui[2] = 0x25;
radiotap->oui[0] = 0xf6;
radiotap->oui[1] = 0x54;
radiotap->oui[2] = 0x25;
/* radiotap sniffer config sub-namespace */
radiotap->content.oui_subtype = 1;
radiotap->content.vendor_type = 0;
/* clear reserved field */
radiotap->content.reserved = 0;
radiotap->oui_subtype = 1;
radiotap->vendor_type = 0;

/* fill the data now */
memcpy(radiotap->content.data, &mvm->cur_aid, sizeof(mvm->cur_aid));
/* and clear the padding */
memset(radiotap->content.data + vendor_data_len, 0, padding);
memcpy(radiotap->data, &mvm->cur_aid, sizeof(mvm->cur_aid));

rx_status->flag |= RX_FLAG_RADIOTAP_TLV_AT_END;
}

0 comments on commit 056805b

Please sign in to comment.