UPG implements a GTP-U user plane based on 3GPP TS 23.214 and 3GPP TS 29.244 Release 15. It is implemented as an out-of-tree plugin for FD.io VPP.
The possible uses for UPG are:
- User Plane Function (UPF) in 5G networks
- Packet Data Network Gateway User plane (PGW-U)
- Traffic Detection Function User plane (TDF-U)
UPG is used in production in conjunction with erGW as GGSN/PGW in multiple installation in several telecom operators (Tier 1 and smaller).
For the list of known issues, see KNOWN_ISSUES document.
- PFCP protocol
- en/decoding of most IEs
- heartbeat
- node related messages
- session related messages
- Uplink and Downlink Packet Detection Rules (PDR) and Forward Action Rules (FAR) -- (some parts)
- IPv4 -- inner and outer
- IPv6 -- inner and outer
- Usage Reporting Rules (URR)
- PFCP Session Reports
- Linked Usage Reports
- Buffer Action Rules (BAR)
- QoS Enforcement Rule (QER)
- FAR action with destination LI are not implemented
- Ethernet bearer support
Design rationale for the development environment is this:
- provide an easily reproducible development and build environment usable both on CI and locally
- provide quick commands for common tasks
- simplify bisecting against upstream VPP
- discourage downstream VPP changes, as we should make effort to upstream them
Relevant parts of the source tree layout:
hack/contains helper scripts most of which are wrapped inmakecommandsMakefileprovides user interface for the environmentupf/contains the source code of the plugin1upf/test/contains the integration tests1vpp/contains VPP source code and is not committedvpp-patches/contains patches to apply to the upstream VPP code (applied automatically viagit am; generated by hand withgit format-patch)vpp.speccontains the info on VPP repo, branch and commit to use
upg/ is symlinked to the VPP plugins directory, one can just go
to vpp/ directory after make update-vpp and follow
upstream VPP build instructions. But, as an alternative,
UPG does provide some build helpers of its own.
There's a simple dockerized environment wrapped in 'make'
commands. During the development cycle, VPP is cloned into vpp/
subdirectory from an upstream repository with some of the
patches applied. This is done automatically but can
also be done via make update-vpp which will delete all of the
changes made to vpp/ directory. You can make temporary changes under
vpp/ for debugging purposes.
The "build image" which is used for the devenv is tagged with a hash
of Dockerfile.build as well as VPP's external dependencies.
The following make commands are supported:
make image-debugbuilds a debug UPG Docker image namedupg:debugmake image-releasebuilds a release UPG Docker image namedupg:releasemake test-debug,make test-releasebuild VPP and run UPG integration tests in debug and release mode respectively. The compilation results are retained undervpp/make retest-debug,make retest-releaserun UPG integration tests in debug and release mode respectively without building VPP. These can be run undermake test-debug/make test-releaseto re-run the tests quickly if there were no UPG / VPP code changesmake ensure-build-imagechecks if the build image exists or can be pulled and builds it otherwisemake update-build-image-tagupdates the build image tag in the Dockerfiles according to the hash calculated fromDockerfile.buildand VPP external dependenciesmake install-hooksinstalls git hooks in the repo which prevent the user from making commits that containZZZZZ:substring. This is handy for debug print likeclib_warning("ZZZZZ: i %d", i);make update-vppre-clones VPP intovpp/directorymake buildenvruns an interactive shell inside the build environment with UPG and VPP sources mounted into the containermake e2e-debugandmake e2e-releasebuild UPG in debug and release mode respectively and run E2E tests for it. For more information, see E2E test documentationmake checkstyleperforms style checks on the source code
If docker is used, one should set the following environment variable to enable wrapping the internally run commands in a docker container:
export UPG_BUILDENV=docker
It is also possible to use a k8s cluster to run the build container in a pod:
export UPG_BUILDENV=k8s
# optional: specify the node to run the build pod
export UPG_BUILDENV_NODE=somenode
In this case, the buildenv is run as statefulset inside the cluster. It can be removed using
hack/buildenv.sh clean
As an alternative, it’s possible to run commands such as
$ make -C vpp test TEST=test_upf V=2 EXTERN_TESTS=../../upf/testusing VPP’s usual Makefile. upf/ subdirectory is symlinked to
vpp/src/plugins/upf (note though that there's an issue with VPP's
test discovery mechanism, thus EXTERN_TEST=... variable is required
to run the tests).
The CI for UPG-VPP is based on GitHub Actions. Currently, the CI only runs for pushes to branches in the repository itself. The jobs include:
prepare: make sure build image is available for the commitbuild(debug + release): build the docker images and binaries / packagescheckstyle: check for style errors in the codetest: unit and e2e tests for release and debug buildsconclude: intermediate job used for sync by the release workflowslack: internal notification job
The images built per-commit expire within 7 days.
When a tag is pushed, the release workflow is also run for it,
re-tagging the images built as part of normal build process
(preserving the old tags too). In case if the tag doesn't have test
substring in it, it is also published as a release. The release notes
list the PRs with the following tags:
feature,enhancement: featuresfix: fixestest: tests
The releases for tags that contain pre substring are marked as
pre-releases.
1: Historically, the project was named simply "UPF". There may be more UPF->UPG renames later