File: vdp22sm.c

package info (click to toggle)
lldpad 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,184 kB
  • sloc: ansic: 47,370; sh: 2,006; lex: 1,037; makefile: 138
file content (1819 lines) | stat: -rw-r--r-- 49,274 bytes parent folder | download | duplicates (3)
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
863
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
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1863
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
/******************************************************************************

  Implementation of VDP 2.2 bridge and station state machines for
  IEEE 802.1 Qbg ratified standard.
  (c) Copyright IBM Corp. 2013

  Author(s): Thomas Richter <tmricht at linux.vnet.ibm.com>

  This program is free software; you can redistribute it and/or modify it
  under the terms and conditions of the GNU General Public License,
  version 2, as published by the Free Software Foundation.

  This program is distributed in the hope it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  more details.

  You should have received a copy of the GNU General Public License along with
  this program; if not, write to the Free Software Foundation, Inc.,
  51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.

  The full GNU General Public License is included in this distribution in
  the file called "COPYING".

******************************************************************************/

/*
 * Implement the IEEE 802.1Qbg ratified standard VDP Protocol state machines.
 */

#define _GNU_SOURCE
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#include <net/if.h>
#include <netinet/in.h>

#include "messages.h"
#include "config.h"
#include "eloop.h"

#include "qbg22.h"
#include "qbg_vdp22.h"
#include "qbg_utils.h"

/*
 * Set status code
 */
static inline unsigned char make_status(int x)
{
	return (x << VDP22_STATUS_SHIFT) & VDP22_STATUS_MASK;
}

enum vdp22br_states {		/* State for VDP22 bridge processing */
	VDP22_BR_START = 100,	/* Start state */
	VDP22_BR_BEGIN,		/* Begin state */
	VDP22_BR_INIT,		/* Init state */
	VDP22_BR_PROCESS,	/* Process command from station */
	VDP22_BR_SEND,		/* Send result to station */
	VDP22_BR_WAITCMD,	/* Wait for cmd from station */
	VDP22_BR_WAITCMD_2,	/* End of wait for cmd from station */
	VDP22_BR_KEEP,		/* Send keep result to station */
	VDP22_BR_DEASSOC,	/* Send de-assoc result to station */
	VDP22_BR_ALIVE,		/* Process keep alive from station state */
	VDP22_BR_DEASSOCIATED,	/* Deassoc state */
	VDP22_BR_END		/* End state */
};

/* VDP22 bridge states verbatim */
static const char *const vdp22br_states_n[] = {
	"unknown",
	"VDP22_BR_BEGIN",
	"VDP22_BR_INIT",
	"VDP22_BR_PROCESS",
	"VDP22_BR_SEND",
	"VDP22_BR_WAITCMD",
	"VDP22_BR_WAITCMD_2",
	"VDP22_BR_KEEP",
	"VDP22_BR_DEASSOC",
	"VDP22_BR_ALIVE",
	"VDP22_BR_DEASSOCIATED",
	"VDP22_BR_END"
};

static inline const char *vdp22br_state_name(enum vdp22br_states x)
{
	return vdp22br_states_n[x - VDP22_BR_START];
}

enum vdp22_states {		/* VDP22 station states */
	VDP22_BEGIN = 1,
	VDP22_INIT,
	VDP22_STATION_PROC,	/* Station processing */
	VDP22_STATION_PROCWAIT,	/* Station processing, wait for reply */
	VDP22_STATION_PROCWAIT_2,	/* Station processing, received reply */
	VDP22_ASSOC_NEW,
	VDP22_ASSOC_COMPL,	/* Assoc complete */
	VDP22_PREASSOC_NEW,
	VDP22_WAIT_SYSCMD,
	VDP22_WAIT_SYSCMD_2,
	VDP22_TXMIT_KA,		/* Transmit keep alive */
	VDP22_TXMIT_KAWAIT,	/* Transmit keep alive, wait for reply */
	VDP22_TXMIT_KAWAIT_2,	/* Transmit keep alive, received message */
	VDP22_TXMIT_DEASSOC,	/* Transmit Deassociation */
	VDP22_TXMIT_DEAWAIT,	/* Transmit Deassociation, wait for reply */
	VDP22_TXMIT_DEAWAIT_2,	/* Transmit Deassociation, received reply */
	VDP22_END
};

/* VDP22 station states verbatim */
static const char *const vdp22_states_n[] = {
	"unknown",
	"VDP22_BEGIN",
	"VDP22_INIT",
	"VDP22_STATION_PROC",
	"VDP22_STATION_PROCWAIT",
	"VDP22_STATION_PROCWAIT_2",
	"VDP22_ASSOC_NEW",
	"VDP22_ASSOC_COMPL",
	"VDP22_PREASSOC_NEW",
	"VDP22_WAIT_SYSCMD",
	"VDP22_WAIT_SYSCMD_2",
	"VDP22_TXMIT_KA",
	"VDP22_TXMIT_KAWAIT",
	"VDP22_TXMIT_KAWAIT_2",
	"VDP22_TXMIT_DEASSOC",
	"VDP22_TXMIT_DEAWAIT",
	"VDP22_TXMIT_DEAWAIT_2",
	"VDP22_END"
};

/*
 * Forward definition of function prototypes.
 */
static void vdp22st_run(struct vsi22 *);
static void vdp22br_run(struct vsi22 *);
static void vdp22_station_info(struct vsi22 *);

/*
 * Return size of packed and unpacked VSI tlv.
 */
static inline size_t mgr22_tlv_sz(void)
{
	return 16;
}

static inline size_t mgr22_ptlv_sz(void)
{
	return 2   mgr22_tlv_sz();
}

/* Return size for each filter data format */
static inline size_t vsi22_fdata_sz(unsigned char fif)
{
	switch (fif) {
	case VDP22_FFMT_VID:
		return 2;
	case VDP22_FFMT_MACVID:
		return 8;
	case VDP22_FFMT_GROUPVID:
		return 6;
	case VDP22_FFMT_GROUPMACVID:
		return 12;
	}
	return 0;
}

static inline size_t vsi22_tlv_fifsz(struct vsi22 *vp)
{
	return vp->no_fdata * vsi22_fdata_sz(vp->fif);
}

static inline size_t vsi22_tlv_sz(struct vsi22 *vp)
{
	return 23   2   vsi22_tlv_fifsz(vp);
}

static inline size_t vsi22_ptlv_sz(struct vsi22 *vp)
{
	return 2   vsi22_tlv_sz(vp);
}

/*
 * This function modifies the existing OUI parameters in a VSI.
 */
static void vdp22_modoui(struct vsi22 *p, struct vsi22 *vsip)
{
	struct vdp22_oui_handler_s *oui_hndlr;
	int idx, inn_idx, ret;

	for (idx = 0; idx < vsip->no_ouidata; idx  ) {
		struct vdp22_oui_data_s *from = &vsip->oui_str_data[idx];

		for (inn_idx = 0; inn_idx < p->no_ouidata; inn_idx  ) {
			struct vdp22_oui_data_s *to = &p->oui_str_data[inn_idx];

			if (!strncmp(to->oui_name, from->oui_name,
				     sizeof(to->oui_name))) {
				oui_hndlr = vdp22_get_oui_hndlr(to->oui_name);
				ret = oui_hndlr->vsi22_mod_hndlr(p, from, to);
				if (!ret)
					LLDPAD_ERR("%s: handler return error for oui %s\n",
						   __func__, from->oui_name);
				return;
			}
		}
	}
}

/*
 * This function calls the registered OUI handlers that returns the size of
 * the OUI data.
 */
static inline size_t oui22_ptlv_sz(struct vsi22 *vp)
{
	struct vdp22_oui_handler_s *oui_hndlr;
	struct vdp22_oui_data_s *oui_str;
	size_t size = 0;
	int idx;

	if (vp->no_ouidata == 0)
		return 0;
	for (idx = 0; idx < vp->no_ouidata; idx  ) {
		oui_str = &(vp->oui_str_data[idx]);
		oui_hndlr = vdp22_get_oui_hndlr(oui_str->oui_name);
		if (!oui_hndlr) {
			LLDPAD_ERR("%s: No handler registered for OUI %s\n",
				   __func__, oui_str->oui_name);
			continue;
		}
		size  = oui_hndlr->oui_ptlv_size_hndlr(oui_str->data);
	}
	return size;
}

