2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2012, 2013 Markus Amend <markus@netsniff-ng.org>
4 * Copyright 2012 Daniel Borkmann <daniel@netsniff-ng.org>
5 * Subject to the GPL, version 2.
9 * check all possible frame combinations for their behavior
10 * with respect to endianess (little / big)
15 #include <netinet/in.h> /* for ntohs() */
16 #include <asm/byteorder.h>
17 #include <arpa/inet.h> /* for inet_ntop() */
21 #include "dissector_80211.h"
28 /* Note: Fields are encoded in little-endian! */
29 struct ieee80211_frm_ctrl
{
33 #if defined(__LITTLE_ENDIAN_BITFIELD)
34 /* Correct order here ... */
35 __extension__ u16 proto_version
:2,
46 #elif defined(__BIG_ENDIAN_BITFIELD)
47 __extension__ u16 subtype
:4,
59 # error "Adjust your <asm/byteorder.h> defines"
65 /* Management Frame start */
66 /* Note: Fields are encoded in little-endian! */
67 struct ieee80211_mgmt
{
75 struct ieee80211_mgmt_auth
{
79 /* possibly followed by Challenge text */
83 struct ieee80211_mgmt_deauth
{
87 struct ieee80211_mgmt_assoc_req
{
90 /* followed by SSID and Supported rates */
94 struct ieee80211_mgmt_assoc_resp
{
98 /* followed by Supported rates */
102 struct ieee80211_mgmt_reassoc_resp
{
106 /* followed by Supported rates */
110 struct ieee80211_mgmt_reassoc_req
{
114 /* followed by SSID and Supported rates */
118 struct ieee80211_mgmt_disassoc
{
122 struct ieee80211_mgmt_probe_req
{
125 struct ieee80211_mgmt_beacon
{
129 /* followed by some of SSID, Supported rates,
130 * FH Params, DS Params, CF Params, IBSS Params, TIM */
134 struct ieee80211_mgmt_probe_resp
{
138 /* followed by some of SSID, Supported rates,
139 * FH Params, DS Params, CF Params, IBSS Params, TIM */
142 /* Management Frame end */
144 /* Control Frame start */
145 /* Note: Fields are encoded in little-endian! */
146 struct ieee80211_ctrl
{
149 struct ieee80211_ctrl_rts
{
155 struct ieee80211_ctrl_cts
{
160 struct ieee80211_ctrl_ack
{
165 struct ieee80211_ctrl_ps_poll
{
171 struct ieee80211_ctrl_cf_end
{
177 struct ieee80211_ctrl_cf_end_ack
{
182 /* Control Frame end */
184 /* Data Frame start */
185 /* Note: Fields are encoded in little-endian! */
186 struct ieee80211_data
{
192 struct element_reserved
{
196 struct element_ssid
{
201 struct element_supp_rates
{
206 struct element_fh_ps
{
214 struct element_dsss_ps
{
219 struct element_cf_ps
{
235 struct element_ibss_ps
{
240 struct element_country_tripled
{
246 struct element_country
{
248 #if defined(__LITTLE_ENDIAN_BITFIELD)
249 /* Correct order here ... */
253 #elif defined(__BIG_ENDIAN_BITFIELD)
258 # error "Adjust your <asm/byteorder.h> defines"
260 /* triplet may repeat */
261 struct element_country_tripled tripled
[0];
266 struct element_hop_pp
{
272 struct element_hop_pt
{
286 struct element_bss_load
{
293 struct element_edca_ps
{
303 struct element_tspec
{
307 #if defined(__LITTLE_ENDIAN_BITFIELD)
308 /* Correct order here ... */
309 __extension__ u32 len
:8,
320 #elif defined(__BIG_ENDIAN_BITFIELD)
321 __extension__ u32 len
:8,
333 # error "Adjust your <asm/byteorder.h> defines"
350 u16 surplus_bandw_allow
;
354 struct element_tclas
{
360 struct element_tclas_frm_class
{
366 struct element_tclas_type0
{
372 struct element_tclas_type1
{
377 struct element_tclas_type1_ip4
{
387 struct element_tclas_type1_ip6
{
395 #if defined(__LITTLE_ENDIAN_BITFIELD)
396 __extension__ u8 flow_label3
:8;
397 __extension__ u8 flow_label2
:8;
398 __extension__ u8 flow_label1
:8;
399 #elif defined(__BIG_ENDIAN_BITFIELD)
400 __extension__ u8 flow_label1
:8;
401 __extension__ u8 flow_label2
:8;
402 __extension__ u8 flow_label3
:8;
404 # error "Adjust your <asm/byteorder.h> defines"
410 struct element_tclas_type2
{
414 struct element_tclas_type3
{
420 struct element_tclas_type4
{
425 struct element_tclas_type4_ip4
{
435 struct element_tclas_type4_ip6
{
445 #if defined(__LITTLE_ENDIAN_BITFIELD)
446 __extension__ u8 flow_label3
:8;
447 __extension__ u8 flow_label2
:8;
448 __extension__ u8 flow_label1
:8;
449 #elif defined(__BIG_ENDIAN_BITFIELD)
450 __extension__ u8 flow_label1
:8;
451 __extension__ u8 flow_label2
:8;
452 __extension__ u8 flow_label3
:8;
454 # error "Adjust your <asm/byteorder.h> defines"
460 struct element_tclas_type5
{
466 struct element_schedule
{
474 struct element_chall_txt
{
479 struct element_pwr_constr
{
484 struct element_pwr_cap
{
490 struct element_tpc_req
{
494 struct element_tpc_rep
{
500 struct element_supp_ch
{
506 struct element_supp_ch_tuple
{
511 struct element_ch_sw_ann
{
518 struct element_meas_basic
{
524 struct element_meas_cca
{
530 struct element_meas_rpi
{
536 struct element_meas_ch_load
{
544 struct element_meas_noise
{
552 struct element_meas_beacon
{
562 struct element_meas_frame
{
572 struct element_meas_sta
{
580 struct element_meas_lci
{
583 u8 longitude_req_res
;
588 struct element_meas_trans_str_cat
{
597 struct element_meas_mcast_diag
{
601 u8 mcast_triggered
[0];
605 struct element_meas_loc_civic
{
608 u8 loc_srv_intv_unit
;
613 struct element_meas_loc_id
{
615 u8 loc_srv_intv_unit
;
620 struct element_meas_pause
{
625 struct element_meas_req
{
633 struct element_meas_rep
{
641 struct element_quiet
{
649 struct element_ibss_dfs
{
656 struct element_ibss_dfs_tuple
{
666 struct element_ts_del
{
671 struct element_tclas_proc
{
676 struct element_ht_cap
{
681 #if defined(__LITTLE_ENDIAN_BITFIELD)
682 /* Correct order here ... */
683 __extension__ u16 ldpc
:1,
697 #elif defined(__BIG_ENDIAN_BITFIELD)
698 __extension__ u16 rx_stbc
:2,
713 # error "Adjust your <asm/byteorder.h> defines"
721 #if defined(__LITTLE_ENDIAN_BITFIELD)
722 /* Correct order here ... */
723 __extension__ u8 bitmask1
:8;
724 __extension__ u8 bitmask2
:8;
725 __extension__ u8 bitmask3
:8;
726 __extension__ u8 bitmask4
:8;
727 __extension__ u8 bitmask5
:8;
728 __extension__ u8 bitmask6
:8;
729 __extension__ u8 bitmask7
:8;
730 __extension__ u8 bitmask8
:8;
731 __extension__ u8 bitmask9
:8;
732 __extension__ u8 bitmask10_res
:8;
733 __extension__ u16 supp_rate_res
:16;
734 __extension__ u32 tx_param_res
:32;
736 #elif defined(__BIG_ENDIAN_BITFIELD)
737 __extension__ u32 tx_param_res
:32;
738 __extension__ u16 supp_rate_res
:16;
739 __extension__ u8 bitmask10_res
:8;
740 __extension__ u8 bitmask9
:8;
741 __extension__ u8 bitmask8
:8;
742 __extension__ u8 bitmask7
:8;
743 __extension__ u8 bitmask6
:8;
744 __extension__ u8 bitmask5
:8;
745 __extension__ u8 bitmask4
:8;
746 __extension__ u8 bitmask3
:8;
747 __extension__ u8 bitmask2
:8;
748 __extension__ u8 bitmask1
:8;
750 # error "Adjust your <asm/byteorder.h> defines"
759 struct element_qos_cap
{
764 struct element_ext_supp_rates
{
769 struct element_vend_spec
{
775 static int8_t len_neq_error(u8 len
, u8 intended
)
777 if(intended
!= len
) {
778 tprintf("Length should be %u Bytes", intended
);
785 static int8_t len_lt_error(u8 len
, u8 intended
)
788 tprintf("Length should be greater %u Bytes", intended
);
795 static float data_rates(u8 id
)
797 /* XXX Why not (id / 2.f)? */
805 case 11: return 5.5f
;
806 case 12: return 6.0f
;
807 case 18: return 9.0f
;
808 case 22: return 11.0f
;
809 case 24: return 12.0f
;
810 case 27: return 13.5f
;
811 case 36: return 18.0f
;
812 case 44: return 22.0f
;
813 case 48: return 24.0f
;
814 case 54: return 27.0f
;
815 case 66: return 33.0f
;
816 case 72: return 36.0f
;
817 case 96: return 48.0f
;
818 case 108: return 54.0f
;
831 static int8_t subelements(struct pkt_buff
*pkt
, u8 len
)
837 struct subelement
*sub
;
839 sub
= (struct subelement
*) pkt_pull(pkt
, sizeof(*sub
));
843 tprintf(", Subelement ID %u, ", sub
->id
);
844 tprintf("Length %u, ", sub
->len
);
846 data
= pkt_pull(pkt
, sub
->len
);
851 for(j
=0; j
< sub
->len
; j
++)
852 tprintf("%.2x ", data
[j
]);
857 /* Not needed ?! Should break before*/
860 * tprintf("Length error");
868 static int8_t inf_reserved(struct pkt_buff
*pkt
, u8
*id
)
872 struct element_reserved
*reserved
;
874 reserved
= (struct element_reserved
*) pkt_pull(pkt
, sizeof(*reserved
));
875 if (reserved
== NULL
)
878 tprintf("Reserved (%u, Len (%u)): ", *id
, reserved
->len
);
880 data
= pkt_pull(pkt
, reserved
->len
);
885 for (i
= 0; i
< reserved
->len
; i
++)
886 tprintf("%.2x", data
[i
]);
891 static int8_t inf_ssid(struct pkt_buff
*pkt
, u8
*id
)
894 struct element_ssid
*ssid
;
897 ssid
= (struct element_ssid
*) pkt_pull(pkt
, sizeof(*ssid
));
901 tprintf(" SSID (%u, Len (%u)): ", *id
, ssid
->len
);
903 if ((ssid
->len
- sizeof(*ssid
) + 1) > 0) {
904 ssid_name
= (char *) pkt_pull(pkt
, ssid
->len
);
905 if (ssid_name
== NULL
)
908 for (i
= 0; i
< ssid
->len
; i
++)
909 tprintf("%c",ssid_name
[i
]);
911 tprintf("Wildcard SSID");
917 static int8_t inf_supp_rates(struct pkt_buff
*pkt
, u8
*id
)
921 struct element_supp_rates
*supp_rates
;
923 supp_rates
= (struct element_supp_rates
*)
924 pkt_pull(pkt
, sizeof(*supp_rates
));
925 if (supp_rates
== NULL
)
928 tprintf(" Supp. Rates (%u, Len (%u)): ", *id
, supp_rates
->len
);
929 if (len_lt_error(supp_rates
->len
, 1))
932 if ((supp_rates
->len
- sizeof(*supp_rates
) + 1) > 0) {
933 rates
= pkt_pull(pkt
, supp_rates
->len
);
937 for (i
= 0; i
< supp_rates
->len
; i
++)
938 tprintf("%g%s ", ((rates
[i
] & 0x80) >> 7) ?
939 data_rates(rates
[i
] & 0x3f) :
940 ((rates
[i
] & 0x3f) * 0.5),
941 ((rates
[i
] & 0x80) >> 7) ? "(B)" : "");
948 static int8_t inf_fh_ps(struct pkt_buff
*pkt
, u8
*id
)
950 struct element_fh_ps
*fh_ps
;
952 fh_ps
= (struct element_fh_ps
*) pkt_pull(pkt
, sizeof(*fh_ps
));
956 tprintf(" FH Param Set (%u, Len(%u)): ", *id
, fh_ps
->len
);
957 if (len_neq_error(fh_ps
->len
, 5))
959 tprintf("Dwell Time: %fs, ", le16_to_cpu(fh_ps
->dwell_time
) * TU
);
960 tprintf("HopSet: %u, ", fh_ps
->hop_set
);
961 tprintf("HopPattern: %u, ", fh_ps
->hop_pattern
);
962 tprintf("HopIndex: %u", fh_ps
->hop_index
);
967 static int8_t inf_dsss_ps(struct pkt_buff
*pkt
, u8
*id
)
969 struct element_dsss_ps
*dsss_ps
;
971 dsss_ps
= (struct element_dsss_ps
*) pkt_pull(pkt
, sizeof(*dsss_ps
));
975 tprintf(" DSSS Param Set (%u, Len(%u)): ", *id
, dsss_ps
->len
);
976 if (len_neq_error(dsss_ps
->len
, 1))
978 tprintf("Current Channel: %u", dsss_ps
->curr_ch
);
983 static int8_t inf_cf_ps(struct pkt_buff
*pkt
, u8
*id
)
985 struct element_cf_ps
*cf_ps
;
987 cf_ps
= (struct element_cf_ps
*) pkt_pull(pkt
, sizeof(*cf_ps
));
991 tprintf(" CF Param Set (%u, Len(%u)): ", *id
, cf_ps
->len
);
992 if (len_neq_error(cf_ps
->len
, 6))
994 tprintf("CFP Count: %u, ", cf_ps
->cfp_cnt
);
995 tprintf("CFP Period: %u, ", cf_ps
->cfp_period
);
996 tprintf("CFP MaxDur: %fs, ", le16_to_cpu(cf_ps
->cfp_max_dur
) * TU
);
997 tprintf("CFP DurRem: %fs", le16_to_cpu(cf_ps
->cfp_dur_rem
) * TU
);
1002 static int8_t inf_tim(struct pkt_buff
*pkt
, u8
*id
)
1004 struct element_tim
*tim
;
1007 tim
= (struct element_tim
*) pkt_pull(pkt
, sizeof(*tim
));
1011 tprintf(" TIM (%u, Len(%u)): ", *id
, tim
->len
);
1012 if (len_lt_error(tim
->len
, 3))
1014 tprintf("DTIM Count: %u, ", tim
->dtim_cnt
);
1015 tprintf("DTIM Period: %u, ", tim
->dtim_period
);
1016 tprintf("Bitmap Control: %u, ", tim
->bmp_cntrl
);
1017 if ((tim
->len
- sizeof(*tim
) + 1) > 0) {
1018 u8
*bmp
= pkt_pull(pkt
, (tim
->len
- sizeof(*tim
) + 1));
1022 tprintf("Partial Virtual Bitmap: 0x");
1023 for (i
= 0; i
< (tim
->len
- sizeof(*tim
) + 1); i
++)
1024 tprintf("%.2x", bmp
[i
]);
1030 static int8_t inf_ibss_ps(struct pkt_buff
*pkt
, u8
*id
)
1032 struct element_ibss_ps
*ibss_ps
;
1034 ibss_ps
= (struct element_ibss_ps
*) pkt_pull(pkt
, sizeof(*ibss_ps
));
1035 if (ibss_ps
== NULL
)
1038 tprintf(" IBSS Param Set (%u, Len(%u)): ", *id
, ibss_ps
->len
);
1039 if (len_neq_error(ibss_ps
->len
, 2))
1041 tprintf("ATIM Window: %fs", le16_to_cpu(ibss_ps
->atim_win
) * TU
);
1046 static int8_t inf_country(struct pkt_buff
*pkt
, u8
*id
)
1050 struct element_country
*country
;
1052 country
= (struct element_country
*) pkt_pull(pkt
, sizeof(*country
));
1053 if (country
== NULL
)
1056 tprintf(" Country (%u, Len(%u)): ", *id
, country
->len
);
1057 if (len_lt_error(country
->len
, 6))
1059 tprintf("Country String: %c%c%c", country
->country_first
,
1060 country
->country_sec
, country
->country_third
);
1062 for (i
= country
->len
% 3; i
< (country
->len
- 3); i
+= 3) {
1063 struct element_country_tripled
*country_tripled
;
1065 country_tripled
= (struct element_country_tripled
*)
1066 pkt_pull(pkt
, sizeof(*country_tripled
));
1067 if (country_tripled
== NULL
)
1070 if(country_tripled
->frst_ch
>= 201) {
1071 tprintf("Oper Ext ID: %u, ", country_tripled
->frst_ch
);
1072 tprintf("Operating Class: %u, ", country_tripled
->nr_ch
);
1073 tprintf("Coverage Class: %u", country_tripled
->max_trans
);
1075 tprintf("First Ch Nr: %u, ", country_tripled
->frst_ch
);
1076 tprintf("Nr of Ch: %u, ", country_tripled
->nr_ch
);
1077 tprintf("Max Transmit Pwr Lvl: %u", country_tripled
->max_trans
);
1081 if(country
->len
% 3) {
1082 pad
= pkt_pull(pkt
, 1);
1086 tprintf(", Pad: 0x%x", *pad
);
1092 static int8_t inf_hop_pp(struct pkt_buff
*pkt
, u8
*id
)
1094 struct element_hop_pp
*hop_pp
;
1096 hop_pp
= (struct element_hop_pp
*) pkt_pull(pkt
, sizeof(*hop_pp
));
1100 tprintf(" Hopping Pattern Param (%u, Len(%u)): ", *id
, hop_pp
->len
);
1101 if (len_neq_error(hop_pp
->len
, 2))
1103 tprintf("Prime Radix: %u, ", hop_pp
->prime_radix
);
1104 tprintf("Nr of Ch: %u", hop_pp
->nr_ch
);
1109 static int8_t inf_hop_pt(struct pkt_buff
*pkt
, u8
*id
)
1113 struct element_hop_pt
*hop_pt
;
1115 hop_pt
= (struct element_hop_pt
*) pkt_pull(pkt
, sizeof(*hop_pt
));
1119 tprintf(" Hopping Pattern Table (%u, Len(%u)): ", *id
, hop_pt
->len
);
1120 if (len_lt_error(hop_pt
->len
, 4))
1122 tprintf("Flag: %u, ", hop_pt
->flag
);
1123 tprintf("Nr of Sets: %u, ", hop_pt
->nr_sets
);
1124 tprintf("Modulus: %u, ", hop_pt
->modules
);
1125 tprintf("Offs: %u", hop_pt
->offs
);
1127 if ((hop_pt
->len
- sizeof(*hop_pt
) + 1) > 0) {
1128 rand_tabl
= pkt_pull(pkt
, (hop_pt
->len
- sizeof(*hop_pt
) + 1));
1129 if (rand_tabl
== NULL
)
1132 tprintf(", Rand table: 0x");
1133 for (i
= 0; i
< (hop_pt
->len
- sizeof(*hop_pt
) + 1); i
++)
1134 tprintf("%.2x", rand_tabl
[i
]);
1140 static int8_t inf_req(struct pkt_buff
*pkt
, u8
*id
)
1143 struct element_req
*req
;
1146 req
= (struct element_req
*) pkt_pull(pkt
, sizeof(*req
));
1150 tprintf(" Request Element (%u, Len(%u)): ", *id
, req
->len
);
1151 if ((req
->len
- sizeof(*req
) + 1) > 0) {
1152 req_ids
= pkt_pull(pkt
, (req
->len
- sizeof(*req
) + 1));
1153 if (req_ids
== NULL
)
1156 tprintf(", Requested Element IDs: ");
1157 for (i
= 0; i
< (req
->len
- sizeof(*req
) + 1); i
++)
1158 tprintf("%u ", req_ids
[i
]);
1164 static int8_t inf_bss_load(struct pkt_buff
*pkt
, u8
*id
)
1166 struct element_bss_load
*bss_load
;
1168 bss_load
= (struct element_bss_load
*) pkt_pull(pkt
, sizeof(*bss_load
));
1169 if (bss_load
== NULL
)
1172 tprintf(" BSS Load element (%u, Len(%u)): ", *id
, bss_load
->len
);
1173 if (len_neq_error(bss_load
->len
, 5))
1175 tprintf("Station Count: %u, ", le16_to_cpu(bss_load
->station_cnt
));
1176 tprintf("Channel Utilization: %u, ", bss_load
->ch_util
);
1177 tprintf("Available Admission Capacity: %uus",
1178 bss_load
->avlb_adm_cap
* 32);
1183 static int8_t inf_edca_ps(struct pkt_buff
*pkt
, u8
*id
)
1185 u32 ac_be
, ac_bk
, ac_vi
, ac_vo
;
1186 struct element_edca_ps
*edca_ps
;
1188 edca_ps
= (struct element_edca_ps
*) pkt_pull(pkt
, sizeof(*edca_ps
));
1189 if (edca_ps
== NULL
)
1192 ac_be
= le32_to_cpu(edca_ps
->ac_be
);
1193 ac_bk
= le32_to_cpu(edca_ps
->ac_bk
);
1194 ac_vi
= le32_to_cpu(edca_ps
->ac_vi
);
1195 ac_vo
= le32_to_cpu(edca_ps
->ac_vo
);
1197 tprintf(" EDCA Param Set (%u, Len(%u)): ", *id
, edca_ps
->len
);
1198 if (len_neq_error(edca_ps
->len
, 18))
1200 tprintf("QoS Info: 0x%x (-> EDCA Param Set Update Count (%u),"
1201 "Q-Ack (%u), Queue Re (%u), TXOP Req(%u), Res(%u)), ",
1202 edca_ps
->qos_inf
, edca_ps
->qos_inf
>> 4,
1203 (edca_ps
->qos_inf
>> 3) & 1, (edca_ps
->qos_inf
>> 2) & 1,
1204 (edca_ps
->qos_inf
>> 1) & 1, edca_ps
->qos_inf
& 1);
1205 tprintf("Reserved: 0x%x, ", edca_ps
->res
);
1206 tprintf("AC_BE Param Rec: 0x%x (-> AIFSN (%u), ACM (%u), ACI (%u),"
1207 "Res (%u), ECWmin (%u), ECWmax(%u)), TXOP Limit (%uus)), ", ac_be
,
1208 ac_be
>> 28, (ac_be
>> 27) & 1, (ac_be
>> 25) & 3,
1209 (ac_be
>> 24) & 1, (ac_be
>> 20) & 15, (ac_be
>> 16) & 15,
1210 bswap_16(ac_be
& 0xFFFF) * 32);
1211 tprintf("AC_BK Param Rec: 0x%x (-> AIFSN (%u), ACM (%u), ACI (%u),"
1212 "Res (%u), ECWmin (%u), ECWmax(%u)), TXOP Limit (%uus)), ", ac_bk
,
1213 ac_bk
>> 28, (ac_bk
>> 27) & 1, (ac_bk
>> 25) & 3,
1214 (ac_bk
>> 24) & 1, (ac_bk
>> 20) & 15, (ac_bk
>> 16) & 15,
1215 bswap_16(ac_bk
& 0xFFFF) * 32);
1216 tprintf("AC_VI Param Rec: 0x%x (-> AIFSN (%u), ACM (%u), ACI (%u),"
1217 "Res (%u), ECWmin (%u), ECWmax(%u)), TXOP Limit (%uus)), ", ac_vi
,
1218 ac_vi
>> 28, (ac_vi
>> 27) & 1, (ac_vi
>> 25) & 3,
1219 (ac_vi
>> 24) & 1, (ac_vi
>> 20) & 15, (ac_vi
>> 16) & 15,
1220 bswap_16(ac_vi
& 0xFFFF) * 32);
1221 tprintf("AC_VO Param Rec: 0x%x (-> AIFSN (%u), ACM (%u), ACI (%u),"
1222 "Res (%u), ECWmin (%u), ECWmax(%u)), TXOP Limit (%uus)", ac_vo
,
1223 ac_vo
>> 28, (ac_vo
>> 27) & 1, (ac_vo
>> 25) & 3,
1224 (ac_vo
>> 24) & 1, (ac_vo
>> 20) & 15, (ac_vo
>> 16) & 15,
1225 bswap_16(ac_vo
& 0xFFFF) * 32);
1230 static int8_t inf_tspec(struct pkt_buff
*pkt
, u8
*id
)
1232 u16 nom_msdu_size
, surplus_bandw_allow
;
1233 struct element_tspec
*tspec
;
1235 tspec
= (struct element_tspec
*) pkt_pull(pkt
, sizeof(*tspec
));
1239 nom_msdu_size
= le16_to_cpu(tspec
->nom_msdu_size
);
1240 surplus_bandw_allow
= le16_to_cpu(tspec
->surplus_bandw_allow
);
1242 tprintf(" TSPEC (%u, Len(%u)): ", *id
, tspec
->len
);
1243 if (len_neq_error(tspec
->len
, 55))
1245 tprintf("Traffic Type: %u, ", tspec
->traffic_type
);
1246 tprintf("TSID: %u, ", tspec
->tsid
);
1247 tprintf("Direction: %u, ", tspec
->direction
);
1248 tprintf("Access Policy: %u, ", tspec
->access_policy
);
1249 tprintf("Aggregation: %u, ", tspec
->aggr
);
1250 tprintf("APSD: %u, ", tspec
->apsd
);
1251 tprintf("User Priority: %u, ", tspec
->user_prior
);
1252 tprintf("TSinfo Ack Policy: %u, ", tspec
->tsinfo_ack_pol
);
1253 tprintf("Schedule: %u, ", tspec
->schedule
);
1254 tprintf("Reserved: 0x%x, ", tspec
->res
);
1255 tprintf("Nominal MSDU Size: %uB (Fixed (%u)), ",
1256 nom_msdu_size
>> 1, nom_msdu_size
& 1);
1257 tprintf("Maximum MSDU Size: %uB, ", le16_to_cpu(tspec
->max_msdu_size
));
1258 tprintf("Minimum Service Interval: %uus, ",
1259 le32_to_cpu(tspec
->min_srv_intv
));
1260 tprintf("Maximum Service Interval: %uus, ",
1261 le32_to_cpu(tspec
->max_srv_intv
));
1262 tprintf("Inactivity Interval: %uus, ",
1263 le32_to_cpu(tspec
->inactive_intv
));
1264 tprintf("Suspension Interval: %uus, ", le32_to_cpu(tspec
->susp_intv
));
1265 tprintf("Service Start Time: %uus, ",
1266 le32_to_cpu(tspec
->srv_start_time
));
1267 tprintf("Minimum Data Rate: %ub/s, ",le32_to_cpu(tspec
->min_data_rate
));
1268 tprintf("Mean Data Rate: %ub/s, ", le32_to_cpu(tspec
->mean_data_rate
));
1269 tprintf("Peak Data Rate: %ub/s, ",le32_to_cpu(tspec
->peak_data_rate
));
1270 tprintf("Burst Size: %uB, ", le32_to_cpu(tspec
->burst_size
));
1271 tprintf("Delay Bound: %uus, ", le32_to_cpu(tspec
->delay_bound
));
1272 tprintf("Minimum PHY Rate: %ub/s, ", le32_to_cpu(tspec
->min_phy_rate
));
1273 tprintf("Surplus Bandwidth: %u.%u, ", surplus_bandw_allow
>> 13,
1274 surplus_bandw_allow
& 0x1FFF);
1275 tprintf("Medium Time: %uus", le16_to_cpu(tspec
->med_time
) * 32);
1280 static const char *class_type(u8 type
)
1283 case 0: return "Ethernet parameters";
1284 case 1: return "TCP/UDP IP parameters";
1285 case 2: return "IEEE 802.1Q parameters";
1286 case 3: return "Filter Offset parameters";
1287 case 4: return "IP and higher layer parameters";
1288 case 5: return "IEEE 802.1D/Q parameters";
1289 default: return "Reserved";
1293 static int8_t inf_tclas(struct pkt_buff
*pkt
, u8
*id
)
1295 struct element_tclas
*tclas
;
1296 struct element_tclas_frm_class
*frm_class
;
1298 tclas
= (struct element_tclas
*) pkt_pull(pkt
, sizeof(*tclas
));
1302 frm_class
= (struct element_tclas_frm_class
*)
1303 pkt_pull(pkt
, sizeof(*frm_class
));
1304 if (frm_class
== NULL
)
1307 tprintf(" TCLAS (%u, Len(%u)): ", *id
, tclas
->len
);
1308 if (len_lt_error(tclas
->len
, 3))
1310 tprintf("User Priority: %u, ", tclas
->user_priority
);
1311 tprintf("Classifier Type: %s (%u), ", class_type(frm_class
->type
),
1313 tprintf("Classifier Mask: 0x%x, ", frm_class
->mask
);
1315 if(frm_class
->type
== 0) {
1316 struct element_tclas_type0
*type0
;
1318 type0
= (struct element_tclas_type0
*)
1319 pkt_pull(pkt
, sizeof(*type0
));
1323 /* I think little endian, like the rest */
1324 tprintf("Src Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x, ",
1325 type0
->sa
[5], type0
->sa
[4], type0
->sa
[3],
1326 type0
->sa
[2], type0
->sa
[1], type0
->sa
[0]);
1327 tprintf("Dst Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x, ",
1328 type0
->da
[5], type0
->da
[4], type0
->da
[3],
1329 type0
->da
[2], type0
->da
[1], type0
->da
[0]);
1330 tprintf("Type: 0x%x", le16_to_cpu(type0
->type
));
1332 else if(frm_class
->type
== 1) {
1333 struct element_tclas_type1
*type1
;
1335 type1
= (struct element_tclas_type1
*)
1336 pkt_pull(pkt
, sizeof(*type1
));
1340 tprintf("Version: %u, ", type1
->version
);
1341 /* big endian format follows */
1342 if(type1
->version
== 4) {
1343 struct element_tclas_type1_ip4
*type1_ip4
;
1344 char src_ip
[INET_ADDRSTRLEN
];
1345 char dst_ip
[INET_ADDRSTRLEN
];
1347 type1_ip4
= (struct element_tclas_type1_ip4
*)
1348 pkt_pull(pkt
, sizeof(*type1_ip4
));
1349 if (type1_ip4
== NULL
)
1352 inet_ntop(AF_INET
, &type1_ip4
->sa
, src_ip
, sizeof(src_ip
));
1353 inet_ntop(AF_INET
, &type1_ip4
->da
, dst_ip
, sizeof(dst_ip
));
1355 tprintf("Src IP: %s, ", src_ip
);
1356 tprintf("Dst IP: %s, ", dst_ip
);
1357 tprintf("Src Port: %u, ", ntohs(type1_ip4
->sp
));
1358 tprintf("Dst Port: %u, ", ntohs(type1_ip4
->dp
));
1359 tprintf("DSCP: 0x%x, ", type1_ip4
->dscp
);
1360 tprintf("Proto: %u, ", type1_ip4
->proto
);
1361 tprintf("Res: 0x%x", type1_ip4
->reserved
);
1363 else if(type1
->version
== 6) {
1364 struct element_tclas_type1_ip6
*type1_ip6
;
1365 char src_ip
[INET6_ADDRSTRLEN
];
1366 char dst_ip
[INET6_ADDRSTRLEN
];
1368 type1_ip6
= (struct element_tclas_type1_ip6
*)
1369 pkt_pull(pkt
, sizeof(*type1_ip6
));
1370 if (type1_ip6
== NULL
)
1373 inet_ntop(AF_INET6
, &type1_ip6
->sa
,
1374 src_ip
, sizeof(src_ip
));
1375 inet_ntop(AF_INET6
, &type1_ip6
->da
,
1376 dst_ip
, sizeof(dst_ip
));
1378 tprintf("Src IP: %s, ", src_ip
);
1379 tprintf("Dst IP: %s, ", dst_ip
);
1380 tprintf("Src Port: %u, ", ntohs(type1_ip6
->sp
));
1381 tprintf("Dst Port: %u, ", ntohs(type1_ip6
->dp
));
1382 tprintf("Flow Label: 0x%x%x%x", type1_ip6
->flow_label1
,
1383 type1_ip6
->flow_label2
, type1_ip6
->flow_label3
);
1386 tprintf("Version (%u) not supported", type1
->version
);
1391 else if(frm_class
->type
== 2) {
1392 struct element_tclas_type2
*type2
;
1394 type2
= (struct element_tclas_type2
*)
1395 pkt_pull(pkt
, sizeof(*type2
));
1399 tprintf("802.1Q VLAN TCI: 0x%x", ntohs(type2
->vlan_tci
));
1401 else if(frm_class
->type
== 3) {
1402 struct element_tclas_type3
*type3
;
1406 type3
= (struct element_tclas_type3
*)
1407 pkt_pull(pkt
, sizeof(*type3
));
1411 len
= (tclas
->len
- 5) / 2;
1413 tprintf("Filter Offset: %u, ", type3
->offs
);
1415 if((len
& 1) || (len_lt_error(tclas
->len
, 5))) {
1416 tprintf("Length of TCLAS (%u) not correct", tclas
->len
);
1420 val
= pkt_pull(pkt
, len
);
1424 tprintf("Filter Value: 0x");
1425 for (i
= 0; i
< len
/ 2; i
++)
1426 tprintf("%x ", val
[i
]);
1428 tprintf("Filter Mask: 0x");
1429 for (i
= len
/ 2; i
< len
; i
++)
1430 tprintf("%x ", val
[i
]);
1434 else if(frm_class
->type
== 4) {
1435 struct element_tclas_type4
*type4
;
1437 type4
= (struct element_tclas_type4
*)
1438 pkt_pull(pkt
, sizeof(*type4
));
1442 tprintf("Version: %u, ", type4
->version
);
1443 /* big endian format follows */
1444 if(type4
->version
== 4) {
1445 struct element_tclas_type4_ip4
*type4_ip4
;
1446 char src_ip
[INET_ADDRSTRLEN
];
1447 char dst_ip
[INET_ADDRSTRLEN
];
1449 type4_ip4
= (struct element_tclas_type4_ip4
*)
1450 pkt_pull(pkt
, sizeof(*type4_ip4
));
1451 if (type4_ip4
== NULL
)
1454 inet_ntop(AF_INET
, &type4_ip4
->sa
, src_ip
, sizeof(src_ip
));
1455 inet_ntop(AF_INET
, &type4_ip4
->da
, dst_ip
, sizeof(dst_ip
));
1457 tprintf("Src IP: %s, ", src_ip
);
1458 tprintf("Dst IP: %s, ", dst_ip
);
1459 tprintf("Src Port: %u, ", ntohs(type4_ip4
->sp
));
1460 tprintf("Dst Port: %u, ", ntohs(type4_ip4
->dp
));
1461 tprintf("DSCP: 0x%x, ", type4_ip4
->dscp
);
1462 tprintf("Proto: %u, ", type4_ip4
->proto
);
1463 tprintf("Res: 0x%x", type4_ip4
->reserved
);
1465 else if(type4
->version
== 6) {
1466 struct element_tclas_type4_ip6
*type4_ip6
;
1467 char src_ip
[INET6_ADDRSTRLEN
];
1468 char dst_ip
[INET6_ADDRSTRLEN
];
1470 type4_ip6
= (struct element_tclas_type4_ip6
*)
1471 pkt_pull(pkt
, sizeof(*type4_ip6
));
1472 if (type4_ip6
== NULL
)
1475 inet_ntop(AF_INET6
, &type4_ip6
->sa
,
1476 src_ip
, sizeof(src_ip
));
1477 inet_ntop(AF_INET6
, &type4_ip6
->da
,
1478 dst_ip
, sizeof(dst_ip
));
1480 tprintf("Src IP: %s, ", src_ip
);
1481 tprintf("Dst IP: %s, ", dst_ip
);
1482 tprintf("Src Port: %u, ", ntohs(type4_ip6
->sp
));
1483 tprintf("Dst Port: %u, ", ntohs(type4_ip6
->dp
));
1484 tprintf("DSCP: 0x%x, ", type4_ip6
->dscp
);
1485 tprintf("Nxt Hdr: %u, ", type4_ip6
->nxt_hdr
);
1486 tprintf("Flow Label: 0x%x%x%x", type4_ip6
->flow_label1
,
1487 type4_ip6
->flow_label2
, type4_ip6
->flow_label3
);
1490 tprintf("Version (%u) not supported", type4
->version
);
1494 else if(frm_class
->type
== 5) {
1495 struct element_tclas_type5
*type5
;
1497 type5
= (struct element_tclas_type5
*)
1498 pkt_pull(pkt
, sizeof(*type5
));
1502 tprintf("802.1Q PCP: 0x%x, ", type5
->pcp
);
1503 tprintf("802.1Q CFI: 0x%x, ", type5
->cfi
);
1504 tprintf("802.1Q VID: 0x%x", type5
->vid
);
1507 tprintf("Classifier Type (%u) not supported", frm_class
->type
);
1514 static int8_t inf_sched(struct pkt_buff
*pkt
, u8
*id
)
1516 struct element_schedule
*schedule
;
1519 schedule
= (struct element_schedule
*) pkt_pull(pkt
, sizeof(*schedule
));
1520 if (schedule
== NULL
)
1523 info
= le16_to_cpu(schedule
->inf
);
1525 tprintf(" Schedule (%u, Len(%u)): ", *id
, schedule
->len
);
1526 if (len_neq_error(schedule
->len
, 12))
1529 tprintf("Aggregation: %u, ", info
>> 15);
1530 tprintf("TSID: %u, ", (info
>> 11) & 0xF);
1531 tprintf("Direction: %u, ", (info
>> 9) & 0x3);
1532 tprintf("Res: %u, ", info
& 0x1FF);
1533 tprintf("Serv Start Time: %uus, ", le32_to_cpu(schedule
->start
));
1534 tprintf("Serv Interval: %uus, ", le32_to_cpu(schedule
->serv_intv
));
1535 tprintf("Spec Interval: %fs", le32_to_cpu(schedule
->spec_intv
) * TU
);
1540 static int8_t inf_chall_txt(struct pkt_buff
*pkt
, u8
*id
)
1542 struct element_chall_txt
*chall_txt
;
1546 chall_txt
= (struct element_chall_txt
*)
1547 pkt_pull(pkt
, sizeof(*chall_txt
));
1548 if (chall_txt
== NULL
)
1551 tprintf(" Challenge Text (%u, Len(%u)): ", *id
, chall_txt
->len
);
1552 if ((chall_txt
->len
- sizeof(*chall_txt
) + 1) > 0) {
1553 txt
= pkt_pull(pkt
, (chall_txt
->len
- sizeof(*chall_txt
) + 1));
1558 for (i
= 0; i
< (chall_txt
->len
- sizeof(*chall_txt
) + 1); i
++)
1559 tprintf("%x", txt
[i
]);
1565 static int8_t inf_pwr_constr(struct pkt_buff
*pkt
, u8
*id
)
1567 struct element_pwr_constr
*pwr_constr
;
1569 pwr_constr
= (struct element_pwr_constr
*) pkt_pull(pkt
, sizeof(*pwr_constr
));
1570 if (pwr_constr
== NULL
)
1573 tprintf(" Power Constraint (%u, Len(%u)): ", *id
, pwr_constr
->len
);
1574 if (len_neq_error(pwr_constr
->len
, 1))
1577 tprintf("Local Power Constraint: %udB", pwr_constr
->local_pwr_constr
);
1582 static int8_t inf_pwr_cap(struct pkt_buff
*pkt
, u8
*id
)
1584 struct element_pwr_cap
*pwr_cap
;
1586 pwr_cap
= (struct element_pwr_cap
*) pkt_pull(pkt
, sizeof(*pwr_cap
));
1587 if (pwr_cap
== NULL
)
1590 tprintf(" Power Capability (%u, Len(%u)): ", *id
, pwr_cap
->len
);
1591 if (len_neq_error(pwr_cap
->len
, 2))
1594 tprintf("Min. Transm. Pwr Cap.: %ddBm, ", (int8_t)pwr_cap
->min_pwr_cap
);
1595 tprintf("Max. Transm. Pwr Cap.: %ddBm", (int8_t)pwr_cap
->max_pwr_cap
);
1600 static int8_t inf_tpc_req(struct pkt_buff
*pkt
, u8
*id
)
1602 struct element_tpc_req
*tpc_req
;
1604 tpc_req
= (struct element_tpc_req
*) pkt_pull(pkt
, sizeof(*tpc_req
));
1605 if (tpc_req
== NULL
)
1608 tprintf(" TPC Request (%u, Len(%u))", *id
, tpc_req
->len
);
1609 if (len_neq_error(tpc_req
->len
, 0))
1615 static int8_t inf_tpc_rep(struct pkt_buff
*pkt
, u8
*id
)
1617 struct element_tpc_rep
*tpc_rep
;
1619 tpc_rep
= (struct element_tpc_rep
*) pkt_pull(pkt
, sizeof(*tpc_rep
));
1620 if (tpc_rep
== NULL
)
1623 tprintf(" TPC Report (%u, Len(%u)): ", *id
, tpc_rep
->len
);
1624 if (len_neq_error(tpc_rep
->len
, 2))
1627 tprintf("Transmit Power: %udBm, ", (int8_t)tpc_rep
->trans_pwr
);
1628 tprintf("Link Margin: %udB", (int8_t)tpc_rep
->trans_pwr
);
1633 static int8_t inf_supp_ch(struct pkt_buff
*pkt
, u8
*id
)
1635 struct element_supp_ch
*supp_ch
;
1638 supp_ch
= (struct element_supp_ch
*) pkt_pull(pkt
, sizeof(*supp_ch
));
1639 if (supp_ch
== NULL
)
1642 tprintf(" Supp Channels (%u, Len(%u)): ", *id
, supp_ch
->len
);
1643 if (len_lt_error(supp_ch
->len
, 2))
1646 if(supp_ch
->len
& 1) {
1647 tprintf("Length should be even");
1651 for (i
= 0; i
< supp_ch
->len
; i
+= 2) {
1652 struct element_supp_ch_tuple
*supp_ch_tuple
;
1654 supp_ch_tuple
= (struct element_supp_ch_tuple
*)
1655 pkt_pull(pkt
, sizeof(*supp_ch_tuple
));
1656 if (supp_ch_tuple
== NULL
)
1659 tprintf("First Channel Nr: %u, ", supp_ch_tuple
->first_ch_nr
);
1660 tprintf("Nr of Channels: %u, ", supp_ch_tuple
->nr_ch
);
1666 static int8_t inf_ch_sw_ann(struct pkt_buff
*pkt
, u8
*id
)
1668 struct element_ch_sw_ann
*ch_sw_ann
;
1670 ch_sw_ann
= (struct element_ch_sw_ann
*)
1671 pkt_pull(pkt
, sizeof(*ch_sw_ann
));
1672 if (ch_sw_ann
== NULL
)
1675 tprintf(" Channel Switch Announc (%u, Len(%u)): ", *id
, ch_sw_ann
->len
);
1676 if (len_neq_error(ch_sw_ann
->len
, 3))
1679 tprintf("Switch Mode: %u, ", ch_sw_ann
->switch_mode
);
1680 tprintf("New Nr: %u, ", ch_sw_ann
->new_nr
);
1681 tprintf("Switch Count: %u", ch_sw_ann
->switch_cnt
);
1686 static const char *meas_type(u8 type
)
1689 case 0: return "Basic";
1690 case 1: return "Clear Channel assesment (CCA)";
1691 case 2: return "Receive power indication (RPI) histogram";
1692 case 3: return "Channel load";
1693 case 4: return "Noise histogram";
1694 case 5: return "Beacon";
1695 case 6: return "Frame";
1696 case 7: return "STA statistics";
1697 case 8: return "LCI";
1698 case 9: return "Transmit stream/category measurement";
1699 case 10: return "Multicast diagnostics";
1700 case 11: return "Location Civic";
1701 case 12: return "Location Identifier";
1702 case 13 ... 255: return "Reserved";
1706 static int8_t inf_meas_req(struct pkt_buff
*pkt
, u8
*id
)
1708 struct element_meas_req
*meas_req
;
1710 meas_req
= (struct element_meas_req
*) pkt_pull(pkt
, sizeof(*meas_req
));
1711 if (meas_req
== NULL
)
1714 tprintf(" Measurement Req (%u, Len(%u)): ", *id
, meas_req
->len
);
1715 if (len_lt_error(meas_req
->len
, 3))
1718 tprintf("Token: %u, ", meas_req
->token
);
1719 tprintf("Req Mode: 0x%x (Parallel (%u), Enable(%u), Request(%u), "
1720 "Report(%u), Dur Mand(%u), Res(0x%x)), ", meas_req
->req_mode
,
1721 meas_req
->req_mode
& 0x1,
1722 (meas_req
->req_mode
>> 1) & 0x1,
1723 (meas_req
->req_mode
>> 2) & 0x1,
1724 (meas_req
->req_mode
>> 3) & 0x1,
1725 (meas_req
->req_mode
>> 4) & 0x1,
1726 meas_req
->req_mode
>> 7);
1727 tprintf("Type: %s (%u), ", meas_type(meas_req
->type
), meas_req
->type
);
1729 if(meas_req
->len
> 3) {
1730 if(meas_req
->type
== 0) {
1731 struct element_meas_basic
*basic
;
1733 basic
= (struct element_meas_basic
*)
1734 pkt_pull(pkt
, sizeof(*basic
));
1738 if ((meas_req
->len
- 3 - sizeof(*basic
)) != 0) {
1739 tprintf("Length of Req matchs not Type %u",
1744 tprintf("Ch Nr: %uus, ", basic
->ch_nr
);
1745 tprintf("Meas Start Time: %lu, ",
1746 le64_to_cpu(basic
->start
));
1747 tprintf("Meas Duration: %fs",
1748 le16_to_cpu(basic
->dur
) * TU
);
1751 else if(meas_req
->type
== 1) {
1752 struct element_meas_cca
*cca
;
1754 cca
= (struct element_meas_cca
*)
1755 pkt_pull(pkt
, sizeof(*cca
));
1759 if ((meas_req
->len
- 3 - sizeof(*cca
)) != 0) {
1760 tprintf("Length of Req matchs not Type %u",
1765 tprintf("Ch Nr: %uus, ", cca
->ch_nr
);
1766 tprintf("Meas Start Time: %lu, ",
1767 le64_to_cpu(cca
->start
));
1768 tprintf("Meas Duration: %fs",
1769 le16_to_cpu(cca
->dur
) * TU
);
1771 else if(meas_req
->type
== 2) {
1772 struct element_meas_rpi
*rpi
;
1774 rpi
= (struct element_meas_rpi
*)
1775 pkt_pull(pkt
, sizeof(*rpi
));
1779 if ((meas_req
->len
- 3 - sizeof(*rpi
)) != 0) {
1780 tprintf("Length of Req matchs not Type %u",
1785 tprintf("Ch Nr: %uus, ", rpi
->ch_nr
);
1786 tprintf("Meas Start Time: %lu, ",
1787 le64_to_cpu(rpi
->start
));
1788 tprintf("Meas Duration: %fs",
1789 le16_to_cpu(rpi
->dur
) * TU
);
1791 else if(meas_req
->type
== 3) {
1792 struct element_meas_ch_load
*ch_load
;
1794 ch_load
= (struct element_meas_ch_load
*)
1795 pkt_pull(pkt
, sizeof(*ch_load
));
1796 if (ch_load
== NULL
)
1799 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*ch_load
)) < 0) {
1800 tprintf("Length of Req matchs not Type %u",
1805 tprintf("OP Class: %u, ", ch_load
->op_class
);
1806 tprintf("Ch Nr: %u, ", ch_load
->ch_nr
);
1807 tprintf("Rand Intv: %fs, ",
1808 le16_to_cpu(ch_load
->rand_intv
) * TU
);
1809 tprintf("Meas Duration: %fs",
1810 le16_to_cpu(ch_load
->dur
) * TU
);
1812 if(!subelements(pkt
,
1813 meas_req
->len
- 3 - sizeof(*ch_load
)))
1816 else if(meas_req
->type
== 4) {
1817 struct element_meas_noise
*noise
;
1819 noise
= (struct element_meas_noise
*)
1820 pkt_pull(pkt
, sizeof(*noise
));
1824 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*noise
)) < 0) {
1825 tprintf("Length of Req matchs not Type %u",
1830 tprintf("OP Class: %u, ", noise
->op_class
);
1831 tprintf("Ch Nr: %u, ", noise
->ch_nr
);
1832 tprintf("Rand Intv: %fs, ",
1833 le16_to_cpu(noise
->rand_intv
) * TU
);
1834 tprintf("Meas Duration: %fs",
1835 le16_to_cpu(noise
->dur
) * TU
);
1837 if(!subelements(pkt
,
1838 meas_req
->len
- 3 - sizeof(*noise
)))
1841 else if(meas_req
->type
== 5) {
1842 struct element_meas_beacon
*beacon
;
1844 beacon
= (struct element_meas_beacon
*)
1845 pkt_pull(pkt
, sizeof(*beacon
));
1849 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*beacon
)) < 0) {
1850 tprintf("Length of Req matchs not Type %u",
1855 tprintf("OP Class: %u, ", beacon
->op_class
);
1856 tprintf("Ch Nr: %u, ", beacon
->ch_nr
);
1857 tprintf("Rand Intv: %fs, ",
1858 le16_to_cpu(beacon
->rand_intv
) * TU
);
1859 tprintf("Meas Duration: %fs",
1860 le16_to_cpu(beacon
->dur
) * TU
);
1861 tprintf("Mode: %u, ", beacon
->mode
);
1862 tprintf("BSSID: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
1863 beacon
->bssid
[0], beacon
->bssid
[1],
1864 beacon
->bssid
[2], beacon
->bssid
[3],
1865 beacon
->bssid
[4], beacon
->bssid
[5]);
1867 if(!subelements(pkt
,
1868 meas_req
->len
- 3 - sizeof(*beacon
)))
1871 else if(meas_req
->type
== 6) {
1872 struct element_meas_frame
*frame
;
1874 frame
= (struct element_meas_frame
*)
1875 pkt_pull(pkt
, sizeof(*frame
));
1879 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*frame
)) < 0) {
1880 tprintf("Length of Req matchs not Type %u",
1885 tprintf("OP Class: %u, ", frame
->op_class
);
1886 tprintf("Ch Nr: %u, ", frame
->ch_nr
);
1887 tprintf("Rand Intv: %fs, ",
1888 le16_to_cpu(frame
->rand_intv
) * TU
);
1889 tprintf("Meas Duration: %fs",
1890 le16_to_cpu(frame
->dur
) * TU
);
1891 tprintf("Request Type: %u, ", frame
->frame
);
1892 tprintf("MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
1893 frame
->mac
[0], frame
->mac
[1],
1894 frame
->mac
[2], frame
->mac
[3],
1895 frame
->mac
[4], frame
->mac
[5]);
1897 if(!subelements(pkt
,
1898 meas_req
->len
- 3 - sizeof(*frame
)))
1901 else if(meas_req
->type
== 7) {
1902 struct element_meas_sta
*sta
;
1904 sta
= (struct element_meas_sta
*)
1905 pkt_pull(pkt
, sizeof(*sta
));
1909 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*sta
)) < 0) {
1910 tprintf("Length of Req matchs not Type %u",
1915 tprintf("Peer MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
1916 sta
->peer_mac
[0], sta
->peer_mac
[1],
1917 sta
->peer_mac
[2], sta
->peer_mac
[3],
1918 sta
->peer_mac
[4], sta
->peer_mac
[5]);
1919 tprintf("Rand Intv: %fs, ",
1920 le16_to_cpu(sta
->rand_intv
) * TU
);
1921 tprintf("Meas Duration: %fs",
1922 le16_to_cpu(sta
->dur
) * TU
);
1923 tprintf("Group ID: %u, ", sta
->group_id
);
1925 if(!subelements(pkt
,
1926 meas_req
->len
- 3 - sizeof(*sta
)))
1929 else if(meas_req
->type
== 8) {
1930 struct element_meas_lci
*lci
;
1932 lci
= (struct element_meas_lci
*)
1933 pkt_pull(pkt
, sizeof(*lci
));
1937 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*lci
)) < 0) {
1938 tprintf("Length of Req matchs not Type %u",
1943 tprintf("Location Subj: %u, ", lci
->loc_subj
);
1944 tprintf("Latitude Req Res: %udeg",
1945 lci
->latitude_req_res
);
1946 tprintf("Longitude Req Res: %udeg",
1947 lci
->longitude_req_res
);
1948 tprintf("Altitude Req Res: %udeg",
1949 lci
->altitude_req_res
);
1951 if(!subelements(pkt
,
1952 meas_req
->len
- 3 - sizeof(*lci
)))
1955 else if(meas_req
->type
== 9) {
1956 struct element_meas_trans_str_cat
*trans
;
1958 trans
= (struct element_meas_trans_str_cat
*)
1959 pkt_pull(pkt
, sizeof(*trans
));
1963 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*trans
)) < 0) {
1964 tprintf("Length of Req matchs not Type %u",
1969 tprintf("Rand Intv: %fs, ",
1970 le16_to_cpu(trans
->rand_intv
) * TU
);
1971 tprintf("Meas Duration: %fs",
1972 le16_to_cpu(trans
->dur
) * TU
);
1973 tprintf("MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
1974 trans
->peer_sta_addr
[0], trans
->peer_sta_addr
[1],
1975 trans
->peer_sta_addr
[2], trans
->peer_sta_addr
[3],
1976 trans
->peer_sta_addr
[4], trans
->peer_sta_addr
[5]);
1977 tprintf("Traffic ID: %u, ", trans
->traffic_id
);
1978 tprintf("Bin 0 Range: %u, ", trans
->bin_0_range
);
1980 if(!subelements(pkt
,
1981 meas_req
->len
- 3 - sizeof(*trans
)))
1984 else if(meas_req
->type
== 10) {
1985 struct element_meas_mcast_diag
*mcast
;
1987 mcast
= (struct element_meas_mcast_diag
*)
1988 pkt_pull(pkt
, sizeof(*mcast
));
1992 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*mcast
)) < 0) {
1993 tprintf("Length of Req matchs not Type %u",
1998 tprintf("Rand Intv: %fs, ",
1999 le16_to_cpu(mcast
->rand_intv
) * TU
);
2000 tprintf("Meas Duration: %fs",
2001 le16_to_cpu(mcast
->dur
) * TU
);
2002 tprintf("Group MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
2003 mcast
->group_mac
[0], mcast
->group_mac
[1],
2004 mcast
->group_mac
[2], mcast
->group_mac
[3],
2005 mcast
->group_mac
[4], mcast
->group_mac
[5]);
2007 if(!subelements(pkt
,
2008 meas_req
->len
- 3 - sizeof(*mcast
)))
2011 else if(meas_req
->type
== 11) {
2012 struct element_meas_loc_civic
*civic
;
2014 civic
= (struct element_meas_loc_civic
*)
2015 pkt_pull(pkt
, sizeof(*civic
));
2019 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*civic
)) < 0) {
2020 tprintf("Length of Req matchs not Type %u",
2025 tprintf("Location Subj: %u, ", civic
->loc_subj
);
2026 tprintf("Type: %u, ", civic
->civic_loc
);
2027 tprintf("Srv Intv Units: %u, ",
2028 le16_to_cpu(civic
->loc_srv_intv_unit
));
2029 tprintf("Srv Intv: %u, ", civic
->loc_srv_intv
);
2031 if(!subelements(pkt
,
2032 meas_req
->len
- 3 - sizeof(*civic
)))
2035 else if(meas_req
->type
== 12) {
2036 struct element_meas_loc_id
*id
;
2038 id
= (struct element_meas_loc_id
*)
2039 pkt_pull(pkt
, sizeof(*id
));
2043 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*id
)) < 0) {
2044 tprintf("Length of Req matchs not Type %u",
2049 tprintf("Location Subj: %u, ", id
->loc_subj
);
2050 tprintf("Srv Intv Units: %u, ",
2051 le16_to_cpu(id
->loc_srv_intv_unit
));
2052 tprintf("Srv Intv: %u", id
->loc_srv_intv
);
2054 if(!subelements(pkt
,
2055 meas_req
->len
- 3 - sizeof(*id
)))
2058 else if(meas_req
->type
== 255) {
2059 struct element_meas_pause
*pause
;
2061 pause
= (struct element_meas_pause
*)
2062 pkt_pull(pkt
, sizeof(*pause
));
2066 if ((ssize_t
)(meas_req
->len
- 3 - sizeof(*pause
)) < 0) {
2067 tprintf("Length of Req matchs not Type %u",
2072 tprintf("Pause Time: %fs, ", pause
->time
* 10 * TU
);
2074 if(!subelements(pkt
,
2075 meas_req
->len
- 3 - sizeof(*pause
)))
2079 tprintf("Length field indicates data,"
2080 " but could not interpreted");
2088 static int8_t inf_meas_rep(struct pkt_buff
*pkt
, u8
*id
)
2090 struct element_meas_rep
*meas_rep
;
2092 meas_rep
= (struct element_meas_rep
*) pkt_pull(pkt
, sizeof(*meas_rep
));
2093 if (meas_rep
== NULL
)
2096 tprintf(" Measurement Rep (%u, Len(%u)): ", *id
, meas_rep
->len
);
2097 if (len_lt_error(meas_rep
->len
, 3))
2100 tprintf("Token: %u, ", meas_rep
->token
);
2101 tprintf("Rep Mode: 0x%x (Late (%u), Incapable(%u), Refused(%u), ",
2102 meas_rep
->rep_mode
, meas_rep
->rep_mode
>> 7,
2103 (meas_rep
->rep_mode
>> 6) & 0x1,
2104 (meas_rep
->rep_mode
>> 5) & 0x1);
2105 tprintf("Type: %s (%u), ", meas_type(meas_rep
->type
), meas_rep
->type
);
2107 if(meas_rep
->len
> 3) {
2108 if(meas_rep
->type
== 0) {
2109 struct element_meas_basic
*basic
;
2111 basic
= (struct element_meas_basic
*)
2112 pkt_pull(pkt
, sizeof(*basic
));
2116 if ((meas_rep
->len
- 3 - sizeof(*basic
)) != 0) {
2117 tprintf("Length of Req matchs not Type %u",
2122 tprintf("Ch Nr: %uus, ", basic
->ch_nr
);
2123 tprintf("Meas Start Time: %lu, ",
2124 le64_to_cpu(basic
->start
));
2125 tprintf("Meas Duration: %fs",
2126 le16_to_cpu(basic
->dur
) * TU
);
2129 else if(meas_rep
->type
== 1) {
2130 struct element_meas_cca
*cca
;
2132 cca
= (struct element_meas_cca
*)
2133 pkt_pull(pkt
, sizeof(*cca
));
2137 if ((meas_rep
->len
- 3 - sizeof(*cca
)) != 0) {
2138 tprintf("Length of Req matchs not Type %u",
2143 tprintf("Ch Nr: %uus, ", cca
->ch_nr
);
2144 tprintf("Meas Start Time: %lu, ",
2145 le64_to_cpu(cca
->start
));
2146 tprintf("Meas Duration: %fs",
2147 le16_to_cpu(cca
->dur
) * TU
);
2149 else if(meas_rep
->type
== 2) {
2150 struct element_meas_rpi
*rpi
;
2152 rpi
= (struct element_meas_rpi
*)
2153 pkt_pull(pkt
, sizeof(*rpi
));
2157 if ((meas_rep
->len
- 3 - sizeof(*rpi
)) != 0) {
2158 tprintf("Length of Req matchs not Type %u",
2163 tprintf("Ch Nr: %uus, ", rpi
->ch_nr
);
2164 tprintf("Meas Start Time: %lu, ",
2165 le64_to_cpu(rpi
->start
));
2166 tprintf("Meas Duration: %fs",
2167 le16_to_cpu(rpi
->dur
) * TU
);
2169 else if(meas_rep
->type
== 3) {
2170 struct element_meas_ch_load
*ch_load
;
2172 ch_load
= (struct element_meas_ch_load
*)
2173 pkt_pull(pkt
, sizeof(*ch_load
));
2174 if (ch_load
== NULL
)
2177 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*ch_load
)) < 0) {
2178 tprintf("Length of Req matchs not Type %u",
2183 tprintf("OP Class: %u, ", ch_load
->op_class
);
2184 tprintf("Ch Nr: %u, ", ch_load
->ch_nr
);
2185 tprintf("Rand Intv: %fs, ",
2186 le16_to_cpu(ch_load
->rand_intv
) * TU
);
2187 tprintf("Meas Duration: %fs",
2188 le16_to_cpu(ch_load
->dur
) * TU
);
2190 if(!subelements(pkt
,
2191 meas_rep
->len
- 3 - sizeof(*ch_load
)))
2194 else if(meas_rep
->type
== 4) {
2195 struct element_meas_noise
*noise
;
2197 noise
= (struct element_meas_noise
*)
2198 pkt_pull(pkt
, sizeof(*noise
));
2202 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*noise
)) < 0) {
2203 tprintf("Length of Req matchs not Type %u",
2208 tprintf("OP Class: %u, ", noise
->op_class
);
2209 tprintf("Ch Nr: %u, ", noise
->ch_nr
);
2210 tprintf("Rand Intv: %fs, ",
2211 le16_to_cpu(noise
->rand_intv
) * TU
);
2212 tprintf("Meas Duration: %fs",
2213 le16_to_cpu(noise
->dur
) * TU
);
2215 if(!subelements(pkt
,
2216 meas_rep
->len
- 3 - sizeof(*noise
)))
2219 else if(meas_rep
->type
== 5) {
2220 struct element_meas_beacon
*beacon
;
2222 beacon
= (struct element_meas_beacon
*)
2223 pkt_pull(pkt
, sizeof(*beacon
));
2227 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*beacon
)) < 0) {
2228 tprintf("Length of Req matchs not Type %u",
2233 tprintf("OP Class: %u, ", beacon
->op_class
);
2234 tprintf("Ch Nr: %u, ", beacon
->ch_nr
);
2235 tprintf("Rand Intv: %fs, ",
2236 le16_to_cpu(beacon
->rand_intv
) * TU
);
2237 tprintf("Meas Duration: %fs",
2238 le16_to_cpu(beacon
->dur
) * TU
);
2239 tprintf("Mode: %u, ", beacon
->mode
);
2240 tprintf("BSSID: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
2241 beacon
->bssid
[0], beacon
->bssid
[1],
2242 beacon
->bssid
[2], beacon
->bssid
[3],
2243 beacon
->bssid
[4], beacon
->bssid
[5]);
2245 if(!subelements(pkt
,
2246 meas_rep
->len
- 3 - sizeof(*beacon
)))
2249 else if(meas_rep
->type
== 6) {
2250 struct element_meas_frame
*frame
;
2252 frame
= (struct element_meas_frame
*)
2253 pkt_pull(pkt
, sizeof(*frame
));
2257 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*frame
)) < 0) {
2258 tprintf("Length of Req matchs not Type %u",
2263 tprintf("OP Class: %u, ", frame
->op_class
);
2264 tprintf("Ch Nr: %u, ", frame
->ch_nr
);
2265 tprintf("Rand Intv: %fs, ",
2266 le16_to_cpu(frame
->rand_intv
) * TU
);
2267 tprintf("Meas Duration: %fs",
2268 le16_to_cpu(frame
->dur
) * TU
);
2269 tprintf("Request Type: %u, ", frame
->frame
);
2270 tprintf("MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
2271 frame
->mac
[0], frame
->mac
[1],
2272 frame
->mac
[2], frame
->mac
[3],
2273 frame
->mac
[4], frame
->mac
[5]);
2275 if(!subelements(pkt
,
2276 meas_rep
->len
- 3 - sizeof(*frame
)))
2279 else if(meas_rep
->type
== 7) {
2280 struct element_meas_sta
*sta
;
2282 sta
= (struct element_meas_sta
*)
2283 pkt_pull(pkt
, sizeof(*sta
));
2287 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*sta
)) < 0) {
2288 tprintf("Length of Req matchs not Type %u",
2293 tprintf("Peer MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x, ",
2294 sta
->peer_mac
[0], sta
->peer_mac
[1],
2295 sta
->peer_mac
[2], sta
->peer_mac
[3],
2296 sta
->peer_mac
[4], sta
->peer_mac
[5]);
2297 tprintf("Rand Intv: %fs, ",
2298 le16_to_cpu(sta
->rand_intv
) * TU
);
2299 tprintf("Meas Duration: %fs",
2300 le16_to_cpu(sta
->dur
) * TU
);
2301 tprintf("Group ID: %u, ", sta
->group_id
);
2303 if(!subelements(pkt
,
2304 meas_rep
->len
- 3 - sizeof(*sta
)))
2307 else if(meas_rep
->type
== 8) {
2308 struct element_meas_lci
*lci
;
2310 lci
= (struct element_meas_lci
*)
2311 pkt_pull(pkt
, sizeof(*lci
));
2315 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*lci
)) < 0) {
2316 tprintf("Length of Req matchs not Type %u",
2321 tprintf("Location Subj: %u, ", lci
->loc_subj
);
2322 tprintf("Latitude Req Res: %udeg",
2323 lci
->latitude_req_res
);
2324 tprintf("Longitude Req Res: %udeg",
2325 lci
->longitude_req_res
);
2326 tprintf("Altitude Req Res: %udeg",
2327 lci
->altitude_req_res
);
2329 if(!subelements(pkt
,
2330 meas_rep
->len
- 3 - sizeof(*lci
)))
2333 else if(meas_rep
->type
== 9) {
2334 struct element_meas_trans_str_cat
*trans
;
2336 trans
= (struct element_meas_trans_str_cat
*)
2337 pkt_pull(pkt
, sizeof(*trans
));
2341 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*trans
)) < 0) {
2342 tprintf("Length of Req matchs not Type %u",
2347 tprintf("Rand Intv: %fs, ",
2348 le16_to_cpu(trans
->rand_intv
) * TU
);
2349 tprintf("Meas Duration: %fs",
2350 le16_to_cpu(trans
->dur
) * TU
);
2351 tprintf("MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x, ",
2352 trans
->peer_sta_addr
[0], trans
->peer_sta_addr
[1],
2353 trans
->peer_sta_addr
[2], trans
->peer_sta_addr
[3],
2354 trans
->peer_sta_addr
[4], trans
->peer_sta_addr
[5]);
2355 tprintf("Traffic ID: %u, ", trans
->traffic_id
);
2356 tprintf("Bin 0 Range: %u, ", trans
->bin_0_range
);
2358 if(!subelements(pkt
,
2359 meas_rep
->len
- 3 - sizeof(*trans
)))
2362 else if(meas_rep
->type
== 10) {
2363 struct element_meas_mcast_diag
*mcast
;
2365 mcast
= (struct element_meas_mcast_diag
*)
2366 pkt_pull(pkt
, sizeof(*mcast
));
2370 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*mcast
)) < 0) {
2371 tprintf("Length of Req matchs not Type %u",
2376 tprintf("Rand Intv: %fs, ",
2377 le16_to_cpu(mcast
->rand_intv
) * TU
);
2378 tprintf("Meas Duration: %fs",
2379 le16_to_cpu(mcast
->dur
) * TU
);
2380 tprintf("Group MAC Addr: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
2381 mcast
->group_mac
[0], mcast
->group_mac
[1],
2382 mcast
->group_mac
[2], mcast
->group_mac
[3],
2383 mcast
->group_mac
[4], mcast
->group_mac
[5]);
2385 if(!subelements(pkt
,
2386 meas_rep
->len
- 3 - sizeof(*mcast
)))
2389 else if(meas_rep
->type
== 11) {
2390 struct element_meas_loc_civic
*civic
;
2392 civic
= (struct element_meas_loc_civic
*)
2393 pkt_pull(pkt
, sizeof(*civic
));
2397 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*civic
)) < 0) {
2398 tprintf("Length of Req matchs not Type %u",
2403 tprintf("Location Subj: %u, ", civic
->loc_subj
);
2404 tprintf("Type: %u, ", civic
->civic_loc
);
2405 tprintf("Srv Intv Units: %u, ",
2406 le16_to_cpu(civic
->loc_srv_intv_unit
));
2407 tprintf("Srv Intv: %u, ", civic
->loc_srv_intv
);
2409 if(!subelements(pkt
,
2410 meas_rep
->len
- 3 - sizeof(*civic
)))
2413 else if(meas_rep
->type
== 12) {
2414 struct element_meas_loc_id
*id
;
2416 id
= (struct element_meas_loc_id
*)
2417 pkt_pull(pkt
, sizeof(*id
));
2421 if ((ssize_t
)(meas_rep
->len
- 3 - sizeof(*id
)) < 0) {
2422 tprintf("Length of Req matchs not Type %u",
2427 tprintf("Location Subj: %u, ", id
->loc_subj
);
2428 tprintf("Srv Intv Units: %u, ",
2429 le16_to_cpu(id
->loc_srv_intv_unit
));
2430 tprintf("Srv Intv: %u", id
->loc_srv_intv
);
2432 if(!subelements(pkt
,
2433 meas_rep
->len
- 3 - sizeof(*id
)))
2437 tprintf("Length field indicates data,"
2438 " but could not interpreted");
2446 static int8_t inf_quiet(struct pkt_buff
*pkt
, u8
*id
)
2448 struct element_quiet
*quiet
;
2450 quiet
= (struct element_quiet
*) pkt_pull(pkt
, sizeof(*quiet
));
2454 tprintf(" Quit (%u, Len(%u)): ", *id
, quiet
->len
);
2455 if (len_neq_error(quiet
->len
, 6))
2458 tprintf("Count: %ud, ", quiet
->cnt
);
2459 tprintf("Period: %u, ", quiet
->period
);
2460 tprintf("Duration: %fs, ", le16_to_cpu(quiet
->dur
) * TU
);
2461 tprintf("Offs: %fs", le16_to_cpu(quiet
->offs
) * TU
);
2467 static int8_t inf_ibss_dfs(struct pkt_buff
*pkt
, u8
*id
)
2469 struct element_ibss_dfs
*ibss_dfs
;
2472 ibss_dfs
= (struct element_ibss_dfs
*) pkt_pull(pkt
, sizeof(*ibss_dfs
));
2473 if (ibss_dfs
== NULL
)
2476 tprintf(" IBSS DFS (%u, Len(%u)): ", *id
, ibss_dfs
->len
);
2477 if (len_lt_error(ibss_dfs
->len
, 7))
2480 tprintf("Owner: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x, ",
2481 ibss_dfs
->owner
[0], ibss_dfs
->owner
[1],
2482 ibss_dfs
->owner
[2], ibss_dfs
->owner
[3],
2483 ibss_dfs
->owner
[4], ibss_dfs
->owner
[5]);
2484 tprintf("Recovery Intv: %u, ", ibss_dfs
->rec_intv
);
2486 if((ibss_dfs
->len
- sizeof(*ibss_dfs
) + 1) & 1) {
2487 tprintf("Length of Channel Map should be modulo 2");
2491 for (i
= 0; i
< ibss_dfs
->len
; i
+= 2) {
2492 struct element_ibss_dfs_tuple
*ibss_dfs_tuple
;
2494 ibss_dfs_tuple
= (struct element_ibss_dfs_tuple
*)
2495 pkt_pull(pkt
, sizeof(*ibss_dfs_tuple
));
2496 if (ibss_dfs_tuple
== NULL
)
2499 tprintf("Channel Nr: %u, ", ibss_dfs_tuple
->ch_nr
);
2500 tprintf("Map: %u, ", ibss_dfs_tuple
->map
);
2506 static int8_t inf_erp(struct pkt_buff
*pkt
, u8
*id
)
2508 struct element_erp
*erp
;
2510 erp
= (struct element_erp
*) pkt_pull(pkt
, sizeof(*erp
));
2514 tprintf(" ERP (%u, Len(%u)): ", *id
, erp
->len
);
2515 if (len_neq_error(erp
->len
, 1))
2517 tprintf("Non ERP Present (%u), ", erp
->param
& 0x1);
2518 tprintf("Use Protection (%u), ", (erp
->param
>> 1) & 0x1);
2519 tprintf("Barker Preamble Mode (%u), ", (erp
->param
>> 2) & 0x1);
2520 tprintf("Reserved (0x%.5x)", erp
->param
>> 3);
2525 static int8_t inf_ts_del(struct pkt_buff
*pkt
, u8
*id
)
2527 struct element_ts_del
*ts_del
;
2529 ts_del
= (struct element_ts_del
*) pkt_pull(pkt
, sizeof(*ts_del
));
2533 tprintf(" TS Delay (%u, Len(%u)): ", *id
, ts_del
->len
);
2534 if (len_neq_error(ts_del
->len
, 4))
2536 tprintf("Delay (%fs)", le32_to_cpu(ts_del
->delay
) * TU
);
2541 static int8_t inf_tclas_proc(struct pkt_buff
*pkt
, u8
*id
)
2543 struct element_tclas_proc
*tclas_proc
;
2545 tclas_proc
= (struct element_tclas_proc
*)
2546 pkt_pull(pkt
, sizeof(*tclas_proc
));
2547 if (tclas_proc
== NULL
)
2550 tprintf(" TCLAS Procesing (%u, Len(%u)): ", *id
, tclas_proc
->len
);
2551 if (len_neq_error(tclas_proc
->len
, 1))
2553 tprintf("Processing (%u)", tclas_proc
->proc
);
2558 static int8_t inf_ht_cap(struct pkt_buff
*pkt
, u8
*id
)
2560 struct element_ht_cap
*ht_cap
;
2561 u32 tx_param_res
, beam_cap
;
2564 ht_cap
= (struct element_ht_cap
*)
2565 pkt_pull(pkt
, sizeof(*ht_cap
));
2569 tx_param_res
= le32_to_cpu(ht_cap
->tx_param_res
);
2570 beam_cap
= le32_to_cpu(ht_cap
->beam_cap
);
2571 ext_cap
= le16_to_cpu(ht_cap
->ext_cap
);
2573 tprintf(" HT Capabilities (%u, Len(%u)): ", *id
, ht_cap
->len
);
2574 if (len_neq_error(ht_cap
->len
, 26))
2576 tprintf("Info (LDCP Cod Cap (%u), Supp Ch Width Set (%u),"
2577 " SM Pwr Save(%u), HT-Greenfield (%u), Short GI for 20/40 MHz"
2578 " (%u/%u), Tx/Rx STBC (%u/%u), HT-Delayed Block Ack (%u),"
2579 " Max A-MSDU Len (%u), DSSS/CCK Mode in 40 MHz (%u),"
2580 " Res (0x%x), Forty MHz Intol (%u), L-SIG TXOP Protection Supp"
2581 " (%u)), ", ht_cap
->ldpc
, ht_cap
->supp_width
,
2582 ht_cap
->sm_pwr
, ht_cap
->ht_green
, ht_cap
->gi_20mhz
,
2583 ht_cap
->gi_40mhz
, ht_cap
->tx_stbc
, ht_cap
->rx_stbc
,
2584 ht_cap
->ht_ack
, ht_cap
->max_msdu_length
, ht_cap
->dsss_ck_mode
,
2585 ht_cap
->res
, ht_cap
->forty_int
, ht_cap
->prot_supp
);
2586 tprintf("A-MPDU Params (Max Len Exp (%u), Min Start Spacing (%u),"
2587 " Res (0x%x)), ", ht_cap
->param
>> 6, (ht_cap
->param
>> 3) & 0x7,
2588 ht_cap
->param
& 0x07);
2589 tprintf("Supp MCS Set (Rx MCS Bitmask (0x%x%x%x%x%x%x%x%x%x%x),"
2590 " Res (0x%x), Rx High Supp Data Rate (%u), Res (0x%x),"
2591 " Tx MCS Set Def (%u), Tx Rx MCS Set Not Eq (%u),"
2592 " Tx Max Number Spat Str Supp (%u),"
2593 " Tx Uneq Mod Supp (%u), Res (0x%x)), ",
2594 ht_cap
->bitmask1
, ht_cap
->bitmask2
, ht_cap
->bitmask3
,
2595 ht_cap
->bitmask4
, ht_cap
->bitmask5
, ht_cap
->bitmask6
,
2596 ht_cap
->bitmask7
, ht_cap
->bitmask8
, ht_cap
->bitmask9
,
2597 ht_cap
->bitmask10_res
>> 3, ht_cap
->bitmask10_res
& 0x7,
2598 le16_to_cpu(ht_cap
->supp_rate_res
) >> 6,
2599 le16_to_cpu(ht_cap
->supp_rate_res
) & 0x3F,
2600 tx_param_res
>> 31, (tx_param_res
>> 30) & 1,
2601 (tx_param_res
>> 28) & 3, (tx_param_res
>> 27) & 1,
2602 tx_param_res
& 0x7FFFFFF);
2603 tprintf("Ext Cap (PCO (%u), PCO Trans Time (%u), Res (0x%x),"
2604 " MCS Feedb (%u), +HTC Supp (%u), RD Resp (%u), Res (0x%x)), ",
2605 ext_cap
>> 15, (ext_cap
>> 13) & 3, (ext_cap
>> 8) & 0x1F,
2606 (ext_cap
>> 6) & 3, (ext_cap
>> 5) & 1, (ext_cap
>> 4) & 1,
2608 tprintf("Transm Beamf (Impl Transm Beamf Rec Cap (%u),"
2609 " Rec/Transm Stagg Sound Cap (%u/%u),"
2610 " Rec/Trans NDP Cap (%u/%u), Impl Transm Beamf Cap (%u),"
2611 " Cal (%u), Expl CSI Transm Beamf Cap (%u),"
2612 " Expl Noncmpr/Compr Steering Cap (%u/%u),"
2613 " Expl Trans Beamf CSI Feedb (%u),"
2614 " Expl Noncmpr/Cmpr Feedb Cap (%u/%u),"
2615 " Min Grpg (%u), CSI Num Beamf Ant Supp (%u),"
2616 " Noncmpr/Cmpr Steering Nr Beamf Ant Supp (%u/%u),"
2617 " CSI Max Nr Rows Beamf Supp (%u),"
2618 " Ch Estim Cap (%u), Res (0x%x)), ",
2619 beam_cap
>> 31, (beam_cap
>> 30) & 1, (beam_cap
>> 29) & 1,
2620 (beam_cap
>> 28) & 1, (beam_cap
>> 27) & 1, (beam_cap
>> 26) & 1,
2621 (beam_cap
>> 24) & 3, (beam_cap
>> 23) & 1, (beam_cap
>> 22) & 1,
2622 (beam_cap
>> 21) & 1, (beam_cap
>> 19) & 3, (beam_cap
>> 17) & 3,
2623 (beam_cap
>> 15) & 3, (beam_cap
>> 13) & 3, (beam_cap
>> 11) & 3,
2624 (beam_cap
>> 9) & 3, (beam_cap
>> 7) & 3, (beam_cap
>> 5) & 3,
2625 (beam_cap
>> 3) & 3, beam_cap
& 7);
2626 tprintf("ASEL (Ant Select Cap (%u),"
2627 " Expl CSI Feedb Based Transm ASEL Cap (%u),"
2628 " Ant Indic Feedb Based Transm ASEL Cap (%u),"
2629 " Expl CSI Feedb Cap (%u), Ant Indic Feedb Cap (%u),"
2630 " Rec ASEL Cap (%u), Transm Sound PPDUs Cap (%u), Res (0x%x))",
2631 ht_cap
->asel_cap
>> 7, (ht_cap
->asel_cap
>> 6) & 1,
2632 (ht_cap
->asel_cap
>> 5) & 1, (ht_cap
->asel_cap
>> 4) & 1,
2633 (ht_cap
->asel_cap
>> 3) & 1, (ht_cap
->asel_cap
>> 2) & 1,
2634 (ht_cap
->asel_cap
>> 1) & 1, ht_cap
->asel_cap
& 1);
2639 static int8_t inf_qos_cap(struct pkt_buff
*pkt
, u8
*id
)
2641 struct element_qos_cap
*qos_cap
;
2643 qos_cap
= (struct element_qos_cap
*)
2644 pkt_pull(pkt
, sizeof(*qos_cap
));
2645 if (qos_cap
== NULL
)
2648 tprintf(" QoS Capabilities (%u, Len(%u)): ", *id
, qos_cap
->len
);
2649 if (len_neq_error(qos_cap
->len
, 1))
2652 tprintf("Info (0x%x)", qos_cap
->info
);
2657 static int8_t inf_rsn(struct pkt_buff
*pkt
, u8
*id
)
2662 static int8_t inf_ext_supp_rates(struct pkt_buff
*pkt
, u8
*id
)
2666 struct element_ext_supp_rates
*ext_supp_rates
;
2668 ext_supp_rates
= (struct element_ext_supp_rates
*)
2669 pkt_pull(pkt
, sizeof(*ext_supp_rates
));
2670 if (ext_supp_rates
== NULL
)
2673 tprintf(" Ext Support Rates (%u, Len(%u)): ", *id
, ext_supp_rates
->len
);
2675 if ((ext_supp_rates
->len
- sizeof(*ext_supp_rates
) + 1) > 0) {
2676 rates
= pkt_pull(pkt
, ext_supp_rates
->len
);
2680 for (i
= 0; i
< ext_supp_rates
->len
; i
++)
2681 tprintf("%g ", (rates
[i
] & 0x80) ?
2682 ((rates
[i
] & 0x3f) * 0.5) :
2683 data_rates(rates
[i
]));
2690 static int8_t inf_ap_ch_exp(struct pkt_buff
*pkt
, u8
*id
) {
2694 static int8_t inf_neighb_rep(struct pkt_buff
*pkt
, u8
*id
) {
2698 static int8_t inf_rcpi(struct pkt_buff
*pkt
, u8
*id
) {
2702 static int8_t inf_mde(struct pkt_buff
*pkt
, u8
*id
) {
2706 static int8_t inf_fte(struct pkt_buff
*pkt
, u8
*id
) {
2710 static int8_t inf_time_out_int(struct pkt_buff
*pkt
, u8
*id
) {
2714 static int8_t inf_rde(struct pkt_buff
*pkt
, u8
*id
) {
2718 static int8_t inf_dse_reg_loc(struct pkt_buff
*pkt
, u8
*id
) {
2722 static int8_t inf_supp_op_class(struct pkt_buff
*pkt
, u8
*id
) {
2726 static int8_t inf_ext_ch_sw_ann(struct pkt_buff
*pkt
, u8
*id
) {
2730 static int8_t inf_ht_op(struct pkt_buff
*pkt
, u8
*id
) {
2734 static int8_t inf_sec_ch_offs(struct pkt_buff
*pkt
, u8
*id
) {
2738 static int8_t inf_bss_avg_acc_del(struct pkt_buff
*pkt
, u8
*id
) {
2742 static int8_t inf_ant(struct pkt_buff
*pkt
, u8
*id
) {
2746 static int8_t inf_rsni(struct pkt_buff
*pkt
, u8
*id
) {
2750 static int8_t inf_meas_pilot_trans(struct pkt_buff
*pkt
, u8
*id
) {
2754 static int8_t inf_bss_avl_adm_cap(struct pkt_buff
*pkt
, u8
*id
) {
2758 static int8_t inf_bss_ac_acc_del(struct pkt_buff
*pkt
, u8
*id
) {
2762 static int8_t inf_time_adv(struct pkt_buff
*pkt
, u8
*id
) {
2766 static int8_t inf_rm_ena_cap(struct pkt_buff
*pkt
, u8
*id
) {
2770 static int8_t inf_mult_bssid(struct pkt_buff
*pkt
, u8
*id
) {
2774 static int8_t inf_20_40_bss_coex(struct pkt_buff
*pkt
, u8
*id
) {
2778 static int8_t inf_20_40_bss_int_ch_rep(struct pkt_buff
*pkt
, u8
*id
) {
2782 static int8_t inf_overl_bss_scan_para(struct pkt_buff
*pkt
, u8
*id
) {
2786 static int8_t inf_ric_desc(struct pkt_buff
*pkt
, u8
*id
) {
2790 static int8_t inf_mgmt_mic(struct pkt_buff
*pkt
, u8
*id
) {
2794 static int8_t inf_ev_req(struct pkt_buff
*pkt
, u8
*id
) {
2798 static int8_t inf_ev_rep(struct pkt_buff
*pkt
, u8
*id
) {
2802 static int8_t inf_diagn_req(struct pkt_buff
*pkt
, u8
*id
) {
2806 static int8_t inf_diagn_rep(struct pkt_buff
*pkt
, u8
*id
) {
2810 static int8_t inf_loc_para(struct pkt_buff
*pkt
, u8
*id
) {
2814 static int8_t inf_nontr_bssid_cap(struct pkt_buff
*pkt
, u8
*id
) {
2818 static int8_t inf_ssid_list(struct pkt_buff
*pkt
, u8
*id
) {
2822 static int8_t inf_mult_bssid_index(struct pkt_buff
*pkt
, u8
*id
) {
2826 static int8_t inf_fms_desc(struct pkt_buff
*pkt
, u8
*id
) {
2830 static int8_t inf_fms_req(struct pkt_buff
*pkt
, u8
*id
) {
2834 static int8_t inf_fms_resp(struct pkt_buff
*pkt
, u8
*id
) {
2838 static int8_t inf_qos_tfc_cap(struct pkt_buff
*pkt
, u8
*id
) {
2842 static int8_t inf_bss_max_idle_per(struct pkt_buff
*pkt
, u8
*id
) {
2846 static int8_t inf_tfs_req(struct pkt_buff
*pkt
, u8
*id
) {
2850 static int8_t inf_tfs_resp(struct pkt_buff
*pkt
, u8
*id
) {
2854 static int8_t inf_wnm_sleep_mod(struct pkt_buff
*pkt
, u8
*id
) {
2858 static int8_t inf_tim_bcst_req(struct pkt_buff
*pkt
, u8
*id
) {
2862 static int8_t inf_tim_bcst_resp(struct pkt_buff
*pkt
, u8
*id
) {
2866 static int8_t inf_coll_interf_rep(struct pkt_buff
*pkt
, u8
*id
) {
2870 static int8_t inf_ch_usage(struct pkt_buff
*pkt
, u8
*id
) {
2874 static int8_t inf_time_zone(struct pkt_buff
*pkt
, u8
*id
) {
2878 static int8_t inf_dms_req(struct pkt_buff
*pkt
, u8
*id
) {
2882 static int8_t inf_dms_resp(struct pkt_buff
*pkt
, u8
*id
) {
2886 static int8_t inf_link_id(struct pkt_buff
*pkt
, u8
*id
) {
2890 static int8_t inf_wakeup_sched(struct pkt_buff
*pkt
, u8
*id
) {
2894 static int8_t inf_ch_sw_timing(struct pkt_buff
*pkt
, u8
*id
) {
2898 static int8_t inf_pti_ctrl(struct pkt_buff
*pkt
, u8
*id
) {
2902 static int8_t inf_tpu_buff_status(struct pkt_buff
*pkt
, u8
*id
) {
2906 static int8_t inf_interw(struct pkt_buff
*pkt
, u8
*id
) {
2910 static int8_t inf_adv_proto(struct pkt_buff
*pkt
, u8
*id
) {
2914 static int8_t inf_exp_bandw_req(struct pkt_buff
*pkt
, u8
*id
) {
2918 static int8_t inf_qos_map_set(struct pkt_buff
*pkt
, u8
*id
) {
2922 static int8_t inf_roam_cons(struct pkt_buff
*pkt
, u8
*id
) {
2926 static int8_t inf_emer_alert_id(struct pkt_buff
*pkt
, u8
*id
) {
2930 static int8_t inf_mesh_conf(struct pkt_buff
*pkt
, u8
*id
) {
2934 static int8_t inf_mesh_id(struct pkt_buff
*pkt
, u8
*id
) {
2938 static int8_t inf_mesh_link_metr_rep(struct pkt_buff
*pkt
, u8
*id
) {
2942 static int8_t inf_cong_notif(struct pkt_buff
*pkt
, u8
*id
) {
2946 static int8_t inf_mesh_peer_mgmt(struct pkt_buff
*pkt
, u8
*id
) {
2950 static int8_t inf_mesh_ch_sw_para(struct pkt_buff
*pkt
, u8
*id
) {
2954 static int8_t inf_mesh_awake_win(struct pkt_buff
*pkt
, u8
*id
) {
2958 static int8_t inf_beacon_timing(struct pkt_buff
*pkt
, u8
*id
) {
2962 static int8_t inf_mccaop_setup_req(struct pkt_buff
*pkt
, u8
*id
) {
2966 static int8_t inf_mccaop_setup_rep(struct pkt_buff
*pkt
, u8
*id
) {
2970 static int8_t inf_mccaop_adv(struct pkt_buff
*pkt
, u8
*id
) {
2974 static int8_t inf_mccaop_teardwn(struct pkt_buff
*pkt
, u8
*id
) {
2978 static int8_t inf_gann(struct pkt_buff
*pkt
, u8
*id
) {
2982 static int8_t inf_rann(struct pkt_buff
*pkt
, u8
*id
) {
2986 static int8_t inf_ext_cap(struct pkt_buff
*pkt
, u8
*id
) {
2990 static int8_t inf_preq(struct pkt_buff
*pkt
, u8
*id
) {
2994 static int8_t inf_prep(struct pkt_buff
*pkt
, u8
*id
) {
2998 static int8_t inf_perr(struct pkt_buff
*pkt
, u8
*id
) {
3002 static int8_t inf_pxu(struct pkt_buff
*pkt
, u8
*id
) {
3006 static int8_t inf_pxuc(struct pkt_buff
*pkt
, u8
*id
) {
3010 static int8_t inf_auth_mesh_peer_exch(struct pkt_buff
*pkt
, u8
*id
) {
3014 static int8_t inf_mic(struct pkt_buff
*pkt
, u8
*id
) {
3018 static int8_t inf_dest_uri(struct pkt_buff
*pkt
, u8
*id
) {
3022 static int8_t inf_u_apsd_coex(struct pkt_buff
*pkt
, u8
*id
) {
3026 static int8_t inf_mccaop_adv_overv(struct pkt_buff
*pkt
, u8
*id
) {
3030 static int8_t inf_vend_spec(struct pkt_buff
*pkt
, u8
*id
)
3034 struct element_vend_spec
*vend_spec
;
3036 vend_spec
= (struct element_vend_spec
*)
3037 pkt_pull(pkt
, sizeof(*vend_spec
));
3038 if (vend_spec
== NULL
)
3041 tprintf(" Vendor Specific (%u, Len (%u)): ", *id
, vend_spec
->len
);
3043 data
= pkt_pull(pkt
, vend_spec
->len
);
3048 for (i
= 0; i
< vend_spec
->len
; i
++)
3049 tprintf("%.2x", data
[i
]);
3054 static int8_t inf_elements(struct pkt_buff
*pkt
)
3056 u8
*id
= pkt_pull(pkt
, 1);
3061 case 0: return inf_ssid(pkt
, id
);
3062 case 1: return inf_supp_rates(pkt
, id
);
3063 case 2: return inf_fh_ps(pkt
, id
);
3064 case 3: return inf_dsss_ps(pkt
, id
);
3065 case 4: return inf_cf_ps(pkt
, id
);
3066 case 5: return inf_tim(pkt
, id
);
3067 case 6: return inf_ibss_ps(pkt
, id
);
3068 case 7: return inf_country(pkt
, id
);
3069 case 8: return inf_hop_pp(pkt
, id
);
3070 case 9: return inf_hop_pt(pkt
, id
);
3071 case 10: return inf_req(pkt
, id
);
3072 case 11: return inf_bss_load(pkt
, id
);
3073 case 12: return inf_edca_ps(pkt
, id
);
3074 case 13: return inf_tspec(pkt
, id
);
3075 case 14: return inf_tclas(pkt
, id
);
3076 case 15: return inf_sched(pkt
, id
);
3077 case 16: return inf_chall_txt(pkt
, id
);
3078 case 17 ... 31: return inf_reserved(pkt
, id
);
3079 case 32: return inf_pwr_constr(pkt
, id
);
3080 case 33: return inf_pwr_cap(pkt
, id
);
3081 case 34: return inf_tpc_req(pkt
, id
);
3082 case 35: return inf_tpc_rep(pkt
, id
);
3083 case 36: return inf_supp_ch(pkt
, id
);
3084 case 37: return inf_ch_sw_ann(pkt
, id
);
3085 case 38: return inf_meas_req(pkt
, id
);
3086 case 39: return inf_meas_rep(pkt
, id
);
3087 case 40: return inf_quiet(pkt
, id
);
3088 case 41: return inf_ibss_dfs(pkt
, id
);
3089 case 42: return inf_erp(pkt
, id
);
3090 case 43: return inf_ts_del(pkt
, id
);
3091 case 44: return inf_tclas_proc(pkt
, id
);
3092 case 45: return inf_ht_cap(pkt
, id
);
3093 case 46: return inf_qos_cap(pkt
, id
);
3094 case 47: return inf_reserved(pkt
, id
);
3095 case 48: return inf_rsn(pkt
, id
);
3096 case 49: return inf_rsn(pkt
, id
);
3097 case 50: return inf_ext_supp_rates(pkt
, id
);
3098 case 51: return inf_ap_ch_exp(pkt
, id
);
3099 case 52: return inf_neighb_rep(pkt
, id
);
3100 case 53: return inf_rcpi(pkt
, id
);
3101 case 54: return inf_mde(pkt
, id
);
3102 case 55: return inf_fte(pkt
, id
);
3103 case 56: return inf_time_out_int(pkt
, id
);
3104 case 57: return inf_rde(pkt
, id
);
3105 case 58: return inf_dse_reg_loc(pkt
, id
);
3106 case 59: return inf_supp_op_class(pkt
, id
);
3107 case 60: return inf_ext_ch_sw_ann(pkt
, id
);
3108 case 61: return inf_ht_op(pkt
, id
);
3109 case 62: return inf_sec_ch_offs(pkt
, id
);
3110 case 63: return inf_bss_avg_acc_del(pkt
, id
);
3111 case 64: return inf_ant(pkt
, id
);
3112 case 65: return inf_rsni(pkt
, id
);
3113 case 66: return inf_meas_pilot_trans(pkt
, id
);
3114 case 67: return inf_bss_avl_adm_cap(pkt
, id
);
3115 case 68: return inf_bss_ac_acc_del(pkt
, id
);
3116 case 69: return inf_time_adv(pkt
, id
);
3117 case 70: return inf_rm_ena_cap(pkt
, id
);
3118 case 71: return inf_mult_bssid(pkt
, id
);
3119 case 72: return inf_20_40_bss_coex(pkt
, id
);
3120 case 73: return inf_20_40_bss_int_ch_rep(pkt
, id
);
3121 case 74: return inf_overl_bss_scan_para(pkt
, id
);
3122 case 75: return inf_ric_desc(pkt
, id
);
3123 case 76: return inf_mgmt_mic(pkt
, id
);
3124 case 78: return inf_ev_req(pkt
, id
);
3125 case 79: return inf_ev_rep(pkt
, id
);
3126 case 80: return inf_diagn_req(pkt
, id
);
3127 case 81: return inf_diagn_rep(pkt
, id
);
3128 case 82: return inf_loc_para(pkt
, id
);
3129 case 83: return inf_nontr_bssid_cap(pkt
, id
);
3130 case 84: return inf_ssid_list(pkt
, id
);
3131 case 85: return inf_mult_bssid_index(pkt
, id
);
3132 case 86: return inf_fms_desc(pkt
, id
);
3133 case 87: return inf_fms_req(pkt
, id
);
3134 case 88: return inf_fms_resp(pkt
, id
);
3135 case 89: return inf_qos_tfc_cap(pkt
, id
);
3136 case 90: return inf_bss_max_idle_per(pkt
, id
);
3137 case 91: return inf_tfs_req(pkt
, id
);
3138 case 92: return inf_tfs_resp(pkt
, id
);
3139 case 93: return inf_wnm_sleep_mod(pkt
, id
);
3140 case 94: return inf_tim_bcst_req(pkt
, id
);
3141 case 95: return inf_tim_bcst_resp(pkt
, id
);
3142 case 96: return inf_coll_interf_rep(pkt
, id
);
3143 case 97: return inf_ch_usage(pkt
, id
);
3144 case 98: return inf_time_zone(pkt
, id
);
3145 case 99: return inf_dms_req(pkt
, id
);
3146 case 100: return inf_dms_resp(pkt
, id
);
3147 case 101: return inf_link_id(pkt
, id
);
3148 case 102: return inf_wakeup_sched(pkt
, id
);
3149 case 104: return inf_ch_sw_timing(pkt
, id
);
3150 case 105: return inf_pti_ctrl(pkt
, id
);
3151 case 106: return inf_tpu_buff_status(pkt
, id
);
3152 case 107: return inf_interw(pkt
, id
);
3153 case 108: return inf_adv_proto(pkt
, id
);
3154 case 109: return inf_exp_bandw_req(pkt
, id
);
3155 case 110: return inf_qos_map_set(pkt
, id
);
3156 case 111: return inf_roam_cons(pkt
, id
);
3157 case 112: return inf_emer_alert_id(pkt
, id
);
3158 case 113: return inf_mesh_conf(pkt
, id
);
3159 case 114: return inf_mesh_id(pkt
, id
);
3160 case 115: return inf_mesh_link_metr_rep(pkt
, id
);
3161 case 116: return inf_cong_notif(pkt
, id
);
3162 case 117: return inf_mesh_peer_mgmt(pkt
, id
);
3163 case 118: return inf_mesh_ch_sw_para(pkt
, id
);
3164 case 119: return inf_mesh_awake_win(pkt
, id
);
3165 case 120: return inf_beacon_timing(pkt
, id
);
3166 case 121: return inf_mccaop_setup_req(pkt
, id
);
3167 case 122: return inf_mccaop_setup_rep(pkt
, id
);
3168 case 123: return inf_mccaop_adv(pkt
, id
);
3169 case 124: return inf_mccaop_teardwn(pkt
, id
);
3170 case 125: return inf_gann(pkt
, id
);
3171 case 126: return inf_rann(pkt
, id
);
3172 case 127: return inf_ext_cap(pkt
, id
);
3173 case 128: return inf_reserved(pkt
, id
);
3174 case 129: return inf_reserved(pkt
, id
);
3175 case 130: return inf_preq(pkt
, id
);
3176 case 131: return inf_prep(pkt
, id
);
3177 case 132: return inf_perr(pkt
, id
);
3178 case 133: return inf_reserved(pkt
, id
);
3179 case 134: return inf_reserved(pkt
, id
);
3180 case 135: return inf_reserved(pkt
, id
);
3181 case 136: return inf_reserved(pkt
, id
);
3182 case 137: return inf_pxu(pkt
, id
);
3183 case 138: return inf_pxuc(pkt
, id
);
3184 case 139: return inf_auth_mesh_peer_exch(pkt
, id
);
3185 case 140: return inf_mic(pkt
, id
);
3186 case 141: return inf_dest_uri(pkt
, id
);
3187 case 142: return inf_u_apsd_coex(pkt
, id
);
3188 case 143 ... 173: return inf_reserved(pkt
, id
);
3189 case 174: return inf_mccaop_adv_overv(pkt
, id
);
3190 case 221: return inf_vend_spec(pkt
, id
);
3196 #define ESS 0b0000000000000001
3197 #define IBSS 0b0000000000000010
3198 #define CF_Pollable 0b0000000000000100
3199 #define CF_Poll_Req 0b0000000000001000
3200 #define Privacy 0b0000000000010000
3201 #define Short_Pre 0b0000000000100000
3202 #define PBCC 0b0000000001000000
3203 #define Ch_Agility 0b0000000010000000
3204 #define Spec_Mgmt 0b0000000100000000
3205 #define QoS 0b0000001000000000
3206 #define Short_Slot_t 0b0000010000000000
3207 #define APSD 0b0000100000000000
3208 #define Radio_Meas 0b0001000000000000
3209 #define DSSS_OFDM 0b0010000000000000
3210 #define Del_Block_ACK 0b0100000000000000
3211 #define Imm_Block_ACK 0b1000000000000000
3213 static int8_t cap_field(u16 cap_inf
)
3219 if (CF_Pollable
& cap_inf
)
3220 tprintf(" CF Pollable;");
3221 if (CF_Poll_Req
& cap_inf
)
3222 tprintf(" CF-Poll Request;");
3223 if (Privacy
& cap_inf
)
3224 tprintf(" Privacy;");
3225 if (Short_Pre
& cap_inf
)
3226 tprintf(" Short Preamble;");
3229 if (Ch_Agility
& cap_inf
)
3230 tprintf(" Channel Agility;");
3231 if (Spec_Mgmt
& cap_inf
)
3232 tprintf(" Spectrum Management;");
3235 if (Short_Slot_t
& cap_inf
)
3236 tprintf(" Short Slot Time;");
3239 if (Radio_Meas
& cap_inf
)
3240 tprintf(" Radio Measurement;");
3241 if (DSSS_OFDM
& cap_inf
)
3242 tprintf(" DSSS-OFDM;");
3243 if (Del_Block_ACK
& cap_inf
)
3244 tprintf(" Delayed Block Ack;");
3245 if (Imm_Block_ACK
& cap_inf
)
3246 tprintf(" Immediate Block Ack;");
3251 /* Management Dissectors */
3252 static int8_t assoc_req(struct pkt_buff
*pkt
) {
3256 static int8_t assoc_resp(struct pkt_buff
*pkt
) {
3260 static int8_t reassoc_req(struct pkt_buff
*pkt
) {
3264 static int8_t reassoc_resp(struct pkt_buff
*pkt
) {
3268 static int8_t probe_req(struct pkt_buff
*pkt
) {
3272 static int8_t probe_resp(struct pkt_buff
*pkt
) {
3276 static int8_t beacon(struct pkt_buff
*pkt
)
3278 struct ieee80211_mgmt_beacon
*beacon
;
3280 beacon
= (struct ieee80211_mgmt_beacon
*)
3281 pkt_pull(pkt
, sizeof(*beacon
));
3285 tprintf("Timestamp 0x%.16lx, ", le64_to_cpu(beacon
->timestamp
));
3286 tprintf("Beacon Interval (%fs), ", le16_to_cpu(beacon
->beacon_int
)*TU
);
3287 tprintf("Capabilities (0x%x <->", le16_to_cpu(beacon
->capab_info
));
3288 cap_field(le16_to_cpu(beacon
->capab_info
));
3292 tprintf("\n\tParameters:");
3293 while (inf_elements(pkt
)) {
3303 static int8_t atim(struct pkt_buff
*pkt
) {
3307 static int8_t disassoc(struct pkt_buff
*pkt
) {
3311 static int8_t auth(struct pkt_buff
*pkt
) {
3315 static int8_t deauth(struct pkt_buff
*pkt
) {
3318 /* End Management Dissectors */
3320 /* Control Dissectors */
3321 static int8_t ps_poll(struct pkt_buff
*pkt
) {
3325 static int8_t rts(struct pkt_buff
*pkt
) {
3329 static int8_t cts(struct pkt_buff
*pkt
) {
3333 static int8_t ack(struct pkt_buff
*pkt
) {
3337 static int8_t cf_end(struct pkt_buff
*pkt
) {
3341 static int8_t cf_end_ack(struct pkt_buff
*pkt
) {
3344 /* End Control Dissectors */
3346 /* Data Dissectors */
3347 static int8_t data(struct pkt_buff
*pkt
) {
3351 static int8_t data_cf_ack(struct pkt_buff
*pkt
) {
3355 static int8_t data_cf_poll(struct pkt_buff
*pkt
) {
3359 static int8_t data_cf_ack_poll(struct pkt_buff
*pkt
) {
3363 static int8_t null(struct pkt_buff
*pkt
) {
3367 static int8_t cf_ack(struct pkt_buff
*pkt
) {
3371 static int8_t cf_poll(struct pkt_buff
*pkt
) {
3375 static int8_t cf_ack_poll(struct pkt_buff
*pkt
) {
3378 /* End Data Dissectors */
3380 static const char *mgt_sub(u8 subtype
, struct pkt_buff
*pkt
,
3381 int8_t (**get_content
)(struct pkt_buff
*pkt
))
3384 struct ieee80211_mgmt
*mgmt
;
3385 const char *dst
, *src
, *bssid
;
3387 mgmt
= (struct ieee80211_mgmt
*) pkt_pull(pkt
, sizeof(*mgmt
));
3391 dst
= lookup_vendor((mgmt
->da
[0] << 16) |
3392 (mgmt
->da
[1] << 8) |
3394 src
= lookup_vendor((mgmt
->sa
[0] << 16) |
3395 (mgmt
->sa
[1] << 8) |
3398 bssid
= lookup_vendor((mgmt
->bssid
[0] << 16) |
3399 (mgmt
->bssid
[1] << 8) |
3401 seq_ctrl
= le16_to_cpu(mgmt
->seq_ctrl
);
3403 tprintf("Duration (%u),", le16_to_cpu(mgmt
->duration
));
3404 tprintf("\n\tDestination (%.2x:%.2x:%.2x:%.2x:%.2x:%.2x) ",
3405 mgmt
->da
[0], mgmt
->da
[1], mgmt
->da
[2],
3406 mgmt
->da
[3], mgmt
->da
[4], mgmt
->da
[5]);
3408 tprintf("=> (%s:%.2x:%.2x:%.2x)", dst
,
3409 mgmt
->da
[3], mgmt
->da
[4], mgmt
->da
[5]);
3412 tprintf("\n\tSource (%.2x:%.2x:%.2x:%.2x:%.2x:%.2x) ",
3413 mgmt
->sa
[0], mgmt
->sa
[1], mgmt
->sa
[2],
3414 mgmt
->sa
[3], mgmt
->sa
[4], mgmt
->sa
[5]);
3416 tprintf("=> (%s:%.2x:%.2x:%.2x)", src
,
3417 mgmt
->sa
[3], mgmt
->sa
[4], mgmt
->sa
[5]);
3420 tprintf("\n\tBSSID (%.2x:%.2x:%.2x:%.2x:%.2x:%.2x) ",
3421 mgmt
->bssid
[0], mgmt
->bssid
[1], mgmt
->bssid
[2],
3422 mgmt
->bssid
[3], mgmt
->bssid
[4], mgmt
->bssid
[5]);
3424 tprintf("=> (%s:%.2x:%.2x:%.2x)", bssid
,
3425 mgmt
->bssid
[3], mgmt
->bssid
[4], mgmt
->bssid
[5]);
3428 tprintf("\n\tFragmentnr. (%u), Seqnr. (%u). ",
3429 seq_ctrl
& 0xf, seq_ctrl
>> 4);
3433 *get_content
= assoc_req
;
3434 return "Association Request";
3436 *get_content
= assoc_resp
;
3437 return "Association Response";
3439 *get_content
= reassoc_req
;
3440 return "Reassociation Request";
3442 *get_content
= reassoc_resp
;
3443 return "Reassociation Response";
3445 *get_content
= probe_req
;
3446 return "Probe Request";
3448 *get_content
= probe_resp
;
3449 return "Probe Response";
3451 *get_content
= beacon
;
3454 *get_content
= atim
;
3457 *get_content
= disassoc
;
3458 return "Disassociation";
3460 *get_content
= auth
;
3461 return "Authentication";
3463 *get_content
= deauth
;
3464 return "Deauthentication";
3465 case 0b0110 ... 0b0111:
3466 case 0b1101 ... 0b1111:
3467 *get_content
= NULL
;
3470 *get_content
= NULL
;
3471 return "Management SubType unknown";
3475 static const char *ctrl_sub(u8 subtype
, struct pkt_buff
*pkt
,
3476 int8_t (**get_content
)(struct pkt_buff
*pkt
))
3480 *get_content
= ps_poll
;
3492 *get_content
= cf_end
;
3495 *get_content
= cf_end_ack
;
3496 return "CF End + CF-ACK";
3497 case 0b0000 ... 0b1001:
3498 *get_content
= NULL
;
3501 return "Control SubType unkown";
3505 static const char *data_sub(u8 subtype
, struct pkt_buff
*pkt
,
3506 int8_t (**get_content
)(struct pkt_buff
*pkt
))
3510 *get_content
= data
;
3513 *get_content
= data_cf_ack
;
3514 return "Data + CF-ACK";
3516 *get_content
= data_cf_poll
;
3517 return "Data + CF-Poll";
3519 *get_content
= data_cf_ack_poll
;
3520 return "Data + CF-ACK + CF-Poll";
3522 *get_content
= null
;
3525 *get_content
= cf_ack
;
3528 *get_content
= cf_poll
;
3531 *get_content
= cf_ack_poll
;
3532 return "CF-ACK + CF-Poll";
3533 case 0b1000 ... 0b1111:
3534 *get_content
= NULL
;
3537 *get_content
= NULL
;
3538 return "Data SubType unkown";
3543 frame_control_type(u8 type
, const char *(**get_subtype
)(u8 subtype
,
3544 struct pkt_buff
*pkt
, int8_t (**get_content
)(struct pkt_buff
*pkt
)))
3548 *get_subtype
= mgt_sub
;
3549 return "Management";
3551 *get_subtype
= ctrl_sub
;
3554 *get_subtype
= data_sub
;
3557 *get_subtype
= NULL
;
3560 *get_subtype
= NULL
;
3561 return "Control Type unkown";
3565 static void ieee80211(struct pkt_buff
*pkt
)
3567 int8_t (*get_content
)(struct pkt_buff
*pkt
) = NULL
;
3568 const char *(*get_subtype
)(u8 subtype
, struct pkt_buff
*pkt
,
3569 int8_t (**get_content
)(struct pkt_buff
*pkt
)) = NULL
;
3570 const char *subtype
= NULL
;
3571 struct ieee80211_frm_ctrl
*frm_ctrl
;
3573 frm_ctrl
= (struct ieee80211_frm_ctrl
*)
3574 pkt_pull(pkt
, sizeof(*frm_ctrl
));
3575 if (frm_ctrl
== NULL
)
3578 tprintf(" [ 802.11 Frame Control (0x%04x)]\n",
3579 le16_to_cpu(frm_ctrl
->frame_control
));
3581 tprintf(" [ Proto Version (%u), ", frm_ctrl
->proto_version
);
3582 tprintf("Type (%u, %s), ", frm_ctrl
->type
,
3583 frame_control_type(frm_ctrl
->type
, &get_subtype
));
3585 subtype
= (*get_subtype
)(frm_ctrl
->subtype
, pkt
, &get_content
);
3586 tprintf("Subtype (%u, %s)", frm_ctrl
->subtype
, subtype
);
3588 tprintf("%s%s%s", colorize_start_full(black
, red
),
3589 "No SubType Data available", colorize_end());
3592 tprintf("%s%s", frm_ctrl
->to_ds
? ", Frame goes to DS" : "",
3593 frm_ctrl
->from_ds
? ", Frame comes from DS" : "");
3594 tprintf("%s", frm_ctrl
->more_frags
? ", More Fragments" : "");
3595 tprintf("%s", frm_ctrl
->retry
? ", Frame is retransmitted" : "");
3596 tprintf("%s", frm_ctrl
->power_mgmt
? ", In Power Saving Mode" : "");
3597 tprintf("%s", frm_ctrl
->more_data
? ", More Data" : "");
3598 tprintf("%s", frm_ctrl
->wep
? ", Needs WEP" : "");
3599 tprintf("%s", frm_ctrl
->order
? ", Order" : "");
3603 tprintf(" [ Subtype %s: ", subtype
);
3604 if (!((*get_content
) (pkt
)))
3605 tprintf("%s%s%s", colorize_start_full(black
, red
),
3606 "Failed to dissect Subtype", colorize_end());
3609 tprintf("%s%s%s", colorize_start_full(black
, red
),
3610 "No SubType Data available", colorize_end());
3615 // pkt_set_proto(pkt, &ieee802_lay2, ntohs(eth->h_proto));
3618 static void ieee80211_less(struct pkt_buff
*pkt
)
3620 tprintf("802.11 frame (more on todo)");
3623 struct protocol ieee80211_ops
= {
3625 .print_full
= ieee80211
,
3626 .print_less
= ieee80211_less
,