1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
|
#include "Mp_Precomp.h"
#if WPP_SOFTWARE_TRACE
#include "MgntActQueryParam.tmh"
#endif
u1Byte SS_Rate_Map_G[6][2]= {{40, MGN_54M}, {30, MGN_48M}, {20, MGN_36M}, {12, MGN_24M}, {7, MGN_18M}, {0, MGN_12M}};
u1Byte SS_Rate_Map_B[2][2]= {{7, MGN_11M}, {0, MGN_5_5M}};
//
// 2011/07/08 MH For ALPHA link speedn display, we will add several level for them temporaily. Becasue
// They still not make sure which one is suitable for DWA-133 now. This is a tempoarily revise. We need to rebuild
// a structure for different rate display to prevent wasting memory..
//
u1Byte SS_Rate_Map_AC_1SS_MCS9[10][2]= {{46, MGN_VHT1SS_MCS9},{43, MGN_VHT1SS_MCS8},{39, MGN_VHT1SS_MCS7}, {35, MGN_VHT1SS_MCS5}, {29, MGN_VHT1SS_MCS4}, {25, MGN_VHT1SS_MCS3}, {20, MGN_VHT1SS_MCS2}, {15, MGN_VHT1SS_MCS1}, {10, MGN_VHT1SS_MCS0},{0, MGN_6M}};
//(10以下請顯示6M in 5G)
u1Byte SS_Rate_Map_AC_1SS_MCS7[8][2]= {{41, MGN_VHT1SS_MCS7}, {35, MGN_VHT1SS_MCS5}, {29, MGN_VHT1SS_MCS4}, {25, MGN_VHT1SS_MCS3}, {20, MGN_VHT1SS_MCS2}, {15, MGN_VHT1SS_MCS1}, {10, MGN_VHT1SS_MCS0},{0, MGN_6M}};
//(10以下請顯示6M in 5G)
u1Byte SS_Rate_Map_N_MCS7[7][2]= {{40, MGN_MCS7}, {30, MGN_MCS5}, {25, MGN_MCS4}, {23, MGN_MCS3}, {19, MGN_MCS2}, {8, MGN_MCS1}, {0, MGN_MCS0}};
u1Byte SS_Rate_Map_N_MCS7_Lv1[7][2]= {{40, MGN_MCS7}, {30, MGN_MCS5}, {25, MGN_MCS4}, {19, MGN_MCS3}, {8, MGN_MCS2}, {5, MGN_MCS1}, {2, MGN_MCS0}};
u1Byte SS_Rate_Map_N_MCS7_Lv2[7][2]= {{40, MGN_MCS7}, {30, MGN_MCS6}, {25, MGN_MCS5}, {19, MGN_MCS4}, {8, MGN_MCS3}, {5, MGN_MCS2}, {2, MGN_MCS0}};
u1Byte SS_Rate_Map_N_MCS7_Lv3[5][2]= {{40, MGN_MCS7}, {30, MGN_MCS6}, {20, MGN_MCS4}, {8, MGN_MCS3}, {2, MGN_MCS1}};
u1Byte SS_Rate_Map_N_MCS7_Lv4[5][2]= {{40, MGN_MCS7}, {30, MGN_MCS6}, {10, MGN_MCS4}, {5, MGN_MCS3}, {1, MGN_MCS1}};
u1Byte SS_Rate_Map_N_MCS7_Lv5[5][2]= {{40, MGN_MCS7}, {10, MGN_MCS6}, {8, MGN_MCS5}, {2, MGN_MCS3}, {1, MGN_MCS1}};
u1Byte SS_Rate_Map_N_MCS7_Lv6[3][2]= {{20, MGN_MCS7}, {5, MGN_MCS6}, {2, MGN_MCS5}};
// For rate display for 2T2R.
u1Byte SS_Rate_Map_AC_2SS_MCS9[13][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS5}, {32, MGN_VHT2SS_MCS4}, {28, MGN_VHT1SS_MCS7}, {24, MGN_VHT1SS_MCS7}, {21, MGN_VHT1SS_MCS6}, {18, MGN_VHT1SS_MCS5}, {14, MGN_VHT1SS_MCS3}, {10, MGN_12M}, {0, MGN_6M}};
// Lvl1 replace as original value.
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv1[13][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS4}, {32, MGN_VHT1SS_MCS6}, {28, MGN_VHT1SS_MCS4}, {24, MGN_VHT1SS_MCS3}, {21, MGN_VHT1SS_MCS2}, {18, MGN_VHT1SS_MCS1}, {14, MGN_VHT1SS_MCS0}, {10, MGN_12M}, {0, MGN_6M}};
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv2[11][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS4}, {32, MGN_VHT1SS_MCS6}, {28, MGN_VHT1SS_MCS4}, {24, MGN_VHT1SS_MCS3}, {20, MGN_VHT1SS_MCS2}, {10, MGN_VHT1SS_MCS1}, {0, MGN_12M}};
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv3[9][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS5}, {32, MGN_VHT1SS_MCS7}, {20, MGN_VHT1SS_MCS4}, {10, MGN_VHT1SS_MCS1}, {0, MGN_VHT1SS_MCS0}};
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv4[7][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {44, MGN_VHT2SS_MCS7}, {30, MGN_VHT2SS_MCS6}, {20, MGN_VHT2SS_MCS5}, {10, MGN_VHT1SS_MCS4}, {0, MGN_VHT1SS_MCS1}};
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv5[5][2]= {{50, MGN_VHT2SS_MCS9}, {47, MGN_VHT2SS_MCS8}, {30, MGN_VHT2SS_MCS7}, {15, MGN_VHT2SS_MCS4}, {0, MGN_VHT1SS_MCS2}};
u1Byte SS_Rate_Map_AC_2SS_MCS9_Lv6[5][2]= {{45, MGN_VHT2SS_MCS9}, {40, MGN_VHT2SS_MCS8}, {30, MGN_VHT2SS_MCS7}, {10, MGN_VHT2SS_MCS6}, {0, MGN_VHT2SS_MCS4}};
//(10以下請顯示6M in 5G)
u1Byte SS_Rate_Map_AC_2SS_MCS7[12][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS5}, {32, MGN_VHT2SS_MCS4}, {28, MGN_VHT1SS_MCS5}, {24, MGN_VHT1SS_MCS4}, {21, MGN_VHT1SS_MCS3}, {18, MGN_VHT1SS_MCS2}, {14, MGN_VHT1SS_MCS1}, {10, MGN_VHT1SS_MCS0}, {0, MGN_6M}};
// Lvl1 replace as original value.
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv1[12][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {36, MGN_VHT2SS_MCS4}, {32, MGN_VHT1SS_MCS6}, {28, MGN_VHT1SS_MCS4}, {24, MGN_VHT1SS_MCS3}, {21, MGN_VHT1SS_MCS2}, {18, MGN_VHT1SS_MCS1}, {14, MGN_VHT1SS_MCS0}, {10, MGN_12M}, {0, MGN_6M}};
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv2[6][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {30, MGN_VHT2SS_MCS4}, {20, MGN_VHT1SS_MCS4}, {10, MGN_VHT1SS_MCS1}, {0, MGN_VHT1SS_MCS1}};
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv3[5][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {30, MGN_VHT2SS_MCS4}, {15, MGN_VHT1SS_MCS3}, {0, MGN_VHT1SS_MCS1}};
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv4[5][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {30, MGN_VHT2SS_MCS5}, {15, MGN_VHT1SS_MCS4}, {0, MGN_VHT1SS_MCS1}};
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv5[5][2]= {{44, MGN_VHT2SS_MCS7}, {40, MGN_VHT2SS_MCS6}, {27, MGN_VHT2SS_MCS6}, {15, MGN_VHT1SS_MCS5}, {0, MGN_VHT1SS_MCS1}};
u1Byte SS_Rate_Map_AC_2SS_MCS7_Lv6[3][2]= {{36, MGN_VHT2SS_MCS7}, {20, MGN_VHT2SS_MCS6}, {0, MGN_VHT2SS_MCS4}};
u1Byte SS_Rate_Map_AC_3SS_MCS9[12][2]= {{50, MGN_VHT3SS_MCS9}, {47, MGN_VHT3SS_MCS8}, {44, MGN_VHT3SS_MCS7}, {40, MGN_VHT3SS_MCS6}, {36, MGN_VHT3SS_MCS5}, {32, MGN_VHT3SS_MCS4}, {28, MGN_VHT3SS_MCS3}, {24, MGN_VHT3SS_MCS2}, {21, MGN_VHT3SS_MCS1}, {18, MGN_VHT3SS_MCS0}, {10, MGN_12M}, {0, MGN_6M}};
//(10以下請顯示6M in 5G)
u1Byte SS_Rate_Map_N_MCS15[7][2]= {{40, MGN_MCS15}, {35, MGN_MCS14}, {31, MGN_MCS12}, {28, MGN_MCS7}, {25, MGN_MCS5}, {23, MGN_MCS3}, {10, MGN_MCS0}};
u1Byte SS_Rate_Map_N_MCS15_Lv1[12][2]= {{40, MGN_MCS15}, {37, MGN_MCS14}, {35, MGN_MCS13}, {31, MGN_MCS12}, {28, MGN_MCS7}, {25, MGN_MCS6}, {22, MGN_MCS5}, {20, MGN_MCS4}, {15, MGN_MCS3}, {12, MGN_MCS2}, {8, MGN_MCS1}, {4, MGN_MCS0}};
u1Byte SS_Rate_Map_N_MCS15_Lv2[7][2]= {{40, MGN_MCS15}, {35, MGN_MCS14}, {28, MGN_MCS12}, {20, MGN_MCS5}, {10, MGN_MCS3}, {5, MGN_MCS2}, {2, MGN_MCS1}};
u1Byte SS_Rate_Map_N_MCS15_Lv3[5][2]= {{40, MGN_MCS15}, {30, MGN_MCS14}, {20, MGN_MCS12}, {10, MGN_MCS7}, {5, MGN_MCS2}};
u1Byte SS_Rate_Map_N_MCS15_Lv4[5][2]= {{40, MGN_MCS15}, {30, MGN_MCS14}, {10, MGN_MCS13}, {2, MGN_MCS7}, {1, MGN_MCS3}};
u1Byte SS_Rate_Map_N_MCS15_Lv5[5][2]= {{40, MGN_MCS15}, {10, MGN_MCS14}, {5, MGN_MCS13}, {2, MGN_MCS12}, {1, MGN_MCS4}};
u1Byte SS_Rate_Map_N_MCS15_Lv6[3][2]= {{20, MGN_MCS15}, {5, MGN_MCS14}, {2, MGN_MCS13}};
u1Byte SS_Rate_Map_N_MCS23[7][2]= {{40, MGN_MCS23}, {35, MGN_MCS22}, {31, MGN_MCS12}, {28, MGN_MCS7}, {25, MGN_MCS5}, {23, MGN_MCS3}, {10, MGN_MCS0}};
u1Byte MSI_SS_Rate_Map_G[6][2]= {{40, MGN_54M}, {30, MGN_54M}, {20, MGN_54M}, {12, MGN_48M}, {7, MGN_36M}, {0, MGN_24M}};
// Temporarily add for Lenovo.
u1Byte LNV_SS_Rate_Map_G[6][2]= {{54, MGN_54M}, {40, MGN_48M}, {30, MGN_36M}, {15, MGN_24M}, {10, MGN_18M}, {5, MGN_12M}};
u1Byte LNV_SS_Rate_Map_B[2][2]= {{10, MGN_11M}, {0, MGN_5_5M}};
u2Byte
CONVERT_RATE (
PADAPTER Adapter,
u2Byte MGN_RATE
)
{
u2Byte RetValue = MGN_RATE;
if(MGN_RATE >= MGN_VHT1SS_MCS0 && MGN_RATE <= MGN_VHT4SS_MCS9)
RetValue = VHTMcsToDataRate(Adapter, MGN_RATE);
else if(MGN_RATE >= MGN_MCS0 && MGN_RATE <= MGN_MCS31)
RetValue = HTMcsToDataRate(Adapter, MGN_RATE);
return RetValue;
}
// Returns the current AP MAC address
BOOLEAN
MgntActQuery_802_11_BSSID(
PADAPTER Adapter,
pu1Byte bssidbuf
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
// <1>Set management bssid
CopyMem( bssidbuf, pMgntInfo->Bssid, 6 );
//TODO:
return TRUE;
}
BOOLEAN
MgntActQuery_802_11_ASSOCIATION_INFORMATION(
PADAPTER Adapter,
PNDIS_802_11_ASSOCIATION_INFORMATION pAssocInfo
)
{
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
PRT_SECURITY_T pSecInfo = &(pMgntInfo->SecurityInfo);
pu1Byte pDest = (pu1Byte)pAssocInfo + sizeof(NDIS_802_11_ASSOCIATION_INFORMATION);
PlatformZeroMemory(pAssocInfo, sizeof(NDIS_802_11_ASSOCIATION_INFORMATION));
pAssocInfo->Length = sizeof(NDIS_802_11_ASSOCIATION_INFORMATION);
//------------------------------------------------------
// Association Request related information
//------------------------------------------------------
// Req_1. AvailableRequestFixedIEs
pAssocInfo->AvailableRequestFixedIEs |= NDIS_802_11_AI_REQFI_CAPABILITIES|NDIS_802_11_AI_REQFI_CURRENTAPADDRESS;
//pAssocInfo->AvailableResponseFixedIEs|= NDIS_802_11_AI_RESFI_CAPABILITIES|NDIS_802_11_AI_RESFI_STATUSCODE|NDIS_802_11_AI_REQFI_CURRENTAPADDRESS;
// Req_2. RequestFixedIEs: 1.Capabilities, 2.ListenInterval, 3.CurrentAPAddress.
//2004/07/29, kcwu, mCap should be used
//pAssocInfo->RequestFixedIEs.Capabilities = pMgntInfo->Asoc_asCap;
pAssocInfo->RequestFixedIEs.Capabilities = pMgntInfo->mCap;
pAssocInfo->RequestFixedIEs.ListenInterval = pMgntInfo->ListenInterval; // Added by Annie, 2006-05-110.
PlatformMoveMemory(pAssocInfo->RequestFixedIEs.CurrentAPAddress, &pMgntInfo->Bssid[0], 6);
// Req_3. RequestIELength
// [WindowsDesignNoteForWPA2]
// - This field contains the number of octets in the OffetRequestIEs buffer.
// - This should be set to 0 if a request has not been made.
// We handle RequestIELength and AsocReq IEs in the following code.
// Req_4. OffsetRequestIEs
// [WindowsDesignNoteForWPA2]
// - This field contains the offset in the buffer containing any variable length information elements from the association or reassociation request message.
// - During a query, this contains the information elements that were in the last association or reassociate request attempt. The request may succeed or fail.
pAssocInfo->OffsetRequestIEs = sizeof(NDIS_802_11_ASSOCIATION_INFORMATION);
//------------------------------------------------------
// Association Service
// <----------------------------->
// Status = idle Status = Wait_Aso, Wait_ReAso Status = idle
// mAsso!=1&&mIbss!=1 mAssoc!=1&&mIbss!=1 mAssoc==1||mIbss==1
// Return none Request return,Response none Request return, Response return
//------------------------------------------------------
if( (pMgntInfo->State_AsocService == STATE_Asoc_Idle && (pMgntInfo->mAssoc || pMgntInfo->mIbss )) ||
(pMgntInfo->State_AsocService == STATE_Wait_Asoc_Response || pMgntInfo->State_AsocService == STATE_Wait_Reasoc_Response))
{
// IE_1. Last SSID in Association Request
pDest[0] = (u1Byte)EID_SsId;
pDest[1] = (u1Byte)pMgntInfo->Ssid.Length;
PlatformMoveMemory((pu1Byte)pDest + 2,
&pMgntInfo->Ssid.Octet[0],
pMgntInfo->Ssid.Length);
pDest = (pu1Byte)pDest + (2 + pMgntInfo->Ssid.Length);
pAssocInfo->RequestIELength += (2 + pMgntInfo->Ssid.Length);
// IE_2. Last Supported Rate in Association Request
pDest[0] = EID_SupRates;
pDest[1] = (u1Byte)pMgntInfo->Regdot11OperationalRateSet.Length;
PlatformMoveMemory((pu1Byte)pDest + 2,
pMgntInfo->Regdot11OperationalRateSet.Octet,
pMgntInfo->Regdot11OperationalRateSet.Length);
pDest += (2 + pMgntInfo->Regdot11OperationalRateSet.Length);
pAssocInfo->RequestIELength += (2 + pMgntInfo->Regdot11OperationalRateSet.Length);
// IE_3. Last RSNIE in Association Request
if( pSecInfo->SecLvl > RT_SEC_LVL_NONE )
{
pDest[0] = ( pSecInfo->SecLvl == RT_SEC_LVL_WPA )? EID_Vendor : EID_WPA2;
pDest[1] = (u1Byte)pSecInfo->RSNIE.Length;
PlatformMoveMemory((pu1Byte)pDest + 2,
pSecInfo->RSNIE.Octet,
pSecInfo->RSNIE.Length);
pDest += (2 + pSecInfo->RSNIE.Length);
pAssocInfo->RequestIELength += (2 + pSecInfo->RSNIE.Length);
}
CCX_AppendAssocReqCCKMIE(Adapter, pDest, &pAssocInfo->RequestIELength);
RT_PRINT_DATA( COMP_SEC, DBG_TRACE, ("MgntActQuery_802_11_ASSOCIATION_INFORMATION(): RSNIE"), pSecInfo->RSNIE.Octet, pSecInfo->RSNIE.Length);
}
//------------------------------------------------------
// Association Response related information
//------------------------------------------------------
if( pMgntInfo->State_AsocService == STATE_Asoc_Idle &&
(pMgntInfo->mAssoc || pMgntInfo->mIbss )
)
{
// Rsp_1. AvailableResponseFixedIEs
pAssocInfo->AvailableResponseFixedIEs =
NDIS_802_11_AI_RESFI_CAPABILITIES |
NDIS_802_11_AI_RESFI_STATUSCODE |
NDIS_802_11_AI_RESFI_ASSOCIATIONID ;
// Rsp_2. ResponseFixedIEs: 1.Capabilities, 2.StatusCode, 3.AssociationId
pAssocInfo->ResponseFixedIEs.Capabilities = pMgntInfo->RspCapability;
pAssocInfo->ResponseFixedIEs.StatusCode = pMgntInfo->RspStatusCode;
pAssocInfo->ResponseFixedIEs.AssociationId = pMgntInfo->RspAssociationID;
// Rsp_3. ResponseIELength
// [WindowsDesignNoteForWPA2]
// - This field contains the number of octets in the OffsetResponseIEs buffer.
// - This must be 0 in length for a set.
// - It must be set to 0 in a query if a response for the last request is not received.
// It's already initialized 0 by PlatformZeroMemory().
// We handle ResponseIELength and AsocRsp IEs in the following code.
// Rsp_4. OffsetResponseIEs
// [WindowsDesignNoteForWPA2]
// - This field contains the offset in the buffer containing any variable length information elements from the association or reassociation response message.
// - During a query, this contains the information elements that were in the last association or reassociate response.
pAssocInfo->OffsetResponseIEs = sizeof(NDIS_802_11_ASSOCIATION_INFORMATION) + pAssocInfo->RequestIELength;
CCX_AppendAssocRspCCKMIE(Adapter, pDest, &(pAssocInfo->ResponseIELength));
}
return TRUE;
}
// Returns the SSID with which the NIC is associated.
// The driver returns 0 SSIDLength if the NIC is not associated with any SSID.
BOOLEAN
MgntActQuery_802_11_SSID(
PADAPTER Adapter,
pu1Byte ssidbuf,
pu2Byte ssidlen
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
// check ssidlen <= 32
if( pMgntInfo->Ssid.Length <= 32 ){
CopyMem( ssidbuf, pMgntInfo->Ssid.Octet, pMgntInfo->Ssid.Length );
*ssidlen = pMgntInfo->Ssid.Length;
}
else{
*ssidlen = 0;
return FALSE;
}
return TRUE;
}
// Description:
// Return the current transmit power level in dBm.
//
s4Byte
MgntActQuery_TX_POWER_DBM(
PADAPTER Adapter
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
s4Byte powerlevel;
Adapter->HalFunc.GetTxPowerLevelHandler( Adapter, &powerlevel );
//
// Get the min power in dbm. By Bruce, 2009-04-07.
// Because we may not really update the Tx Power from the CCX Cell Power IE, we shall compare the
// client configured power and cell power to get the min power returned to UI.
//
// Compare with the Client Configured Power
if(powerlevel > pMgntInfo->ClientConfigPwrInDbm && pMgntInfo->ClientConfigPwrInDbm != UNSPECIFIED_PWR_DBM)
powerlevel = pMgntInfo->ClientConfigPwrInDbm;
CCX_QueryTxPower(Adapter, &powerlevel);
return powerlevel;
}
// Returns either Infrastructure or IBSS, unknown.
RT_JOIN_NETWORKTYPE
MgntActQuery_802_11_INFRASTRUCTURE_MODE(
PADAPTER Adapter
)
{
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
if(pMgntInfo->mAssoc)
{
return RT_JOIN_NETWORKTYPE_INFRA;
}
else if(pMgntInfo->mIbss)
{
return RT_JOIN_NETWORKTYPE_ADHOC;
}
else
{
return (RT_JOIN_NETWORKTYPE)(Adapter->MgntInfo.Regdot11networktype);
}
}
// Returns the current fragmentation threshold in bytes.
u2Byte
MgntActQuery_802_11_FRAGMENTATION_THRESHOLD(
PADAPTER Adapter
)
{
return Adapter->MgntInfo.FragThreshold;
}
//Returns the current RTS threshold.
u2Byte
MgntActQuery_802_11_RTS_THRESHOLD(
PADAPTER Adapter
)
{
return Adapter->MgntInfo.dot11RtsThreshold;
}
//Returns the set of supported data rates that the radio is capable of running.
BOOLEAN
MgntActQuery_802_11_SUPPORTED_RATES(
PADAPTER Adapter,
pu1Byte RateSetbuf,
pu2Byte RateSetlen
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
if( pMgntInfo->Regdot11OperationalRateSet.Length < 16 ){
*RateSetlen = pMgntInfo->Regdot11OperationalRateSet.Length;
CopyMem( RateSetbuf, pMgntInfo->Regdot11OperationalRateSet.Octet, *RateSetlen );
}
else{
return FALSE;
}
return TRUE;
}
BOOLEAN
MgntActQuery_802_11_BSSID_LIST(
PADAPTER Adapter,
PRT_802_11_BSSID_LIST pBssidList,
BOOLEAN bRealCase
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
u4Byte i=0;
BOOLEAN matchFound = FALSE;
PRT_WLAN_BSS pBSSDesc = NULL;
u1Byte Rssibuf[MAX_BSS_DESC];
u4Byte idxBuf[MAX_BSS_DESC];
u1Byte MaxRSSI=0;
u4Byte a=0, idx=0, findidx=0, tmpidx=0;
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST() ===> \n"));
//
// 061214, rcnjko: Report no BSS scanned if RF is off.
//
if(pMgntInfo->RfOffReason > RF_CHANGE_BY_PS)
{
pBssidList->NumberOfItems = 0;
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST() <===, return by RF_CHANGE_BY_PS\n"));
return TRUE;
}
if(ACTING_AS_AP(Adapter))
{
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST() <===, return by ACTING_AS_AP\n"));
return TRUE; // ap mode don't support this oid.
}
// This scan list is empty.
if(pMgntInfo->bFlushScanList)
{
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST() <===, return by bFlushScanList\n"));
return TRUE;
}
//
// To protect the copying of scan list, using the scan spin lock.
//
//
// This part of copying WLAN BSS from NumBssDesc4Query may conflict with that
// in ScanComplete(), so that there would be no consistency between "NumBssDesc4Query"
// and "NumBssDesc". After that, some BSS we access with incorrect length infomation will
// access the invlaid memory or make system crash.
// By Bruce, 2008-05-29.
PlatformAcquireSpinLock(Adapter, RT_SCAN_SPINLOCK);
if(pMgntInfo->NumBssDesc4Query == 0 && pMgntInfo->NumBssDesc > 0)
{ // Update Bssid list for query as early as possible, 2005.07.22, by rcnjko.
u2Byte tmpNumBssDesc;
tmpNumBssDesc = pMgntInfo->NumBssDesc;
pMgntInfo->NumBssDesc4Query = tmpNumBssDesc;
//
// Roger, 071203: We should redirect the Octet pointer to the new destination.
// Rcnjko, 080201: We'd better use the macro CopyWlanBss() to duplicate
// RT_WLAN_BSS objects to handle OCTET_STRING copy issues.
//
for(i = 0; i < tmpNumBssDesc; i ++)
{
CopyWlanBss(pMgntInfo->bssDesc4Query + i, pMgntInfo->bssDesc + i);
}
}
if( bRealCase == TRUE )
{
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST() indicate Real scan \n"));
pBssidList->NumberOfItems = (pMgntInfo->NumBssDesc<=MAX_BSS_DESC) ? pMgntInfo->NumBssDesc: MAX_BSS_DESC;
pBSSDesc = pMgntInfo->bssDesc;
}
else
{
pBssidList->NumberOfItems = (pMgntInfo->NumBssDesc4Query<=MAX_BSS_DESC) ? pMgntInfo->NumBssDesc4Query: MAX_BSS_DESC;
pBSSDesc = pMgntInfo->bssDesc4Query;
}
RT_TRACE(COMP_SCAN, DBG_LOUD, ("[REDX]: MgntActQuery_802_11_BSSID_LIST(), pBssidList->NumberOfItems=%d !!\n", pBssidList->NumberOfItems));
for(i = 0; i < pBssidList->NumberOfItems; i++)
{
Rssibuf[i]= pBSSDesc[i].RSSI;
idxBuf[i] = (u2Byte)i;
}
//Select sort for rssi.
for(idx=0;idx<pBssidList->NumberOfItems;idx++)
{
MaxRSSI =0;
findidx =0;
for(a=idx;a<pBssidList->NumberOfItems;a++)
{
if(MaxRSSI<Rssibuf[a])
{
MaxRSSI = Rssibuf[a];
findidx =a;
}
}
Rssibuf[findidx] =Rssibuf[idx];
Rssibuf[idx] = MaxRSSI;
tmpidx = idxBuf[findidx];
idxBuf[findidx] = idxBuf[idx];
idxBuf[idx] = tmpidx;
}
for(i = 0; i < pBssidList->NumberOfItems; i++)
{
CopyWlanBss(&pBssidList->pbssidentry[i], &pBSSDesc[idxBuf[i]]);
}
PlatformReleaseSpinLock(Adapter, RT_SCAN_SPINLOCK);
// An workaround to prevent that we show empty SSID for the AP we've associated.
// 2005.02.18, by rcnjko.
if(pMgntInfo->mAssoc == TRUE)
{
BOOLEAN bCurrApFound = FALSE;
RT_WLAN_BSS *pBssdesc = NULL;
// Find the entry of AP associated.
for(i = 0;i < pBssidList->NumberOfItems; i++)
{
if( (pBssidList->pbssidentry[i].bdCap & cIBSS) == 0 &&
PlatformCompareMemory(pBssidList->pbssidentry[i].bdBssIdBuf, pMgntInfo->Bssid, 6) == 0 )
{
bCurrApFound = TRUE;
pBssdesc = &(pBssidList->pbssidentry[i]);
break;
}
}
if(bCurrApFound == TRUE && pBssdesc != NULL)
{
if(BeHiddenSsid(pBssdesc->bdSsIdBuf, pBssdesc->bdSsIdLen))
{
CopySsid(pBssdesc->bdSsIdBuf, pBssdesc->bdSsIdLen, pMgntInfo->Ssid.Octet, pMgntInfo->Ssid.Length);
}
}
else
{
RT_TRACE(COMP_DBG, DBG_LOUD, ("We do not find the AP currently associated !!!\n"));
}
}
return TRUE;
}
//Current authentication mode.
BOOLEAN
MgntActQuery_802_11_AUTHENTICATION_MODE(
PADAPTER Adapter,
PRT_AUTH_MODE pauthmode
)
{
*pauthmode = Adapter->MgntInfo.SecurityInfo.AuthMode;
return TRUE;
}
//Returns the current encryption status.
BOOLEAN
MgntActQuery_802_11_ENCRYPTION_STATUS(
PADAPTER Adapter,
PRT_ENC_ALG pEncAlgorithm
)
{
*pEncAlgorithm = Adapter->MgntInfo.SecurityInfo.PairwiseEncAlgorithm;
return TRUE;
}
BOOLEAN
MgntActQuery_802_11_ENCRYPTION_KEY(
PADAPTER Adapter,
RT_ENC_ALG EncAlgorithm,
u4Byte KeyIndex,
pu4Byte KeyLength,
pu1Byte KeyMaterial
)
{
*KeyLength = Adapter->MgntInfo.SecurityInfo.KeyLen[KeyIndex];
*KeyLength = (*KeyLength<32)? *KeyLength :32;
PlatformMoveMemory(
KeyMaterial,
Adapter->MgntInfo.SecurityInfo.KeyBuf[KeyIndex],
*KeyLength
);
return TRUE;
}
u1Byte
MgntActQuery_802_11_CHANNEL_NUMBER(
PADAPTER Adapter
)
{
return Adapter->MgntInfo.dot11CurrentChannelNumber;
}
//
// Description:
// Return Tx rate.
// 2006.10.20, by shien chang.
//
u2Byte
MgntActQuery_802_11_TX_RATES(
PADAPTER Adapter
)
{
u2Byte rate;
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
// Return current Tx capability.
if(IS_WIRELESS_MODE_A(Adapter))
rate = MGN_54M; // 54 M
else if(IS_WIRELESS_MODE_G(Adapter))
rate = MGN_54M; // 54 M
else if(IS_WIRELESS_MODE_B(Adapter))
rate = MGN_11M; // 11 M
else if(IS_WIRELESS_MODE_AC(Adapter))
rate = VHTMcsToDataRate(Adapter, pMgntInfo->VHTHighestOperaRate);
else if(IS_WIRELESS_MODE_N(Adapter))
rate = HTMcsToDataRate(Adapter, pMgntInfo->HTHighestOperaRate);
else
rate = MGN_1M; // 1 M
return rate;
}
u2Byte
MgntActQuery_802_11_RX_RATES(
PADAPTER Adapter
)
{
u2Byte rate;
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
u1Byte Rf_Type = RT_GetRFType(Adapter);
if(pMgntInfo->dot11CurrentWirelessMode == WIRELESS_MODE_A)
rate = MGN_54M; // 54 M
else if(pMgntInfo->dot11CurrentWirelessMode == WIRELESS_MODE_G)
rate = MGN_54M; // 54 M
else if(pMgntInfo->dot11CurrentWirelessMode == WIRELESS_MODE_B)
rate = MGN_11M; // 11 M
else if(IS_WIRELESS_MODE_N_24G(Adapter) || IS_WIRELESS_MODE_N_5G(Adapter))
{
// Since we cannot know the Tx capability of peer STA, we use Rx capability as Rx rate.
if( (Rf_Type == RF_1T1R) ||
(Rf_Type == RF_1T2R ) ||
(Rf_Type == RF_2T2R && pMgntInfo->HTHighestOperaRate <= MGN_MCS7))
rate = HTMcsToDataRate(Adapter, MGN_MCS7);
else if(Rf_Type >= RF_MAX_TYPE)
{
if(IS_WIRELESS_MODE_N_24G(Adapter))
rate = MGN_1M;
else
rate = MGN_6M;
}
else if(Rf_Type == RF_2T2R)
rate = HTMcsToDataRate(Adapter, MGN_MCS15);
else if(Rf_Type == RF_3T3R || Rf_Type == RF_2T3R)
rate = VHTMcsToDataRate(Adapter, MGN_MCS23);
else if(Rf_Type == RF_2T4R)
rate = VHTMcsToDataRate(Adapter, MGN_MCS31);
else
rate = HTMcsToDataRate(Adapter, MGN_MCS7);
}
else if(IS_WIRELESS_MODE_AC(Adapter))
{
if(Rf_Type == RF_2T2R)
rate = VHTMcsToDataRate(Adapter, MGN_VHT2SS_MCS9);
else if(Rf_Type == RF_3T3R || Rf_Type == RF_2T3R)
rate = VHTMcsToDataRate(Adapter, MGN_VHT3SS_MCS9);
else if(Rf_Type == RF_2T4R)
rate = VHTMcsToDataRate(Adapter, MGN_VHT4SS_MCS9);
else
rate = VHTMcsToDataRate(Adapter, MGN_VHT1SS_MCS9);
}
else
rate = MGN_1M; // 1 M
return rate;
}
WIRELESS_MODE
MgntActQuery_802_11_WIRELESS_MODE(
PADAPTER Adapter
)
{
return Adapter->RegWirelessMode;
}
BOOLEAN
MgntActQuery_802_11_RETRY_LIMIT(
PADAPTER Adapter,
pu2Byte ShortRetryLimit,
pu2Byte LongRetryLimit
)
{
//RTL8185_TODO: Get short/long retry limit
*ShortRetryLimit = 7;
*LongRetryLimit = 7;
RT_TRACE(COMP_INIT, DBG_SERIOUS,("TODO: Get short/long retry limit.\n") );
return TRUE;
}
BOOLEAN
MgntActQuery_MultiDomainImp(
IN PADAPTER Adapter
)
{
//
// TODO: Implemented.
//
return FALSE;
}
BOOLEAN
MgntActQuery_CfPollable(
IN PADAPTER Adapter
)
{
//
// TODO: Consider current BSS type and return TRUE if underlying HW supported.
//
return FALSE;
}
BOOLEAN
MgntActQuery_StrictlyOrderedImp(
IN PADAPTER Adapter
)
{
//
// TODO: Implement it if necessary.
//
return FALSE;
}
u4Byte
MgntActQuery_ShortRetryLimit(
IN PADAPTER Adapter
)
{
//
// TODO: Implement it.
//
return 7;
}
u4Byte
MgntActQuery_LongRetryLimit(
IN PADAPTER Adapter
)
{
//
// TODO: Implement it.
//
return 7;
}
u4Byte
MgntActQuery_MaxTxMsduLifeTime(
IN PADAPTER Adapter
)
{
//
// TODO: use it to timeout MSDU in wait queue.
//
return 512;
}
u4Byte
MgntActQuery_MaxRxMpduLifeTime(
IN PADAPTER Adapter
)
{
//
// TODO: use it to timeout fragmentation in queue.
//
return 512;
}
u4Byte
MgntActQuery_ExcludedMacAddressList(
IN PADAPTER Adapter,
OUT pu1Byte pMacAddrList,
IN u4Byte BufLength
)
{
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
u4Byte BytesNeeded = (pMgntInfo->ExcludedMacAddrListLength) * 6;
PlatformZeroMemory(pMacAddrList, BufLength);
if (BytesNeeded > BufLength)
{
return 0;
}
PlatformMoveMemory(
pMacAddrList,
pMgntInfo->ExcludedMacAddr,
BytesNeeded);
return pMgntInfo->ExcludedMacAddrListLength;
}
PRT_CHANNEL_LIST
MgntActQuery_ChannelList(
IN PADAPTER Adapter
)
{
PRT_CHANNEL_LIST pChannelList = NULL;
// Reconstruct channel list so that channel info modified during customized scan (or other function) could be recovered.
RtActChannelList(Adapter, RT_CHNL_LIST_ACTION_CONSTRUCT, NULL, NULL);
RtActChannelList(Adapter, RT_CHNL_LIST_ACTION_GET_CHANNEL_LIST, NULL, (&pChannelList));
return pChannelList;
}
//
// Description:
// Get information about logs supports.
//
BOOLEAN
MgntActQuery_DrvLogTypeList(
IN PADAPTER pAdapter,
IN u4Byte BufferLength,
OUT PDRV_LOG_TYPE_LIST_T pBuffer,
OUT pu4Byte pBytesWritten,
OUT pu4Byte pBytesNeeded
)
{
#if !DRV_LOG
*pBytesWritten = *pBytesNeeded = 0;
return FALSE;
#else
BOOLEAN bResult;
u4Byte idx;
u4Byte DescLen, EntrySize;
PDRV_LOG_TYPE_ATTRIBUTE_T pEntry;
//
// Check minimal buffer size required.
//
*pBytesWritten = 0;
*pBytesNeeded = sizeof(DRV_LOG_TYPE_LIST_T) - sizeof(DRV_LOG_TYPE_ATTRIBUTE_T);
if(BufferLength < *pBytesNeeded)
return FALSE;
//
// Enumerate into each entry and fill up if we have enough space.
//
bResult = TRUE;
*pBytesWritten = *pBytesNeeded;
pBuffer->Count = 0;
pEntry = pBuffer->LogTypeAttributes;
for(idx = 0; idx < LTYPE_TOTAL_COUNT; idx++)
{
//
// Figure out string length which is not including EOS.
//
DescLen = 0;
while(g_LogTypes[idx].Description[DescLen] != 0)
{
if(DescLen < (MAX_LOG_DESC_LEN-1))
{
DescLen++;
}
else
{ // This is an unexpted condition and might cause buffer overflow.
RT_ASSERT(FALSE, ("MgntActQuery_DrvLogTypeList(): check g_LogTypes[%ld].Description!!!\n", idx));
g_LogTypes[idx].Description[DescLen] = 0;
break;
}
}
//
// Figure out entry size and add it to *pBytesNeeded.
//
EntrySize = sizeof(DRV_LOG_TYPE_ATTRIBUTE_T) + DescLen;
*pBytesNeeded += EntrySize;
//
// Fill up this entry if there is enough space.
//
if(BufferLength >= *pBytesNeeded)
{
pEntry->MaxLogCountPwr = g_LogTypes[idx].MaxLogCountPwr;
pEntry->DescLen = DescLen + 1; // 1 is for EOS.
PlatformMoveMemory(
pEntry->Description,
g_LogTypes[idx].Description,
pEntry->DescLen);
*pBytesWritten += EntrySize;
pEntry = (PDRV_LOG_TYPE_ATTRIBUTE_T)((pu1Byte)(pEntry->Description) + pEntry->DescLen);
pBuffer->Count++;
}
else
{
bResult = FALSE;
}
}
return bResult;
#endif
}
//
// Description:
// Get information about logs supports.
//
BOOLEAN
MgntActQuery_DrvLogAttrList(
IN PADAPTER pAdapter,
IN u4Byte BufferLength,
OUT PDRV_LOG_ATTR_LIST_T pBuffer,
OUT pu4Byte pBytesWritten,
OUT pu4Byte pBytesNeeded
)
{
#if !DRV_LOG
*pBytesWritten = *pBytesNeeded = 0;
return FALSE;
#else
BOOLEAN bResult;
u4Byte idx;
u4Byte DescLen, EntrySize;
PDRV_LOG_ATTRIBUTE_T pEntry;
//
// Check minimal buffer size required.
//
*pBytesWritten = 0;
*pBytesNeeded = sizeof(DRV_LOG_ATTR_LIST_T) - sizeof(DRV_LOG_ATTRIBUTE_T);
if(BufferLength < *pBytesNeeded)
return FALSE;
//
// Enumerate into each entry and fill up if we have enough space.
//
bResult = TRUE;
*pBytesWritten = *pBytesNeeded;
pBuffer->Count = 0;
pEntry = pBuffer->LogAttributes;
for(idx = 0; idx < LID_TOTAL_COUNT; idx++)
{
//
// Figure out string length which is not including EOS.
//
DescLen = 0;
while(g_LogAttributes[idx].Description[DescLen] != 0)
{
if(DescLen < (MAX_LOG_DESC_LEN-1))
{
DescLen++;
}
else
{ // This is an unexpted condition and might cause buffer overflow.
RT_ASSERT(FALSE, ("MgntActQuery_DrvLogAttrList(): check g_LogAttributes[%ld].Description!!!\n", idx));
g_LogAttributes[idx].Description[DescLen] = 0;
break;
}
}
//
// Figure out entry size and add it to *pBytesNeeded.
//
EntrySize = sizeof(DRV_LOG_ATTRIBUTE_T) + DescLen;
*pBytesNeeded += EntrySize;
//
// Fill up this entry if there is enough space.
//
if(BufferLength >= *pBytesNeeded)
{
pEntry->Type = g_LogAttributes[idx].Type;
pEntry->DescLen = DescLen + 1; // 1 is for EOS.
PlatformMoveMemory(
pEntry->Description,
g_LogAttributes[idx].Description,
pEntry->DescLen);
*pBytesWritten += EntrySize;
pEntry = (PDRV_LOG_ATTRIBUTE_T)((pu1Byte)(pEntry->Description) + pEntry->DescLen);
pBuffer->Count++;
}
else
{
bResult = FALSE;
}
}
return bResult;
#endif
}
//
// Description:
// Retrive log data of specified type.
//
BOOLEAN
MgntActQuery_DrvLogDataList(
IN PADAPTER pAdapter,
IN u4Byte eLogType,
IN u4Byte BufferLength,
OUT PDRV_LOG_DATA_LIST_T pBuffer,
OUT pu4Byte pBytesWritten,
OUT pu4Byte pBytesNeeded
)
{
#if !DRV_LOG
*pBytesWritten = *pBytesNeeded = 0;
return FALSE;
#else
u4Byte idx;
u4Byte DrvLogCnt;
u4Byte EntrySize;
PDRV_LOG_DATA_T pEntry;
//
// Figure out max entry size.
//
// 070305, rcnjko: I use a max estimation instead of
// figure out exact size of the each entry to reduce
// computation overhead. Besides, I assume UI can cover
// this assumption easily.
//
static u4Byte MaxEntrySize = sizeof(DRV_LOG_DATA_IMP_T);
//
// Check minimal buffer size required.
//
*pBytesWritten = 0;
*pBytesNeeded = sizeof(DRV_LOG_DATA_LIST_T) - sizeof(DRV_LOG_DATA_T);
if(BufferLength < *pBytesNeeded)
return FALSE;
//
// Check if specified log type valid.
//
if(eLogType >= LTYPE_TOTAL_COUNT)
{
return FALSE;
}
//
// Enumerate into each entry and fill up if we have enough space.
//
*pBytesWritten = *pBytesNeeded;
DrvLogCnt = GetDrvLogCnt(pAdapter, eLogType);
pBuffer->Count = 0;
pEntry = pBuffer->LogDatas;
for(idx = 0; idx < DrvLogCnt; idx++)
{
//
// Fill up this entry if there is enough space.
//
if(BufferLength >= (*pBytesNeeded + MaxEntrySize))
{
if( RemoveDrvLog(
pAdapter,
(DRV_LOG_TYPE_E)eLogType,
pEntry) )
{
//
// Now, we can get exact entry size and apply it
// to fill up *pBytesNeeded and *pBytesWritten.
//
EntrySize = sizeof(DRV_LOG_DATA_T) - sizeof(pEntry->Buffer[0]) + pEntry->BufferLenUsed;
*pBytesNeeded += EntrySize;
*pBytesWritten += EntrySize;
pEntry = (PDRV_LOG_DATA_T)((pu1Byte)(pEntry->Buffer) + pEntry->BufferLenUsed);
pBuffer->Count++;
}
else
{ // No more log available.
break;
}
}
else
{
*pBytesNeeded += MaxEntrySize;
}
}
return TRUE;
#endif
}
u1Byte
DecorateTxRateBySingalStrength(
u4Byte SignalStrength,
u1Byte *SS_Rate_Map,
u1Byte MapSize
)
{
int index = 0;
for(index=0; index<(MapSize*2); index+=2)
{
if(SignalStrength > SS_Rate_Map[index])
{
return SS_Rate_Map[index+1];
}
}
return MGN_1M;
}
//
// Description:
// Return 11N Tx rate to let Normal User.
// 2008-04-14 by Jacken
//
u2Byte
MgntActQuery_RT_11N_USER_SHOW_RATES(
PADAPTER Adapter ,
BOOLEAN TxorRx, //FALSE:Tx TRUE:Rx
BOOLEAN bLinkStateRx
)
{
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
u1Byte rate = MGN_1M;
u1Byte rftype = RT_GetRFType(Adapter);
u4Byte Sgstrength;
HAL_DATA_TYPE *pHalData = GET_HAL_DATA(Adapter);
// Forced data rate: Tx rate is forced to a constant value.
if(pMgntInfo->ForcedDataRate != 0)
{
return CONVERT_RATE(Adapter, pMgntInfo->ForcedDataRate);
}
if(pMgntInfo->bRegLinkSpeedLevel == 40) //Real Data rate
{
return CONVERT_RATE(Adapter, pHalData->CurrentRARate);
}
if(!TxorRx) // Tx rate
{//This value is also refresh in dm_CheckStatistics() every 2 seconds.
// 1 == TxRateTypeCurrent
if(pMgntInfo->OSTxRateDisplayType == 1)
{
// Report the successful transmit rate culculate from dm_CheckStatistics().
return 0;
}
// 2 == TxRateTypeStartRate
else if(pMgntInfo->OSTxRateDisplayType == 2)
{
// Report initial rate in HW.
return CONVERT_RATE(Adapter, Adapter->TxStats.CurrentInitTxRate);
}
}
// Decorate Tx/Rx ate by Signal Strength
if(pMgntInfo->bForcedShowRateStill == TRUE)
Sgstrength = 100;
else if (ACTING_AS_AP(Adapter))
Sgstrength = 100;
else
Sgstrength = GET_UNDECORATED_AVERAGE_RSSI(Adapter);
if(IS_WIRELESS_MODE_A(Adapter) || IS_WIRELESS_MODE_G(Adapter))
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_G, sizeof(SS_Rate_Map_G)/2);
}
else if(IS_WIRELESS_MODE_B(Adapter))
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_B, sizeof(SS_Rate_Map_B)/2);
}
else if(IS_WIRELESS_MODE_N_24G(Adapter) || IS_WIRELESS_MODE_N_5G(Adapter))
{
BOOLEAN bMaxRateMcs15;
// Determine the max rate for N mode.
if( (rftype==RF_1T1R) ||
((!TxorRx) && (rftype==RF_1T2R)) ||
(TxorRx && (rftype==RF_1T2R)) ||
(pMgntInfo->HTHighestOperaRate <= MGN_MCS7 && 0 != pMgntInfo->HTHighestOperaRate))
bMaxRateMcs15 = FALSE;
else
bMaxRateMcs15 = TRUE;
if(rftype == RF_3T3R)
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS23, sizeof(SS_Rate_Map_N_MCS23)/2);
}
else if(rftype == RF_2T4R || rftype == RF_2T3R)
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS23, sizeof(SS_Rate_Map_N_MCS23)/2);
}
else if(bMaxRateMcs15)
{
if (pMgntInfo->bRegLinkSpeedLevel == 0)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15, sizeof(SS_Rate_Map_N_MCS15)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 12)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv1, sizeof(SS_Rate_Map_N_MCS15_Lv1)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 14)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv2, sizeof(SS_Rate_Map_N_MCS15_Lv2)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 16)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv3, sizeof(SS_Rate_Map_N_MCS15_Lv3)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 18)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv4, sizeof(SS_Rate_Map_N_MCS15_Lv4)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 20)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv5, sizeof(SS_Rate_Map_N_MCS15_Lv5)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 24)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15_Lv6, sizeof(SS_Rate_Map_N_MCS15_Lv6)/2);
else
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS15, sizeof(SS_Rate_Map_N_MCS15)/2);
}
else
{
if (pMgntInfo->bRegLinkSpeedLevel == 0)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7, sizeof(SS_Rate_Map_N_MCS7)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 12)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv1, sizeof(SS_Rate_Map_N_MCS7_Lv1)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 14)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv2, sizeof(SS_Rate_Map_N_MCS7_Lv2)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 16)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv3, sizeof(SS_Rate_Map_N_MCS7_Lv3)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 18)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv4, sizeof(SS_Rate_Map_N_MCS7_Lv4)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 20)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv5, sizeof(SS_Rate_Map_N_MCS7_Lv5)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 24)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7_Lv6, sizeof(SS_Rate_Map_N_MCS7_Lv6)/2);
else
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_N_MCS7, sizeof(SS_Rate_Map_N_MCS7)/2);
}
}
else if(IS_WIRELESS_MODE_AC(Adapter))
{
if(rftype == RF_1T1R)
{
if(pMgntInfo->VHTHighestOperaRate < MGN_VHT1SS_MCS9)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_1SS_MCS7, sizeof(SS_Rate_Map_AC_1SS_MCS7)/2);
else
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_1SS_MCS9, sizeof(SS_Rate_Map_AC_1SS_MCS9)/2);
}
else if(rftype == RF_2T2R || rftype == RF_1T2R)
{
if(pMgntInfo->VHTHighestOperaRate < MGN_VHT2SS_MCS9)
{
if (pMgntInfo->bRegLinkSpeedLevel == 0)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7, sizeof(SS_Rate_Map_AC_2SS_MCS7)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 12)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv1, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv1)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 14)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv2, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv2)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 16)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv3, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv3)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 18)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv4, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv4)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 20)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv5, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv5)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 24)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7_Lv6, sizeof(SS_Rate_Map_AC_2SS_MCS7_Lv6)/2);
else
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS7, sizeof(SS_Rate_Map_AC_2SS_MCS7)/2);
}
else
{
if (pMgntInfo->bRegLinkSpeedLevel == 0)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9, sizeof(SS_Rate_Map_AC_2SS_MCS9)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 12)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv1, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv1)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 14)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv2, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv2)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 16)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv3, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv3)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 18)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv4, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv4)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 20)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv5, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv5)/2);
else if (pMgntInfo->bRegLinkSpeedLevel == 24)
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9_Lv6, sizeof(SS_Rate_Map_AC_2SS_MCS9_Lv6)/2);
else
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_2SS_MCS9, sizeof(SS_Rate_Map_AC_2SS_MCS9)/2);
}
}
else if(rftype == RF_3T3R)
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_3SS_MCS9, sizeof(SS_Rate_Map_AC_3SS_MCS9)/2);
}
else if(rftype == RF_2T4R || rftype == RF_2T3R)
{
rate = DecorateTxRateBySingalStrength(Sgstrength, (pu1Byte)SS_Rate_Map_AC_3SS_MCS9, sizeof(SS_Rate_Map_AC_3SS_MCS9)/2);
}
}
else
return MGN_1M;
if(IS_WIRELESS_MODE_N_24G(Adapter) || IS_WIRELESS_MODE_N_5G(Adapter))
{
if(rate > pMgntInfo->HTHighestOperaRate && pMgntInfo->HTHighestOperaRate != 0)
{
rate = pMgntInfo->HTHighestOperaRate;
}
}
else if(IS_WIRELESS_MODE_AC(Adapter))
{
if(rate > pMgntInfo->VHTHighestOperaRate && pMgntInfo->VHTHighestOperaRate != 0)
rate = pMgntInfo->VHTHighestOperaRate;
}
else
{
if(rate > pMgntInfo->HighestOperaRate && pMgntInfo->HighestOperaRate != 0)
rate = pMgntInfo->HighestOperaRate;
}
if(IS_HARDWARE_TYPE_8821U(Adapter) )
{
if(rate < pHalData->CurrentRARate)
rate = pHalData->CurrentRARate;
}
return CONVERT_RATE(Adapter, rate);
}
//
// Description:
// Return the Additional beacon IE field of MgntInfo.
//
BOOLEAN
MgntActQuery_AdditionalBeaconIE(
IN PADAPTER Adapter,
OUT pu1Byte pAdditionalIEBuf,
IN OUT pu4Byte pAdditionalIEBufLen
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
BOOLEAN bResult = FALSE;
do
{
if (*pAdditionalIEBufLen < pMgntInfo->AdditionalBeaconIESize)
{
*pAdditionalIEBufLen = pMgntInfo->AdditionalBeaconIESize;
bResult = FALSE;
break;
}
PlatformMoveMemory(pAdditionalIEBuf,
pMgntInfo->AdditionalBeaconIEData,
pMgntInfo->AdditionalBeaconIESize);
bResult = TRUE;
} while(FALSE);
return bResult;
}
//
// Description:
// Return the Additional probe rsp IE field of MgntInfo.
//
BOOLEAN
MgntActQuery_AdditionalProbeRspIE(
IN PADAPTER Adapter,
OUT pu1Byte pAdditionalIEBuf,
IN OUT pu4Byte pAdditionalIEBufLen
)
{
PMGNT_INFO pMgntInfo = &Adapter->MgntInfo;
BOOLEAN bResult = FALSE;
do
{
if (*pAdditionalIEBufLen < pMgntInfo->AdditionalResponseIESize)
{
*pAdditionalIEBufLen = pMgntInfo->AdditionalResponseIESize;
bResult = FALSE;
break;
}
PlatformMoveMemory(pAdditionalIEBuf,
pMgntInfo->AdditionalResponseIEData,
pMgntInfo->AdditionalResponseIESize);
bResult = TRUE;
} while(FALSE);
return bResult;
}
RT_AP_TYPE
MgntActQuery_ApType(
IN PADAPTER pAdapter
)
{
if(pAdapter == NULL)
return RT_AP_TYPE_NONE;
else
return pAdapter->MgntInfo.ApType;
}
#if (P2P_SUPPORT == 1)
P2P_ROLE
MgntActQuery_P2PMode(
IN PADAPTER Adapter
)
{
return GET_P2P_INFO(Adapter)->Role;
}
BOOLEAN
MgntActQuery_P2PScanList(
IN PADAPTER Adapter,
OUT pu1Byte pBuf,
IN OUT pu4Byte pBufLen
)
{
PP2P_INFO pP2PInfo = GET_P2P_INFO(Adapter);
u4Byte BytesNeeded;
//RT_TRACE(COMP_P2P, DBG_LOUD, ("MgntActQuery_P2PScanList()\n"));
if(!P2P_ENABLED(pP2PInfo))
{
*pBufLen = 0;
return TRUE;
}
BytesNeeded = pP2PInfo->ScanList4QuerySize* sizeof(P2P_DEVICE_DISCRIPTOR) + sizeof(u4Byte);
if(*pBufLen < BytesNeeded)
{
RT_TRACE(COMP_P2P, DBG_LOUD,
("MgntActQuery_P2PScanList(): bytes needed: %u, given: %u\n", BytesNeeded, *pBufLen));
// Prefast warning C6328: Size mismatch ignore
#pragma warning (disable: 6328)
RT_TRACE(COMP_P2P, DBG_LOUD,
("MgntActQuery_P2PScanList(): sizeof ClientInfoDesc: %u, ScanListSize: %u\n",
sizeof(P2P_CLIENT_INFO_DISCRIPTOR), pP2PInfo->ScanList4QuerySize));
*pBufLen = BytesNeeded;
return FALSE;
}
*((pu4Byte)pBuf) = pP2PInfo->ScanList4QuerySize;
PlatformMoveMemory(pBuf + sizeof(u4Byte),
pP2PInfo->ScanList4Query,
pP2PInfo->ScanList4QuerySize * sizeof(P2P_DEVICE_DISCRIPTOR));
*pBufLen = BytesNeeded;
RT_TRACE(COMP_P2P, DBG_LOUD,
("MgntActQuery_P2PScanList(): %u items indicated\n",
pP2PInfo->ScanList4QuerySize));
return TRUE;
}
u4Byte
MgntActQuery_P2PSelfDeviceDescriptor(
IN PADAPTER Adapter,
OUT PVOID pDevDesc
)
{
return P2PTranslateP2PInfoToDevDesc((GET_P2P_INFO(Adapter)), pDevDesc);
}
//
// Description:
// Query P2P Channel List
// Arguments:
// [IN] Adapter -
// NIC adapter context pointer.
// [IN] ChannelListBufLen -
// size in bytes of the buffer pointed by the pChannelList parameter
// [OUT] pChennelListLen -
// a pointer to the buffer for returning the number of channels written
// [OUT] pChannelList -
// a pointer to the buffer for returning the channel list
// Return:
// Return RT_STATUS_SUCCESS if the parsing succeeds.
// Remark:
// Enumerates each channel in channel entery list in P2PInfo of the adapter. Duplicated channels
// are filtered out.
//
RT_STATUS
MgntActQuery_P2PChannelList(
IN PADAPTER Adapter,
IN u4Byte ChannelListBufLen,
OUT pu1Byte pChennelListLen,
OUT pu1Byte pChannelList
)
{
u1Byte i = 0, j = 0, k = 0;
PP2P_INFO pP2PInfo = GET_P2P_INFO(Adapter);
if(ChannelListBufLen < 1) return RT_STATUS_RESOURCE;
*pChennelListLen = 0;
for(i = 0; i < pP2PInfo->ChannelEntryList.regClasses; i++) // foreach regulatory class
{
for(j = 0; j < pP2PInfo->ChannelEntryList.regClass[i].channels; j++) // foreach channels we support in the regulatory class
{
u1Byte curChannel = pP2PInfo->ChannelEntryList.regClass[i].channel[j];
if(*pChennelListLen > ChannelListBufLen)
{
return RT_STATUS_RESOURCE;
}
// Filter duplicated channels from different reg class
for(k = 0; k < (*pChennelListLen) && pChannelList[k] != curChannel; k++){}
if(k < (*pChennelListLen)) continue;
// Add the channel
pChannelList[(*pChennelListLen)++] = curChannel;
RT_TRACE(COMP_P2P, DBG_LOUD,
("MgntActQuery_P2PChannelList: add channel: %u, %4s: %4u, %4s: %4u\n", k,
"reg", pP2PInfo->ChannelEntryList.regClass[i].regClass, "ch", curChannel));
}
}
return RT_STATUS_SUCCESS;
}
VOID
MgntActQuery_P2PListenChannel(
IN PADAPTER Adapter,
OUT pu1Byte pListenChannel
)
{
PP2P_INFO pP2PInfo = GET_P2P_INFO(Adapter);
*pListenChannel = pP2PInfo->ListenChannel;
return;
}
#endif // #if (P2P_SUPPORT == 1)
#if (WPS_SUPPORT == 1)
u4Byte
MgntActQuery_WPS_Information(
IN PADAPTER Adapter,
OUT pu1Byte InformationBuffer,
IN OUT u4Byte InformationBufferLength
)
{
PMGNT_INFO pMgntInfo = &(Adapter->MgntInfo);
PSIMPLE_CONFIG_T pSimpleConfig = GET_SIMPLE_CONFIG(pMgntInfo);
u1Byte BytesNeeded = 3;
u1Byte queryInfo = pSimpleConfig->InfoCtrl;
u4Byte BytesCopied = 0;
if(pSimpleConfig->WpsIeVersion < SUPPORT_WPS_INFO_VERSION)
{
RT_TRACE(COMP_WPS, DBG_LOUD, ("MgntActQuery_WPS_Information(): Not support this version!\n"));
goto End;
}
if(InformationBufferLength<BytesNeeded)
{
RT_TRACE(COMP_WPS, DBG_LOUD, ("MgntActQuery_WPS_Information(): invalid buffer length\n"));
goto End;
}
switch(queryInfo)
{
case WPS_INFO_SUPPORT_VERSION:
{
*((pu2Byte)InformationBuffer) = 1;
*(InformationBuffer+2) = pSimpleConfig->WpsIeVersion;
BytesCopied = BytesNeeded;
}
break;
default:
RT_TRACE(COMP_WPS, DBG_LOUD, ("MgntActQuery_WPS_Information(): unspecified query information!\n"));
break;
}
End:
return BytesCopied;
}
#endif
|