/*
 * Extract 1, 2, 3, 4 byte integers in network byte format.
 * Extract n bytes.
 * Assume enough space available.
 * Return number of bytes extracted.
 */
static inline size_t extract_1o(unsigned char *data, const unsigned char *cp)
{
	*data = *cp;
	return 1;
}

static inline size_t extract_2o(unsigned short *data, const unsigned char *cp)
{
	*data = (*cp << 8) | *(cp   1);
	return 2;
}

static inline size_t extract_3o(unsigned long *data, const unsigned char *cp)
{
	*data = (*cp << 16) | (*(cp   1) << 8) | *(cp   2);
	return 3;
}

static inline size_t extract_4o(unsigned long *data, const unsigned char *cp)
{
	*data = (*cp << 24)  | (*(cp   1) << 16) | (*(cp   2) << 8) | *(cp   3);
	return 4;
}
static inline size_t extract_no(unsigned char *data, const unsigned char *cp,
				const size_t len)
{
	memcpy(data, cp, len);
	return len;
}

/*
 * Append 1, 2, 3, 4 byte integers in network byte format.
 * Append n bytes.
 * Assume enough space available.
 * Return number of bytes written.
 */
static inline size_t append_1o(unsigned char *cp, const unsigned char data)
{
	*cp = data;
	return 1;
}

static inline size_t append_2o(unsigned char *cp, const unsigned short data)
{
	*cp = (data >> 8) & 0xff;
	*(cp   1) = data & 0xff;
	return 2;
}

static inline size_t append_3o(unsigned char *cp, const unsigned long data)
{
	*cp = (data >> 16) & 0xff;
	*(cp   1) = (data >> 8) & 0xff;
	*(cp   2) = data & 0xff;
	return 3;
}

static inline size_t append_4o(unsigned char *cp, const unsigned long data)
{
	*cp = (data >> 24) & 0xff;
	*(cp   1) = (data >> 16) & 0xff;
	*(cp   2) = (data >> 8) & 0xff;
	*(cp   3) = data & 0xff;
	return 4;
}

static inline size_t append_nb(unsigned char *cp, const unsigned char *data,
			       const size_t nlen)
{
	memcpy(cp, data, nlen);
	return nlen;
}

/*
 * Packed TLV header manipulation.
 */
static inline unsigned short ptlv_head(unsigned short type, unsigned short len)
{
	return (type & 0x7f) << 9 | (len & 0x1ff);
}

static inline unsigned short ptlv_length(unsigned short header)
{
	return 2   (header & 0x1ff);
}

static inline unsigned short ptlv_type(unsigned short header)
{
	return (header >> 9) & 0x7f;
}

/*
 * Build a VSI tlv.
 */
static size_t vsi22_2tlv_fdata(unsigned char *cp, struct fid22 *p,
			       unsigned char fif)
{
	size_t nbytes = 0;

	switch (fif) {
	case VDP22_FFMT_VID:
		nbytes = append_2o(cp, p->vlan);
		break;
	case VDP22_FFMT_MACVID:
		nbytes = append_nb(cp, p->mac, sizeof(p->mac));
		nbytes  = append_2o(cp   nbytes, p->vlan);
		break;
	case VDP22_FFMT_GROUPVID:
		nbytes = append_4o(cp, p->grpid);
		nbytes  = append_2o(cp   nbytes, p->vlan);
		break;
	case VDP22_FFMT_GROUPMACVID:
		nbytes = append_4o(cp, p->grpid);
		nbytes  = append_nb(cp   nbytes, p->mac, sizeof(p->mac));
		nbytes  = append_2o(cp   nbytes, p->vlan);
		break;
	}
	return nbytes;
}

static void oui22_2tlv(struct vsi22 *vp, char unsigned *cp)
{
	struct vdp22_oui_handler_s *oui_hndlr;
	struct vdp22_oui_data_s *oui_str;
	size_t offset = 0;
	size_t temp_offset = 0;
	int idx;

	if (vp->no_ouidata == 0)
		return;
	for (idx = 0; idx < vp->no_ouidata; idx  ) {
		oui_str = &(vp->oui_str_data[idx]);
		oui_hndlr = vdp22_get_oui_hndlr(oui_str->oui_name);
		if (!oui_hndlr) {
			LLDPAD_ERR("%s: No handler registered for OUI %s\n",
				   __func__, oui_str->oui_name);
			continue;
		}
		temp_offset = oui_hndlr->vdp_tx_hndlr(cp, oui_str, offset);
		offset  = temp_offset;
	}
}

static void vsi22_2tlv(struct vsi22 *vp, char unsigned *cp, unsigned char stat)
{
	size_t offset = 0, i;
	unsigned short head = ptlv_head(vp->vsi_mode, vsi22_tlv_sz(vp));

	offset = append_2o(cp, head);
	offset  = append_1o(cp   offset, stat);
	offset  = append_3o(cp   offset, vp->type_id);
	offset  = append_1o(cp   offset, vp->type_ver);
	offset  = append_1o(cp   offset, vp->vsi_fmt);
	offset  = append_nb(cp   offset, vp->vsi, sizeof(vp->vsi));
	offset  = append_1o(cp   offset, vp->fif);
	offset  = append_2o(cp   offset, vp->no_fdata);
	for (i = 0; i < vp->no_fdata;   i)
		offset  = vsi22_2tlv_fdata(cp   offset, &vp->fdata[i], vp->fif);
}

static void mgr22_2tlv(struct vsi22 *vp, unsigned char *cp)
{
	unsigned short head = ptlv_head(VDP22_MGRID, mgr22_tlv_sz());
	size_t offset;

	offset = append_2o(cp, head);
	append_nb(cp   offset, vp->mgrid, sizeof(vp->mgrid));
}

/*
 * Code for VSI station state machine
 */
/*
 * VSI ACK time out handler
 */
static void vdp22st_handle_kato(UNUSED void *ctx, void *data)
{
	struct vsi22 *p = data;

	LLDPAD_DBG("%s:%s timeout keep alive timer for %p(x)\n",
		   __func__, p->vdp->ifname, p, p->vsi[0]);
	p->smi.kato = true;
	vdp22st_run(p);
}

/*
 * Start the VSI station keep alive timer when a VSI state has been agreed upon.
 */
static int vdp22st_start_katimer(struct vsi22 *p)
{
	unsigned long long towait = (1 << p->vdp->vdp_rka) * 10;
	unsigned int secs, usecs;

	secs = towait / USEC_PER_SEC;
	usecs = towait % USEC_PER_SEC;
	p->smi.kato = false;
	LLDPAD_DBG("%s:%s start keep alive timer for %p(x) [%i,%i]\n",
		   __func__, p->vdp->ifname, p, p->vsi[0], secs, usecs);
	return eloop_register_timeout(secs, usecs, vdp22st_handle_kato, NULL,
				      (void *)p);
}

/*
 * Stops the VSI ack timer
 * Returns the number of removed handlers
 */
static int vdp22st_stop_katimer(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s stop keep alive timer for %p(x)\n", __func__,
		   p->vdp->ifname, p, p->vsi[0]);
	return eloop_cancel_timeout(vdp22st_handle_kato, NULL, (void *)p);
}

/*
 * VSI ACK time out handler
 */
static void vdp22st_handle_ackto(UNUSED void *ctx, void *data)
{
	struct vsi22 *p = data;

	LLDPAD_DBG("%s:%s timeout ack timer for %p(x) ackreceived:%d\n",
		   __func__, p->vdp->ifname, p, p->vsi[0], p->smi.ackreceived);
	if (!p->smi.ackreceived) {
		p->smi.acktimeout = true;
		vdp22st_run(p);
	}
}

/*
 * Calculate VDP22 keep alive/response wait delay timeout. See 41.5.5.9.
 */
static void vdp22_timeout(struct vdp22 *p, unsigned char exp,
			      unsigned int *secs, unsigned int *usecs)
{
	unsigned long long towait;

	towait = (1   2 * p->ecp_retries) * (1 << p->ecp_rte) * 10;
	towait  = (1 << exp) * 10;
	towait  = towait / 2;
	*secs = towait / USEC_PER_SEC;
	*usecs = towait % USEC_PER_SEC;
}

/*
 * Starts the VPD22 station response wait delay timer. See 41.5.5.9.
 */
