]> Git Repo - linux.git/blame - drivers/net/gtp.c
Linux 6.14-rc3
[linux.git] / drivers / net / gtp.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
459aa660
PN
2/* GTP according to GSM TS 09.60 / 3GPP TS 29.060
3 *
4 * (C) 2012-2014 by sysmocom - s.f.m.c. GmbH
5 * (C) 2016 by Pablo Neira Ayuso <[email protected]>
6 *
7 * Author: Harald Welte <[email protected]>
8 * Pablo Neira Ayuso <[email protected]>
9 * Andreas Schultz <[email protected]>
459aa660
PN
10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/module.h>
459aa660
PN
15#include <linux/skbuff.h>
16#include <linux/udp.h>
17#include <linux/rculist.h>
18#include <linux/jhash.h>
19#include <linux/if_tunnel.h>
20#include <linux/net.h>
21#include <linux/file.h>
22#include <linux/gtp.h>
23
24#include <net/net_namespace.h>
25#include <net/protocol.h>
2ce7289f
GN
26#include <net/inet_dscp.h>
27#include <net/inet_sock.h>
459aa660 28#include <net/ip.h>
999cb275 29#include <net/ipv6.h>
459aa660
PN
30#include <net/udp.h>
31#include <net/udp_tunnel.h>
32#include <net/icmp.h>
33#include <net/xfrm.h>
34#include <net/genetlink.h>
35#include <net/netns/generic.h>
36#include <net/gtp.h>
37
38/* An active session for the subscriber. */
39struct pdp_ctx {
40 struct hlist_node hlist_tid;
41 struct hlist_node hlist_addr;
42
43 union {
459aa660
PN
44 struct {
45 u64 tid;
46 u16 flow;
47 } v0;
48 struct {
49 u32 i_tei;
50 u32 o_tei;
51 } v1;
52 } u;
53 u8 gtp_version;
54 u16 af;
55
750771d0
PNA
56 union {
57 struct in_addr addr;
999cb275 58 struct in6_addr addr6;
750771d0
PNA
59 } ms;
60 union {
61 struct in_addr addr;
999cb275 62 struct in6_addr addr6;
750771d0 63 } peer;
459aa660 64
101cfbc1 65 struct sock *sk;
5b171f9c
AS
66 struct net_device *dev;
67
459aa660
PN
68 atomic_t tx_seq;
69 struct rcu_head rcu_head;
70};
71
72/* One instance of the GTP device. */
73struct gtp_dev {
74 struct list_head list;
75
17886c47
AS
76 struct sock *sk0;
77 struct sock *sk1u;
b20dc3c6 78 u8 sk_created;
459aa660 79
459aa660 80 struct net_device *dev;
b20dc3c6 81 struct net *net;
459aa660 82
91ed81f9 83 unsigned int role;
459aa660
PN
84 unsigned int hash_size;
85 struct hlist_head *tid_hash;
86 struct hlist_head *addr_hash;
9af41cc3
WD
87
88 u8 restart_count;
459aa660
PN
89};
90
d33bd757 91struct echo_info {
750771d0 92 u16 af;
d33bd757 93 u8 gtp_version;
750771d0
PNA
94
95 union {
96 struct in_addr addr;
97 } ms;
98 union {
99 struct in_addr addr;
100 } peer;
d33bd757
WD
101};
102
c7d03a00 103static unsigned int gtp_net_id __read_mostly;
459aa660
PN
104
105struct gtp_net {
106 struct list_head gtp_dev_list;
107};
108
109static u32 gtp_h_initval;
110
d33bd757
WD
111static struct genl_family gtp_genl_family;
112
113enum gtp_multicast_groups {
114 GTP_GENL_MCGRP,
115};
116
117static const struct genl_multicast_group gtp_genl_mcgrps[] = {
118 [GTP_GENL_MCGRP] = { .name = GTP_GENL_MCGRP_NAME },
119};
120
6b5e2e74
AS
121static void pdp_context_delete(struct pdp_ctx *pctx);
122
459aa660
PN
123static inline u32 gtp0_hashfn(u64 tid)
124{
125 u32 *tid32 = (u32 *) &tid;
126 return jhash_2words(tid32[0], tid32[1], gtp_h_initval);
127}
128
129static inline u32 gtp1u_hashfn(u32 tid)
130{
131 return jhash_1word(tid, gtp_h_initval);
132}
133
134static inline u32 ipv4_hashfn(__be32 ip)
135{
136 return jhash_1word((__force u32)ip, gtp_h_initval);
137}
138
999cb275
PNA
139static u32 ipv6_hashfn(const struct in6_addr *ip6)
140{
c6461ec9
PNA
141 return jhash_2words((__force u32)ip6->s6_addr32[0],
142 (__force u32)ip6->s6_addr32[1], gtp_h_initval);
999cb275
PNA
143}
144
459aa660 145/* Resolve a PDP context structure based on the 64bit TID. */
c75fc0b9 146static struct pdp_ctx *gtp0_pdp_find(struct gtp_dev *gtp, u64 tid, u16 family)
459aa660
PN
147{
148 struct hlist_head *head;
149 struct pdp_ctx *pdp;
150
151 head = &gtp->tid_hash[gtp0_hashfn(tid) % gtp->hash_size];
152
153 hlist_for_each_entry_rcu(pdp, head, hlist_tid) {
c75fc0b9
PNA
154 if (pdp->af == family &&
155 pdp->gtp_version == GTP_V0 &&
459aa660
PN
156 pdp->u.v0.tid == tid)
157 return pdp;
158 }
159 return NULL;
160}
161
162/* Resolve a PDP context structure based on the 32bit TEI. */
c75fc0b9 163static struct pdp_ctx *gtp1_pdp_find(struct gtp_dev *gtp, u32 tid, u16 family)
459aa660
PN
164{
165 struct hlist_head *head;
166 struct pdp_ctx *pdp;
167
168 head = &gtp->tid_hash[gtp1u_hashfn(tid) % gtp->hash_size];
169
170 hlist_for_each_entry_rcu(pdp, head, hlist_tid) {
c75fc0b9
PNA
171 if (pdp->af == family &&
172 pdp->gtp_version == GTP_V1 &&
459aa660
PN
173 pdp->u.v1.i_tei == tid)
174 return pdp;
175 }
176 return NULL;
177}
178
179/* Resolve a PDP context based on IPv4 address of MS. */
180static struct pdp_ctx *ipv4_pdp_find(struct gtp_dev *gtp, __be32 ms_addr)
181{
182 struct hlist_head *head;
183 struct pdp_ctx *pdp;
184
185 head = &gtp->addr_hash[ipv4_hashfn(ms_addr) % gtp->hash_size];
186
187 hlist_for_each_entry_rcu(pdp, head, hlist_addr) {
188 if (pdp->af == AF_INET &&
750771d0 189 pdp->ms.addr.s_addr == ms_addr)
459aa660
PN
190 return pdp;
191 }
192
193 return NULL;
194}
195
c6461ec9
PNA
196/* 3GPP TS 29.060: PDN Connection: the association between a MS represented by
197 * [...] one IPv6 *prefix* and a PDN represented by an APN.
198 *
199 * Then, 3GPP TS 29.061, Section 11.2.1.3 says: The size of the prefix shall be
200 * according to the maximum prefix length for a global IPv6 address as
201 * specified in the IPv6 Addressing Architecture, see RFC 4291.
202 *
203 * Finally, RFC 4291 section 2.5.4 states: All Global Unicast addresses other
204 * than those that start with binary 000 have a 64-bit interface ID field
205 * (i.e., n + m = 64).
206 */
207static bool ipv6_pdp_addr_equal(const struct in6_addr *a,
208 const struct in6_addr *b)
209{
210 return a->s6_addr32[0] == b->s6_addr32[0] &&
211 a->s6_addr32[1] == b->s6_addr32[1];
212}
213
999cb275
PNA
214static struct pdp_ctx *ipv6_pdp_find(struct gtp_dev *gtp,
215 const struct in6_addr *ms_addr)
216{
217 struct hlist_head *head;
218 struct pdp_ctx *pdp;
219
220 head = &gtp->addr_hash[ipv6_hashfn(ms_addr) % gtp->hash_size];
221
222 hlist_for_each_entry_rcu(pdp, head, hlist_addr) {
223 if (pdp->af == AF_INET6 &&
c6461ec9 224 ipv6_pdp_addr_equal(&pdp->ms.addr6, ms_addr))
999cb275
PNA
225 return pdp;
226 }
227
228 return NULL;
229}
230
91ed81f9
JB
231static bool gtp_check_ms_ipv4(struct sk_buff *skb, struct pdp_ctx *pctx,
232 unsigned int hdrlen, unsigned int role)
459aa660
PN
233{
234 struct iphdr *iph;
235
236 if (!pskb_may_pull(skb, hdrlen + sizeof(struct iphdr)))
237 return false;
238
88edf103 239 iph = (struct iphdr *)(skb->data + hdrlen);
459aa660 240
91ed81f9 241 if (role == GTP_ROLE_SGSN)
750771d0 242 return iph->daddr == pctx->ms.addr.s_addr;
91ed81f9 243 else
750771d0 244 return iph->saddr == pctx->ms.addr.s_addr;
459aa660
PN
245}
246
999cb275
PNA
247static bool gtp_check_ms_ipv6(struct sk_buff *skb, struct pdp_ctx *pctx,
248 unsigned int hdrlen, unsigned int role)
249{
250 struct ipv6hdr *ip6h;
251 int ret;
252
253 if (!pskb_may_pull(skb, hdrlen + sizeof(struct ipv6hdr)))
254 return false;
255
256 ip6h = (struct ipv6hdr *)(skb->data + hdrlen);
257
e4f88f73
PNA
258 if ((ipv6_addr_type(&ip6h->saddr) & IPV6_ADDR_LINKLOCAL) ||
259 (ipv6_addr_type(&ip6h->daddr) & IPV6_ADDR_LINKLOCAL))
260 return false;
261
999cb275 262 if (role == GTP_ROLE_SGSN) {
c6461ec9 263 ret = ipv6_pdp_addr_equal(&ip6h->daddr, &pctx->ms.addr6);
999cb275 264 } else {
c6461ec9 265 ret = ipv6_pdp_addr_equal(&ip6h->saddr, &pctx->ms.addr6);
999cb275
PNA
266 }
267
c6461ec9 268 return ret;
999cb275
PNA
269}
270
91ed81f9 271/* Check if the inner IP address in this packet is assigned to any
459aa660
PN
272 * existing mobile subscriber.
273 */
91ed81f9 274static bool gtp_check_ms(struct sk_buff *skb, struct pdp_ctx *pctx,
e30ea48b
PNA
275 unsigned int hdrlen, unsigned int role,
276 __u16 inner_proto)
459aa660 277{
e30ea48b 278 switch (inner_proto) {
459aa660 279 case ETH_P_IP:
91ed81f9 280 return gtp_check_ms_ipv4(skb, pctx, hdrlen, role);
999cb275
PNA
281 case ETH_P_IPV6:
282 return gtp_check_ms_ipv6(skb, pctx, hdrlen, role);
459aa660
PN
283 }
284 return false;
285}
286
e30ea48b
PNA
287static int gtp_inner_proto(struct sk_buff *skb, unsigned int hdrlen,
288 __u16 *inner_proto)
289{
290 __u8 *ip_version, _ip_version;
291
292 ip_version = skb_header_pointer(skb, hdrlen, sizeof(*ip_version),
293 &_ip_version);
294 if (!ip_version)
295 return -1;
296
297 switch (*ip_version & 0xf0) {
298 case 0x40:
299 *inner_proto = ETH_P_IP;
300 break;
301 case 0x60:
302 *inner_proto = ETH_P_IPV6;
303 break;
304 default:
305 return -1;
306 }
307
308 return 0;
309}
310
49ecc587 311static int gtp_rx(struct pdp_ctx *pctx, struct sk_buff *skb,
c75fc0b9 312 unsigned int hdrlen, unsigned int role, __u16 inner_proto)
5b171f9c 313{
e30ea48b 314 if (!gtp_check_ms(skb, pctx, hdrlen, role, inner_proto)) {
49ecc587
JB
315 netdev_dbg(pctx->dev, "No PDP ctx for this MS\n");
316 return 1;
5b171f9c
AS
317 }
318
319 /* Get rid of the GTP + UDP headers. */
e30ea48b 320 if (iptunnel_pull_header(skb, hdrlen, htons(inner_proto),
9716178a
JB
321 !net_eq(sock_net(pctx->sk), dev_net(pctx->dev)))) {
322 pctx->dev->stats.rx_length_errors++;
323 goto err;
324 }
9ab7e76a 325
49ecc587 326 netdev_dbg(pctx->dev, "forwarding packet from GGSN to uplink\n");
5b171f9c
AS
327
328 /* Now that the UDP and the GTP header have been removed, set up the
329 * new network header. This is required by the upper layer to
330 * calculate the transport header.
331 */
332 skb_reset_network_header(skb);
b2d898c8 333 skb_reset_mac_header(skb);
5b171f9c 334
49ecc587
JB
335 skb->dev = pctx->dev;
336
337 dev_sw_netstats_rx_add(pctx->dev, skb->len);
338
baebdf48 339 __netif_rx(skb);
5b171f9c 340 return 0;
9716178a
JB
341
342err:
343 pctx->dev->stats.rx_dropped++;
344 return -1;
5b171f9c
AS
345}
346
9af41cc3
WD
347static struct rtable *ip4_route_output_gtp(struct flowi4 *fl4,
348 const struct sock *sk,
349 __be32 daddr, __be32 saddr)
350{
351 memset(fl4, 0, sizeof(*fl4));
352 fl4->flowi4_oif = sk->sk_bound_dev_if;
353 fl4->daddr = daddr;
354 fl4->saddr = saddr;
2ce7289f 355 fl4->flowi4_tos = inet_dscp_to_dsfield(inet_sk_dscp(inet_sk(sk)));
b16b5047 356 fl4->flowi4_scope = ip_sock_rt_scope(sk);
9af41cc3
WD
357 fl4->flowi4_proto = sk->sk_protocol;
358
359 return ip_route_output_key(sock_net(sk), fl4);
360}
361
999cb275
PNA
362static struct rt6_info *ip6_route_output_gtp(struct net *net,
363 struct flowi6 *fl6,
364 const struct sock *sk,
365 const struct in6_addr *daddr,
366 struct in6_addr *saddr)
367{
368 struct dst_entry *dst;
369
370 memset(fl6, 0, sizeof(*fl6));
371 fl6->flowi6_oif = sk->sk_bound_dev_if;
372 fl6->daddr = *daddr;
373 fl6->saddr = *saddr;
374 fl6->flowi6_proto = sk->sk_protocol;
375
376 dst = ipv6_stub->ipv6_dst_lookup_flow(net, sk, fl6, NULL);
377 if (IS_ERR(dst))
378 return ERR_PTR(-ENETUNREACH);
379
380 return (struct rt6_info *)dst;
381}
382
9af41cc3
WD
383/* GSM TS 09.60. 7.3
384 * In all Path Management messages:
385 * - TID: is not used and shall be set to 0.
386 * - Flow Label is not used and shall be set to 0
387 * In signalling messages:
388 * - number: this field is not yet used in signalling messages.
389 * It shall be set to 255 by the sender and shall be ignored
390 * by the receiver
391 * Returns true if the echo req was correct, false otherwise.
392 */
d33bd757 393static bool gtp0_validate_echo_hdr(struct gtp0_header *gtp0)
9af41cc3
WD
394{
395 return !(gtp0->tid || (gtp0->flags ^ 0x1e) ||
396 gtp0->number != 0xff || gtp0->flow);
397}
398
d33bd757
WD
399/* msg_type has to be GTP_ECHO_REQ or GTP_ECHO_RSP */
400static void gtp0_build_echo_msg(struct gtp0_header *hdr, __u8 msg_type)
401{
402 int len_pkt, len_hdr;
403
404 hdr->flags = 0x1e; /* v0, GTP-non-prime. */
405 hdr->type = msg_type;
406 /* GSM TS 09.60. 7.3 In all Path Management Flow Label and TID
407 * are not used and shall be set to 0.
408 */
409 hdr->flow = 0;
410 hdr->tid = 0;
411 hdr->number = 0xff;
412 hdr->spare[0] = 0xff;
413 hdr->spare[1] = 0xff;
414 hdr->spare[2] = 0xff;
415
416 len_pkt = sizeof(struct gtp0_packet);
417 len_hdr = sizeof(struct gtp0_header);
418
419 if (msg_type == GTP_ECHO_RSP)
420 hdr->length = htons(len_pkt - len_hdr);
421 else
422 hdr->length = 0;
423}
424
750771d0
PNA
425static int gtp0_send_echo_resp_ip(struct gtp_dev *gtp, struct sk_buff *skb)
426{
427 struct iphdr *iph = ip_hdr(skb);
428 struct flowi4 fl4;
429 struct rtable *rt;
430
431 /* find route to the sender,
432 * src address becomes dst address and vice versa.
433 */
434 rt = ip4_route_output_gtp(&fl4, gtp->sk0, iph->saddr, iph->daddr);
435 if (IS_ERR(rt)) {
436 netdev_dbg(gtp->dev, "no route for echo response from %pI4\n",
437 &iph->saddr);
438 return -1;
439 }
440
441 udp_tunnel_xmit_skb(rt, gtp->sk0, skb,
442 fl4.saddr, fl4.daddr,
443 iph->tos,
444 ip4_dst_hoplimit(&rt->dst),
445 0,
446 htons(GTP0_PORT), htons(GTP0_PORT),
447 !net_eq(sock_net(gtp->sk1u),
448 dev_net(gtp->dev)),
449 false);
450
451 return 0;
452}
453
9af41cc3
WD
454static int gtp0_send_echo_resp(struct gtp_dev *gtp, struct sk_buff *skb)
455{
456 struct gtp0_packet *gtp_pkt;
457 struct gtp0_header *gtp0;
9af41cc3
WD
458 __be16 seq;
459
460 gtp0 = (struct gtp0_header *)(skb->data + sizeof(struct udphdr));
461
d33bd757 462 if (!gtp0_validate_echo_hdr(gtp0))
9af41cc3
WD
463 return -1;
464
465 seq = gtp0->seq;
466
467 /* pull GTP and UDP headers */
468 skb_pull_data(skb, sizeof(struct gtp0_header) + sizeof(struct udphdr));
469
470 gtp_pkt = skb_push(skb, sizeof(struct gtp0_packet));
471 memset(gtp_pkt, 0, sizeof(struct gtp0_packet));
472
d33bd757 473 gtp0_build_echo_msg(&gtp_pkt->gtp0_h, GTP_ECHO_RSP);
9af41cc3
WD
474
475 /* GSM TS 09.60. 7.3 The Sequence Number in a signalling response
476 * message shall be copied from the signalling request message
477 * that the GSN is replying to.
478 */
479 gtp_pkt->gtp0_h.seq = seq;
480
9af41cc3
WD
481 gtp_pkt->ie.tag = GTPIE_RECOVERY;
482 gtp_pkt->ie.val = gtp->restart_count;
483
750771d0
PNA
484 switch (gtp->sk0->sk_family) {
485 case AF_INET:
486 if (gtp0_send_echo_resp_ip(gtp, skb) < 0)
487 return -1;
488 break;
489 case AF_INET6:
9af41cc3
WD
490 return -1;
491 }
492
9af41cc3
WD
493 return 0;
494}
495
d33bd757
WD
496static int gtp_genl_fill_echo(struct sk_buff *skb, u32 snd_portid, u32 snd_seq,
497 int flags, u32 type, struct echo_info echo)
498{
499 void *genlh;
500
501 genlh = genlmsg_put(skb, snd_portid, snd_seq, &gtp_genl_family, flags,
502 type);
503 if (!genlh)
504 goto failure;
505
506 if (nla_put_u32(skb, GTPA_VERSION, echo.gtp_version) ||
750771d0
PNA
507 nla_put_be32(skb, GTPA_PEER_ADDRESS, echo.peer.addr.s_addr) ||
508 nla_put_be32(skb, GTPA_MS_ADDRESS, echo.ms.addr.s_addr))
d33bd757
WD
509 goto failure;
510
511 genlmsg_end(skb, genlh);
512 return 0;
513
514failure:
515 genlmsg_cancel(skb, genlh);
516 return -EMSGSIZE;
517}
518
750771d0
PNA
519static void gtp0_handle_echo_resp_ip(struct sk_buff *skb, struct echo_info *echo)
520{
521 struct iphdr *iph = ip_hdr(skb);
522
523 echo->ms.addr.s_addr = iph->daddr;
524 echo->peer.addr.s_addr = iph->saddr;
525 echo->gtp_version = GTP_V0;
526}
527
d33bd757
WD
528static int gtp0_handle_echo_resp(struct gtp_dev *gtp, struct sk_buff *skb)
529{
530 struct gtp0_header *gtp0;
531 struct echo_info echo;
532 struct sk_buff *msg;
d33bd757
WD
533 int ret;
534
535 gtp0 = (struct gtp0_header *)(skb->data + sizeof(struct udphdr));
536
537 if (!gtp0_validate_echo_hdr(gtp0))
538 return -1;
539
750771d0
PNA
540 switch (gtp->sk0->sk_family) {
541 case AF_INET:
542 gtp0_handle_echo_resp_ip(skb, &echo);
543 break;
544 case AF_INET6:
545 return -1;
546 }
d33bd757
WD
547
548 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
549 if (!msg)
550 return -ENOMEM;
551
552 ret = gtp_genl_fill_echo(msg, 0, 0, 0, GTP_CMD_ECHOREQ, echo);
553 if (ret < 0) {
554 nlmsg_free(msg);
555 return ret;
556 }
557
558 return genlmsg_multicast_netns(&gtp_genl_family, dev_net(gtp->dev),
559 msg, 0, GTP_GENL_MCGRP, GFP_ATOMIC);
560}
561
c75fc0b9
PNA
562static int gtp_proto_to_family(__u16 proto)
563{
564 switch (proto) {
565 case ETH_P_IP:
566 return AF_INET;
567 case ETH_P_IPV6:
568 return AF_INET6;
569 default:
570 WARN_ON_ONCE(1);
571 break;
572 }
573
574 return AF_UNSPEC;
575}
576
459aa660 577/* 1 means pass up to the stack, -1 means drop and 0 means decapsulated. */
101cfbc1 578static int gtp0_udp_encap_recv(struct gtp_dev *gtp, struct sk_buff *skb)
459aa660
PN
579{
580 unsigned int hdrlen = sizeof(struct udphdr) +
581 sizeof(struct gtp0_header);
582 struct gtp0_header *gtp0;
49ecc587 583 struct pdp_ctx *pctx;
c75fc0b9 584 __u16 inner_proto;
459aa660
PN
585
586 if (!pskb_may_pull(skb, hdrlen))
587 return -1;
588
589 gtp0 = (struct gtp0_header *)(skb->data + sizeof(struct udphdr));
590
591 if ((gtp0->flags >> 5) != GTP_V0)
592 return 1;
593
9af41cc3
WD
594 /* If the sockets were created in kernel, it means that
595 * there is no daemon running in userspace which would
596 * handle echo request.
597 */
598 if (gtp0->type == GTP_ECHO_REQ && gtp->sk_created)
599 return gtp0_send_echo_resp(gtp, skb);
600
d33bd757
WD
601 if (gtp0->type == GTP_ECHO_RSP && gtp->sk_created)
602 return gtp0_handle_echo_resp(gtp, skb);
603
49ecc587
JB
604 if (gtp0->type != GTP_TPDU)
605 return 1;
606
c75fc0b9
PNA
607 if (gtp_inner_proto(skb, hdrlen, &inner_proto) < 0) {
608 netdev_dbg(gtp->dev, "GTP packet does not encapsulate an IP packet\n");
609 return -1;
610 }
611
612 pctx = gtp0_pdp_find(gtp, be64_to_cpu(gtp0->tid),
613 gtp_proto_to_family(inner_proto));
49ecc587
JB
614 if (!pctx) {
615 netdev_dbg(gtp->dev, "No PDP ctx to decap skb=%p\n", skb);
616 return 1;
617 }
618
c75fc0b9 619 return gtp_rx(pctx, skb, hdrlen, gtp->role, inner_proto);
459aa660
PN
620}
621
d33bd757
WD
622/* msg_type has to be GTP_ECHO_REQ or GTP_ECHO_RSP */
623static void gtp1u_build_echo_msg(struct gtp1_header_long *hdr, __u8 msg_type)
624{
625 int len_pkt, len_hdr;
626
627 /* S flag must be set to 1 */
628 hdr->flags = 0x32; /* v1, GTP-non-prime. */
629 hdr->type = msg_type;
630 /* 3GPP TS 29.281 5.1 - TEID has to be set to 0 */
631 hdr->tid = 0;
632
633 /* seq, npdu and next should be counted to the length of the GTP packet
634 * that's why szie of gtp1_header should be subtracted,
635 * not size of gtp1_header_long.
636 */
637
638 len_hdr = sizeof(struct gtp1_header);
639
640 if (msg_type == GTP_ECHO_RSP) {
641 len_pkt = sizeof(struct gtp1u_packet);
642 hdr->length = htons(len_pkt - len_hdr);
643 } else {
644 /* GTP_ECHO_REQ does not carry GTP Information Element,
645 * the why gtp1_header_long is used here.
646 */
647 len_pkt = sizeof(struct gtp1_header_long);
648 hdr->length = htons(len_pkt - len_hdr);
649 }
650}
651
9af41cc3
WD
652static int gtp1u_send_echo_resp(struct gtp_dev *gtp, struct sk_buff *skb)
653{
654 struct gtp1_header_long *gtp1u;
655 struct gtp1u_packet *gtp_pkt;
656 struct rtable *rt;
657 struct flowi4 fl4;
658 struct iphdr *iph;
659
660 gtp1u = (struct gtp1_header_long *)(skb->data + sizeof(struct udphdr));
661
662 /* 3GPP TS 29.281 5.1 - For the Echo Request, Echo Response,
663 * Error Indication and Supported Extension Headers Notification
664 * messages, the S flag shall be set to 1 and TEID shall be set to 0.
665 */
666 if (!(gtp1u->flags & GTP1_F_SEQ) || gtp1u->tid)
667 return -1;
668
669 /* pull GTP and UDP headers */
670 skb_pull_data(skb,
671 sizeof(struct gtp1_header_long) + sizeof(struct udphdr));
672
673 gtp_pkt = skb_push(skb, sizeof(struct gtp1u_packet));
674 memset(gtp_pkt, 0, sizeof(struct gtp1u_packet));
675
d33bd757 676 gtp1u_build_echo_msg(&gtp_pkt->gtp1u_h, GTP_ECHO_RSP);
9af41cc3
WD
677
678 /* 3GPP TS 29.281 7.7.2 - The Restart Counter value in the
679 * Recovery information element shall not be used, i.e. it shall
680 * be set to zero by the sender and shall be ignored by the receiver.
681 * The Recovery information element is mandatory due to backwards
682 * compatibility reasons.
683 */
684 gtp_pkt->ie.tag = GTPIE_RECOVERY;
685 gtp_pkt->ie.val = 0;
686
687 iph = ip_hdr(skb);
688
689 /* find route to the sender,
690 * src address becomes dst address and vice versa.
691 */
692 rt = ip4_route_output_gtp(&fl4, gtp->sk1u, iph->saddr, iph->daddr);
693 if (IS_ERR(rt)) {
694 netdev_dbg(gtp->dev, "no route for echo response from %pI4\n",
695 &iph->saddr);
696 return -1;
697 }
698
699 udp_tunnel_xmit_skb(rt, gtp->sk1u, skb,
700 fl4.saddr, fl4.daddr,
701 iph->tos,
702 ip4_dst_hoplimit(&rt->dst),
703 0,
704 htons(GTP1U_PORT), htons(GTP1U_PORT),
705 !net_eq(sock_net(gtp->sk1u),
706 dev_net(gtp->dev)),
707 false);
708 return 0;
709}
710
d33bd757
WD
711static int gtp1u_handle_echo_resp(struct gtp_dev *gtp, struct sk_buff *skb)
712{
713 struct gtp1_header_long *gtp1u;
714 struct echo_info echo;
715 struct sk_buff *msg;
716 struct iphdr *iph;
717 int ret;
718
719 gtp1u = (struct gtp1_header_long *)(skb->data + sizeof(struct udphdr));
720
721 /* 3GPP TS 29.281 5.1 - For the Echo Request, Echo Response,
722 * Error Indication and Supported Extension Headers Notification
723 * messages, the S flag shall be set to 1 and TEID shall be set to 0.
724 */
725 if (!(gtp1u->flags & GTP1_F_SEQ) || gtp1u->tid)
726 return -1;
727
728 iph = ip_hdr(skb);
750771d0
PNA
729 echo.ms.addr.s_addr = iph->daddr;
730 echo.peer.addr.s_addr = iph->saddr;
d33bd757
WD
731 echo.gtp_version = GTP_V1;
732
733 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
734 if (!msg)
735 return -ENOMEM;
736
737 ret = gtp_genl_fill_echo(msg, 0, 0, 0, GTP_CMD_ECHOREQ, echo);
738 if (ret < 0) {
739 nlmsg_free(msg);
740 return ret;
741 }
742
743 return genlmsg_multicast_netns(&gtp_genl_family, dev_net(gtp->dev),
744 msg, 0, GTP_GENL_MCGRP, GFP_ATOMIC);
745}
746
b6fc0956
PNA
747static int gtp_parse_exthdrs(struct sk_buff *skb, unsigned int *hdrlen)
748{
749 struct gtp_ext_hdr *gtp_exthdr, _gtp_exthdr;
750 unsigned int offset = *hdrlen;
751 __u8 *next_type, _next_type;
752
753 /* From 29.060: "The Extension Header Length field specifies the length
754 * of the particular Extension header in 4 octets units."
755 *
756 * This length field includes length field size itself (1 byte),
757 * payload (variable length) and next type (1 byte). The extension
758 * header is aligned to to 4 bytes.
759 */
760
761 do {
762 gtp_exthdr = skb_header_pointer(skb, offset, sizeof(*gtp_exthdr),
763 &_gtp_exthdr);
764 if (!gtp_exthdr || !gtp_exthdr->len)
765 return -1;
766
767 offset += gtp_exthdr->len * 4;
768
769 /* From 29.060: "If no such Header follows, then the value of
770 * the Next Extension Header Type shall be 0."
771 */
772 next_type = skb_header_pointer(skb, offset - 1,
773 sizeof(_next_type), &_next_type);
774 if (!next_type)
775 return -1;
776
777 } while (*next_type != 0);
778
779 *hdrlen = offset;
780
781 return 0;
782}
783
101cfbc1 784static int gtp1u_udp_encap_recv(struct gtp_dev *gtp, struct sk_buff *skb)
459aa660
PN
785{
786 unsigned int hdrlen = sizeof(struct udphdr) +
787 sizeof(struct gtp1_header);
788 struct gtp1_header *gtp1;
49ecc587 789 struct pdp_ctx *pctx;
c75fc0b9 790 __u16 inner_proto;
459aa660
PN
791
792 if (!pskb_may_pull(skb, hdrlen))
793 return -1;
794
795 gtp1 = (struct gtp1_header *)(skb->data + sizeof(struct udphdr));
796
797 if ((gtp1->flags >> 5) != GTP_V1)
798 return 1;
799
9af41cc3
WD
800 /* If the sockets were created in kernel, it means that
801 * there is no daemon running in userspace which would
802 * handle echo request.
803 */
804 if (gtp1->type == GTP_ECHO_REQ && gtp->sk_created)
805 return gtp1u_send_echo_resp(gtp, skb);
806
d33bd757
WD
807 if (gtp1->type == GTP_ECHO_RSP && gtp->sk_created)
808 return gtp1u_handle_echo_resp(gtp, skb);
809
49ecc587
JB
810 if (gtp1->type != GTP_TPDU)
811 return 1;
812
459aa660
PN
813 /* From 29.060: "This field shall be present if and only if any one or
814 * more of the S, PN and E flags are set.".
815 *
816 * If any of the bit is set, then the remaining ones also have to be
817 * set.
818 */
49ecc587
JB
819 if (gtp1->flags & GTP1_F_MASK)
820 hdrlen += 4;
821
459aa660
PN
822 /* Make sure the header is larger enough, including extensions. */
823 if (!pskb_may_pull(skb, hdrlen))
824 return -1;
825
c75fc0b9
PNA
826 if (gtp_inner_proto(skb, hdrlen, &inner_proto) < 0) {
827 netdev_dbg(gtp->dev, "GTP packet does not encapsulate an IP packet\n");
828 return -1;
829 }
830
93edb8c7
PN
831 gtp1 = (struct gtp1_header *)(skb->data + sizeof(struct udphdr));
832
c75fc0b9
PNA
833 pctx = gtp1_pdp_find(gtp, ntohl(gtp1->tid),
834 gtp_proto_to_family(inner_proto));
49ecc587
JB
835 if (!pctx) {
836 netdev_dbg(gtp->dev, "No PDP ctx to decap skb=%p\n", skb);
837 return 1;
838 }
839
b6fc0956
PNA
840 if (gtp1->flags & GTP1_F_EXTHDR &&
841 gtp_parse_exthdrs(skb, &hdrlen) < 0)
842 return -1;
843
c75fc0b9 844 return gtp_rx(pctx, skb, hdrlen, gtp->role, inner_proto);
459aa660
PN
845}
846
1788b856 847static void __gtp_encap_destroy(struct sock *sk)
459aa660 848{
1e3a3abd 849 struct gtp_dev *gtp;
459aa660 850
e198987e
TY
851 lock_sock(sk);
852 gtp = sk->sk_user_data;
1e3a3abd 853 if (gtp) {
1788b856
TY
854 if (gtp->sk0 == sk)
855 gtp->sk0 = NULL;
856 else
857 gtp->sk1u = NULL;
70a36f57 858 WRITE_ONCE(udp_sk(sk)->encap_type, 0);
1e3a3abd 859 rcu_assign_sk_user_data(sk, NULL);
ce3aee71 860 release_sock(sk);
1e3a3abd 861 sock_put(sk);
ce3aee71 862 return;
1e3a3abd 863 }
e198987e 864 release_sock(sk);
459aa660
PN
865}
866
1788b856
TY
867static void gtp_encap_destroy(struct sock *sk)
868{
869 rtnl_lock();
870 __gtp_encap_destroy(sk);
871 rtnl_unlock();
872}
873
1e3a3abd 874static void gtp_encap_disable_sock(struct sock *sk)
459aa660 875{
1e3a3abd
AS
876 if (!sk)
877 return;
459aa660 878
1788b856 879 __gtp_encap_destroy(sk);
1e3a3abd
AS
880}
881
882static void gtp_encap_disable(struct gtp_dev *gtp)
883{
b20dc3c6
WD
884 if (gtp->sk_created) {
885 udp_tunnel_sock_release(gtp->sk0->sk_socket);
886 udp_tunnel_sock_release(gtp->sk1u->sk_socket);
887 gtp->sk_created = false;
888 gtp->sk0 = NULL;
889 gtp->sk1u = NULL;
890 } else {
891 gtp_encap_disable_sock(gtp->sk0);
892 gtp_encap_disable_sock(gtp->sk1u);
893 }
459aa660
PN
894}
895
896/* UDP encapsulation receive handler. See net/ipv4/udp.c.
897 * Return codes: 0: success, <0: error, >0: pass up to userspace UDP socket.
898 */
899static int gtp_encap_recv(struct sock *sk, struct sk_buff *skb)
900{
459aa660 901 struct gtp_dev *gtp;
5b171f9c 902 int ret = 0;
459aa660
PN
903
904 gtp = rcu_dereference_sk_user_data(sk);
905 if (!gtp)
906 return 1;
907
49ecc587 908 netdev_dbg(gtp->dev, "encap_recv sk=%p\n", sk);
459aa660 909
70a36f57 910 switch (READ_ONCE(udp_sk(sk)->encap_type)) {
459aa660
PN
911 case UDP_ENCAP_GTP0:
912 netdev_dbg(gtp->dev, "received GTP0 packet\n");
101cfbc1 913 ret = gtp0_udp_encap_recv(gtp, skb);
459aa660
PN
914 break;
915 case UDP_ENCAP_GTP1U:
916 netdev_dbg(gtp->dev, "received GTP1U packet\n");
101cfbc1 917 ret = gtp1u_udp_encap_recv(gtp, skb);
459aa660
PN
918 break;
919 default:
920 ret = -1; /* Shouldn't happen. */
921 }
922
923 switch (ret) {
924 case 1:
925 netdev_dbg(gtp->dev, "pass up to the process\n");
5b171f9c 926 break;
459aa660 927 case 0:
459aa660
PN
928 break;
929 case -1:
930 netdev_dbg(gtp->dev, "GTP packet has been dropped\n");
931 kfree_skb(skb);
5b171f9c
AS
932 ret = 0;
933 break;
459aa660
PN
934 }
935
5b171f9c 936 return ret;
459aa660
PN
937}
938
459aa660
PN
939static void gtp_dev_uninit(struct net_device *dev)
940{
941 struct gtp_dev *gtp = netdev_priv(dev);
942
943 gtp_encap_disable(gtp);
459aa660
PN
944}
945
459aa660
PN
946static inline void gtp0_push_header(struct sk_buff *skb, struct pdp_ctx *pctx)
947{
948 int payload_len = skb->len;
949 struct gtp0_header *gtp0;
950
d58ff351 951 gtp0 = skb_push(skb, sizeof(*gtp0));
459aa660
PN
952
953 gtp0->flags = 0x1e; /* v0, GTP-non-prime. */
954 gtp0->type = GTP_TPDU;
955 gtp0->length = htons(payload_len);
956 gtp0->seq = htons((atomic_inc_return(&pctx->tx_seq) - 1) % 0xffff);
957 gtp0->flow = htons(pctx->u.v0.flow);
958 gtp0->number = 0xff;
959 gtp0->spare[0] = gtp0->spare[1] = gtp0->spare[2] = 0xff;
960 gtp0->tid = cpu_to_be64(pctx->u.v0.tid);
961}
962
49ecc587 963static inline void gtp1_push_header(struct sk_buff *skb, struct pdp_ctx *pctx)
459aa660
PN
964{
965 int payload_len = skb->len;
966 struct gtp1_header *gtp1;
967
d58ff351 968 gtp1 = skb_push(skb, sizeof(*gtp1));
459aa660
PN
969
970 /* Bits 8 7 6 5 4 3 2 1
971 * +--+--+--+--+--+--+--+--+
d928be81 972 * |version |PT| 0| E| S|PN|
459aa660
PN
973 * +--+--+--+--+--+--+--+--+
974 * 0 0 1 1 1 0 0 0
975 */
d928be81 976 gtp1->flags = 0x30; /* v1, GTP-non-prime. */
459aa660
PN
977 gtp1->type = GTP_TPDU;
978 gtp1->length = htons(payload_len);
49ecc587 979 gtp1->tid = htonl(pctx->u.v1.o_tei);
459aa660 980
ec674565 981 /* TODO: Support for extension header, sequence number and N-PDU.
459aa660
PN
982 * Update the length field if any of them is available.
983 */
984}
985
49ecc587
JB
986struct gtp_pktinfo {
987 struct sock *sk;
750771d0
PNA
988 union {
989 struct flowi4 fl4;
999cb275 990 struct flowi6 fl6;
750771d0
PNA
991 };
992 union {
993 struct rtable *rt;
999cb275 994 struct rt6_info *rt6;
750771d0 995 };
49ecc587
JB
996 struct pdp_ctx *pctx;
997 struct net_device *dev;
559101a7 998 __u8 tos;
49ecc587
JB
999 __be16 gtph_port;
1000};
9ab7e76a 1001
49ecc587
JB
1002static void gtp_push_header(struct sk_buff *skb, struct gtp_pktinfo *pktinfo)
1003{
1004 switch (pktinfo->pctx->gtp_version) {
1005 case GTP_V0:
1006 pktinfo->gtph_port = htons(GTP0_PORT);
1007 gtp0_push_header(skb, pktinfo->pctx);
1008 break;
1009 case GTP_V1:
1010 pktinfo->gtph_port = htons(GTP1U_PORT);
1011 gtp1_push_header(skb, pktinfo->pctx);
1012 break;
459aa660
PN
1013 }
1014}
1015
1016static inline void gtp_set_pktinfo_ipv4(struct gtp_pktinfo *pktinfo,
559101a7 1017 struct sock *sk, __u8 tos,
49ecc587 1018 struct pdp_ctx *pctx, struct rtable *rt,
459aa660
PN
1019 struct flowi4 *fl4,
1020 struct net_device *dev)
1021{
1022 pktinfo->sk = sk;
559101a7 1023 pktinfo->tos = tos;
49ecc587 1024 pktinfo->pctx = pctx;
459aa660
PN
1025 pktinfo->rt = rt;
1026 pktinfo->fl4 = *fl4;
1027 pktinfo->dev = dev;
1028}
1029
999cb275 1030static void gtp_set_pktinfo_ipv6(struct gtp_pktinfo *pktinfo,
559101a7 1031 struct sock *sk, __u8 tos,
999cb275
PNA
1032 struct pdp_ctx *pctx, struct rt6_info *rt6,
1033 struct flowi6 *fl6,
1034 struct net_device *dev)
1035{
1036 pktinfo->sk = sk;
559101a7 1037 pktinfo->tos = tos;
999cb275
PNA
1038 pktinfo->pctx = pctx;
1039 pktinfo->rt6 = rt6;
1040 pktinfo->fl6 = *fl6;
1041 pktinfo->dev = dev;
1042}
1043
b77732f0
PNA
1044static int gtp_build_skb_outer_ip4(struct sk_buff *skb, struct net_device *dev,
1045 struct gtp_pktinfo *pktinfo,
1046 struct pdp_ctx *pctx, __u8 tos,
1047 __be16 frag_off)
459aa660 1048{
459aa660
PN
1049 struct rtable *rt;
1050 struct flowi4 fl4;
49ecc587 1051 __be16 df;
459aa660
PN
1052 int mtu;
1053
750771d0 1054 rt = ip4_route_output_gtp(&fl4, pctx->sk, pctx->peer.addr.s_addr,
9af41cc3 1055 inet_sk(pctx->sk)->inet_saddr);
459aa660 1056 if (IS_ERR(rt)) {
49ecc587 1057 netdev_dbg(dev, "no route to SSGN %pI4\n",
750771d0 1058 &pctx->peer.addr.s_addr);
459aa660
PN
1059 dev->stats.tx_carrier_errors++;
1060 goto err;
1061 }
1062
1063 if (rt->dst.dev == dev) {
49ecc587 1064 netdev_dbg(dev, "circular route to SSGN %pI4\n",
750771d0 1065 &pctx->peer.addr.s_addr);
459aa660
PN
1066 dev->stats.collisions++;
1067 goto err_rt;
1068 }
1069
459aa660 1070 /* This is similar to tnl_update_pmtu(). */
b77732f0 1071 df = frag_off;
459aa660
PN
1072 if (df) {
1073 mtu = dst_mtu(&rt->dst) - dev->hard_header_len -
1074 sizeof(struct iphdr) - sizeof(struct udphdr);
49ecc587 1075 switch (pctx->gtp_version) {
459aa660
PN
1076 case GTP_V0:
1077 mtu -= sizeof(struct gtp0_header);
1078 break;
1079 case GTP_V1:
1080 mtu -= sizeof(struct gtp1_header);
1081 break;
1082 }
1083 } else {
1084 mtu = dst_mtu(&rt->dst);
1085 }
1086
5b71131b 1087 skb_dst_update_pmtu_no_confirm(skb, mtu);
459aa660 1088
b77732f0 1089 if (frag_off & htons(IP_DF) &&
4530e5b8
PNA
1090 ((!skb_is_gso(skb) && skb->len > mtu) ||
1091 (skb_is_gso(skb) && !skb_gso_validate_network_len(skb, mtu)))) {
49ecc587 1092 netdev_dbg(dev, "packet too big, fragmentation needed\n");
e0fce6f9
JD
1093 icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1094 htonl(mtu));
459aa660
PN
1095 goto err_rt;
1096 }
1097
b77732f0 1098 gtp_set_pktinfo_ipv4(pktinfo, pctx->sk, tos, pctx, rt, &fl4, dev);
49ecc587 1099 gtp_push_header(skb, pktinfo);
459aa660
PN
1100
1101 return 0;
1102err_rt:
1103 ip_rt_put(rt);
1104err:
1105 return -EBADMSG;
1106}
1107
045a7c15
PNA
1108static int gtp_build_skb_outer_ip6(struct net *net, struct sk_buff *skb,
1109 struct net_device *dev,
1110 struct gtp_pktinfo *pktinfo,
1111 struct pdp_ctx *pctx, __u8 tos)
1112{
1113 struct dst_entry *dst;
1114 struct rt6_info *rt;
1115 struct flowi6 fl6;
1116 int mtu;
1117
1118 rt = ip6_route_output_gtp(net, &fl6, pctx->sk, &pctx->peer.addr6,
1119 &inet6_sk(pctx->sk)->saddr);
1120 if (IS_ERR(rt)) {
1121 netdev_dbg(dev, "no route to SSGN %pI6\n",
1122 &pctx->peer.addr6);
1123 dev->stats.tx_carrier_errors++;
1124 goto err;
1125 }
1126 dst = &rt->dst;
1127
1128 if (rt->dst.dev == dev) {
1129 netdev_dbg(dev, "circular route to SSGN %pI6\n",
1130 &pctx->peer.addr6);
1131 dev->stats.collisions++;
1132 goto err_rt;
1133 }
1134
1135 mtu = dst_mtu(&rt->dst) - dev->hard_header_len -
1136 sizeof(struct ipv6hdr) - sizeof(struct udphdr);
1137 switch (pctx->gtp_version) {
1138 case GTP_V0:
1139 mtu -= sizeof(struct gtp0_header);
1140 break;
1141 case GTP_V1:
1142 mtu -= sizeof(struct gtp1_header);
1143 break;
1144 }
1145
1146 skb_dst_update_pmtu_no_confirm(skb, mtu);
1147
1148 if ((!skb_is_gso(skb) && skb->len > mtu) ||
1149 (skb_is_gso(skb) && !skb_gso_validate_network_len(skb, mtu))) {
1150 netdev_dbg(dev, "packet too big, fragmentation needed\n");
1151 icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1152 goto err_rt;
1153 }
1154
1155 gtp_set_pktinfo_ipv6(pktinfo, pctx->sk, tos, pctx, rt, &fl6, dev);
1156 gtp_push_header(skb, pktinfo);
1157
1158 return 0;
1159err_rt:
1160 dst_release(dst);
1161err:
1162 return -EBADMSG;
1163}
1164
b77732f0
PNA
1165static int gtp_build_skb_ip4(struct sk_buff *skb, struct net_device *dev,
1166 struct gtp_pktinfo *pktinfo)
1167{
1168 struct gtp_dev *gtp = netdev_priv(dev);
e30ea48b 1169 struct net *net = gtp->net;
b77732f0
PNA
1170 struct pdp_ctx *pctx;
1171 struct iphdr *iph;
1172 int ret;
1173
1174 /* Read the IP destination address and resolve the PDP context.
1175 * Prepend PDP header with TEI/TID from PDP ctx.
1176 */
1177 iph = ip_hdr(skb);
1178 if (gtp->role == GTP_ROLE_SGSN)
1179 pctx = ipv4_pdp_find(gtp, iph->saddr);
1180 else
1181 pctx = ipv4_pdp_find(gtp, iph->daddr);
1182
1183 if (!pctx) {
1184 netdev_dbg(dev, "no PDP ctx found for %pI4, skip\n",
1185 &iph->daddr);
1186 return -ENOENT;
1187 }
1188 netdev_dbg(dev, "found PDP context %p\n", pctx);
1189
e30ea48b
PNA
1190 switch (pctx->sk->sk_family) {
1191 case AF_INET:
1192 ret = gtp_build_skb_outer_ip4(skb, dev, pktinfo, pctx,
1193 iph->tos, iph->frag_off);
1194 break;
1195 case AF_INET6:
1196 ret = gtp_build_skb_outer_ip6(net, skb, dev, pktinfo, pctx,
1197 iph->tos);
1198 break;
1199 default:
1200 ret = -1;
1201 WARN_ON_ONCE(1);
1202 break;
1203 }
1204
b77732f0
PNA
1205 if (ret < 0)
1206 return ret;
1207
1208 netdev_dbg(dev, "gtp -> IP src: %pI4 dst: %pI4\n",
1209 &iph->saddr, &iph->daddr);
1210
1211 return 0;
1212}
1213
999cb275
PNA
1214static int gtp_build_skb_ip6(struct sk_buff *skb, struct net_device *dev,
1215 struct gtp_pktinfo *pktinfo)
1216{
1217 struct gtp_dev *gtp = netdev_priv(dev);
1218 struct net *net = gtp->net;
999cb275
PNA
1219 struct pdp_ctx *pctx;
1220 struct ipv6hdr *ip6h;
559101a7 1221 __u8 tos;
045a7c15 1222 int ret;
999cb275
PNA
1223
1224 /* Read the IP destination address and resolve the PDP context.
1225 * Prepend PDP header with TEI/TID from PDP ctx.
1226 */
1227 ip6h = ipv6_hdr(skb);
1228 if (gtp->role == GTP_ROLE_SGSN)
1229 pctx = ipv6_pdp_find(gtp, &ip6h->saddr);
1230 else
1231 pctx = ipv6_pdp_find(gtp, &ip6h->daddr);
1232
1233 if (!pctx) {
1234 netdev_dbg(dev, "no PDP ctx found for %pI6, skip\n",
1235 &ip6h->daddr);
1236 return -ENOENT;
1237 }
1238 netdev_dbg(dev, "found PDP context %p\n", pctx);
1239
559101a7 1240 tos = ipv6_get_dsfield(ip6h);
045a7c15 1241
e30ea48b
PNA
1242 switch (pctx->sk->sk_family) {
1243 case AF_INET:
1244 ret = gtp_build_skb_outer_ip4(skb, dev, pktinfo, pctx, tos, 0);
1245 break;
1246 case AF_INET6:
1247 ret = gtp_build_skb_outer_ip6(net, skb, dev, pktinfo, pctx, tos);
1248 break;
1249 default:
1250 ret = -1;
1251 WARN_ON_ONCE(1);
1252 break;
1253 }
1254
045a7c15
PNA
1255 if (ret < 0)
1256 return ret;
999cb275 1257
e0758804
PNA
1258 netdev_dbg(dev, "gtp -> IP src: %pI6 dst: %pI6\n",
1259 &ip6h->saddr, &ip6h->daddr);
1260
999cb275 1261 return 0;
999cb275
PNA
1262}
1263
459aa660
PN
1264static netdev_tx_t gtp_dev_xmit(struct sk_buff *skb, struct net_device *dev)
1265{
49ecc587 1266 unsigned int proto = ntohs(skb->protocol);
459aa660
PN
1267 struct gtp_pktinfo pktinfo;
1268 int err;
1269
1270 /* Ensure there is sufficient headroom. */
1271 if (skb_cow_head(skb, dev->needed_headroom))
1272 goto tx_err;
1273
3a3be7ff
ED
1274 if (!pskb_inet_may_pull(skb))
1275 goto tx_err;
1276
459aa660
PN
1277 skb_reset_inner_headers(skb);
1278
1279 /* PDP context lookups in gtp_build_skb_*() need rcu read-side lock. */
1280 rcu_read_lock();
49ecc587
JB
1281 switch (proto) {
1282 case ETH_P_IP:
1283 err = gtp_build_skb_ip4(skb, dev, &pktinfo);
1284 break;
999cb275
PNA
1285 case ETH_P_IPV6:
1286 err = gtp_build_skb_ip6(skb, dev, &pktinfo);
1287 break;
49ecc587
JB
1288 default:
1289 err = -EOPNOTSUPP;
1290 break;
1291 }
459aa660
PN
1292 rcu_read_unlock();
1293
1294 if (err < 0)
1295 goto tx_err;
1296
e30ea48b
PNA
1297 switch (pktinfo.pctx->sk->sk_family) {
1298 case AF_INET:
49ecc587
JB
1299 udp_tunnel_xmit_skb(pktinfo.rt, pktinfo.sk, skb,
1300 pktinfo.fl4.saddr, pktinfo.fl4.daddr,
559101a7 1301 pktinfo.tos,
49ecc587
JB
1302 ip4_dst_hoplimit(&pktinfo.rt->dst),
1303 0,
1304 pktinfo.gtph_port, pktinfo.gtph_port,
a9c0df76
JB
1305 !net_eq(sock_net(pktinfo.pctx->sk),
1306 dev_net(dev)),
1307 false);
49ecc587 1308 break;
e30ea48b 1309 case AF_INET6:
999cb275 1310#if IS_ENABLED(CONFIG_IPV6)
999cb275
PNA
1311 udp_tunnel6_xmit_skb(&pktinfo.rt6->dst, pktinfo.sk, skb, dev,
1312 &pktinfo.fl6.saddr, &pktinfo.fl6.daddr,
559101a7 1313 pktinfo.tos,
999cb275
PNA
1314 ip6_dst_hoplimit(&pktinfo.rt->dst),
1315 0,
1316 pktinfo.gtph_port, pktinfo.gtph_port,
1317 false);
1318#else
1319 goto tx_err;
1320#endif
1321 break;
49ecc587 1322 }
459aa660
PN
1323
1324 return NETDEV_TX_OK;
1325tx_err:
1326 dev->stats.tx_errors++;
1327 dev_kfree_skb(skb);
1328 return NETDEV_TX_OK;
1329}
1330
1331static const struct net_device_ops gtp_netdev_ops = {
459aa660
PN
1332 .ndo_uninit = gtp_dev_uninit,
1333 .ndo_start_xmit = gtp_dev_xmit,
459aa660
PN
1334};
1335
29f53b5c
JB
1336static const struct device_type gtp_type = {
1337 .name = "gtp",
1338};
1339
750771d0
PNA
1340#define GTP_TH_MAXLEN (sizeof(struct udphdr) + sizeof(struct gtp0_header))
1341#define GTP_IPV4_MAXLEN (sizeof(struct iphdr) + GTP_TH_MAXLEN)
1342
459aa660
PN
1343static void gtp_link_setup(struct net_device *dev)
1344{
81154bb8 1345 struct gtp_dev *gtp = netdev_priv(dev);
e21eb3a0 1346
459aa660 1347 dev->netdev_ops = &gtp_netdev_ops;
cf124db5 1348 dev->needs_free_netdev = true;
29f53b5c 1349 SET_NETDEV_DEVTYPE(dev, &gtp_type);
459aa660
PN
1350
1351 dev->hard_header_len = 0;
1352 dev->addr_len = 0;
750771d0 1353 dev->mtu = ETH_DATA_LEN - GTP_IPV4_MAXLEN;
459aa660
PN
1354
1355 /* Zero header length. */
1356 dev->type = ARPHRD_NONE;
1357 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1358
660e5aae 1359 dev->pcpu_stat_type = NETDEV_PCPU_STAT_TSTATS;
459aa660 1360 dev->priv_flags |= IFF_NO_QUEUE;
00d066a4 1361 dev->lltx = true;
459aa660
PN
1362 netif_keep_dst(dev);
1363
750771d0 1364 dev->needed_headroom = LL_MAX_HEADER + GTP_IPV4_MAXLEN;
81154bb8 1365 gtp->dev = dev;
459aa660
PN
1366}
1367
1368static int gtp_hashtable_new(struct gtp_dev *gtp, int hsize);
49ecc587 1369static int gtp_encap_enable(struct gtp_dev *gtp, struct nlattr *data[]);
459aa660 1370
94dc550a
TY
1371static void gtp_destructor(struct net_device *dev)
1372{
1373 struct gtp_dev *gtp = netdev_priv(dev);
1374
1375 kfree(gtp->addr_hash);
1376 kfree(gtp->tid_hash);
1377}
1378
999cb275
PNA
1379static int gtp_sock_udp_config(struct udp_port_cfg *udp_conf,
1380 const struct nlattr *nla, int family)
1381{
1382 udp_conf->family = family;
1383
1384 switch (udp_conf->family) {
1385 case AF_INET:
1386 udp_conf->local_ip.s_addr = nla_get_be32(nla);
1387 break;
1388#if IS_ENABLED(CONFIG_IPV6)
1389 case AF_INET6:
1390 udp_conf->local_ip6 = nla_get_in6_addr(nla);
1391 break;
1392#endif
1393 default:
1394 return -EOPNOTSUPP;
1395 }
1396
1397 return 0;
1398}
1399
1400static struct sock *gtp_create_sock(int type, struct gtp_dev *gtp,
1401 const struct nlattr *nla, int family)
b20dc3c6
WD
1402{
1403 struct udp_tunnel_sock_cfg tuncfg = {};
999cb275 1404 struct udp_port_cfg udp_conf = {};
b20dc3c6
WD
1405 struct net *net = gtp->net;
1406 struct socket *sock;
1407 int err;
1408
999cb275
PNA
1409 if (nla) {
1410 err = gtp_sock_udp_config(&udp_conf, nla, family);
1411 if (err < 0)
1412 return ERR_PTR(err);
1413 } else {
1414 udp_conf.local_ip.s_addr = htonl(INADDR_ANY);
1415 udp_conf.family = AF_INET;
1416 }
1417
b20dc3c6
WD
1418 if (type == UDP_ENCAP_GTP0)
1419 udp_conf.local_udp_port = htons(GTP0_PORT);
1420 else if (type == UDP_ENCAP_GTP1U)
1421 udp_conf.local_udp_port = htons(GTP1U_PORT);
1422 else
1423 return ERR_PTR(-EINVAL);
1424
1425 err = udp_sock_create(net, &udp_conf, &sock);
1426 if (err)
1427 return ERR_PTR(err);
1428
1429 tuncfg.sk_user_data = gtp;
1430 tuncfg.encap_type = type;
1431 tuncfg.encap_rcv = gtp_encap_recv;
1432 tuncfg.encap_destroy = NULL;
1433
1434 setup_udp_tunnel_sock(net, sock, &tuncfg);
1435
1436 return sock->sk;
1437}
1438
999cb275
PNA
1439static int gtp_create_sockets(struct gtp_dev *gtp, const struct nlattr *nla,
1440 int family)
b20dc3c6 1441{
353f5ffb
PNA
1442 struct sock *sk1u;
1443 struct sock *sk0;
b20dc3c6 1444
999cb275 1445 sk0 = gtp_create_sock(UDP_ENCAP_GTP0, gtp, nla, family);
b20dc3c6
WD
1446 if (IS_ERR(sk0))
1447 return PTR_ERR(sk0);
1448
999cb275 1449 sk1u = gtp_create_sock(UDP_ENCAP_GTP1U, gtp, nla, family);
b20dc3c6
WD
1450 if (IS_ERR(sk1u)) {
1451 udp_tunnel_sock_release(sk0->sk_socket);
1452 return PTR_ERR(sk1u);
1453 }
1454
1455 gtp->sk_created = true;
1456 gtp->sk0 = sk0;
1457 gtp->sk1u = sk1u;
1458
1459 return 0;
1460}
1461
999cb275
PNA
1462#define GTP_TH_MAXLEN (sizeof(struct udphdr) + sizeof(struct gtp0_header))
1463#define GTP_IPV6_MAXLEN (sizeof(struct ipv6hdr) + GTP_TH_MAXLEN)
1464
459aa660 1465static int gtp_newlink(struct net *src_net, struct net_device *dev,
7a3f4a18
MS
1466 struct nlattr *tb[], struct nlattr *data[],
1467 struct netlink_ext_ack *extack)
459aa660 1468{
b20dc3c6 1469 unsigned int role = GTP_ROLE_GGSN;
459aa660
PN
1470 struct gtp_dev *gtp;
1471 struct gtp_net *gn;
1e3a3abd 1472 int hashsize, err;
459aa660 1473
999cb275
PNA
1474#if !IS_ENABLED(CONFIG_IPV6)
1475 if (data[IFLA_GTP_LOCAL6])
1476 return -EAFNOSUPPORT;
1477#endif
1478
459aa660
PN
1479 gtp = netdev_priv(dev);
1480
6a902c0f 1481 if (!data[IFLA_GTP_PDP_HASHSIZE]) {
459aa660 1482 hashsize = 1024;
6a902c0f 1483 } else {
459aa660 1484 hashsize = nla_get_u32(data[IFLA_GTP_PDP_HASHSIZE]);
6a902c0f
TY
1485 if (!hashsize)
1486 hashsize = 1024;
1487 }
459aa660 1488
b20dc3c6
WD
1489 if (data[IFLA_GTP_ROLE]) {
1490 role = nla_get_u32(data[IFLA_GTP_ROLE]);
1491 if (role > GTP_ROLE_SGSN)
1492 return -EINVAL;
1493 }
1494 gtp->role = role;
1495
a885a6b2
JB
1496 gtp->restart_count = nla_get_u8_default(data[IFLA_GTP_RESTART_COUNT],
1497 0);
9af41cc3 1498
b20dc3c6
WD
1499 gtp->net = src_net;
1500
459aa660
PN
1501 err = gtp_hashtable_new(gtp, hashsize);
1502 if (err < 0)
51467431
MF
1503 return err;
1504
999cb275
PNA
1505 if (data[IFLA_GTP_CREATE_SOCKETS]) {
1506 if (data[IFLA_GTP_LOCAL6])
1507 err = gtp_create_sockets(gtp, data[IFLA_GTP_LOCAL6], AF_INET6);
1508 else
1509 err = gtp_create_sockets(gtp, data[IFLA_GTP_LOCAL], AF_INET);
1510 } else {
b20dc3c6 1511 err = gtp_encap_enable(gtp, data);
999cb275
PNA
1512 }
1513
51467431
MF
1514 if (err < 0)
1515 goto out_hashtable;
459aa660 1516
999cb275
PNA
1517 if ((gtp->sk0 && gtp->sk0->sk_family == AF_INET6) ||
1518 (gtp->sk1u && gtp->sk1u->sk_family == AF_INET6)) {
1519 dev->mtu = ETH_DATA_LEN - GTP_IPV6_MAXLEN;
1520 dev->needed_headroom = LL_MAX_HEADER + GTP_IPV6_MAXLEN;
1521 }
1522
459aa660
PN
1523 err = register_netdevice(dev);
1524 if (err < 0) {
1525 netdev_dbg(dev, "failed to register new netdev %d\n", err);
51467431 1526 goto out_encap;
459aa660
PN
1527 }
1528
eb28fd76 1529 gn = net_generic(src_net, gtp_net_id);
46841c70 1530 list_add(&gtp->list, &gn->gtp_dev_list);
94dc550a 1531 dev->priv_destructor = gtp_destructor;
459aa660 1532
49ecc587 1533 netdev_dbg(dev, "registered new GTP interface\n");
459aa660
PN
1534
1535 return 0;
1536
51467431
MF
1537out_encap:
1538 gtp_encap_disable(gtp);
459aa660 1539out_hashtable:
94dc550a
TY
1540 kfree(gtp->addr_hash);
1541 kfree(gtp->tid_hash);
459aa660
PN
1542 return err;
1543}
1544
1545static void gtp_dellink(struct net_device *dev, struct list_head *head)
1546{
1547 struct gtp_dev *gtp = netdev_priv(dev);
f2a90410 1548 struct hlist_node *next;
94dc550a
TY
1549 struct pdp_ctx *pctx;
1550 int i;
1551
1552 for (i = 0; i < gtp->hash_size; i++)
f2a90410 1553 hlist_for_each_entry_safe(pctx, next, &gtp->tid_hash[i], hlist_tid)
94dc550a 1554 pdp_context_delete(pctx);
459aa660 1555
46841c70 1556 list_del(&gtp->list);
459aa660
PN
1557 unregister_netdevice_queue(dev, head);
1558}
1559
1560static const struct nla_policy gtp_policy[IFLA_GTP_MAX + 1] = {
1561 [IFLA_GTP_FD0] = { .type = NLA_U32 },
1562 [IFLA_GTP_FD1] = { .type = NLA_U32 },
1563 [IFLA_GTP_PDP_HASHSIZE] = { .type = NLA_U32 },
91ed81f9 1564 [IFLA_GTP_ROLE] = { .type = NLA_U32 },
b20dc3c6 1565 [IFLA_GTP_CREATE_SOCKETS] = { .type = NLA_U8 },
9af41cc3 1566 [IFLA_GTP_RESTART_COUNT] = { .type = NLA_U8 },
999cb275
PNA
1567 [IFLA_GTP_LOCAL] = { .type = NLA_U32 },
1568 [IFLA_GTP_LOCAL6] = { .len = sizeof(struct in6_addr) },
459aa660
PN
1569};
1570
a8b8a889
MS
1571static int gtp_validate(struct nlattr *tb[], struct nlattr *data[],
1572 struct netlink_ext_ack *extack)
459aa660
PN
1573{
1574 if (!data)
1575 return -EINVAL;
1576
1577 return 0;
1578}
1579
1580static size_t gtp_get_size(const struct net_device *dev)
1581{
e1b2914e 1582 return nla_total_size(sizeof(__u32)) + /* IFLA_GTP_PDP_HASHSIZE */
9af41cc3
WD
1583 nla_total_size(sizeof(__u32)) + /* IFLA_GTP_ROLE */
1584 nla_total_size(sizeof(__u8)); /* IFLA_GTP_RESTART_COUNT */
459aa660
PN
1585}
1586
1587static int gtp_fill_info(struct sk_buff *skb, const struct net_device *dev)
1588{
1589 struct gtp_dev *gtp = netdev_priv(dev);
1590
1591 if (nla_put_u32(skb, IFLA_GTP_PDP_HASHSIZE, gtp->hash_size))
1592 goto nla_put_failure;
e1b2914e
JB
1593 if (nla_put_u32(skb, IFLA_GTP_ROLE, gtp->role))
1594 goto nla_put_failure;
9af41cc3
WD
1595 if (nla_put_u8(skb, IFLA_GTP_RESTART_COUNT, gtp->restart_count))
1596 goto nla_put_failure;
459aa660
PN
1597
1598 return 0;
1599
1600nla_put_failure:
1601 return -EMSGSIZE;
1602}
1603
1604static struct rtnl_link_ops gtp_link_ops __read_mostly = {
1605 .kind = "gtp",
1606 .maxtype = IFLA_GTP_MAX,
1607 .policy = gtp_policy,
1608 .priv_size = sizeof(struct gtp_dev),
1609 .setup = gtp_link_setup,
1610 .validate = gtp_validate,
1611 .newlink = gtp_newlink,
1612 .dellink = gtp_dellink,
1613 .get_size = gtp_get_size,
1614 .fill_info = gtp_fill_info,
1615};
1616
459aa660
PN
1617static int gtp_hashtable_new(struct gtp_dev *gtp, int hsize)
1618{
1619 int i;
1620
6da2ec56 1621 gtp->addr_hash = kmalloc_array(hsize, sizeof(struct hlist_head),
bd5cd35b 1622 GFP_KERNEL | __GFP_NOWARN);
459aa660
PN
1623 if (gtp->addr_hash == NULL)
1624 return -ENOMEM;
1625
6da2ec56 1626 gtp->tid_hash = kmalloc_array(hsize, sizeof(struct hlist_head),
bd5cd35b 1627 GFP_KERNEL | __GFP_NOWARN);
459aa660
PN
1628 if (gtp->tid_hash == NULL)
1629 goto err1;
1630
1631 gtp->hash_size = hsize;
1632
1633 for (i = 0; i < hsize; i++) {
1634 INIT_HLIST_HEAD(&gtp->addr_hash[i]);
1635 INIT_HLIST_HEAD(&gtp->tid_hash[i]);
1636 }
1637 return 0;
1638err1:
1639 kfree(gtp->addr_hash);
1640 return -ENOMEM;
1641}
1642
49ecc587
JB
1643static struct sock *gtp_encap_enable_socket(int fd, int type,
1644 struct gtp_dev *gtp)
459aa660
PN
1645{
1646 struct udp_tunnel_sock_cfg tuncfg = {NULL};
49ecc587 1647 struct socket *sock;
1e3a3abd 1648 struct sock *sk;
49ecc587
JB
1649 int err;
1650
1651 pr_debug("enable gtp on %d, %d\n", fd, type);
1652
1653 sock = sockfd_lookup(fd, &err);
1654 if (!sock) {
1655 pr_debug("gtp socket fd=%d not found\n", fd);
defd8b3c 1656 return ERR_PTR(err);
49ecc587 1657 }
459aa660 1658
940ba149
ED
1659 sk = sock->sk;
1660 if (sk->sk_protocol != IPPROTO_UDP ||
1661 sk->sk_type != SOCK_DGRAM ||
1662 (sk->sk_family != AF_INET && sk->sk_family != AF_INET6)) {
49ecc587
JB
1663 pr_debug("socket fd=%d not UDP\n", fd);
1664 sk = ERR_PTR(-EINVAL);
1665 goto out_sock;
459aa660
PN
1666 }
1667
999cb275
PNA
1668 if (sk->sk_family == AF_INET6 &&
1669 !sk->sk_ipv6only) {
1670 sk = ERR_PTR(-EADDRNOTAVAIL);
1671 goto out_sock;
1672 }
1673
940ba149
ED
1674 lock_sock(sk);
1675 if (sk->sk_user_data) {
49ecc587
JB
1676 sk = ERR_PTR(-EBUSY);
1677 goto out_rel_sock;
459aa660
PN
1678 }
1679
1e3a3abd 1680 sock_hold(sk);
459aa660
PN
1681
1682 tuncfg.sk_user_data = gtp;
1e3a3abd 1683 tuncfg.encap_type = type;
459aa660
PN
1684 tuncfg.encap_rcv = gtp_encap_recv;
1685 tuncfg.encap_destroy = gtp_encap_destroy;
1686
1e3a3abd 1687 setup_udp_tunnel_sock(sock_net(sock->sk), sock, &tuncfg);
9ab7e76a 1688
49ecc587
JB
1689out_rel_sock:
1690 release_sock(sock->sk);
1691out_sock:
1e3a3abd 1692 sockfd_put(sock);
49ecc587 1693 return sk;
1e3a3abd 1694}
459aa660 1695
49ecc587 1696static int gtp_encap_enable(struct gtp_dev *gtp, struct nlattr *data[])
1e3a3abd
AS
1697{
1698 struct sock *sk1u = NULL;
1699 struct sock *sk0 = NULL;
b20dc3c6
WD
1700
1701 if (!data[IFLA_GTP_FD0] && !data[IFLA_GTP_FD1])
1702 return -EINVAL;
1e3a3abd
AS
1703
1704 if (data[IFLA_GTP_FD0]) {
7515e37b 1705 int fd0 = nla_get_u32(data[IFLA_GTP_FD0]);
1e3a3abd 1706
7515e37b
PNA
1707 if (fd0 >= 0) {
1708 sk0 = gtp_encap_enable_socket(fd0, UDP_ENCAP_GTP0, gtp);
1709 if (IS_ERR(sk0))
1710 return PTR_ERR(sk0);
1711 }
1e3a3abd
AS
1712 }
1713
1714 if (data[IFLA_GTP_FD1]) {
7515e37b
PNA
1715 int fd1 = nla_get_u32(data[IFLA_GTP_FD1]);
1716
1717 if (fd1 >= 0) {
1718 sk1u = gtp_encap_enable_socket(fd1, UDP_ENCAP_GTP1U, gtp);
1719 if (IS_ERR(sk1u)) {
1720 gtp_encap_disable_sock(sk0);
1721 return PTR_ERR(sk1u);
1722 }
1e3a3abd
AS
1723 }
1724 }
1725
1726 gtp->sk0 = sk0;
1727 gtp->sk1u = sk1u;
1728
999cb275
PNA
1729 if (sk0 && sk1u &&
1730 sk0->sk_family != sk1u->sk_family) {
1731 gtp_encap_disable_sock(sk0);
1732 gtp_encap_disable_sock(sk1u);
1733 return -EINVAL;
1734 }
1735
1e3a3abd 1736 return 0;
459aa660
PN
1737}
1738
3fb94617 1739static struct gtp_dev *gtp_find_dev(struct net *src_net, struct nlattr *nla[])
459aa660 1740{
3fb94617
AS
1741 struct gtp_dev *gtp = NULL;
1742 struct net_device *dev;
1743 struct net *net;
459aa660 1744
3fb94617
AS
1745 /* Examine the link attributes and figure out which network namespace
1746 * we are talking about.
1747 */
1748 if (nla[GTPA_NET_NS_FD])
1749 net = get_net_ns_by_fd(nla_get_u32(nla[GTPA_NET_NS_FD]));
1750 else
1751 net = get_net(src_net);
1752
1753 if (IS_ERR(net))
1754 return NULL;
1755
1756 /* Check if there's an existing gtpX device to configure */
1757 dev = dev_get_by_index_rcu(net, nla_get_u32(nla[GTPA_LINK]));
65d786c2 1758 if (dev && dev->netdev_ops == &gtp_netdev_ops)
3fb94617
AS
1759 gtp = netdev_priv(dev);
1760
1761 put_net(net);
1762 return gtp;
459aa660
PN
1763}
1764
999cb275 1765static void gtp_pdp_fill(struct pdp_ctx *pctx, struct genl_info *info)
459aa660
PN
1766{
1767 pctx->gtp_version = nla_get_u32(info->attrs[GTPA_VERSION]);
459aa660
PN
1768
1769 switch (pctx->gtp_version) {
1770 case GTP_V0:
1771 /* According to TS 09.60, sections 7.5.1 and 7.5.2, the flow
1772 * label needs to be the same for uplink and downlink packets,
1773 * so let's annotate this.
1774 */
1775 pctx->u.v0.tid = nla_get_u64(info->attrs[GTPA_TID]);
1776 pctx->u.v0.flow = nla_get_u16(info->attrs[GTPA_FLOW]);
1777 break;
1778 case GTP_V1:
1779 pctx->u.v1.i_tei = nla_get_u32(info->attrs[GTPA_I_TEI]);
1780 pctx->u.v1.o_tei = nla_get_u32(info->attrs[GTPA_O_TEI]);
1781 break;
1782 default:
1783 break;
1784 }
1785}
1786
e30ea48b
PNA
1787static void ip_pdp_peer_fill(struct pdp_ctx *pctx, struct genl_info *info)
1788{
1789 if (info->attrs[GTPA_PEER_ADDRESS]) {
1790 pctx->peer.addr.s_addr =
1791 nla_get_be32(info->attrs[GTPA_PEER_ADDRESS]);
1792 } else if (info->attrs[GTPA_PEER_ADDR6]) {
1793 pctx->peer.addr6 = nla_get_in6_addr(info->attrs[GTPA_PEER_ADDR6]);
1794 }
1795}
1796
999cb275
PNA
1797static void ipv4_pdp_fill(struct pdp_ctx *pctx, struct genl_info *info)
1798{
e30ea48b 1799 ip_pdp_peer_fill(pctx, info);
999cb275
PNA
1800 pctx->ms.addr.s_addr =
1801 nla_get_be32(info->attrs[GTPA_MS_ADDRESS]);
1802 gtp_pdp_fill(pctx, info);
1803}
1804
c6461ec9 1805static bool ipv6_pdp_fill(struct pdp_ctx *pctx, struct genl_info *info)
999cb275 1806{
e30ea48b 1807 ip_pdp_peer_fill(pctx, info);
999cb275 1808 pctx->ms.addr6 = nla_get_in6_addr(info->attrs[GTPA_MS_ADDR6]);
c6461ec9
PNA
1809 if (pctx->ms.addr6.s6_addr32[2] ||
1810 pctx->ms.addr6.s6_addr32[3])
1811 return false;
1812
999cb275 1813 gtp_pdp_fill(pctx, info);
c6461ec9
PNA
1814
1815 return true;
999cb275
PNA
1816}
1817
50aba46c
ND
1818static struct pdp_ctx *gtp_pdp_add(struct gtp_dev *gtp, struct sock *sk,
1819 struct genl_info *info)
459aa660 1820{
6b01b1d9 1821 struct pdp_ctx *pctx, *pctx_tid = NULL;
3fb94617 1822 struct net_device *dev = gtp->dev;
459aa660 1823 u32 hash_ms, hash_tid = 0;
999cb275 1824 struct in6_addr ms_addr6;
6b01b1d9 1825 unsigned int version;
459aa660
PN
1826 bool found = false;
1827 __be32 ms_addr;
999cb275 1828 int family;
459aa660 1829
6b01b1d9 1830 version = nla_get_u32(info->attrs[GTPA_VERSION]);
459aa660 1831
a885a6b2 1832 family = nla_get_u8_default(info->attrs[GTPA_FAMILY], AF_INET);
999cb275
PNA
1833
1834#if !IS_ENABLED(CONFIG_IPV6)
1835 if (family == AF_INET6)
1836 return ERR_PTR(-EAFNOSUPPORT);
1837#endif
e30ea48b
PNA
1838 if (!info->attrs[GTPA_PEER_ADDRESS] &&
1839 !info->attrs[GTPA_PEER_ADDR6])
1840 return ERR_PTR(-EINVAL);
999cb275
PNA
1841
1842 if ((info->attrs[GTPA_PEER_ADDRESS] &&
1843 sk->sk_family == AF_INET6) ||
1844 (info->attrs[GTPA_PEER_ADDR6] &&
1845 sk->sk_family == AF_INET))
1846 return ERR_PTR(-EAFNOSUPPORT);
1847
1848 switch (family) {
1849 case AF_INET:
1850 if (!info->attrs[GTPA_MS_ADDRESS] ||
e30ea48b 1851 info->attrs[GTPA_MS_ADDR6])
999cb275
PNA
1852 return ERR_PTR(-EINVAL);
1853
1854 ms_addr = nla_get_be32(info->attrs[GTPA_MS_ADDRESS]);
1855 hash_ms = ipv4_hashfn(ms_addr) % gtp->hash_size;
1856 pctx = ipv4_pdp_find(gtp, ms_addr);
1857 break;
1858 case AF_INET6:
1859 if (!info->attrs[GTPA_MS_ADDR6] ||
e30ea48b 1860 info->attrs[GTPA_MS_ADDRESS])
999cb275
PNA
1861 return ERR_PTR(-EINVAL);
1862
1863 ms_addr6 = nla_get_in6_addr(info->attrs[GTPA_MS_ADDR6]);
1864 hash_ms = ipv6_hashfn(&ms_addr6) % gtp->hash_size;
1865 pctx = ipv6_pdp_find(gtp, &ms_addr6);
1866 break;
1867 default:
1868 return ERR_PTR(-EAFNOSUPPORT);
1869 }
6b01b1d9
TY
1870 if (pctx)
1871 found = true;
1872 if (version == GTP_V0)
1873 pctx_tid = gtp0_pdp_find(gtp,
c75fc0b9
PNA
1874 nla_get_u64(info->attrs[GTPA_TID]),
1875 family);
6b01b1d9
TY
1876 else if (version == GTP_V1)
1877 pctx_tid = gtp1_pdp_find(gtp,
c75fc0b9
PNA
1878 nla_get_u32(info->attrs[GTPA_I_TEI]),
1879 family);
6b01b1d9
TY
1880 if (pctx_tid)
1881 found = true;
459aa660
PN
1882
1883 if (found) {
1884 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
50aba46c 1885 return ERR_PTR(-EEXIST);
459aa660 1886 if (info->nlhdr->nlmsg_flags & NLM_F_REPLACE)
50aba46c 1887 return ERR_PTR(-EOPNOTSUPP);
459aa660 1888
6b01b1d9 1889 if (pctx && pctx_tid)
50aba46c 1890 return ERR_PTR(-EEXIST);
6b01b1d9
TY
1891 if (!pctx)
1892 pctx = pctx_tid;
1893
999cb275
PNA
1894 switch (pctx->af) {
1895 case AF_INET:
1896 ipv4_pdp_fill(pctx, info);
1897 break;
1898 case AF_INET6:
c6461ec9
PNA
1899 if (!ipv6_pdp_fill(pctx, info))
1900 return ERR_PTR(-EADDRNOTAVAIL);
999cb275
PNA
1901 break;
1902 }
459aa660
PN
1903
1904 if (pctx->gtp_version == GTP_V0)
1905 netdev_dbg(dev, "GTPv0-U: update tunnel id = %llx (pdp %p)\n",
1906 pctx->u.v0.tid, pctx);
1907 else if (pctx->gtp_version == GTP_V1)
1908 netdev_dbg(dev, "GTPv1-U: update tunnel id = %x/%x (pdp %p)\n",
1909 pctx->u.v1.i_tei, pctx->u.v1.o_tei, pctx);
1910
50aba46c 1911 return pctx;
459aa660
PN
1912
1913 }
1914
3f167e19 1915 pctx = kmalloc(sizeof(*pctx), GFP_ATOMIC);
459aa660 1916 if (pctx == NULL)
50aba46c 1917 return ERR_PTR(-ENOMEM);
459aa660 1918
101cfbc1
AS
1919 sock_hold(sk);
1920 pctx->sk = sk;
5b171f9c 1921 pctx->dev = gtp->dev;
999cb275
PNA
1922 pctx->af = family;
1923
1924 switch (pctx->af) {
1925 case AF_INET:
e30ea48b 1926 if (!info->attrs[GTPA_MS_ADDRESS]) {
999cb275
PNA
1927 sock_put(sk);
1928 kfree(pctx);
1929 return ERR_PTR(-EINVAL);
1930 }
1931
1932 ipv4_pdp_fill(pctx, info);
1933 break;
1934 case AF_INET6:
e30ea48b 1935 if (!info->attrs[GTPA_MS_ADDR6]) {
999cb275
PNA
1936 sock_put(sk);
1937 kfree(pctx);
1938 return ERR_PTR(-EINVAL);
1939 }
1940
c6461ec9
PNA
1941 if (!ipv6_pdp_fill(pctx, info)) {
1942 sock_put(sk);
1943 kfree(pctx);
1944 return ERR_PTR(-EADDRNOTAVAIL);
1945 }
999cb275
PNA
1946 break;
1947 }
459aa660
PN
1948 atomic_set(&pctx->tx_seq, 0);
1949
1950 switch (pctx->gtp_version) {
1951 case GTP_V0:
1952 /* TS 09.60: "The flow label identifies unambiguously a GTP
1953 * flow.". We use the tid for this instead, I cannot find a
1954 * situation in which this doesn't unambiguosly identify the
1955 * PDP context.
1956 */
1957 hash_tid = gtp0_hashfn(pctx->u.v0.tid) % gtp->hash_size;
1958 break;
1959 case GTP_V1:
1960 hash_tid = gtp1u_hashfn(pctx->u.v1.i_tei) % gtp->hash_size;
1961 break;
1962 }
1963
1964 hlist_add_head_rcu(&pctx->hlist_addr, &gtp->addr_hash[hash_ms]);
1965 hlist_add_head_rcu(&pctx->hlist_tid, &gtp->tid_hash[hash_tid]);
1966
1967 switch (pctx->gtp_version) {
1968 case GTP_V0:
1969 netdev_dbg(dev, "GTPv0-U: new PDP ctx id=%llx ssgn=%pI4 ms=%pI4 (pdp=%p)\n",
750771d0
PNA
1970 pctx->u.v0.tid, &pctx->peer.addr,
1971 &pctx->ms.addr, pctx);
459aa660
PN
1972 break;
1973 case GTP_V1:
1974 netdev_dbg(dev, "GTPv1-U: new PDP ctx id=%x/%x ssgn=%pI4 ms=%pI4 (pdp=%p)\n",
1975 pctx->u.v1.i_tei, pctx->u.v1.o_tei,
750771d0 1976 &pctx->peer.addr, &pctx->ms.addr, pctx);
459aa660
PN
1977 break;
1978 }
1979
50aba46c 1980 return pctx;
459aa660
PN
1981}
1982
101cfbc1
AS
1983static void pdp_context_free(struct rcu_head *head)
1984{
1985 struct pdp_ctx *pctx = container_of(head, struct pdp_ctx, rcu_head);
1986
1987 sock_put(pctx->sk);
1988 kfree(pctx);
1989}
1990
6b5e2e74
AS
1991static void pdp_context_delete(struct pdp_ctx *pctx)
1992{
1993 hlist_del_rcu(&pctx->hlist_tid);
1994 hlist_del_rcu(&pctx->hlist_addr);
101cfbc1 1995 call_rcu(&pctx->rcu_head, pdp_context_free);
6b5e2e74
AS
1996}
1997
151ea46f 1998static int gtp_tunnel_notify(struct pdp_ctx *pctx, u8 cmd, gfp_t allocation);
50aba46c 1999
459aa660
PN
2000static int gtp_genl_new_pdp(struct sk_buff *skb, struct genl_info *info)
2001{
101cfbc1 2002 unsigned int version;
50aba46c 2003 struct pdp_ctx *pctx;
3fb94617 2004 struct gtp_dev *gtp;
101cfbc1 2005 struct sock *sk;
3fb94617 2006 int err;
459aa660
PN
2007
2008 if (!info->attrs[GTPA_VERSION] ||
999cb275 2009 !info->attrs[GTPA_LINK])
459aa660
PN
2010 return -EINVAL;
2011
101cfbc1
AS
2012 version = nla_get_u32(info->attrs[GTPA_VERSION]);
2013
2014 switch (version) {
459aa660
PN
2015 case GTP_V0:
2016 if (!info->attrs[GTPA_TID] ||
2017 !info->attrs[GTPA_FLOW])
2018 return -EINVAL;
2019 break;
2020 case GTP_V1:
2021 if (!info->attrs[GTPA_I_TEI] ||
2022 !info->attrs[GTPA_O_TEI])
2023 return -EINVAL;
2024 break;
2025
2026 default:
2027 return -EINVAL;
2028 }
2029
1788b856 2030 rtnl_lock();
459aa660 2031
3fb94617
AS
2032 gtp = gtp_find_dev(sock_net(skb->sk), info->attrs);
2033 if (!gtp) {
2034 err = -ENODEV;
2035 goto out_unlock;
27ee441a 2036 }
459aa660 2037
101cfbc1
AS
2038 if (version == GTP_V0)
2039 sk = gtp->sk0;
2040 else if (version == GTP_V1)
2041 sk = gtp->sk1u;
2042 else
2043 sk = NULL;
2044
2045 if (!sk) {
2046 err = -ENODEV;
2047 goto out_unlock;
2048 }
2049
50aba46c
ND
2050 pctx = gtp_pdp_add(gtp, sk, info);
2051 if (IS_ERR(pctx)) {
2052 err = PTR_ERR(pctx);
2053 } else {
151ea46f 2054 gtp_tunnel_notify(pctx, GTP_CMD_NEWPDP, GFP_KERNEL);
50aba46c
ND
2055 err = 0;
2056 }
3fb94617
AS
2057
2058out_unlock:
1788b856 2059 rtnl_unlock();
3fb94617 2060 return err;
459aa660
PN
2061}
2062
d9e2dd12
AS
2063static struct pdp_ctx *gtp_find_pdp_by_link(struct net *net,
2064 struct nlattr *nla[])
459aa660 2065{
459aa660 2066 struct gtp_dev *gtp;
c75fc0b9
PNA
2067 int family;
2068
a885a6b2 2069 family = nla_get_u8_default(nla[GTPA_FAMILY], AF_INET);
459aa660 2070
d9e2dd12
AS
2071 gtp = gtp_find_dev(net, nla);
2072 if (!gtp)
2073 return ERR_PTR(-ENODEV);
459aa660 2074
d9e2dd12
AS
2075 if (nla[GTPA_MS_ADDRESS]) {
2076 __be32 ip = nla_get_be32(nla[GTPA_MS_ADDRESS]);
459aa660 2077
c75fc0b9
PNA
2078 if (family != AF_INET)
2079 return ERR_PTR(-EINVAL);
2080
d9e2dd12 2081 return ipv4_pdp_find(gtp, ip);
999cb275
PNA
2082 } else if (nla[GTPA_MS_ADDR6]) {
2083 struct in6_addr addr = nla_get_in6_addr(nla[GTPA_MS_ADDR6]);
2084
c75fc0b9
PNA
2085 if (family != AF_INET6)
2086 return ERR_PTR(-EINVAL);
2087
c6461ec9
PNA
2088 if (addr.s6_addr32[2] ||
2089 addr.s6_addr32[3])
2090 return ERR_PTR(-EADDRNOTAVAIL);
2091
999cb275 2092 return ipv6_pdp_find(gtp, &addr);
d9e2dd12
AS
2093 } else if (nla[GTPA_VERSION]) {
2094 u32 gtp_version = nla_get_u32(nla[GTPA_VERSION]);
2095
c75fc0b9
PNA
2096 if (gtp_version == GTP_V0 && nla[GTPA_TID]) {
2097 return gtp0_pdp_find(gtp, nla_get_u64(nla[GTPA_TID]),
2098 family);
2099 } else if (gtp_version == GTP_V1 && nla[GTPA_I_TEI]) {
2100 return gtp1_pdp_find(gtp, nla_get_u32(nla[GTPA_I_TEI]),
2101 family);
2102 }
27ee441a 2103 }
459aa660 2104
d9e2dd12
AS
2105 return ERR_PTR(-EINVAL);
2106}
459aa660 2107
d9e2dd12
AS
2108static struct pdp_ctx *gtp_find_pdp(struct net *net, struct nlattr *nla[])
2109{
2110 struct pdp_ctx *pctx;
459aa660 2111
d9e2dd12
AS
2112 if (nla[GTPA_LINK])
2113 pctx = gtp_find_pdp_by_link(net, nla);
2114 else
2115 pctx = ERR_PTR(-EINVAL);
2116
2117 if (!pctx)
2118 pctx = ERR_PTR(-ENOENT);
2119
2120 return pctx;
2121}
2122
2123static int gtp_genl_del_pdp(struct sk_buff *skb, struct genl_info *info)
2124{
2125 struct pdp_ctx *pctx;
2126 int err = 0;
2127
2128 if (!info->attrs[GTPA_VERSION])
2129 return -EINVAL;
2130
2131 rcu_read_lock();
2132
2133 pctx = gtp_find_pdp(sock_net(skb->sk), info->attrs);
2134 if (IS_ERR(pctx)) {
2135 err = PTR_ERR(pctx);
3fb94617
AS
2136 goto out_unlock;
2137 }
459aa660
PN
2138
2139 if (pctx->gtp_version == GTP_V0)
d9e2dd12 2140 netdev_dbg(pctx->dev, "GTPv0-U: deleting tunnel id = %llx (pdp %p)\n",
459aa660
PN
2141 pctx->u.v0.tid, pctx);
2142 else if (pctx->gtp_version == GTP_V1)
d9e2dd12 2143 netdev_dbg(pctx->dev, "GTPv1-U: deleting tunnel id = %x/%x (pdp %p)\n",
459aa660
PN
2144 pctx->u.v1.i_tei, pctx->u.v1.o_tei, pctx);
2145
151ea46f 2146 gtp_tunnel_notify(pctx, GTP_CMD_DELPDP, GFP_ATOMIC);
6b5e2e74 2147 pdp_context_delete(pctx);
459aa660 2148
3fb94617
AS
2149out_unlock:
2150 rcu_read_unlock();
2151 return err;
459aa660
PN
2152}
2153
459aa660 2154static int gtp_genl_fill_info(struct sk_buff *skb, u32 snd_portid, u32 snd_seq,
846c68f7 2155 int flags, u32 type, struct pdp_ctx *pctx)
459aa660
PN
2156{
2157 void *genlh;
2158
846c68f7 2159 genlh = genlmsg_put(skb, snd_portid, snd_seq, &gtp_genl_family, flags,
459aa660
PN
2160 type);
2161 if (genlh == NULL)
2162 goto nlmsg_failure;
2163
2164 if (nla_put_u32(skb, GTPA_VERSION, pctx->gtp_version) ||
b274e47d 2165 nla_put_u32(skb, GTPA_LINK, pctx->dev->ifindex) ||
999cb275 2166 nla_put_u8(skb, GTPA_FAMILY, pctx->af))
459aa660
PN
2167 goto nla_put_failure;
2168
999cb275
PNA
2169 switch (pctx->af) {
2170 case AF_INET:
e30ea48b
PNA
2171 if (nla_put_be32(skb, GTPA_MS_ADDRESS, pctx->ms.addr.s_addr))
2172 goto nla_put_failure;
2173 break;
2174 case AF_INET6:
2175 if (nla_put_in6_addr(skb, GTPA_MS_ADDR6, &pctx->ms.addr6))
2176 goto nla_put_failure;
2177 break;
2178 }
2179
2180 switch (pctx->sk->sk_family) {
2181 case AF_INET:
2182 if (nla_put_be32(skb, GTPA_PEER_ADDRESS, pctx->peer.addr.s_addr))
999cb275
PNA
2183 goto nla_put_failure;
2184 break;
2185 case AF_INET6:
e30ea48b 2186 if (nla_put_in6_addr(skb, GTPA_PEER_ADDR6, &pctx->peer.addr6))
999cb275
PNA
2187 goto nla_put_failure;
2188 break;
2189 }
2190
459aa660
PN
2191 switch (pctx->gtp_version) {
2192 case GTP_V0:
2193 if (nla_put_u64_64bit(skb, GTPA_TID, pctx->u.v0.tid, GTPA_PAD) ||
2194 nla_put_u16(skb, GTPA_FLOW, pctx->u.v0.flow))
2195 goto nla_put_failure;
2196 break;
2197 case GTP_V1:
2198 if (nla_put_u32(skb, GTPA_I_TEI, pctx->u.v1.i_tei) ||
2199 nla_put_u32(skb, GTPA_O_TEI, pctx->u.v1.o_tei))
2200 goto nla_put_failure;
2201 break;
2202 }
2203 genlmsg_end(skb, genlh);
2204 return 0;
2205
2206nlmsg_failure:
2207nla_put_failure:
2208 genlmsg_cancel(skb, genlh);
2209 return -EMSGSIZE;
2210}
2211
151ea46f 2212static int gtp_tunnel_notify(struct pdp_ctx *pctx, u8 cmd, gfp_t allocation)
50aba46c
ND
2213{
2214 struct sk_buff *msg;
2215 int ret;
2216
151ea46f 2217 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, allocation);
50aba46c
ND
2218 if (!msg)
2219 return -ENOMEM;
2220
2221 ret = gtp_genl_fill_info(msg, 0, 0, 0, cmd, pctx);
2222 if (ret < 0) {
2223 nlmsg_free(msg);
2224 return ret;
2225 }
2226
2227 ret = genlmsg_multicast_netns(&gtp_genl_family, dev_net(pctx->dev), msg,
2228 0, GTP_GENL_MCGRP, GFP_ATOMIC);
2229 return ret;
2230}
2231
459aa660
PN
2232static int gtp_genl_get_pdp(struct sk_buff *skb, struct genl_info *info)
2233{
2234 struct pdp_ctx *pctx = NULL;
459aa660 2235 struct sk_buff *skb2;
459aa660
PN
2236 int err;
2237
d9e2dd12 2238 if (!info->attrs[GTPA_VERSION])
459aa660 2239 return -EINVAL;
459aa660 2240
3fb94617 2241 rcu_read_lock();
459aa660 2242
d9e2dd12
AS
2243 pctx = gtp_find_pdp(sock_net(skb->sk), info->attrs);
2244 if (IS_ERR(pctx)) {
2245 err = PTR_ERR(pctx);
459aa660
PN
2246 goto err_unlock;
2247 }
2248
2249 skb2 = genlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC);
2250 if (skb2 == NULL) {
2251 err = -ENOMEM;
2252 goto err_unlock;
2253 }
2254
846c68f7
YK
2255 err = gtp_genl_fill_info(skb2, NETLINK_CB(skb).portid, info->snd_seq,
2256 0, info->nlhdr->nlmsg_type, pctx);
459aa660
PN
2257 if (err < 0)
2258 goto err_unlock_free;
2259
2260 rcu_read_unlock();
2261 return genlmsg_unicast(genl_info_net(info), skb2, info->snd_portid);
2262
2263err_unlock_free:
2264 kfree_skb(skb2);
2265err_unlock:
2266 rcu_read_unlock();
2267 return err;
2268}
2269
2270static int gtp_genl_dump_pdp(struct sk_buff *skb,
2271 struct netlink_callback *cb)
2272{
2273 struct gtp_dev *last_gtp = (struct gtp_dev *)cb->args[2], *gtp;
94a6d9fb 2274 int i, j, bucket = cb->args[0], skip = cb->args[1];
459aa660 2275 struct net *net = sock_net(skb->sk);
46841c70 2276 struct net_device *dev;
459aa660
PN
2277 struct pdp_ctx *pctx;
2278
2279 if (cb->args[4])
2280 return 0;
2281
94a6d9fb 2282 rcu_read_lock();
46841c70
KI
2283 for_each_netdev_rcu(net, dev) {
2284 if (dev->rtnl_link_ops != &gtp_link_ops)
2285 continue;
2286
2287 gtp = netdev_priv(dev);
2288
459aa660
PN
2289 if (last_gtp && last_gtp != gtp)
2290 continue;
2291 else
2292 last_gtp = NULL;
2293
94a6d9fb
TY
2294 for (i = bucket; i < gtp->hash_size; i++) {
2295 j = 0;
2296 hlist_for_each_entry_rcu(pctx, &gtp->tid_hash[i],
2297 hlist_tid) {
2298 if (j >= skip &&
2299 gtp_genl_fill_info(skb,
2300 NETLINK_CB(cb->skb).portid,
2301 cb->nlh->nlmsg_seq,
846c68f7 2302 NLM_F_MULTI,
94a6d9fb 2303 cb->nlh->nlmsg_type, pctx)) {
459aa660 2304 cb->args[0] = i;
94a6d9fb 2305 cb->args[1] = j;
459aa660
PN
2306 cb->args[2] = (unsigned long)gtp;
2307 goto out;
2308 }
94a6d9fb 2309 j++;
459aa660 2310 }
94a6d9fb 2311 skip = 0;
459aa660 2312 }
94a6d9fb 2313 bucket = 0;
459aa660
PN
2314 }
2315 cb->args[4] = 1;
2316out:
94a6d9fb 2317 rcu_read_unlock();
459aa660
PN
2318 return skb->len;
2319}
2320
d33bd757
WD
2321static int gtp_genl_send_echo_req(struct sk_buff *skb, struct genl_info *info)
2322{
2323 struct sk_buff *skb_to_send;
2324 __be32 src_ip, dst_ip;
2325 unsigned int version;
2326 struct gtp_dev *gtp;
2327 struct flowi4 fl4;
2328 struct rtable *rt;
2329 struct sock *sk;
2330 __be16 port;
2331 int len;
2332
2333 if (!info->attrs[GTPA_VERSION] ||
2334 !info->attrs[GTPA_LINK] ||
2335 !info->attrs[GTPA_PEER_ADDRESS] ||
2336 !info->attrs[GTPA_MS_ADDRESS])
2337 return -EINVAL;
2338
2339 version = nla_get_u32(info->attrs[GTPA_VERSION]);
2340 dst_ip = nla_get_be32(info->attrs[GTPA_PEER_ADDRESS]);
2341 src_ip = nla_get_be32(info->attrs[GTPA_MS_ADDRESS]);
2342
2343 gtp = gtp_find_dev(sock_net(skb->sk), info->attrs);
2344 if (!gtp)
2345 return -ENODEV;
2346
2347 if (!gtp->sk_created)
2348 return -EOPNOTSUPP;
2349 if (!(gtp->dev->flags & IFF_UP))
2350 return -ENETDOWN;
2351
2352 if (version == GTP_V0) {
2353 struct gtp0_header *gtp0_h;
2354
2355 len = LL_RESERVED_SPACE(gtp->dev) + sizeof(struct gtp0_header) +
2356 sizeof(struct iphdr) + sizeof(struct udphdr);
2357
2358 skb_to_send = netdev_alloc_skb_ip_align(gtp->dev, len);
2359 if (!skb_to_send)
2360 return -ENOMEM;
2361
2362 sk = gtp->sk0;
2363 port = htons(GTP0_PORT);
2364
2365 gtp0_h = skb_push(skb_to_send, sizeof(struct gtp0_header));
2366 memset(gtp0_h, 0, sizeof(struct gtp0_header));
2367 gtp0_build_echo_msg(gtp0_h, GTP_ECHO_REQ);
2368 } else if (version == GTP_V1) {
2369 struct gtp1_header_long *gtp1u_h;
2370
2371 len = LL_RESERVED_SPACE(gtp->dev) +
2372 sizeof(struct gtp1_header_long) +
2373 sizeof(struct iphdr) + sizeof(struct udphdr);
2374
2375 skb_to_send = netdev_alloc_skb_ip_align(gtp->dev, len);
2376 if (!skb_to_send)
2377 return -ENOMEM;
2378
2379 sk = gtp->sk1u;
2380 port = htons(GTP1U_PORT);
2381
2382 gtp1u_h = skb_push(skb_to_send,
2383 sizeof(struct gtp1_header_long));
2384 memset(gtp1u_h, 0, sizeof(struct gtp1_header_long));
2385 gtp1u_build_echo_msg(gtp1u_h, GTP_ECHO_REQ);
2386 } else {
2387 return -ENODEV;
2388 }
2389
2390 rt = ip4_route_output_gtp(&fl4, sk, dst_ip, src_ip);
2391 if (IS_ERR(rt)) {
2392 netdev_dbg(gtp->dev, "no route for echo request to %pI4\n",
2393 &dst_ip);
02f39338 2394 kfree_skb(skb_to_send);
d33bd757
WD
2395 return -ENODEV;
2396 }
2397
2398 udp_tunnel_xmit_skb(rt, sk, skb_to_send,
2399 fl4.saddr, fl4.daddr,
2400 fl4.flowi4_tos,
2401 ip4_dst_hoplimit(&rt->dst),
2402 0,
2403 port, port,
2404 !net_eq(sock_net(sk),
2405 dev_net(gtp->dev)),
2406 false);
2407 return 0;
2408}
2409
5761917a 2410static const struct nla_policy gtp_genl_policy[GTPA_MAX + 1] = {
459aa660
PN
2411 [GTPA_LINK] = { .type = NLA_U32, },
2412 [GTPA_VERSION] = { .type = NLA_U32, },
2413 [GTPA_TID] = { .type = NLA_U64, },
ae6336b5 2414 [GTPA_PEER_ADDRESS] = { .type = NLA_U32, },
459aa660
PN
2415 [GTPA_MS_ADDRESS] = { .type = NLA_U32, },
2416 [GTPA_FLOW] = { .type = NLA_U16, },
2417 [GTPA_NET_NS_FD] = { .type = NLA_U32, },
2418 [GTPA_I_TEI] = { .type = NLA_U32, },
2419 [GTPA_O_TEI] = { .type = NLA_U32, },
999cb275
PNA
2420 [GTPA_PEER_ADDR6] = { .len = sizeof(struct in6_addr), },
2421 [GTPA_MS_ADDR6] = { .len = sizeof(struct in6_addr), },
2422 [GTPA_FAMILY] = { .type = NLA_U8, },
459aa660
PN
2423};
2424
66a9b928 2425static const struct genl_small_ops gtp_genl_ops[] = {
459aa660
PN
2426 {
2427 .cmd = GTP_CMD_NEWPDP,
ef6243ac 2428 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
459aa660 2429 .doit = gtp_genl_new_pdp,
459aa660
PN
2430 .flags = GENL_ADMIN_PERM,
2431 },
2432 {
2433 .cmd = GTP_CMD_DELPDP,
ef6243ac 2434 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
459aa660 2435 .doit = gtp_genl_del_pdp,
459aa660
PN
2436 .flags = GENL_ADMIN_PERM,
2437 },
2438 {
2439 .cmd = GTP_CMD_GETPDP,
ef6243ac 2440 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
459aa660
PN
2441 .doit = gtp_genl_get_pdp,
2442 .dumpit = gtp_genl_dump_pdp,
459aa660
PN
2443 .flags = GENL_ADMIN_PERM,
2444 },
d33bd757
WD
2445 {
2446 .cmd = GTP_CMD_ECHOREQ,
2447 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
2448 .doit = gtp_genl_send_echo_req,
2449 .flags = GENL_ADMIN_PERM,
2450 },
459aa660
PN
2451};
2452
56989f6d 2453static struct genl_family gtp_genl_family __ro_after_init = {
489111e5
JB
2454 .name = "gtp",
2455 .version = 0,
2456 .hdrsize = 0,
2457 .maxattr = GTPA_MAX,
3b0f31f2 2458 .policy = gtp_genl_policy,
489111e5
JB
2459 .netnsok = true,
2460 .module = THIS_MODULE,
66a9b928
JK
2461 .small_ops = gtp_genl_ops,
2462 .n_small_ops = ARRAY_SIZE(gtp_genl_ops),
9c5d03d3 2463 .resv_start_op = GTP_CMD_ECHOREQ + 1,
50aba46c
ND
2464 .mcgrps = gtp_genl_mcgrps,
2465 .n_mcgrps = ARRAY_SIZE(gtp_genl_mcgrps),
489111e5
JB
2466};
2467
459aa660
PN
2468static int __net_init gtp_net_init(struct net *net)
2469{
2470 struct gtp_net *gn = net_generic(net, gtp_net_id);
2471
2472 INIT_LIST_HEAD(&gn->gtp_dev_list);
2473 return 0;
2474}
2475
6eedda01
ED
2476static void __net_exit gtp_net_exit_batch_rtnl(struct list_head *net_list,
2477 struct list_head *dev_to_kill)
459aa660 2478{
6eedda01 2479 struct net *net;
459aa660 2480
6eedda01
ED
2481 list_for_each_entry(net, net_list, exit_list) {
2482 struct gtp_net *gn = net_generic(net, gtp_net_id);
46841c70 2483 struct gtp_dev *gtp, *gtp_next;
eb28fd76
KI
2484 struct net_device *dev;
2485
2486 for_each_netdev(net, dev)
2487 if (dev->rtnl_link_ops == &gtp_link_ops)
2488 gtp_dellink(dev, dev_to_kill);
459aa660 2489
46841c70 2490 list_for_each_entry_safe(gtp, gtp_next, &gn->gtp_dev_list, list)
6eedda01
ED
2491 gtp_dellink(gtp->dev, dev_to_kill);
2492 }
459aa660
PN
2493}
2494
2495static struct pernet_operations gtp_net_ops = {
2496 .init = gtp_net_init,
6eedda01 2497 .exit_batch_rtnl = gtp_net_exit_batch_rtnl,
459aa660
PN
2498 .id = &gtp_net_id,
2499 .size = sizeof(struct gtp_net),
2500};
2501
2502static int __init gtp_init(void)
2503{
2504 int err;
2505
2506 get_random_bytes(&gtp_h_initval, sizeof(gtp_h_initval));
2507
616d82c3 2508 err = register_pernet_subsys(&gtp_net_ops);
459aa660
PN
2509 if (err < 0)
2510 goto error_out;
2511
616d82c3 2512 err = rtnl_link_register(&gtp_link_ops);
459aa660 2513 if (err < 0)
616d82c3 2514 goto unreg_pernet_subsys;
459aa660 2515
136cfaca 2516 err = genl_register_family(&gtp_genl_family);
459aa660 2517 if (err < 0)
616d82c3 2518 goto unreg_rtnl_link;
459aa660 2519
49ecc587 2520 pr_info("GTP module loaded (pdp ctx size %zd bytes)\n",
459aa660
PN
2521 sizeof(struct pdp_ctx));
2522 return 0;
2523
459aa660
PN
2524unreg_rtnl_link:
2525 rtnl_link_unregister(&gtp_link_ops);
616d82c3
AO
2526unreg_pernet_subsys:
2527 unregister_pernet_subsys(&gtp_net_ops);
459aa660
PN
2528error_out:
2529 pr_err("error loading GTP module loaded\n");
2530 return err;
2531}
2532late_initcall(gtp_init);
2533
2534static void __exit gtp_fini(void)
2535{
459aa660
PN
2536 genl_unregister_family(&gtp_genl_family);
2537 rtnl_link_unregister(&gtp_link_ops);
a2bed907 2538 unregister_pernet_subsys(&gtp_net_ops);
459aa660
PN
2539
2540 pr_info("GTP module unloaded\n");
2541}
2542module_exit(gtp_fini);
2543
2544MODULE_LICENSE("GPL");
2545MODULE_AUTHOR("Harald Welte <[email protected]>");
2546MODULE_DESCRIPTION("Interface driver for GTP encapsulated traffic");
2547MODULE_ALIAS_RTNL_LINK("gtp");
ab729823 2548MODULE_ALIAS_GENL_FAMILY("gtp");
This page took 1.395236 seconds and 5 git commands to generate.