~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/wireless/tests/fragmentation.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/wireless/tests/fragmentation.c (Architecture sparc) and /net/wireless/tests/fragmentation.c (Architecture i386)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*                                                  2 /*
  3  * KUnit tests for element fragmentation            3  * KUnit tests for element fragmentation
  4  *                                                  4  *
  5  * Copyright (C) 2023-2024 Intel Corporation        5  * Copyright (C) 2023-2024 Intel Corporation
  6  */                                                 6  */
  7 #include <linux/ieee80211.h>                        7 #include <linux/ieee80211.h>
  8 #include <net/cfg80211.h>                           8 #include <net/cfg80211.h>
  9 #include <kunit/test.h>                             9 #include <kunit/test.h>
 10                                                    10 
 11 static void defragment_0(struct kunit *test)       11 static void defragment_0(struct kunit *test)
 12 {                                                  12 {
 13         ssize_t ret;                               13         ssize_t ret;
 14         static const u8 input[] = {                14         static const u8 input[] = {
 15                 [0] = WLAN_EID_EXTENSION,          15                 [0] = WLAN_EID_EXTENSION,
 16                 [1] = 254,                         16                 [1] = 254,
 17                 [2] = WLAN_EID_EXT_EHT_MULTI_L     17                 [2] = WLAN_EID_EXT_EHT_MULTI_LINK,
 18                 [27] = 27,                         18                 [27] = 27,
 19                 [123] = 123,                       19                 [123] = 123,
 20                 [254 + 2] = WLAN_EID_FRAGMENT,     20                 [254 + 2] = WLAN_EID_FRAGMENT,
 21                 [254 + 3] = 7,                     21                 [254 + 3] = 7,
 22                 [254 + 3 + 7] = 0, /* for size     22                 [254 + 3 + 7] = 0, /* for size */
 23         };                                         23         };
 24         u8 *data = kunit_kzalloc(test, sizeof(     24         u8 *data = kunit_kzalloc(test, sizeof(input), GFP_KERNEL);
 25                                                    25 
 26         KUNIT_ASSERT_NOT_NULL(test, data);         26         KUNIT_ASSERT_NOT_NULL(test, data);
 27                                                    27 
 28         ret = cfg80211_defragment_element((voi     28         ret = cfg80211_defragment_element((void *)input,
 29                                           inpu     29                                           input, sizeof(input),
 30                                           NULL     30                                           NULL, 0,
 31                                           WLAN     31                                           WLAN_EID_FRAGMENT);
 32         KUNIT_EXPECT_EQ(test, ret, 253);           32         KUNIT_EXPECT_EQ(test, ret, 253);
 33         ret = cfg80211_defragment_element((voi     33         ret = cfg80211_defragment_element((void *)input,
 34                                           inpu     34                                           input, sizeof(input),
 35                                           data     35                                           data, ret,
 36                                           WLAN     36                                           WLAN_EID_FRAGMENT);
 37         KUNIT_EXPECT_EQ(test, ret, 253);           37         KUNIT_EXPECT_EQ(test, ret, 253);
 38         KUNIT_EXPECT_MEMEQ(test, data, input +     38         KUNIT_EXPECT_MEMEQ(test, data, input + 3, 253);
 39 }                                                  39 }
 40                                                    40 
 41 static void defragment_1(struct kunit *test)       41 static void defragment_1(struct kunit *test)
 42 {                                                  42 {
 43         ssize_t ret;                               43         ssize_t ret;
 44         static const u8 input[] = {                44         static const u8 input[] = {
 45                 [0] = WLAN_EID_EXTENSION,          45                 [0] = WLAN_EID_EXTENSION,
 46                 [1] = 255,                         46                 [1] = 255,
 47                 [2] = WLAN_EID_EXT_EHT_MULTI_L     47                 [2] = WLAN_EID_EXT_EHT_MULTI_LINK,
 48                 [27] = 27,                         48                 [27] = 27,
 49                 [123] = 123,                       49                 [123] = 123,
 50                 [255 + 2] = WLAN_EID_FRAGMENT,     50                 [255 + 2] = WLAN_EID_FRAGMENT,
 51                 [255 + 3] = 7,                     51                 [255 + 3] = 7,
 52                 [255 + 3 + 1] = 0xaa,              52                 [255 + 3 + 1] = 0xaa,
 53                 [255 + 3 + 8] = WLAN_EID_FRAGM     53                 [255 + 3 + 8] = WLAN_EID_FRAGMENT, /* not used */
 54                 [255 + 3 + 9] = 1,                 54                 [255 + 3 + 9] = 1,
 55                 [255 + 3 + 10] = 0, /* for siz     55                 [255 + 3 + 10] = 0, /* for size */
 56         };                                         56         };
 57         u8 *data = kunit_kzalloc(test, sizeof(     57         u8 *data = kunit_kzalloc(test, sizeof(input), GFP_KERNEL);
 58         const struct element *elem;                58         const struct element *elem;
 59         int count = 0;                             59         int count = 0;
 60                                                    60 
 61         KUNIT_ASSERT_NOT_NULL(test, data);         61         KUNIT_ASSERT_NOT_NULL(test, data);
 62                                                    62 
 63         for_each_element(elem, input, sizeof(i     63         for_each_element(elem, input, sizeof(input))
 64                 count++;                           64                 count++;
 65                                                    65 
 66         /* check the elements are right */         66         /* check the elements are right */
 67         KUNIT_ASSERT_EQ(test, count, 3);           67         KUNIT_ASSERT_EQ(test, count, 3);
 68                                                    68 
 69         ret = cfg80211_defragment_element((voi     69         ret = cfg80211_defragment_element((void *)input,
 70                                           inpu     70                                           input, sizeof(input),
 71                                           NULL     71                                           NULL, 0,
 72                                           WLAN     72                                           WLAN_EID_FRAGMENT);
 73         KUNIT_EXPECT_EQ(test, ret, 254 + 7);       73         KUNIT_EXPECT_EQ(test, ret, 254 + 7);
 74         ret = cfg80211_defragment_element((voi     74         ret = cfg80211_defragment_element((void *)input,
 75                                           inpu     75                                           input, sizeof(input),
 76                                           data     76                                           data, ret,
 77                                           WLAN     77                                           WLAN_EID_FRAGMENT);
 78         /* this means the last fragment was no     78         /* this means the last fragment was not used */
 79         KUNIT_EXPECT_EQ(test, ret, 254 + 7);       79         KUNIT_EXPECT_EQ(test, ret, 254 + 7);
 80         KUNIT_EXPECT_MEMEQ(test, data, input +     80         KUNIT_EXPECT_MEMEQ(test, data, input + 3, 254);
 81         KUNIT_EXPECT_MEMEQ(test, data + 254, i     81         KUNIT_EXPECT_MEMEQ(test, data + 254, input + 255 + 4, 7);
 82 }                                                  82 }
 83                                                    83 
 84 static void defragment_2(struct kunit *test)       84 static void defragment_2(struct kunit *test)
 85 {                                                  85 {
 86         ssize_t ret;                               86         ssize_t ret;
 87         static const u8 input[] = {                87         static const u8 input[] = {
 88                 [0] = WLAN_EID_EXTENSION,          88                 [0] = WLAN_EID_EXTENSION,
 89                 [1] = 255,                         89                 [1] = 255,
 90                 [2] = WLAN_EID_EXT_EHT_MULTI_L     90                 [2] = WLAN_EID_EXT_EHT_MULTI_LINK,
 91                 [27] = 27,                         91                 [27] = 27,
 92                 [123] = 123,                       92                 [123] = 123,
 93                                                    93 
 94                 [257 + 0] = WLAN_EID_FRAGMENT,     94                 [257 + 0] = WLAN_EID_FRAGMENT,
 95                 [257 + 1] = 255,                   95                 [257 + 1] = 255,
 96                 [257 + 20] = 0xaa,                 96                 [257 + 20] = 0xaa,
 97                                                    97 
 98                 [2 * 257 + 0] = WLAN_EID_FRAGM     98                 [2 * 257 + 0] = WLAN_EID_FRAGMENT,
 99                 [2 * 257 + 1] = 1,                 99                 [2 * 257 + 1] = 1,
100                 [2 * 257 + 2] = 0xcc,             100                 [2 * 257 + 2] = 0xcc,
101                 [2 * 257 + 3] = WLAN_EID_FRAGM    101                 [2 * 257 + 3] = WLAN_EID_FRAGMENT, /* not used */
102                 [2 * 257 + 4] = 1,                102                 [2 * 257 + 4] = 1,
103                 [2 * 257 + 5] = 0, /* for size    103                 [2 * 257 + 5] = 0, /* for size */
104         };                                        104         };
105         u8 *data = kunit_kzalloc(test, sizeof(    105         u8 *data = kunit_kzalloc(test, sizeof(input), GFP_KERNEL);
106         const struct element *elem;               106         const struct element *elem;
107         int count = 0;                            107         int count = 0;
108                                                   108 
109         KUNIT_ASSERT_NOT_NULL(test, data);        109         KUNIT_ASSERT_NOT_NULL(test, data);
110                                                   110 
111         for_each_element(elem, input, sizeof(i    111         for_each_element(elem, input, sizeof(input))
112                 count++;                          112                 count++;
113                                                   113 
114         /* check the elements are right */        114         /* check the elements are right */
115         KUNIT_ASSERT_EQ(test, count, 4);          115         KUNIT_ASSERT_EQ(test, count, 4);
116                                                   116 
117         ret = cfg80211_defragment_element((voi    117         ret = cfg80211_defragment_element((void *)input,
118                                           inpu    118                                           input, sizeof(input),
119                                           NULL    119                                           NULL, 0,
120                                           WLAN    120                                           WLAN_EID_FRAGMENT);
121         /* this means the last fragment was no    121         /* this means the last fragment was not used */
122         KUNIT_EXPECT_EQ(test, ret, 254 + 255 +    122         KUNIT_EXPECT_EQ(test, ret, 254 + 255 + 1);
123         ret = cfg80211_defragment_element((voi    123         ret = cfg80211_defragment_element((void *)input,
124                                           inpu    124                                           input, sizeof(input),
125                                           data    125                                           data, ret,
126                                           WLAN    126                                           WLAN_EID_FRAGMENT);
127         KUNIT_EXPECT_EQ(test, ret, 254 + 255 +    127         KUNIT_EXPECT_EQ(test, ret, 254 + 255 + 1);
128         KUNIT_EXPECT_MEMEQ(test, data, input +    128         KUNIT_EXPECT_MEMEQ(test, data, input + 3, 254);
129         KUNIT_EXPECT_MEMEQ(test, data + 254, i    129         KUNIT_EXPECT_MEMEQ(test, data + 254, input + 257 + 2, 255);
130         KUNIT_EXPECT_MEMEQ(test, data + 254 +     130         KUNIT_EXPECT_MEMEQ(test, data + 254 + 255, input + 2 * 257 + 2, 1);
131 }                                                 131 }
132                                                   132 
133 static void defragment_at_end(struct kunit *te    133 static void defragment_at_end(struct kunit *test)
134 {                                                 134 {
135         ssize_t ret;                              135         ssize_t ret;
136         static const u8 input[] = {               136         static const u8 input[] = {
137                 [0] = WLAN_EID_EXTENSION,         137                 [0] = WLAN_EID_EXTENSION,
138                 [1] = 255,                        138                 [1] = 255,
139                 [2] = WLAN_EID_EXT_EHT_MULTI_L    139                 [2] = WLAN_EID_EXT_EHT_MULTI_LINK,
140                 [27] = 27,                        140                 [27] = 27,
141                 [123] = 123,                      141                 [123] = 123,
142                 [255 + 2] = WLAN_EID_FRAGMENT,    142                 [255 + 2] = WLAN_EID_FRAGMENT,
143                 [255 + 3] = 7,                    143                 [255 + 3] = 7,
144                 [255 + 3 + 7] = 0, /* for size    144                 [255 + 3 + 7] = 0, /* for size */
145         };                                        145         };
146         u8 *data = kunit_kzalloc(test, sizeof(    146         u8 *data = kunit_kzalloc(test, sizeof(input), GFP_KERNEL);
147                                                   147 
148         KUNIT_ASSERT_NOT_NULL(test, data);        148         KUNIT_ASSERT_NOT_NULL(test, data);
149                                                   149 
150         ret = cfg80211_defragment_element((voi    150         ret = cfg80211_defragment_element((void *)input,
151                                           inpu    151                                           input, sizeof(input),
152                                           NULL    152                                           NULL, 0,
153                                           WLAN    153                                           WLAN_EID_FRAGMENT);
154         KUNIT_EXPECT_EQ(test, ret, 254 + 7);      154         KUNIT_EXPECT_EQ(test, ret, 254 + 7);
155         ret = cfg80211_defragment_element((voi    155         ret = cfg80211_defragment_element((void *)input,
156                                           inpu    156                                           input, sizeof(input),
157                                           data    157                                           data, ret,
158                                           WLAN    158                                           WLAN_EID_FRAGMENT);
159         KUNIT_EXPECT_EQ(test, ret, 254 + 7);      159         KUNIT_EXPECT_EQ(test, ret, 254 + 7);
160         KUNIT_EXPECT_MEMEQ(test, data, input +    160         KUNIT_EXPECT_MEMEQ(test, data, input + 3, 254);
161         KUNIT_EXPECT_MEMEQ(test, data + 254, i    161         KUNIT_EXPECT_MEMEQ(test, data + 254, input + 255 + 4, 7);
162 }                                                 162 }
163                                                   163 
164 static struct kunit_case element_fragmentation    164 static struct kunit_case element_fragmentation_test_cases[] = {
165         KUNIT_CASE(defragment_0),                 165         KUNIT_CASE(defragment_0),
166         KUNIT_CASE(defragment_1),                 166         KUNIT_CASE(defragment_1),
167         KUNIT_CASE(defragment_2),                 167         KUNIT_CASE(defragment_2),
168         KUNIT_CASE(defragment_at_end),            168         KUNIT_CASE(defragment_at_end),
169         {}                                        169         {}
170 };                                                170 };
171                                                   171 
172 static struct kunit_suite element_fragmentatio    172 static struct kunit_suite element_fragmentation = {
173         .name = "cfg80211-element-defragmentat    173         .name = "cfg80211-element-defragmentation",
174         .test_cases = element_fragmentation_te    174         .test_cases = element_fragmentation_test_cases,
175 };                                                175 };
176                                                   176 
177 kunit_test_suite(element_fragmentation);          177 kunit_test_suite(element_fragmentation);
178                                                   178 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php