static int vdp22st_start_acktimer(struct vsi22 *p)
{
	unsigned int secs, usecs;

	p->smi.txmit = true;
	p->smi.txmit_error = 0;
	p->smi.ackreceived = false;
	p->smi.acktimeout = false;
	p->smi.resp_ok = false;
	p->smi.localchg = false;
	vdp22_timeout(p->vdp, p->vdp->vdp_rwd, &secs, &usecs);
	LLDPAD_DBG("%s:%s start ack timer for %p(x) [%i,%i]\n",
		   __func__, p->vdp->ifname, p, p->vsi[0], secs, usecs);
	return eloop_register_timeout(secs, usecs, vdp22st_handle_ackto, NULL,
				      (void *)p);
}

/*
 % Stops the VSI ack timer
 * Returns the number of removed handlers
 */
static int vdp22st_stop_acktimer(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s stop ack timer for %p(x)\n", __func__,
		   p->vdp->ifname, p, p->vsi[0]);
	return eloop_cancel_timeout(vdp22st_handle_ackto, NULL, (void *)p);
}

/*
 * Station init state
 */
static void vdp22st_init(struct vsi22 *vsip)
{
	vsip->smi.state = VDP22_INIT;
	vsip->status = VDP22_RESP_NONE;
}

/*
 * Station association new and complete state
 */
static void vdp22st_assoc_compl(struct vsi22 *vsip)
{
	vsip->flags &= ~VDP22_BUSY;
	vsip->resp_vsi_mode = 0;
}

static void vdp22st_assoc_new(struct vsi22 *vsip, enum vdp22_modes x)
{
	vdp22st_assoc_compl(vsip);
	vsip->cc_vsi_mode = x;
}

/*
 * Station wait system command state
 */
static void vdp22st_wait_syscmd(struct vsi22 *vsip)
{
	vdp22st_start_katimer(vsip);
}

/*
 * Station processing state, send packed tlvs to bridge. Allocate send buffer
 * on stack and create packed TLVs.
 */
static void vdp22st_process(struct vsi22 *vsi)
{
	unsigned short len = mgr22_ptlv_sz()   vsi22_ptlv_sz(vsi)  
			      oui22_ptlv_sz(vsi);
	unsigned char buf[len];
	struct qbg22_imm qbg;

	qbg.data_type = VDP22_TO_ECP22;
	qbg.u.c.len = len;
	qbg.u.c.data = buf;
	mgr22_2tlv(vsi, buf);
	vsi22_2tlv(vsi, buf   mgr22_ptlv_sz(), vsi->hints);
	oui22_2tlv(vsi, buf   mgr22_ptlv_sz()   vsi22_ptlv_sz(vsi));
	vsi->smi.txmit_error = modules_notify(LLDP_MOD_ECP22, LLDP_MOD_VDP22,
					       vsi->vdp->ifname, &qbg);
	if (!vsi->smi.txmit_error) {
		vdp22st_stop_katimer(vsi);	/* Could still be running */
		vdp22st_start_acktimer(vsi);
	}
	LLDPAD_DBG("%s:%s len:%hd rc:%d\n", __func__, vsi->vdp->ifname, len,
		   vsi->smi.txmit_error);
}

/*
 * Station transmit deassociate state.
 */
static void vdp22st_txdea(struct vsi22 *vsip)
{
	vsip->vsi_mode = VDP22_DEASSOC;
	vsip->flags |= VDP22_BUSY;
	vdp22st_process(vsip);
}

/*
 * Station transmit keep alive state.
 */
static void vdp22st_txka(struct vsi22 *vsip)
{
	vdp22st_process(vsip);
}

/*
 * Station remove a VSI from the VDP22 protocol state machine.
 * Notification of clients depends on the interface used to establish the
 * association:
 * 1. When through netlink interface (draft 0.2) the client is polling for some
 *    time. In this case send a netlink message only when no command pending.
 * 2. When through attached client (draft 2.2) the client is waiting for
 *    response (time out in operation on client side) and does not poll.
 */
static void vdp22st_end(struct vsi22 *vsi)
{
	vdp22st_stop_acktimer(vsi);
	vdp22st_stop_katimer(vsi);
	LLDPAD_DBG("%s:%s vsi:%p(x) flags:%#lx vsi_mode:%d,%d"
		   " resp_vsi_mode:%d\n", __func__,
		   vsi->vdp->ifname, vsi, vsi->vsi[0], vsi->flags,
		   vsi->vsi_mode, vsi->cc_vsi_mode, vsi->resp_vsi_mode);
	vsi->vsi_mode = vsi->cc_vsi_mode = VDP22_DEASSOC;
	vsi->flags |= VDP22_DELETE_ME;
	vsi->flags &= ~VDP22_BUSY;
	if (vsi->flags & VDP22_NOTIFY)
		vdp22_nlback(vsi);	/* Notify netlink when no cmd pending */
	vdp22_clntback(vsi);		/* Notify attached client */
}

/*
 * Station change into a new state.
 */
static void vdp22st_change_state(struct vsi22 *vsi, enum vdp22_states newstate)
{
	switch (newstate) {
	case VDP22_INIT:
		assert(vsi->smi.state == VDP22_BEGIN);
		break;
	case VDP22_STATION_PROC:
		assert(vsi->smi.state == VDP22_INIT
		       || vsi->smi.state == VDP22_WAIT_SYSCMD_2);
		break;
	case VDP22_STATION_PROCWAIT:
		assert(vsi->smi.state == VDP22_STATION_PROC);
		break;
	case VDP22_STATION_PROCWAIT_2:
		assert(vsi->smi.state == VDP22_STATION_PROCWAIT);
		break;
	case VDP22_PREASSOC_NEW:
		assert(vsi->smi.state == VDP22_STATION_PROCWAIT_2);
		break;
	case VDP22_ASSOC_NEW:
		assert(vsi->smi.state == VDP22_STATION_PROCWAIT_2);
		break;
	case VDP22_ASSOC_COMPL:
		assert(vsi->smi.state == VDP22_ASSOC_NEW
		       || vsi->smi.state == VDP22_STATION_PROCWAIT_2);
		break;
	case VDP22_WAIT_SYSCMD:
		assert(vsi->smi.state == VDP22_ASSOC_COMPL
		       || vsi->smi.state == VDP22_PREASSOC_NEW
		       || vsi->smi.state == VDP22_TXMIT_KAWAIT_2);
		break;
	case VDP22_WAIT_SYSCMD_2:
		assert(vsi->smi.state == VDP22_WAIT_SYSCMD);
		break;
	case VDP22_TXMIT_KA:
		assert(vsi->smi.state == VDP22_WAIT_SYSCMD_2);
		break;
	case VDP22_TXMIT_KAWAIT:
		assert(vsi->smi.state == VDP22_TXMIT_KA);
		break;
	case VDP22_TXMIT_KAWAIT_2:
		assert(vsi->smi.state == VDP22_TXMIT_KAWAIT);
		break;
	case VDP22_TXMIT_DEASSOC:
		assert(vsi->smi.state == VDP22_TXMIT_KAWAIT_2);
		break;
	case VDP22_TXMIT_DEAWAIT:
		assert(vsi->smi.state == VDP22_TXMIT_DEASSOC);
		break;
	case VDP22_TXMIT_DEAWAIT_2:
		assert(vsi->smi.state == VDP22_TXMIT_DEAWAIT);
		break;
	case VDP22_END:
		assert(vsi->smi.state == VDP22_STATION_PROCWAIT
		       || vsi->smi.state == VDP22_STATION_PROCWAIT_2
		       || vsi->smi.state == VDP22_TXMIT_KAWAIT
		       || vsi->smi.state == VDP22_TXMIT_KAWAIT_2
		       || vsi->smi.state == VDP22_WAIT_SYSCMD_2
		       || vsi->smi.state == VDP22_TXMIT_DEASSOC
		       || vsi->smi.state == VDP22_TXMIT_DEAWAIT
		       || vsi->smi.state == VDP22_TXMIT_DEAWAIT_2);
		break;
	default:
		LLDPAD_ERR("%s:%s VDP station machine INVALID STATE %d\n",
			   __func__, vsi->vdp->ifname, newstate);
	}
	LLDPAD_DBG("%s:%s state change %s -> %s\n", __func__,
		   vsi->vdp->ifname, vdp22_states_n[vsi->smi.state],
		   vdp22_states_n[newstate]);
	vsi->smi.state = newstate;
}

/*
 * Check for hard and soft errors.
 */
