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

TOMOYO Linux Cross Reference
Linux/net/ieee802154/header_ops.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/ieee802154/header_ops.c (Version linux-6.12-rc7) and /net/ieee802154/header_ops.c (Version linux-6.4.16)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*                                                  2 /*
  3  * Copyright (C) 2014 Fraunhofer ITWM               3  * Copyright (C) 2014 Fraunhofer ITWM
  4  *                                                  4  *
  5  * Written by:                                      5  * Written by:
  6  * Phoebe Buckheister <phoebe.buckheister@itwm      6  * Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
  7  */                                                 7  */
  8                                                     8 
  9 #include <linux/ieee802154.h>                       9 #include <linux/ieee802154.h>
 10                                                    10 
 11 #include <net/mac802154.h>                         11 #include <net/mac802154.h>
 12 #include <net/ieee802154_netdev.h>                 12 #include <net/ieee802154_netdev.h>
 13                                                    13 
 14 static int                                         14 static int
 15 ieee802154_hdr_push_addr(u8 *buf, const struct     15 ieee802154_hdr_push_addr(u8 *buf, const struct ieee802154_addr *addr,
 16                          bool omit_pan)            16                          bool omit_pan)
 17 {                                                  17 {
 18         int pos = 0;                               18         int pos = 0;
 19                                                    19 
 20         if (addr->mode == IEEE802154_ADDR_NONE     20         if (addr->mode == IEEE802154_ADDR_NONE)
 21                 return 0;                          21                 return 0;
 22                                                    22 
 23         if (!omit_pan) {                           23         if (!omit_pan) {
 24                 memcpy(buf + pos, &addr->pan_i     24                 memcpy(buf + pos, &addr->pan_id, 2);
 25                 pos += 2;                          25                 pos += 2;
 26         }                                          26         }
 27                                                    27 
 28         switch (addr->mode) {                      28         switch (addr->mode) {
 29         case IEEE802154_ADDR_SHORT:                29         case IEEE802154_ADDR_SHORT:
 30                 memcpy(buf + pos, &addr->short     30                 memcpy(buf + pos, &addr->short_addr, 2);
 31                 pos += 2;                          31                 pos += 2;
 32                 break;                             32                 break;
 33                                                    33 
 34         case IEEE802154_ADDR_LONG:                 34         case IEEE802154_ADDR_LONG:
 35                 memcpy(buf + pos, &addr->exten     35                 memcpy(buf + pos, &addr->extended_addr, IEEE802154_ADDR_LEN);
 36                 pos += IEEE802154_ADDR_LEN;        36                 pos += IEEE802154_ADDR_LEN;
 37                 break;                             37                 break;
 38                                                    38 
 39         default:                                   39         default:
 40                 return -EINVAL;                    40                 return -EINVAL;
 41         }                                          41         }
 42                                                    42 
 43         return pos;                                43         return pos;
 44 }                                                  44 }
 45                                                    45 
 46 static int                                         46 static int
 47 ieee802154_hdr_push_sechdr(u8 *buf, const stru     47 ieee802154_hdr_push_sechdr(u8 *buf, const struct ieee802154_sechdr *hdr)
 48 {                                                  48 {
 49         int pos = 5;                               49         int pos = 5;
 50                                                    50 
 51         memcpy(buf, hdr, 1);                       51         memcpy(buf, hdr, 1);
 52         memcpy(buf + 1, &hdr->frame_counter, 4     52         memcpy(buf + 1, &hdr->frame_counter, 4);
 53                                                    53 
 54         switch (hdr->key_id_mode) {                54         switch (hdr->key_id_mode) {
 55         case IEEE802154_SCF_KEY_IMPLICIT:          55         case IEEE802154_SCF_KEY_IMPLICIT:
 56                 return pos;                        56                 return pos;
 57                                                    57 
 58         case IEEE802154_SCF_KEY_INDEX:             58         case IEEE802154_SCF_KEY_INDEX:
 59                 break;                             59                 break;
 60                                                    60 
 61         case IEEE802154_SCF_KEY_SHORT_INDEX:       61         case IEEE802154_SCF_KEY_SHORT_INDEX:
 62                 memcpy(buf + pos, &hdr->short_     62                 memcpy(buf + pos, &hdr->short_src, 4);
 63                 pos += 4;                          63                 pos += 4;
 64                 break;                             64                 break;
 65                                                    65 
 66         case IEEE802154_SCF_KEY_HW_INDEX:          66         case IEEE802154_SCF_KEY_HW_INDEX:
 67                 memcpy(buf + pos, &hdr->extend     67                 memcpy(buf + pos, &hdr->extended_src, IEEE802154_ADDR_LEN);
 68                 pos += IEEE802154_ADDR_LEN;        68                 pos += IEEE802154_ADDR_LEN;
 69                 break;                             69                 break;
 70         }                                          70         }
 71                                                    71 
 72         buf[pos++] = hdr->key_id;                  72         buf[pos++] = hdr->key_id;
 73                                                    73 
 74         return pos;                                74         return pos;
 75 }                                                  75 }
 76                                                    76 
 77 int                                                77 int
 78 ieee802154_hdr_push(struct sk_buff *skb, struc     78 ieee802154_hdr_push(struct sk_buff *skb, struct ieee802154_hdr *hdr)
 79 {                                                  79 {
 80         u8 buf[IEEE802154_MAX_HEADER_LEN];         80         u8 buf[IEEE802154_MAX_HEADER_LEN];
 81         int pos = 2;                               81         int pos = 2;
 82         int rc;                                    82         int rc;
 83         struct ieee802154_hdr_fc *fc = &hdr->f     83         struct ieee802154_hdr_fc *fc = &hdr->fc;
 84                                                    84 
 85         buf[pos++] = hdr->seq;                     85         buf[pos++] = hdr->seq;
 86                                                    86 
 87         fc->dest_addr_mode = hdr->dest.mode;       87         fc->dest_addr_mode = hdr->dest.mode;
 88                                                    88 
 89         rc = ieee802154_hdr_push_addr(buf + po     89         rc = ieee802154_hdr_push_addr(buf + pos, &hdr->dest, false);
 90         if (rc < 0)                                90         if (rc < 0)
 91                 return -EINVAL;                    91                 return -EINVAL;
 92         pos += rc;                                 92         pos += rc;
 93                                                    93 
 94         fc->source_addr_mode = hdr->source.mod     94         fc->source_addr_mode = hdr->source.mode;
 95                                                    95 
 96         if (hdr->source.pan_id == hdr->dest.pa     96         if (hdr->source.pan_id == hdr->dest.pan_id &&
 97             hdr->dest.mode != IEEE802154_ADDR_     97             hdr->dest.mode != IEEE802154_ADDR_NONE)
 98                 fc->intra_pan = true;              98                 fc->intra_pan = true;
 99                                                    99 
100         rc = ieee802154_hdr_push_addr(buf + po    100         rc = ieee802154_hdr_push_addr(buf + pos, &hdr->source, fc->intra_pan);
101         if (rc < 0)                               101         if (rc < 0)
102                 return -EINVAL;                   102                 return -EINVAL;
103         pos += rc;                                103         pos += rc;
104                                                   104 
105         if (fc->security_enabled) {               105         if (fc->security_enabled) {
106                 fc->version = 1;                  106                 fc->version = 1;
107                                                   107 
108                 rc = ieee802154_hdr_push_sechd    108                 rc = ieee802154_hdr_push_sechdr(buf + pos, &hdr->sec);
109                 if (rc < 0)                       109                 if (rc < 0)
110                         return -EINVAL;           110                         return -EINVAL;
111                                                   111 
112                 pos += rc;                        112                 pos += rc;
113         }                                         113         }
114                                                   114 
115         memcpy(buf, fc, 2);                       115         memcpy(buf, fc, 2);
116                                                   116 
117         memcpy(skb_push(skb, pos), buf, pos);     117         memcpy(skb_push(skb, pos), buf, pos);
118                                                   118 
119         return pos;                               119         return pos;
120 }                                                 120 }
121 EXPORT_SYMBOL_GPL(ieee802154_hdr_push);           121 EXPORT_SYMBOL_GPL(ieee802154_hdr_push);
122                                                   122 
123 int ieee802154_mac_cmd_push(struct sk_buff *sk << 
124                             const void *pl, un << 
125 {                                              << 
126         struct ieee802154_mac_cmd_frame *frame << 
127         struct ieee802154_mac_cmd_pl *mac_pl = << 
128         struct ieee802154_hdr *mhr = &frame->m << 
129         int ret;                               << 
130                                                << 
131         skb_reserve(skb, sizeof(*mhr));        << 
132         ret = ieee802154_hdr_push(skb, mhr);   << 
133         if (ret < 0)                           << 
134                 return ret;                    << 
135                                                << 
136         skb_reset_mac_header(skb);             << 
137         skb->mac_len = ret;                    << 
138                                                << 
139         skb_put_data(skb, mac_pl, sizeof(*mac_ << 
140         skb_put_data(skb, pl, pl_len);         << 
141                                                << 
142         return 0;                              << 
143 }                                              << 
144 EXPORT_SYMBOL_GPL(ieee802154_mac_cmd_push);    << 
145                                                << 
146 int ieee802154_beacon_push(struct sk_buff *skb    123 int ieee802154_beacon_push(struct sk_buff *skb,
147                            struct ieee802154_b    124                            struct ieee802154_beacon_frame *beacon)
148 {                                                 125 {
149         struct ieee802154_beacon_hdr *mac_pl =    126         struct ieee802154_beacon_hdr *mac_pl = &beacon->mac_pl;
150         struct ieee802154_hdr *mhr = &beacon->    127         struct ieee802154_hdr *mhr = &beacon->mhr;
151         int ret;                                  128         int ret;
152                                                   129 
153         skb_reserve(skb, sizeof(*mhr));           130         skb_reserve(skb, sizeof(*mhr));
154         ret = ieee802154_hdr_push(skb, mhr);      131         ret = ieee802154_hdr_push(skb, mhr);
155         if (ret < 0)                              132         if (ret < 0)
156                 return ret;                       133                 return ret;
157                                                   134 
158         skb_reset_mac_header(skb);                135         skb_reset_mac_header(skb);
159         skb->mac_len = ret;                       136         skb->mac_len = ret;
160                                                   137 
161         skb_put_data(skb, mac_pl, sizeof(*mac_    138         skb_put_data(skb, mac_pl, sizeof(*mac_pl));
162                                                   139 
163         if (mac_pl->pend_short_addr_count || m    140         if (mac_pl->pend_short_addr_count || mac_pl->pend_ext_addr_count)
164                 return -EOPNOTSUPP;               141                 return -EOPNOTSUPP;
165                                                   142 
166         return 0;                                 143         return 0;
167 }                                                 144 }
168 EXPORT_SYMBOL_GPL(ieee802154_beacon_push);        145 EXPORT_SYMBOL_GPL(ieee802154_beacon_push);
169                                                   146 
170 static int                                        147 static int
171 ieee802154_hdr_get_addr(const u8 *buf, int mod    148 ieee802154_hdr_get_addr(const u8 *buf, int mode, bool omit_pan,
172                         struct ieee802154_addr    149                         struct ieee802154_addr *addr)
173 {                                                 150 {
174         int pos = 0;                              151         int pos = 0;
175                                                   152 
176         addr->mode = mode;                        153         addr->mode = mode;
177                                                   154 
178         if (mode == IEEE802154_ADDR_NONE)         155         if (mode == IEEE802154_ADDR_NONE)
179                 return 0;                         156                 return 0;
180                                                   157 
181         if (!omit_pan) {                          158         if (!omit_pan) {
182                 memcpy(&addr->pan_id, buf + po    159                 memcpy(&addr->pan_id, buf + pos, 2);
183                 pos += 2;                         160                 pos += 2;
184         }                                         161         }
185                                                   162 
186         if (mode == IEEE802154_ADDR_SHORT) {      163         if (mode == IEEE802154_ADDR_SHORT) {
187                 memcpy(&addr->short_addr, buf     164                 memcpy(&addr->short_addr, buf + pos, 2);
188                 return pos + 2;                   165                 return pos + 2;
189         } else {                                  166         } else {
190                 memcpy(&addr->extended_addr, b    167                 memcpy(&addr->extended_addr, buf + pos, IEEE802154_ADDR_LEN);
191                 return pos + IEEE802154_ADDR_L    168                 return pos + IEEE802154_ADDR_LEN;
192         }                                         169         }
193 }                                                 170 }
194                                                   171 
195 static int ieee802154_hdr_addr_len(int mode, b    172 static int ieee802154_hdr_addr_len(int mode, bool omit_pan)
196 {                                                 173 {
197         int pan_len = omit_pan ? 0 : 2;           174         int pan_len = omit_pan ? 0 : 2;
198                                                   175 
199         switch (mode) {                           176         switch (mode) {
200         case IEEE802154_ADDR_NONE: return 0;      177         case IEEE802154_ADDR_NONE: return 0;
201         case IEEE802154_ADDR_SHORT: return 2 +    178         case IEEE802154_ADDR_SHORT: return 2 + pan_len;
202         case IEEE802154_ADDR_LONG: return IEEE    179         case IEEE802154_ADDR_LONG: return IEEE802154_ADDR_LEN + pan_len;
203         default: return -EINVAL;                  180         default: return -EINVAL;
204         }                                         181         }
205 }                                                 182 }
206                                                   183 
207 static int                                        184 static int
208 ieee802154_hdr_get_sechdr(const u8 *buf, struc    185 ieee802154_hdr_get_sechdr(const u8 *buf, struct ieee802154_sechdr *hdr)
209 {                                                 186 {
210         int pos = 5;                              187         int pos = 5;
211                                                   188 
212         memcpy(hdr, buf, 1);                      189         memcpy(hdr, buf, 1);
213         memcpy(&hdr->frame_counter, buf + 1, 4    190         memcpy(&hdr->frame_counter, buf + 1, 4);
214                                                   191 
215         switch (hdr->key_id_mode) {               192         switch (hdr->key_id_mode) {
216         case IEEE802154_SCF_KEY_IMPLICIT:         193         case IEEE802154_SCF_KEY_IMPLICIT:
217                 return pos;                       194                 return pos;
218                                                   195 
219         case IEEE802154_SCF_KEY_INDEX:            196         case IEEE802154_SCF_KEY_INDEX:
220                 break;                            197                 break;
221                                                   198 
222         case IEEE802154_SCF_KEY_SHORT_INDEX:      199         case IEEE802154_SCF_KEY_SHORT_INDEX:
223                 memcpy(&hdr->short_src, buf +     200                 memcpy(&hdr->short_src, buf + pos, 4);
224                 pos += 4;                         201                 pos += 4;
225                 break;                            202                 break;
226                                                   203 
227         case IEEE802154_SCF_KEY_HW_INDEX:         204         case IEEE802154_SCF_KEY_HW_INDEX:
228                 memcpy(&hdr->extended_src, buf    205                 memcpy(&hdr->extended_src, buf + pos, IEEE802154_ADDR_LEN);
229                 pos += IEEE802154_ADDR_LEN;       206                 pos += IEEE802154_ADDR_LEN;
230                 break;                            207                 break;
231         }                                         208         }
232                                                   209 
233         hdr->key_id = buf[pos++];                 210         hdr->key_id = buf[pos++];
234                                                   211 
235         return pos;                               212         return pos;
236 }                                                 213 }
237                                                   214 
238 static int ieee802154_sechdr_lengths[4] = {       215 static int ieee802154_sechdr_lengths[4] = {
239         [IEEE802154_SCF_KEY_IMPLICIT] = 5,        216         [IEEE802154_SCF_KEY_IMPLICIT] = 5,
240         [IEEE802154_SCF_KEY_INDEX] = 6,           217         [IEEE802154_SCF_KEY_INDEX] = 6,
241         [IEEE802154_SCF_KEY_SHORT_INDEX] = 10,    218         [IEEE802154_SCF_KEY_SHORT_INDEX] = 10,
242         [IEEE802154_SCF_KEY_HW_INDEX] = 14,       219         [IEEE802154_SCF_KEY_HW_INDEX] = 14,
243 };                                                220 };
244                                                   221 
245 static int ieee802154_hdr_sechdr_len(u8 sc)       222 static int ieee802154_hdr_sechdr_len(u8 sc)
246 {                                                 223 {
247         return ieee802154_sechdr_lengths[IEEE8    224         return ieee802154_sechdr_lengths[IEEE802154_SCF_KEY_ID_MODE(sc)];
248 }                                                 225 }
249                                                   226 
250 static int ieee802154_hdr_minlen(const struct     227 static int ieee802154_hdr_minlen(const struct ieee802154_hdr *hdr)
251 {                                                 228 {
252         int dlen, slen;                           229         int dlen, slen;
253                                                   230 
254         dlen = ieee802154_hdr_addr_len(hdr->fc    231         dlen = ieee802154_hdr_addr_len(hdr->fc.dest_addr_mode, false);
255         slen = ieee802154_hdr_addr_len(hdr->fc    232         slen = ieee802154_hdr_addr_len(hdr->fc.source_addr_mode,
256                                        hdr->fc    233                                        hdr->fc.intra_pan);
257                                                   234 
258         if (slen < 0 || dlen < 0)                 235         if (slen < 0 || dlen < 0)
259                 return -EINVAL;                   236                 return -EINVAL;
260                                                   237 
261         return 3 + dlen + slen + hdr->fc.secur    238         return 3 + dlen + slen + hdr->fc.security_enabled;
262 }                                                 239 }
263                                                   240 
264 static int                                        241 static int
265 ieee802154_hdr_get_addrs(const u8 *buf, struct    242 ieee802154_hdr_get_addrs(const u8 *buf, struct ieee802154_hdr *hdr)
266 {                                                 243 {
267         int pos = 0;                              244         int pos = 0;
268                                                   245 
269         pos += ieee802154_hdr_get_addr(buf + p    246         pos += ieee802154_hdr_get_addr(buf + pos, hdr->fc.dest_addr_mode,
270                                        false,     247                                        false, &hdr->dest);
271         pos += ieee802154_hdr_get_addr(buf + p    248         pos += ieee802154_hdr_get_addr(buf + pos, hdr->fc.source_addr_mode,
272                                        hdr->fc    249                                        hdr->fc.intra_pan, &hdr->source);
273                                                   250 
274         if (hdr->fc.intra_pan)                    251         if (hdr->fc.intra_pan)
275                 hdr->source.pan_id = hdr->dest    252                 hdr->source.pan_id = hdr->dest.pan_id;
276                                                   253 
277         return pos;                               254         return pos;
278 }                                                 255 }
279                                                   256 
280 int                                               257 int
281 ieee802154_hdr_pull(struct sk_buff *skb, struc    258 ieee802154_hdr_pull(struct sk_buff *skb, struct ieee802154_hdr *hdr)
282 {                                                 259 {
283         int pos = 3, rc;                          260         int pos = 3, rc;
284                                                   261 
285         if (!pskb_may_pull(skb, 3))               262         if (!pskb_may_pull(skb, 3))
286                 return -EINVAL;                   263                 return -EINVAL;
287                                                   264 
288         memcpy(hdr, skb->data, 3);                265         memcpy(hdr, skb->data, 3);
289                                                   266 
290         rc = ieee802154_hdr_minlen(hdr);          267         rc = ieee802154_hdr_minlen(hdr);
291         if (rc < 0 || !pskb_may_pull(skb, rc))    268         if (rc < 0 || !pskb_may_pull(skb, rc))
292                 return -EINVAL;                   269                 return -EINVAL;
293                                                   270 
294         pos += ieee802154_hdr_get_addrs(skb->d    271         pos += ieee802154_hdr_get_addrs(skb->data + pos, hdr);
295                                                   272 
296         if (hdr->fc.security_enabled) {           273         if (hdr->fc.security_enabled) {
297                 int want = pos + ieee802154_hd    274                 int want = pos + ieee802154_hdr_sechdr_len(skb->data[pos]);
298                                                   275 
299                 if (!pskb_may_pull(skb, want))    276                 if (!pskb_may_pull(skb, want))
300                         return -EINVAL;           277                         return -EINVAL;
301                                                   278 
302                 pos += ieee802154_hdr_get_sech    279                 pos += ieee802154_hdr_get_sechdr(skb->data + pos, &hdr->sec);
303         }                                         280         }
304                                                   281 
305         skb_pull(skb, pos);                       282         skb_pull(skb, pos);
306         return pos;                               283         return pos;
307 }                                                 284 }
308 EXPORT_SYMBOL_GPL(ieee802154_hdr_pull);           285 EXPORT_SYMBOL_GPL(ieee802154_hdr_pull);
309                                                << 
310 int ieee802154_mac_cmd_pl_pull(struct sk_buff  << 
311                                struct ieee8021 << 
312 {                                              << 
313         if (!pskb_may_pull(skb, sizeof(*mac_pl << 
314                 return -EINVAL;                << 
315                                                << 
316         memcpy(mac_pl, skb->data, sizeof(*mac_ << 
317         skb_pull(skb, sizeof(*mac_pl));        << 
318                                                << 
319         return 0;                              << 
320 }                                              << 
321 EXPORT_SYMBOL_GPL(ieee802154_mac_cmd_pl_pull); << 
322                                                   286 
323 int                                               287 int
324 ieee802154_hdr_peek_addrs(const struct sk_buff    288 ieee802154_hdr_peek_addrs(const struct sk_buff *skb, struct ieee802154_hdr *hdr)
325 {                                                 289 {
326         const u8 *buf = skb_mac_header(skb);      290         const u8 *buf = skb_mac_header(skb);
327         int pos = 3, rc;                          291         int pos = 3, rc;
328                                                   292 
329         if (buf + 3 > skb_tail_pointer(skb))      293         if (buf + 3 > skb_tail_pointer(skb))
330                 return -EINVAL;                   294                 return -EINVAL;
331                                                   295 
332         memcpy(hdr, buf, 3);                      296         memcpy(hdr, buf, 3);
333                                                   297 
334         rc = ieee802154_hdr_minlen(hdr);          298         rc = ieee802154_hdr_minlen(hdr);
335         if (rc < 0 || buf + rc > skb_tail_poin    299         if (rc < 0 || buf + rc > skb_tail_pointer(skb))
336                 return -EINVAL;                   300                 return -EINVAL;
337                                                   301 
338         pos += ieee802154_hdr_get_addrs(buf +     302         pos += ieee802154_hdr_get_addrs(buf + pos, hdr);
339         return pos;                               303         return pos;
340 }                                                 304 }
341 EXPORT_SYMBOL_GPL(ieee802154_hdr_peek_addrs);     305 EXPORT_SYMBOL_GPL(ieee802154_hdr_peek_addrs);
342                                                   306 
343 int                                               307 int
344 ieee802154_hdr_peek(const struct sk_buff *skb,    308 ieee802154_hdr_peek(const struct sk_buff *skb, struct ieee802154_hdr *hdr)
345 {                                                 309 {
346         const u8 *buf = skb_mac_header(skb);      310         const u8 *buf = skb_mac_header(skb);
347         int pos;                                  311         int pos;
348                                                   312 
349         pos = ieee802154_hdr_peek_addrs(skb, h    313         pos = ieee802154_hdr_peek_addrs(skb, hdr);
350         if (pos < 0)                              314         if (pos < 0)
351                 return -EINVAL;                   315                 return -EINVAL;
352                                                   316 
353         if (hdr->fc.security_enabled) {           317         if (hdr->fc.security_enabled) {
354                 u8 key_id_mode = IEEE802154_SC    318                 u8 key_id_mode = IEEE802154_SCF_KEY_ID_MODE(*(buf + pos));
355                 int want = pos + ieee802154_se    319                 int want = pos + ieee802154_sechdr_lengths[key_id_mode];
356                                                   320 
357                 if (buf + want > skb_tail_poin    321                 if (buf + want > skb_tail_pointer(skb))
358                         return -EINVAL;           322                         return -EINVAL;
359                                                   323 
360                 pos += ieee802154_hdr_get_sech    324                 pos += ieee802154_hdr_get_sechdr(buf + pos, &hdr->sec);
361         }                                         325         }
362                                                   326 
363         return pos;                               327         return pos;
364 }                                                 328 }
365 EXPORT_SYMBOL_GPL(ieee802154_hdr_peek);           329 EXPORT_SYMBOL_GPL(ieee802154_hdr_peek);
366                                                   330 
367 int ieee802154_max_payload(const struct ieee80    331 int ieee802154_max_payload(const struct ieee802154_hdr *hdr)
368 {                                                 332 {
369         int hlen = ieee802154_hdr_minlen(hdr);    333         int hlen = ieee802154_hdr_minlen(hdr);
370                                                   334 
371         if (hdr->fc.security_enabled) {           335         if (hdr->fc.security_enabled) {
372                 hlen += ieee802154_sechdr_leng    336                 hlen += ieee802154_sechdr_lengths[hdr->sec.key_id_mode] - 1;
373                 hlen += ieee802154_sechdr_auth    337                 hlen += ieee802154_sechdr_authtag_len(&hdr->sec);
374         }                                         338         }
375                                                   339 
376         return IEEE802154_MTU - hlen - IEEE802    340         return IEEE802154_MTU - hlen - IEEE802154_MFR_SIZE;
377 }                                                 341 }
378 EXPORT_SYMBOL_GPL(ieee802154_max_payload);        342 EXPORT_SYMBOL_GPL(ieee802154_max_payload);
379                                                   343 

~ [ 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