summaryrefslogtreecommitdiff
path: root/tsn/src/nx_mvrp.c
blob: a3ce563d107fc5478160f886ab7ef65e90b86da1 (plain)
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
/***************************************************************************
 * Copyright (c) 2024 Microsoft Corporation
 * Copyright (c) 2025-present Eclipse ThreadX Contributors
 *
 * This program and the accompanying materials are made available under the
 * terms of the MIT License which is available at
 * https://opensource.org/licenses/MIT.
 *
 * SPDX-License-Identifier: MIT
 **************************************************************************/

/**************************************************************************/
/**************************************************************************/
/**                                                                       */
/** NetX Component                                                        */
/**                                                                       */
/**   Multiple VLAN Registration Protocol (MVRP)                          */
/**                                                                       */
/**************************************************************************/
/**************************************************************************/

/* Include necessary system files.  */
#include "nx_mvrp.h"

#ifdef NX_ENABLE_VLAN
NX_MVRP_ATTRIBUTE mvrp_attribute_array[NX_MVRP_ATTRIBUTE_ARRAY_MAX_SIZE];

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_indication_process                          PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function process the MVRP indication.                          */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    attribute                             MRP attribute                 */
/*    indication_type                       Indication type               */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    nx_mvrp_action_request                MVRP action request           */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    Internal function                                                   */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_indication_process(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_MRP_ATTRIBUTE *attribute, UCHAR indication_type)
{
UINT   status;
USHORT vlan_id;
NX_MVRP *mvrp = (NX_MVRP *)participant;

    NX_PARAMETER_NOT_USED(mrp);
    if (mvrp -> mvrp_event_callback)
    {
        status = mvrp -> mvrp_event_callback(participant, attribute, indication_type, NX_NULL);
        if (status != NX_SUCCESS)
        {
            return(status);
        }
    }

    vlan_id = ((NX_MVRP_ATTRIBUTE *)attribute) -> vlan_id;
    status = nx_mvrp_action_request(mrp, participant, vlan_id, indication_type);

    return(status);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_mrpdu_unpack                                PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function unpack the MVRP message.                              */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    packet_ptr                            MRP packet                    */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    nx_mvrp_attribute_get                 Get MVRP attribute            */
/*    nx_mrp_event_process                  Process MRP event             */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    Internal Function                                                   */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_mrpdu_unpack(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_PACKET *packet_ptr)
{
UINT              status;
NX_MRP_ATTRIBUTE *attribute = NX_NULL;
UCHAR             attribute_type;
UCHAR             attribute_len;
UCHAR            *data_ptr = packet_ptr -> nx_packet_prepend_ptr;
UCHAR            *end = packet_ptr -> nx_packet_prepend_ptr + packet_ptr -> nx_packet_length;
UCHAR            *attribute_list_end;
USHORT            vector_header;
USHORT            leave_all_event;
USHORT            number_of_values;
USHORT            vlan_id;
USHORT            event_cycle_cnt;
USHORT            i;
UCHAR             three_packed_event, first_event, second_event, third_event;

    if (*data_ptr++ != NX_MRP_MVRP_PROTOCOL_VERSION)
    {
        return(NX_INVALID_PARAMETERS);
    }

    end = end - NX_MVRP_ATTRIBUTE_END_MARK_SIZE;

    /* Message loop */
    while (data_ptr < end)
    {
        /* Attribute start */
        attribute_type = *data_ptr++;
        if (attribute_type != NX_MVRP_ATTRIBUTE_TYPE_VLAN_ID)
        {
            return(NX_INVALID_PACKET);
        }

        attribute_len = *data_ptr++;
        if (attribute_len != NX_MVRP_ATTRIBUTE_LENGTH_VLAN_ID)
        {
            return(NX_INVALID_PACKET);
        }

        attribute_list_end = end - NX_MVRP_ATTRIBUTE_END_MARK_SIZE;

        /* Vector attribute loop */
        while (data_ptr < attribute_list_end)
        {
            vector_header = (USHORT)*data_ptr++;
            vector_header = (USHORT)(vector_header << 8);
            vector_header |= (USHORT)*data_ptr++;

            /* no need to process the case of vector header is 0 */
            if (vector_header == 0)
            {
                return(NX_SUCCESS);
            }

            leave_all_event = vector_header >> 13;
            number_of_values = vector_header & 0x1fff;

            /* First Value */
            vlan_id = (USHORT)*data_ptr++;
            vlan_id = (USHORT)(vlan_id << 8);
            vlan_id |= (USHORT)*data_ptr++;

            event_cycle_cnt = (number_of_values % 3 == 0) ? 0 : 1;
            event_cycle_cnt = (USHORT)(event_cycle_cnt + number_of_values / 3);

            if (data_ptr + event_cycle_cnt >= attribute_list_end)
            {
                return(NX_PACKET_OFFSET_ERROR);
            }

            /* Attribite event loop */
            for (i = 0; i < event_cycle_cnt; i++)
            {
                /* ThreePackedEvents BYTE ::= (((((AttributeEvent_first) *6) + AttributeEvent_second) *6) + AttributeEvent_third) */
                three_packed_event = *data_ptr++;
                third_event = three_packed_event % 6;
                second_event = (UCHAR)((three_packed_event - third_event) / 6) % 6;
                first_event = (UCHAR)((three_packed_event - third_event) / 6 - second_event) / 6;

                /* Get the first vlan id with event */
                if (number_of_values > 0)
                {
                    status = nx_mvrp_attribute_get(mrp, participant, &attribute, vlan_id);
                    if (status != NX_SUCCESS)
                    {
                        return(NX_NOT_SUCCESSFUL);
                    }

                    if (leave_all_event)
                    {
                        nx_mrp_event_process(mrp, participant, attribute, NX_MRP_EVENT_RLA);
                    }
                    else
                    {
                        nx_mrp_event_process(mrp, participant, attribute, first_event);
                    }
                    number_of_values--;
                    vlan_id++;
                }
                else
                {
                    return(NX_INVALID_PACKET);
                }

                /* Get the second vlan id with event */
                if (number_of_values > 0)
                {
                    status = nx_mvrp_attribute_get(mrp, participant, &attribute, vlan_id);
                    if (status != NX_SUCCESS)
                    {
                        return(NX_NOT_SUCCESSFUL);
                    }

                    if (leave_all_event)
                    {
                        nx_mrp_event_process(mrp, participant, attribute, NX_MRP_EVENT_RLA);
                    }
                    else
                    {
                        nx_mrp_event_process(mrp, participant, attribute, second_event);
                    }
                    number_of_values--;
                    vlan_id++;
                }

                /* Get the third vlan id with event */
                if (number_of_values > 0)
                {
                    status = nx_mvrp_attribute_get(mrp, participant, &attribute, vlan_id);
                    if (status != NX_SUCCESS)
                    {
                        return(NX_NOT_SUCCESSFUL);
                    }

                    if (leave_all_event)
                    {
                        nx_mrp_event_process(mrp, participant, attribute, NX_MRP_EVENT_RLA);
                    }
                    else
                    {
                        nx_mrp_event_process(mrp, participant, attribute, third_event);
                    }
                    number_of_values--;
                    vlan_id++;
                }
            }
        }
        data_ptr += NX_MVRP_ATTRIBUTE_END_MARK_SIZE;
    }

    return(NX_SUCCESS);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_mrpdu_pack                                  PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function pack the MVRP message.                                */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    packet_ptr                            MRP packet                    */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    nx_mrp_attribute_event_get            Get MRP attribute event       */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    Internal Function                                                   */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_mrpdu_pack(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_PACKET *packet_ptr)
{
NX_MRP_ATTRIBUTE *attribute = participant -> inused_head;
NX_MRP_ATTRIBUTE *vector_attribute;
UCHAR            *data_ptr = packet_ptr -> nx_packet_prepend_ptr;
USHORT            leave_all_event;
USHORT            number_of_values = 0;
UCHAR             attribute_find = NX_FALSE;
USHORT            vector_header;
USHORT            first_value, vlan_id;
USHORT            event_cycle_cnt;
UCHAR             three_packed_event, first_event, second_event, third_event;
USHORT            i;

    NX_PARAMETER_NOT_USED(mrp);
    /* Encaps the protocol version */
    *data_ptr++ = NX_MRP_MVRP_PROTOCOL_VERSION;

    /* Message start */
    /* Attribute type */
    *data_ptr++ = NX_MVRP_ATTRIBUTE_TYPE_VLAN_ID;

    /* Attribute length */
    *data_ptr++ = NX_MVRP_ATTRIBUTE_LENGTH_VLAN_ID;

    /* Attribute list */
    while (attribute)
    {
        if (attribute -> applicant.action == NX_MRP_ACTION_NULL)
        {
            attribute = attribute -> next;
            continue;
        }

        if (participant -> leaveall.action == NX_MRP_ACTION_SLA)
        {
            leave_all_event = NX_TRUE;
        }

        /* Get the first value */
        first_value = ((NX_MVRP_ATTRIBUTE *)attribute) -> vlan_id;
        vlan_id = (USHORT)(first_value + 1);
        vector_attribute = attribute -> next;
        number_of_values = 1;
        attribute_find = NX_TRUE;
        while (vector_attribute)
        {
            if (((NX_MVRP_ATTRIBUTE *)vector_attribute) -> vlan_id == vlan_id)
            {
                if (attribute -> applicant.action == NX_MRP_ACTION_NULL)
                {
                    vector_attribute = vector_attribute -> next;
                    break;
                }
                number_of_values++;
                vlan_id++;
                vector_attribute = vector_attribute -> next;
                continue;
            }
            else
            {
                break;
            }
        }

        vector_header = (USHORT)(leave_all_event << 13);
        vector_header = (USHORT)(vector_header | number_of_values);

        /* Vector header */
        *data_ptr++ = (UCHAR)(vector_header >> 8);
        *data_ptr++ = (UCHAR)(vector_header & 0xff);

        /* First Value */
        *data_ptr++ = (UCHAR)(first_value >> 8);
        *data_ptr++ = (UCHAR)(first_value & 0xff);

        /* Attribute event */
        event_cycle_cnt = (number_of_values % 3 == 0) ? 0 : 1;
        event_cycle_cnt = (USHORT)(event_cycle_cnt + number_of_values / 3);

        for (i = 0; i < event_cycle_cnt; i++)
        {
            nx_mrp_attribute_event_get(attribute, &first_event);
            attribute = attribute -> next;
            number_of_values--;

            if (number_of_values == 0)
            {
                second_event = 0;
                third_event = 0;
            }
            else
            {
                nx_mrp_attribute_event_get(attribute, &second_event);
                attribute = attribute -> next;
                number_of_values--;

                if (number_of_values == 0)
                {
                    third_event = 0;
                }
                else
                {
                    nx_mrp_attribute_event_get(attribute, &third_event);
                    attribute = attribute -> next;
                    number_of_values--;
                }
            }

            /* ThreePackedEvents BYTE ::= (((((AttributeEvent_first) *6) + AttributeEvent_second) *6) + AttributeEvent_third) */
            three_packed_event = (UCHAR)(first_event * 6);
            three_packed_event = (UCHAR)(three_packed_event + second_event);
            three_packed_event = (UCHAR)(three_packed_event * 6);
            three_packed_event = (UCHAR)(three_packed_event + third_event);

            *data_ptr++ = three_packed_event;
        }
    }

    if (attribute_find == NX_FALSE)
    {
        return(NX_NOT_FOUND);
    }

    /* Attribute list end (add the end mark) */
    *data_ptr++ = 0;
    *data_ptr++ = 0;

    /* Message end (add the end mark) */
    *data_ptr++ = 0;
    *data_ptr++ = 0;

    packet_ptr -> nx_packet_append_ptr = data_ptr;
    packet_ptr -> nx_packet_length = (ULONG)(packet_ptr -> nx_packet_append_ptr - packet_ptr -> nx_packet_prepend_ptr);
    return(NX_SUCCESS);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_attribute_find                              PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function find the MVRP attribute.                              */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    attribute_ptr                         MRP attribute                 */
/*    vlan_id                               VLAN ID                       */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    None                                                                */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    Internal Function                                                   */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_attribute_find(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_MRP_ATTRIBUTE **attribute_ptr, USHORT vlan_id)
{
NX_MRP_ATTRIBUTE  *attribute;
NX_MVRP_ATTRIBUTE *mvrp_attribute;

    NX_PARAMETER_NOT_USED(mrp);
    attribute = participant -> inused_head;

    while (attribute != NX_NULL)
    {
        mvrp_attribute = (NX_MVRP_ATTRIBUTE *)attribute;
        if (mvrp_attribute -> vlan_id == vlan_id)
        {
            *attribute_ptr = attribute;
            return(NX_SUCCESS);
        }

        if (mvrp_attribute -> vlan_id > vlan_id)
        {
            /* The vlan id is not found */
            break;
        }
        attribute = attribute -> next;
    }

    return(NX_NOT_SUCCESSFUL);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_attribute_insert                            PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function insert the MVRP attribute into attribute list.        */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    attribute                             MRP attribute                 */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    None                                                                */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    None                                                                */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    nx_mvrp_attribute_get                 MVRP attribute get            */
/*                                                                        */
/**************************************************************************/
void nx_mvrp_attribute_insert(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_MRP_ATTRIBUTE *attribute)
{
NX_MRP_ATTRIBUTE *tmp_attribute;
USHORT            vlan_id = ((NX_MVRP_ATTRIBUTE *)attribute) -> vlan_id;

    NX_PARAMETER_NOT_USED(mrp);
    tmp_attribute = participant -> inused_head;

    if (tmp_attribute == NX_NULL)
    {
        participant -> inused_head = attribute;
        attribute -> next = NX_NULL;
        attribute -> pre = NX_NULL;
        return;
    }

    while (tmp_attribute != NX_NULL)
    {
        if (((NX_MVRP_ATTRIBUTE *)tmp_attribute) -> vlan_id > vlan_id)
        {
            /* The node should be inserted into the head of the list */
            if (participant -> inused_head == tmp_attribute)
            {

                attribute -> next = tmp_attribute;
                attribute -> pre = NX_NULL;
                tmp_attribute -> pre = attribute;
                participant -> inused_head = attribute;
            }
            else
            {
                attribute -> next = tmp_attribute;
                attribute -> pre = tmp_attribute -> pre;
                tmp_attribute -> pre -> next = attribute;
                tmp_attribute -> pre = attribute;
            }
            return;
        }

        /* The node should be inserted into the tail of the list */
        if (tmp_attribute -> next == NX_NULL)
        {
            attribute -> next = NX_NULL;
            attribute -> pre = tmp_attribute;

            tmp_attribute -> next = attribute;

            return;
        }
        tmp_attribute = tmp_attribute -> next;
    }

    return;
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_attribute_get                               PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function gets the MVRP attribute.                              */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    attribute_ptr                         MRP attribute                 */
/*    vlan_id                               VLAN ID                       */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    nx_mvrp_attribute_find                Find MVRP attribute           */
/*    nx_mvrp_attribute_new                 New MVRP attribute            */
/*    nx_mvrp_attribute_insert              Insert MVRP attribute         */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    nx_mvrp_action_request                MVRP action request           */
/*    nx_mvrp_mrpdu_unpack                  MVRP message unpack           */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_attribute_get(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, NX_MRP_ATTRIBUTE **attribute_ptr, USHORT vlan_id)
{
NX_MRP_ATTRIBUTE *attribute;
UINT              status;

    if ((mrp == NX_NULL) ||
        (participant == NX_NULL) ||
        (attribute_ptr == NX_NULL))
    {
        return(NX_INVALID_PARAMETERS);
    }

    status = nx_mvrp_attribute_find(mrp, participant, attribute_ptr, vlan_id);
    if (status == NX_SUCCESS)
    {
        return(status);
    }

    /* no attribute find, new an attribute */
    attribute = nx_mrp_attribute_new(mrp, participant, (NX_MRP_ATTRIBUTE *)mvrp_attribute_array,
                                     sizeof(struct NX_MVRP_ATTRIBUTE_STRUCT), NX_MVRP_ATTRIBUTE_ARRAY_MAX_SIZE);

    if (attribute == NX_NULL)
    {
        return(NX_NO_MORE_ENTRIES);
    }

    attribute -> attribute_type = NX_MVRP_ATTRIBUTE_TYPE_VLAN_ID;
    ((NX_MVRP_ATTRIBUTE *)attribute) -> vlan_id = vlan_id;

    nx_mvrp_attribute_insert(mrp, participant, attribute);

    *attribute_ptr = attribute;

    return(NX_SUCCESS);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_action_request                              PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function is used for requesting MVRP action.                   */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mrp                                   MRP instance                  */
/*    participant                           MRP participant               */
/*    vlan_id                               VLAN ID                       */
/*    action_type                           Action type                   */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    nx_mvrp_attribute_get                 Get MVRP attribute            */
/*    nx_mrp_event_process                  Process MRP event             */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    nx_mvrp_indication_process            MVRP indication process       */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_action_request(NX_MRP *mrp, NX_MRP_PARTICIPANT *participant, USHORT vlan_id, UCHAR action_type)
{
NX_MRP_ATTRIBUTE *attribute = NX_NULL;
UINT              status;
UCHAR             mrp_event;

    /* Get mutex. */
    tx_mutex_get(&mrp -> mrp_mutex, NX_WAIT_FOREVER);

    status = nx_mvrp_attribute_get(mrp, participant, &attribute, vlan_id);

    if (status != NX_SUCCESS)
    {
        tx_mutex_put(&(mrp -> mrp_mutex));
        return(status);
    }

    switch (action_type)
    {
    case NX_MVRP_ACTION_NEW:
        mrp_event = NX_MRP_EVENT_NEW;
        break;

    case NX_MVRP_ACTION_TYPE_JOIN:
        mrp_event = NX_MRP_EVENT_JOIN;
        break;

    case NX_MVRP_ACTION_TYPE_LEAVE:
        mrp_event = NX_MRP_EVENT_LV;
        break;

    default:
        tx_mutex_put(&(mrp -> mrp_mutex));
        return(NX_INVALID_PARAMETERS);
    }

    status = nx_mrp_event_process(mrp, participant, attribute, mrp_event);

    /* Release the mutex.  */
    tx_mutex_put(&(mrp -> mrp_mutex));

    return(status);
}

/**************************************************************************/
/*                                                                        */
/*  FUNCTION                                               RELEASE        */
/*                                                                        */
/*    nx_mvrp_init                                        PORTABLE C      */
/*                                                           6.4.3        */
/*  AUTHOR                                                                */
/*                                                                        */
/*    Yajun Xia, Microsoft Corporation                                    */
/*                                                                        */
/*  DESCRIPTION                                                           */
/*                                                                        */
/*    This function init the MVRP instance.                               */
/*                                                                        */
/*  INPUT                                                                 */
/*                                                                        */
/*    mvrp_ptr                              MVRP instance                 */
/*                                                                        */
/*  OUTPUT                                                                */
/*                                                                        */
/*    status                                Completion status             */
/*                                                                        */
/*  CALLS                                                                 */
/*                                                                        */
/*    None                                                                */
/*                                                                        */
/*  CALLED BY                                                             */
/*                                                                        */
/*    nx_srp_init                           SRP init                      */
/*                                                                        */
/**************************************************************************/
UINT nx_mvrp_init(NX_MVRP *mvrp_ptr)
{

    mvrp_ptr -> participant.participant_type = NX_MRP_PARTICIPANT_MVRP;
    mvrp_ptr -> participant.protocol_version = NX_MRP_MVRP_PROTOCOL_VERSION;
    mvrp_ptr -> participant.indication_function = nx_mvrp_indication_process;
    mvrp_ptr -> participant.unpack_function = nx_mvrp_mrpdu_unpack;
    mvrp_ptr -> participant.pack_function = nx_mvrp_mrpdu_pack;

    mvrp_ptr -> participant.join_timer = NX_MRP_TIMER_JOIN;
    mvrp_ptr -> participant.leaveall_timer = NX_MRP_TIMER_LEAVEALL;

    mvrp_ptr -> participant.inused_head = NX_NULL;
    mvrp_ptr -> participant.next = NX_NULL;

    return(NX_SUCCESS);
}
#endif /* NX_ENABLE_VLAN */