static inline bool bad_error(unsigned char x)
{
	return (x && (x & VDP22_KEEPBIT) == 0) ? true : false;
}

static inline bool keep_error(unsigned char x)
{
	return (x && (x & VDP22_KEEPBIT)) ? true : false;
}

/*
 * Return error code. Check for HARDBIT/KEEPBIT set and no error code.
 */
static inline unsigned char get_error(unsigned char x)
{
	return (x & VDP22_STATUS_MASK) ? x & ~(VDP22_RESBIT|VDP22_ACKBIT) : 0;
}

/*
 * vdp22st_move_state - advances the VDP station state machine state
 *
 * Switches the state machine to the next state depending on the input
 * variables. returns true or false depending on whether the state machine
 * can be run again with the new state or can stop at the current state.
 */
static bool vdp22st_move_state(struct vsi22 *vsi)
{
	enum vdp22_states newstate;

	LLDPAD_DBG("%s:%s state %s\n", __func__, vsi->vdp->ifname,
		   vdp22_states_n[vsi->smi.state]);
	switch (vsi->smi.state) {
	case VDP22_BEGIN:
		vdp22st_change_state(vsi, VDP22_INIT);
		return true;
	case VDP22_INIT:
		vdp22st_change_state(vsi, VDP22_STATION_PROC);
		return true;
	case VDP22_STATION_PROC:
		vdp22st_change_state(vsi, VDP22_STATION_PROCWAIT);
		return true;
	case VDP22_STATION_PROCWAIT:
		if (vsi->smi.txmit_error || vsi->smi.acktimeout) {
			/* Error handover to ECP22 or no VDP22 ack */
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		if (vsi->smi.ackreceived) {
			vdp22st_change_state(vsi, VDP22_STATION_PROCWAIT_2);
			return true;
		}
		return false;
	case VDP22_STATION_PROCWAIT_2:
		if (!vsi->smi.resp_ok		/* Mismatch in response */
		    || bad_error(vsi->status)) {	/* Error without KEEP */
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		if (keep_error(vsi->status)) {	/* Error with KEEP on */
			if (vsi->resp_vsi_mode == VDP22_ASSOC)
				newstate = VDP22_ASSOC_COMPL;
			else
				newstate = VDP22_END;
		} else if (vsi->resp_vsi_mode == VDP22_PREASSOC
			   || vsi->resp_vsi_mode == VDP22_PREASSOC_WITH_RR)
			newstate = VDP22_PREASSOC_NEW;
		else if (vsi->resp_vsi_mode == VDP22_DEASSOC)
			newstate = VDP22_END;
		else
			newstate = VDP22_ASSOC_NEW;
		vdp22st_change_state(vsi, newstate);
		return true;
	case VDP22_ASSOC_NEW:
		vdp22st_change_state(vsi, VDP22_ASSOC_COMPL);
		return true;
	case VDP22_ASSOC_COMPL:
	case VDP22_PREASSOC_NEW:
		vdp22st_change_state(vsi, VDP22_WAIT_SYSCMD);
		return true;
	case VDP22_WAIT_SYSCMD:
		vdp22st_change_state(vsi, VDP22_WAIT_SYSCMD_2);
		return true;
	case VDP22_WAIT_SYSCMD_2:
		if (vsi->smi.kato) {
			vdp22st_change_state(vsi, VDP22_TXMIT_KA);
			return true;
		}
		if (vsi->smi.localchg) {
			vdp22st_change_state(vsi, VDP22_STATION_PROC);
			return true;
		}
		if (vsi->smi.deassoc) {
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		return false;
	case VDP22_TXMIT_KA:
		vdp22st_change_state(vsi, VDP22_TXMIT_KAWAIT);
		return true;
	case VDP22_TXMIT_KAWAIT:
		if (vsi->smi.txmit_error || vsi->smi.acktimeout) {
			/* Error handover to ECP22 or no VDP22 ack */
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		if (vsi->smi.ackreceived) {
			vdp22st_change_state(vsi, VDP22_TXMIT_KAWAIT_2);
			return true;
		}
		return false;
	case VDP22_TXMIT_KAWAIT_2:
		if (!vsi->smi.resp_ok		/* Mismatch in response */
		    || bad_error(vsi->status)) {	/* Error without KEEP */
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		if (keep_error(vsi->status)
		    && vsi->resp_vsi_mode == VDP22_ASSOC)
			vdp22st_change_state(vsi, VDP22_TXMIT_DEASSOC);
		else if (vsi->resp_vsi_mode == VDP22_DEASSOC)
			vdp22st_change_state(vsi, VDP22_END);
		else
			vdp22st_change_state(vsi, VDP22_WAIT_SYSCMD);
		return true;
	case VDP22_TXMIT_DEASSOC:
		vdp22st_change_state(vsi, VDP22_TXMIT_DEAWAIT);
		return true;
	case VDP22_TXMIT_DEAWAIT:
		if (vsi->smi.txmit_error || vsi->smi.acktimeout) {
			/* Error handover to ECP22 or no VDP22 ack */
			vdp22st_change_state(vsi, VDP22_END);
			return true;
		}
		if (vsi->smi.ackreceived) {
			vdp22st_change_state(vsi, VDP22_TXMIT_DEAWAIT_2);
			return true;
		}
		return false;
	case VDP22_TXMIT_DEAWAIT_2:
		vdp22st_change_state(vsi, VDP22_END);
		return true;
	case VDP22_END:
		return false;
	}
	return false;
}

/*
 * Start state machine for VSI station
 * @vsi: pointer to currently used vsi data structure
 *
 * No return value
 */
static void vdp22st_run(struct vsi22 *vsi)
{
	vdp22st_move_state(vsi);
	do {
		LLDPAD_DBG("%s:%s state %s\n", __func__,
			   vsi->vdp->ifname, vdp22_states_n[vsi->smi.state]);

		switch (vsi->smi.state) {
		case VDP22_INIT:
			vdp22st_init(vsi);
			break;
		case VDP22_STATION_PROC:
			vdp22st_process(vsi);
			break;
		case VDP22_STATION_PROCWAIT:
		case VDP22_STATION_PROCWAIT_2:
			break;
		case VDP22_ASSOC_NEW:
		case VDP22_PREASSOC_NEW:
			vdp22st_assoc_new(vsi, vsi->resp_vsi_mode);
			vdp22_clntback(vsi);
			break;
		case VDP22_ASSOC_COMPL:
			vdp22st_assoc_compl(vsi);
			break;
		case VDP22_WAIT_SYSCMD:
			vdp22st_wait_syscmd(vsi);
			break;
		case VDP22_WAIT_SYSCMD_2:
			break;
		case VDP22_TXMIT_KA:
			vdp22st_txka(vsi);
			break;
		case VDP22_TXMIT_KAWAIT:
		case VDP22_TXMIT_KAWAIT_2:
			break;
		case VDP22_TXMIT_DEASSOC:
			vdp22st_txdea(vsi);
			break;
		case VDP22_TXMIT_DEAWAIT:
			break;
		case VDP22_TXMIT_DEAWAIT_2:
			vdp22st_assoc_compl(vsi);
			break;
		case VDP22_END:
			break;
		default:
			LLDPAD_DBG("%s:%s state %d unknown\n", __func__,
				   vsi->vdp->ifname, vsi->smi.state);
			break;
		}
	} while (vdp22st_move_state(vsi) == true);
	if (vsi->smi.state == VDP22_END)
		vdp22st_end(vsi);
}

static void vdp22_localchange_handler(UNUSED void *eloop_data, void *user_ctx)
{
	struct vsi22 *vsi;

	vsi = (struct vsi22 *) user_ctx;

	if ((vsi->smi.localchg)) {
		LLDPAD_DBG("%s:%s p->localChange %i p->ackReceived %i\n",
			   __func__, vsi->vdp->ifname, vsi->smi.localchg,
			  vsi->smi.ackreceived);
		vdp22st_run(vsi);
	}
}

int vdp22_start_localchange_timer(struct vsi22 *p)
{
	return eloop_register_timeout(0, 100, vdp22_localchange_handler, NULL,
				      (void *) p);
}

/*
 * Checks if 2 VSI records are identical.
 *
 * returns true if equal, false if not
 *
 * compares mgrid, type id, type version, id format, id and filter info format
 * returns true if they are equal.
 */
static bool vdp22_vsi_equal(struct vsi22 *p1, struct vsi22 *p2)
{
	if (memcmp(p1->mgrid, p2->mgrid, sizeof(p2->mgrid)))
		return false;
	if (p1->type_id != p2->type_id)
		return false;
	if (p1->type_ver != p2->type_ver)
		return false;
	if (p1->vsi_fmt != p2->vsi_fmt)
		return false;
	if (memcmp(p1->vsi, p2->vsi, sizeof(p1->vsi)))
		return false;
	if (p1->fif != p2->fif)
		return false;
	return true;
}

/*
 * Find a VSI in the list of VSIs already allocated
 *
 * Returns pointer to already allocated VSI in list, 0 if not.
 */
static struct vsi22 *vdp22_findvsi(struct vdp22 *vdp, struct vsi22 *me)
{
	struct vsi22 *p;

	LIST_FOREACH(p, &vdp->vsi22_que, node) {
		if (vdp22_vsi_equal(p, me))
			return p;
	}
	return NULL;
}

/*
 * Modify VSI22 information and trigger state machine.
 * Parameter me identifies the VSI to be modified.
 */
static int vdp22_modvsi(struct vsi22 *me, enum vdp22_modes x)
{
	LLDPAD_DBG("%s:%s me:%p flags:%#lx mode change %d --> %d\n", __func__,
		    me->vdp->ifname, me, me->flags, me->vsi_mode, x);
	if (me->flags & VDP22_DELETE_ME)
		return -ENODEV;
	if (me->vsi_mode > x)
		return -EINVAL;
	me->vsi_mode = x;
	me->smi.localchg = true;
	me->flags |= VDP22_BUSY | VDP22_NLCMD;
	vdp22st_run(me);
	return 0;
}

/*
 * Insert in queue and enter state machine.
 */
static void vdp22_addvsi(struct vsi22 *vsip, struct vdp22 *vdp)
{
	vsip->smi.state = VDP22_BEGIN;
	LIST_INSERT_HEAD(&vdp->vsi22_que, vsip, node);
	LLDPAD_DBG("%s:%s vsip:%p\n", __func__, vsip->vdp->ifname, vsip);
	vdp22st_run(vsip);
}

/*
 * Compare VSI filter data. Return true if they match.
 * All fields are compared, even if some are not used. Unused field are
 * initialized to zeros and always match.
 */
static bool cmp_fdata1(struct fid22 *p1, struct fid22 *p2, unsigned char fif)
{
	bool is_good = true;

	if (fif == VDP22_FFMT_MACVID || fif == VDP22_FFMT_GROUPMACVID)
		is_good = !memcmp(p1->mac, p2->mac, sizeof(p1->mac));
	if (is_good &&
		(fif == VDP22_FFMT_GROUPVID || fif == VDP22_FFMT_GROUPMACVID))
		is_good = (p1->grpid == p2->grpid);
	if (is_good) {
		if (vdp22_get_vlanid(p1->vlan))
			is_good = (vdp22_get_vlanid(p1->vlan) ==
					vdp22_get_vlanid(p2->vlan));
		if (is_good && vdp22_get_ps(p1->vlan))
			is_good = (p1->vlan == p2->vlan);
	}
	return is_good;
}

bool vdp22_cmp_fdata(struct vsi22 *p, struct vsi22 *vsip)
{
	int i;

	if (p->no_fdata != vsip->no_fdata)
		return false;
	for (i = 0; i < p->no_fdata;   i) {
		struct fid22 *p1 = &p->fdata[i];
		struct fid22 *p2 = &vsip->fdata[i];

		if (!cmp_fdata1(p1, p2, p->fif)) {
			p->status = VDP22_RESP_NOADDR;
			return false;
		}
	}
	return true;
}

/*
 * Update a current/existing VSI instance.
 * The next table describes the transition diagram for the VSI instance update:
 *
 *		Current mode
 * New Mode   | none		preassoc	preassoc-RR	assoc
 * ===========|=================================================================
 * preassoc   | do_preassoc	do_preassoc	do_preassoc	error
 * preassoc-RR| do_preassoc-RR	do_preassoc-RR	do_preassoc-RR	error
 * assoc      | do_assoc	do_assoc	do_assoc	do-assoc
 * deassoc    | error		do_deassoc	do_deassoc	do-deassoc
 *
 * These operations get more complicated because the filter data may differ:
 * =============================================================================
 * Transitions:
 * If the filter data of the current VSI node and the new VSI node
 * matches completely, resend TLVs
 *
 * TODO:
 * If the new mode changes only part of the currently active
 * filter data, then do:
 * 1. Clone the filter data which is undergoing a mode change and
 *    create a new VSI node
 * 2. Delete the filter data in the currently active VSI node.
 * 3. Search for a VSI node with the same key and new mode:
 *    a. If such a node is found append filter data and resent TLVs
 *    b. If no such node is found, append the new VSI node with
 *       the new mode to the list of cloned VSIs. Send TLV for the
 *       new VSI node.
 *
 * If the key matches and the VSI mode is also identical and the filter data
 * in the new request does not match any filter data element in the current
 * request, then add the new filter data and resent the TLVs.
 *
 * Without the TODO items we currently support an exact match of the
 * filter data information. This is the same behavior as in the currently
 * supported IEEE 802.1 QBG draft version 0.2.
 */

/*
 * Handle a new request.
 */
int vdp22_addreq(struct vsi22 *vsip, struct vdp22 *vdp, bool *modf_vsi)
{
	int rc = 0;
	struct vsi22 *p;

	LLDPAD_DBG("%s:%s mode:%d\n", __func__, vsip->vdp->ifname,
		   vsip->vsi_mode);
	if (vsip->vsi_mode > VDP22_DEASSOC || vsip->vsi_mode < VDP22_PREASSOC)
		return -EINVAL;
	p = vdp22_findvsi(vdp, vsip);
	if (!p) {	/* New VSI */
		if (vsip->vsi_mode == VDP22_DEASSOC) {
			/*
			 * Disassociate of unknown VSI. Return error.
			 * Nothing to send to switch.
			 */
			rc = -EINVAL;
			LLDPAD_DBG("%s:%s dis-assoc without assoc [x]\n",
				   __func__, vsip->vdp->ifname, vsip->vsi[0]);
		} else
			vdp22_addvsi(vsip, vdp);	/* Add new VSI */
	} else {	/* Profile on list --> change state */
		/*
		 * Request is still busy, do not accept another one.
		 */
		if (p->flags & VDP22_BUSY) {
			rc = -EBUSY;
			goto out;
		}
		/*
		 * Check if filter data is identical. Right now support
		 * for exact filter data is implemented (as in draft 0.2)
		 *
		 * TODO
		 * Support for different filter data information.
		 */
		if (!vdp22_cmp_fdata(p, vsip)) {
			LLDPAD_DBG("%s:%s TODO mismatch filter data [x]\n",
				   __func__, vsip->vdp->ifname, vsip->vsi[0]);
			rc = -EINVAL;
		} else {
			vdp22_modoui(p, vsip);
			rc = vdp22_modvsi(p, vsip->vsi_mode);
			*modf_vsi = true;
		}
	}
out:
	LLDPAD_DBG("%s:%s rc:%d\n", __func__, vsip->vdp->ifname, rc);
	return rc;
}

/*
 * Test for returned filter information.
 * Set VDP22_RETURN_VID bit in flags when VLAN id or QoS change is detected.
 */
static void vdp22_cpfid(struct vsi22 *hit, struct vsi22 *from)
{
	int i;
	struct fid22 *hitm = hit->fdata, *fromm = from->fdata;

	LLDPAD_DBG("%s:%s no_fdata:%hd,%hd\n", __func__, hit->vdp->ifname,
		   from->no_fdata, hit->no_fdata);
	if (hit->no_fdata != from->no_fdata)
		return;
	for (i = 0; i < hit->no_fdata;   i,   hitm,   fromm) {
		LLDPAD_DBG("%s:%s vlan:%#hx,%#hx\n", __func__,
			   hit->vdp->ifname, hitm->vlan,  fromm->vlan);
		if (hitm->vlan != fromm->vlan) {
			hitm->vlan = fromm->vlan;
			hit->flags |= VDP22_RETURN_VID;
		}
	}
	LLDPAD_DBG("%s:%s flags:%#lx\n", __func__,  hit->vdp->ifname,
		   hit->flags);
}

/*
 * Input from bridge side.
 *
 * NOTE:
 * - Parameter vsip and associated fid data is on stack memory.
 */
static void vdp22_bridge_info(struct vsi22 *vsip)
{
	struct vsi22 *hit = vdp22_findvsi(vsip->vdp, vsip);

	if (!hit) {
		LLDPAD_DBG("%s:%s station received TLV not found:\n", __func__,
			   vsip->vdp->ifname);
		vdp22_showvsi(vsip);
		return;
	}
	hit->smi.ackreceived = true;
	hit->smi.deassoc = hit->smi.acktimeout = false;
	vdp22st_stop_acktimer(hit);
	hit->status = get_error(vsip->status);
	if (!(vsip->status & VDP22_ACKBIT) && vsip->vsi_mode == VDP22_DEASSOC) {
		/* Unsolicited de-assoc request from switch */
		hit->smi.deassoc = true;
		hit->status = 0;
	}
	/*
	 * We have already tested some fields of the TLV. Now test the
	 * filter data.
	 */
	if (vdp22_cmp_fdata(hit, vsip)) {
		hit->smi.resp_ok = true;
		hit->resp_vsi_mode = vsip->vsi_mode;	/* Take response */
		vdp22_cpfid(hit, vsip);			/* Take filter */
		if (hit->cc_vsi_mode != VDP22_DEASSOC
		    && (hit->resp_vsi_mode == VDP22_DEASSOC
			|| bad_error(hit->status))
		    && !(hit->flags & VDP22_NLCMD))
			hit->flags |= VDP22_NOTIFY;	/* Notify originator */
	}
	LLDPAD_DBG("%s:%s found:%p resp_ok:%d vsi_mode:%d,%d resp_vsi_mode:%d "
		   "flags:%#lx status:%#x deassoc:%d\n",
		   __func__, vsip->vdp->ifname, hit, hit->smi.resp_ok,
		   hit->vsi_mode, hit->cc_vsi_mode, hit->resp_vsi_mode,
		   hit->flags, hit->status, hit->smi.deassoc);
	vdp22st_run(hit);
}

/*
 * vdp22 input processing from ECP22 received data. Check if data is valid
 * and do some basic checks.
 */
/*
 * Advance to next packed tlv location.
 */
static inline struct vdp22_ptlv *next_ptlv(struct vdp22_ptlv *p,
					   const unsigned short len)
{
	return (struct vdp22_ptlv *)((unsigned char *)p   len);
}

/*
 * Convert a VDP22 packed TLV to vsi22 filter data.
 * Return number of bytes (in input packed TLV) processed.
 */
static size_t ptlv_2_fdata(struct fid22 *fidp, const unsigned char *cp,
			 const unsigned char ffmt)
{
	size_t offset = 0;

	memset(fidp, 0, sizeof(*fidp));
	switch (ffmt) {
	case VDP22_FFMT_VID:
		offset = extract_2o(&fidp->vlan, cp);
		break;
	case VDP22_FFMT_MACVID:
		offset = extract_no(fidp->mac, cp, sizeof(fidp->mac));
		offset  = extract_2o(&fidp->vlan, cp   offset);
		break;
	case VDP22_FFMT_GROUPVID:
		offset = extract_4o(&fidp->grpid, cp);
		offset  = extract_2o(&fidp->vlan, cp   offset);
		break;
	case VDP22_FFMT_GROUPMACVID:
		offset = extract_4o(&fidp->grpid, cp);
		offset  = extract_no(fidp->mac, cp   offset, sizeof(fidp->mac));
		offset  = extract_2o(&fidp->vlan, cp   offset);
		break;
	}
	return offset;
}

/*
 * Bridge sends replies with ACK bit set or DEASSOC request.
 * Station sends requests, ignore error bits, ACK bit must be cleared.
 */
static inline bool response_ok(struct vsi22 *vsip)
{
	if (vsip->vdp->myrole == VDP22_BRIDGE)
		return (vsip->status & VDP22_ACKBIT) ? false : true;
	if ((vsip->status & VDP22_ACKBIT) ||
	    (!(vsip->status & VDP22_ACKBIT) && vsip->vsi_mode == VDP22_DEASSOC))
		return true;
	return false;
}

/*
 * Convert a VDP22 packed TLV to vsi22 to struct vsi22 data format.
 */
static void ptlv_2_vsi22(struct vsi22 *vsip, struct vdp22_ptlv *ptlv)
{
	int i;
	size_t offset;
	unsigned char *cp = ptlv->data;

	offset = extract_1o(&vsip->status, cp);
	offset  = extract_3o(&vsip->type_id, cp   offset);
	offset  = extract_1o(&vsip->type_ver, cp   offset);
	offset  = extract_1o(&vsip->vsi_fmt, cp   offset);
	offset  = extract_no(vsip->vsi, cp   offset, sizeof(vsip->vsi));
	offset  = extract_1o(&vsip->fif, cp   offset);
	offset  = extract_2o(&vsip->no_fdata, cp   offset);

	if (ptlv_length(ntohs(ptlv->head)) == vsi22_ptlv_sz(vsip)
	    && vsip->no_fdata && response_ok(vsip)) {
		struct fid22 fid[vsip->no_fdata];

		vsip->fdata = fid;
		for (i = 0; i < vsip->no_fdata;   i)
			offset  = ptlv_2_fdata(&fid[i], cp   offset, vsip->fif);
		if (vsip->vdp->myrole == VDP22_STATION)
			vdp22_bridge_info(vsip);
		else
			vdp22_station_info(vsip);
		return;
	}
	LLDPAD_DBG("%s:%s TLV ignored\n", __func__, vsip->vdp->ifname);
	vdp22_showvsi(vsip);
}

/*
 * Interate along the packed TLVs and extract information. Packed TLV has
 * passed basic consistency checking.
 */
static void vdp22_input(struct vdp22 *vdp)
{
	struct vsi22 vsi;
	struct vdp22_ptlv *ptlv = (struct vdp22_ptlv *)vdp->input;
	enum vdp22_modes mode;

	LLDPAD_DBG("%s:%s input_len:%d\n", __func__, vdp->ifname,
		   vdp->input_len);
	memset(&vsi, 0, sizeof(vsi));
	vsi.vdp = vdp;
	for (; (mode = ptlv_type(ntohs(ptlv->head))) != 0;
	     ptlv = next_ptlv(ptlv, ptlv_length(ntohs(ptlv->head)))) {
		switch (mode) {
		default:
		case VDP22_ENDTLV:
			break;
		case VDP22_MGRID:
			memcpy(&vsi.mgrid, ptlv->data, sizeof(vsi.mgrid));
			break;
		case VDP22_PREASSOC:
		case VDP22_PREASSOC_WITH_RR:
		case VDP22_ASSOC:
		case VDP22_DEASSOC:
			vsi.vsi_mode = mode;
			ptlv_2_vsi22(&vsi, ptlv);
			break;
		}
	}
}

/*
 * Receive data from the ECP22 module. Check for valid input data.
 */
static void vdp22_ecp22in(UNUSED void *ctx, void *parm)
{
	struct vdp22 *vdp = (struct vdp22 *)parm;
	struct vdp22_ptlv *ptlv = (struct vdp22_ptlv *)vdp->input;
	int total_len = vdp->input_len;
	unsigned short ptlv_len;

	if (vdp->myrole == VDP22_BRIDGE && vdp->br_down) {
		LLDPAD_DBG("%s:%s bridge down\n", __func__, vdp->ifname);
		return;
	}
	/* Verify 1st TLV is a manager id TLV */
	if (ptlv_type(ntohs(ptlv->head)) != VDP22_MGRID) {
		LLDPAD_ERR("%s:%s No Manager ID TLV -- packet dropped\n",
			   __func__, vdp->ifname);
		return;
	}
	ptlv_len = ptlv_length(ntohs(ptlv->head));
	if (ptlv_len > total_len) {
		LLDPAD_ERR("%s:%s Invalid Manager ID TLV length -- "
			   "packet dropped\n", __func__, vdp->ifname);
		return;
	}
	total_len -= ptlv_len;
	do {	/* Iterrate over all packed TLVs */
		ptlv = (struct vdp22_ptlv *)((unsigned char *)ptlv   ptlv_len);
		ptlv_len = ptlv_length(ntohs(ptlv->head));

		switch (ptlv_type(ntohs(ptlv->head))) {
		case VDP22_ENDTLV:
			total_len = 0;
			break;
		case VDP22_MGRID:
			LLDPAD_ERR("%s:%s Duplicate Manager ID TLV -- "
				   "packet dropped\n", __func__, vdp->ifname);
			return;
		case VDP22_PREASSOC:
		case VDP22_PREASSOC_WITH_RR:
		case VDP22_ASSOC:
		case VDP22_DEASSOC:
			if (ptlv_len > total_len) {
				LLDPAD_ERR("%s:%s Invalid TLV length -- "
					   "packet dropped\n", __func__,
					   vdp->ifname);
				return;
			}
			total_len -= ptlv_len;
			break;
		default:
			LLDPAD_DBG("%s:%s Unknown TLV ID (%#hx) -- "
				   "ignored\n", __func__, vdp->ifname,
				   ptlv_type(ptlv->head));
			if (!ptlv_len)
				ptlv_len = 2;	/* Keep TLVs moving */
			total_len -= ptlv_len;
		}
	} while (total_len > 0);

	if (total_len < 0) {
		LLDPAD_ERR("%s:%s Received packed TLV length error (%d)\n",
			   __func__, vdp->ifname, total_len);
		return;
	}
	return vdp22_input(vdp);
}

/*
 * Called when ECP22 module delivers data. Wait a very short time to allow
 * the ECP module to return its acknowledgement before data is processed.
 */
int vdp22_from_ecp22(struct vdp22 *vdp)
{
	return eloop_register_timeout(0, 2 * 1000, vdp22_ecp22in, NULL, vdp);
}

/*
 * Bridge state machine code starts here.
 */
static void vdp22br_init(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s vsi:%p(x)\n", __func__, p->vdp->ifname, p,
		   p->vsi[0]);
	p->flags = 0;
	p->cc_vsi_mode = VDP22_DEASSOC;
	p->resp_vsi_mode = VDP22_RESP_NONE;
	p->smi.localchg = true;		/* Change triggered by station */
	p->smi.kato = false;
	p->smi.resp_ok = false;		/* Response from VSI manager */
	/* FOLLOWING MEMBERS NOT USED BY BRIDGE STATE MACHINE */
	p->smi.deassoc = p->smi.acktimeout = p->smi.ackreceived = false;
	p->smi.txmit = false;
	p->smi.txmit_error = 0;
}

/*
 * VSI bridge time out handler.
 */
static void vdp22br_handle_kato(UNUSED void *ctx, void *data)
{
	struct vsi22 *p = data;

	LLDPAD_DBG("%s:%s timeout keep alive timer for %#02x\n",
		   __func__, p->vdp->ifname, p->vsi[0]);
	p->smi.kato = true;
	vdp22br_run(p);
}

/*
 * Starts the VSI bridge keep alive timer.
 */
static int vdp22br_start_katimer(struct vsi22 *p)
{
	unsigned int usecs, secs;

	p->smi.kato = false;
	vdp22_timeout(p->vdp, p->vdp->vdp_rka, &secs, &usecs);
	LLDPAD_DBG("%s:%s start keep alive timer for %p(x) [%i,%i]\n",
		   __func__, p->vdp->ifname, p, p->vsi[0], secs, usecs);
	return eloop_register_timeout(secs, usecs, vdp22br_handle_kato, NULL,
				      (void *)p);
}

/*
 * Stops the bridge keep alive timer.
 */
static int vdp22br_stop_katimer(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s stop keep alive timer for %p(x)\n", __func__,
		   p->vdp->ifname, p, p->vsi[0]);
	return eloop_cancel_timeout(vdp22br_handle_kato, NULL, (void *)p);
}

/*
 * Bridge resource processing timers.
 */
static void vdp22br_handle_resto(UNUSED void *ctx, void *data)
{
	struct vsi22 *p = data;

	LLDPAD_DBG("%s:%s timeout resource wait delay for %p(%#02x)\n",
		   __func__, p->vdp->ifname, p, p->vsi[0]);
	p->smi.resp_ok = true;
	vdp22br_run(p);
}

static int vdp22br_stop_restimer(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s stop resource wait timer for %p(x)\n",
		   __func__, p->vdp->ifname, p, p->vsi[0]);
	return eloop_cancel_timeout(vdp22br_handle_resto, NULL, (void *)p);
}

/*
 * Start resource wait delay timer.
 */
static int vdp22br_start_restimer(struct vsi22 *p)
{
	unsigned long long towait = (1 << p->vdp->vdp_rwd) * 10;
	unsigned int secs, usecs;

	p->smi.resp_ok = false;
	p->resp_vsi_mode = VDP22_RESP_NONE;
	secs = towait / USEC_PER_SEC;
	usecs = towait % USEC_PER_SEC;
	LLDPAD_DBG("%s:%s start resource wait timer for %p(x) [%i,%i]\n",
		   __func__, p->vdp->ifname, p, p->vsi[0], secs, usecs);
	return eloop_register_timeout(secs, usecs, vdp22br_handle_resto, NULL,
				      (void *)p);
}

static void vdp22br_process(struct vsi22 *p)
{
	int rc, error = 0;

	LLDPAD_DBG("%s:%s vsi:%p(x) id:%ld\n", __func__,
		   p->vdp->ifname, p, p->vsi[0], p->type_id);
	vdp22br_start_restimer(p);
	p->status = 0;
	p->resp_vsi_mode = VDP22_RESP_SUCCESS;
	rc = vdp22br_resources(p, &error);
	switch (rc) {
	case VDP22_RESP_TIMEOUT:
		break;
	case VDP22_RESP_KEEP:
		p->status = VDP22_KEEPBIT;
		goto rest;
	case VDP22_RESP_DEASSOC:
		if (error > VDP22_STATUS_MASK)
			p->status = VDP22_HARDBIT;
		/* FALLTHROUGH */
	case VDP22_RESP_SUCCESS:
rest:
		p->status |= VDP22_ACKBIT | make_status(error);
		vdp22br_stop_restimer(p);
		p->smi.resp_ok = true;
		break;
	}
	p->resp_vsi_mode = rc;
	LLDPAD_DBG("%s:%s resp_vsi_mode:%d status:%#x\n", __func__,
		   p->vdp->ifname, p->resp_vsi_mode, p->status);
}

void vdp22_stop_timers(struct vsi22 *vsi)
{
	vdp22st_stop_acktimer(vsi);
	vdp22st_stop_katimer(vsi);
}

static void vdp22br_end(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s vsi:%p(x)\n", __func__, p->vdp->ifname, p,
		   p->vsi[0]);
	vdp22_listdel_vsi(p);
}

/*
 * Add a VSI to bridge state machine.
 */
static void vdp22br_addvsi(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s vsi:%p(x)\n", __func__, p->vdp->ifname, p,
		   p->vsi[0]);
	p->smi.state = VDP22_BR_BEGIN;
	p->flags = VDP22_BUSY;
	LIST_INSERT_HEAD(&p->vdp->vsi22_que, p, node);
	vdp22br_run(p);
}

