]> git.proxmox.com Git - mirror_ovs.git/commit
userspace: Add GTP-U support.
authorWilliam Tu <u9012063@gmail.com>
Mon, 25 Nov 2019 19:19:23 +0000 (11:19 -0800)
committerWilliam Tu <u9012063@gmail.com>
Thu, 26 Mar 2020 03:26:51 +0000 (20:26 -0700)
commit3c6d05a02e0fd2cde2f988a0e41a19f47c3d6947
tree89708e0fa3d945542cc67740c97d5906a7cd0d25
parentf598f46212d698f091408abd6ff6905a16980169
userspace: Add GTP-U support.

GTP, GPRS Tunneling Protocol, is a group of IP-based communications
protocols used to carry general packet radio service (GPRS) within
GSM, UMTS and LTE networks.  GTP protocol has two parts: Signalling
(GTP-Control, GTP-C) and User data (GTP-User, GTP-U). GTP-C is used
for setting up GTP-U protocol, which is an IP-in-UDP tunneling
protocol. Usually GTP is used in connecting between base station for
radio, Serving Gateway (S-GW), and PDN Gateway (P-GW).

This patch implements GTP-U protocol for userspace datapath,
supporting only required header fields and G-PDU message type.
See spec in:
https://tools.ietf.org/html/draft-hmm-dmm-5g-uplane-analysis-00

Tested-at: https://travis-ci.org/github/williamtu/ovs-travis/builds/666518784
Signed-off-by: Feng Yang <yangfengee04@gmail.com>
Co-authored-by: Feng Yang <yangfengee04@gmail.com>
Signed-off-by: Yi Yang <yangyi01@inspur.com>
Co-authored-by: Yi Yang <yangyi01@inspur.com>
Signed-off-by: William Tu <u9012063@gmail.com>
Acked-by: Ben Pfaff <blp@ovn.org>
30 files changed:
Documentation/faq/configuration.rst
Documentation/faq/releases.rst
NEWS
datapath/linux/compat/include/linux/openvswitch.h
include/openvswitch/flow.h
include/openvswitch/match.h
include/openvswitch/meta-flow.h
include/openvswitch/packets.h
lib/dpif-netlink-rtnl.c
lib/dpif-netlink.c
lib/flow.c
lib/flow.h
lib/match.c
lib/meta-flow.c
lib/meta-flow.xml
lib/netdev-native-tnl.c
lib/netdev-native-tnl.h
lib/netdev-vport.c
lib/nx-match.c
lib/odp-util.c
lib/odp-util.h
lib/ofp-match.c
lib/packets.h
lib/tnl-ports.c
ofproto/ofproto-dpif-rid.h
ofproto/ofproto-dpif-xlate.c
tests/ofproto.at
tests/tunnel-push-pop.at
tests/tunnel.at
vswitchd/vswitch.xml