/*
 * Send a bridge reply. Allocate send buffer on stack and create packed TLVs.
 */
static void vdp22br_reply(struct vsi22 *vsi)
{
	unsigned short len = mgr22_ptlv_sz()   vsi22_ptlv_sz(vsi);
	unsigned char buf[len];
	struct qbg22_imm qbg;

	qbg.data_type = VDP22_TO_ECP22;
	qbg.u.c.len = len;
	qbg.u.c.data = buf;
	mgr22_2tlv(vsi, buf);
	vsi22_2tlv(vsi, buf   mgr22_ptlv_sz(), vsi->status);
	modules_notify(LLDP_MOD_ECP22, LLDP_MOD_VDP22, vsi->vdp->ifname, &qbg);
	vsi->flags &= ~VDP22_BUSY;
	vsi->smi.localchg = false;
	LLDPAD_DBG("%s:%s len:%hd rc:%d\n", __func__, vsi->vdp->ifname, len,
		   vsi->smi.txmit_error);
}

/*
 * Send a keep status TLV as bridge reply.
 */
static void vdp22br_sendack(struct vsi22 *p, unsigned char status)
{
	LLDPAD_DBG("%s:%s vsi:%p(x)\n", __func__, p->vdp->ifname, p,
		   p->vsi[0]);
	p->status = status;
	vdp22br_reply(p);
}

/*
 * Send a de-associate TLV as bridge reply.
 */
static void vdp22br_deassoc(struct vsi22 *p, unsigned char status)
{
	LLDPAD_DBG("%s:%s vsi:%p(x)\n", __func__, p->vdp->ifname, p,
		   p->vsi[0]);
	p->vsi_mode = VDP22_DEASSOC;
	vdp22br_sendack(p, status);
}

/*
 * Change bridge state machine into a new state.
 */
static void vdp22br_change_state(struct vsi22 *p, enum vdp22br_states new)
{
	switch (new) {
	case VDP22_BR_INIT:
		assert(p->smi.state == VDP22_BR_BEGIN);
		break;
	case VDP22_BR_PROCESS:
		assert(p->smi.state == VDP22_BR_WAITCMD_2
		       || p->smi.state == VDP22_BR_INIT);
		break;
	case VDP22_BR_SEND:
		assert(p->smi.state == VDP22_BR_PROCESS);
		break;
	case VDP22_BR_KEEP:
		assert(p->smi.state == VDP22_BR_PROCESS);
		break;
	case VDP22_BR_DEASSOC:
		assert(p->smi.state == VDP22_BR_PROCESS);
		break;
	case VDP22_BR_WAITCMD:
		assert(p->smi.state == VDP22_BR_SEND
		       || p->smi.state == VDP22_BR_KEEP
		       || p->smi.state == VDP22_BR_ALIVE);
		break;
	case VDP22_BR_WAITCMD_2:
		assert(p->smi.state == VDP22_BR_WAITCMD);
		break;
	case VDP22_BR_ALIVE:
		assert(p->smi.state == VDP22_BR_WAITCMD_2);
		break;
	case VDP22_BR_DEASSOCIATED:
		assert(p->smi.state == VDP22_BR_PROCESS
		       || p->smi.state == VDP22_BR_WAITCMD);
		break;
	case VDP22_BR_END:
		assert(p->smi.state == VDP22_BR_DEASSOC
		       || p->smi.state == VDP22_BR_DEASSOCIATED);
		break;
	default:
		LLDPAD_ERR("%s:%s VDP bridge machine INVALID STATE %d\n",
			   __func__, p->vdp->ifname, new);
	}
	LLDPAD_DBG("%s:%s state change %s -> %s\n", __func__,
		   p->vdp->ifname, vdp22br_state_name(p->smi.state),
		   vdp22br_state_name(new));
	p->smi.state = new;
}

/*
 * vdp22br_move_state - advances the VDP bridge state machine state
 *
 * returns true or false
 *
 * Switches the state machine to the next state depending on the input
 * variables. Returns true or false depending on whether the state machine
 * can be run again with the new state or has to stop at the current state.
 */
static bool vdp22br_move_state(struct vsi22 *p)
{
	LLDPAD_DBG("%s:%s state %s\n", __func__, p->vdp->ifname,
		   vdp22br_state_name(p->smi.state));
	switch (p->smi.state) {
	case VDP22_BR_BEGIN:
		vdp22br_change_state(p, VDP22_BR_INIT);
		return true;
	case VDP22_BR_INIT:
		vdp22br_change_state(p, VDP22_BR_PROCESS);
		return true;
	case VDP22_BR_PROCESS:
		if (!p->smi.resp_ok)	/* No resource wait response */
			return false;
		/* Assumes status and error bits set accordingly */
		if (p->resp_vsi_mode == VDP22_RESP_NONE) {	/* Timeout */
			if (p->cc_vsi_mode == VDP22_ASSOC)
				vdp22br_change_state(p, VDP22_BR_KEEP);
			else
				vdp22br_change_state(p, VDP22_BR_DEASSOCIATED);
		} else if (p->resp_vsi_mode == VDP22_RESP_SUCCESS)
			vdp22br_change_state(p, VDP22_BR_SEND);
		else if (p->resp_vsi_mode == VDP22_RESP_KEEP)
			vdp22br_change_state(p, VDP22_BR_KEEP);
		else
			vdp22br_change_state(p, VDP22_BR_DEASSOC);
		return true;
	case VDP22_BR_SEND:
	case VDP22_BR_KEEP:
		vdp22br_change_state(p, VDP22_BR_WAITCMD);
		return true;
	case VDP22_BR_DEASSOC:
		vdp22br_change_state(p, VDP22_BR_END);
		return true;
	case VDP22_BR_WAITCMD:
		if (p->smi.localchg) {		/* New station request */
			vdp22br_change_state(p, VDP22_BR_WAITCMD_2);
			return true;
		}
		if (p->smi.kato) {		/* Keep alive timeout */
			vdp22br_change_state(p, VDP22_BR_DEASSOCIATED);
			return true;
		}
		return false;
	case VDP22_BR_WAITCMD_2:		/* Handle station msg */
		if (p->cc_vsi_mode == p->vsi_mode)
			vdp22br_change_state(p, VDP22_BR_ALIVE);
		else
			vdp22br_change_state(p, VDP22_BR_PROCESS);
		return true;
	case VDP22_BR_DEASSOCIATED:
		vdp22br_change_state(p, VDP22_BR_END);
		return true;
	case VDP22_BR_ALIVE:
		vdp22br_change_state(p, VDP22_BR_WAITCMD);
		return true;
	case VDP22_BR_END:
		return false;
	default:
		LLDPAD_DBG("%s:%s unhandled state %s\n", __func__,
			    p->vdp->ifname, vdp22br_state_name(p->smi.state));
	}
	return false;
}

/*
 * Run bridge state machine.
 */
static void vdp22br_run(struct vsi22 *p)
{
	vdp22br_move_state(p);
	do {
		LLDPAD_DBG("%s:%s state %s\n", __func__,
			   p->vdp->ifname,
			   vdp22br_state_name(p->smi.state));

		switch (p->smi.state) {
		case VDP22_BR_INIT:
			vdp22br_init(p);
			break;
		case VDP22_BR_PROCESS:
			vdp22br_process(p);
			break;
		case VDP22_BR_SEND:
			vdp22br_reply(p);
			break;
		case VDP22_BR_KEEP:
			vdp22br_sendack(p, p->status);
			break;
		case VDP22_BR_DEASSOC:
			vdp22br_deassoc(p, p->status);
			break;
		case VDP22_BR_WAITCMD:
			vdp22br_start_katimer(p);
			break;
		case VDP22_BR_WAITCMD_2:
			break;
		case VDP22_BR_ALIVE:
			vdp22br_sendack(p, VDP22_ACKBIT);
			break;
		case VDP22_BR_DEASSOCIATED:
			vdp22br_deassoc(p, 0);
			break;
		case VDP22_BR_END:
			vdp22br_end(p);
			return;
		}
	} while (vdp22br_move_state(p) == true);
}

/*
 * Process the request from the station.
 *
 * NOTE:
 * - Parameter vsip and associated fid data is on stack memory.
 * - New filter information data assigned to new_fdata/new_no_fdata.
 */
static void vdp22_station_info(struct vsi22 *vsip)
{
	struct vdp22 *vdp = vsip->vdp;
	struct vsi22 *hit = vdp22_findvsi(vsip->vdp, vsip);

	LLDPAD_DBG("%s:%s received VSI hit:%p\n", __func__, vdp->ifname, hit);
	vdp22_showvsi(vsip);
	if (!hit) {
		if (vsip->vsi_mode == VDP22_DEASSOC) {
			/* Nothing allocated and de-assoc --> return ack */
			vsip->status = VDP22_ACKBIT;
		} else {
			/* Create VSI & enter init state */
			struct vsi22 *new = vdp22_copy_vsi(vsip);

			if (new)
				return vdp22br_addvsi(new);
			vsip->status = VDP22_ACKBIT
					| make_status(VDP22_RESP_NO_RESOURCES);
		}
		/* Send back response without state machine resources */
		return vdp22br_reply(vsip);
	}
	LLDPAD_DBG("%s:%s vsi_mode:%d flags:%#lx\n", __func__, vdp->ifname,
		   hit->vsi_mode, hit->flags);
	if (hit->flags & VDP22_BUSY)
		return;
	vdp22br_stop_katimer(hit);
	if (!vdp22_cmp_fdata(hit, vsip)) {
		LLDPAD_DBG("%s:%s TODO mismatch filter data [x]\n",
			   __func__, vsip->vdp->ifname, vsip->vsi[0]);
		return;
	}
	hit->smi.localchg = true;
	hit->vsi_mode = vsip->vsi_mode;		/* Take new request */
	vdp22br_run(hit);
}