#udp-packet #satellite #networking #dvb #cli-applications #gse #dvb-s2

bin+lib dvb-gse

DVB-GSE (Digital Video Brodcast Generic Stream Encapsulation)

14 unstable releases (5 breaking)

0.6.1 Apr 8, 2024
0.6.0 Dec 12, 2023
0.5.0 Nov 1, 2023
0.3.2 Jul 19, 2023
0.2.0 Nov 28, 2022

#791 in Science

Download history 27/week @ 2023-12-29 19/week @ 2024-01-05 4/week @ 2024-01-12 1/week @ 2024-01-19 15/week @ 2024-01-26 4/week @ 2024-02-02 61/week @ 2024-02-16 75/week @ 2024-02-23 19/week @ 2024-03-01 17/week @ 2024-03-08 48/week @ 2024-03-15 13/week @ 2024-03-22 9/week @ 2024-03-29 157/week @ 2024-04-05 16/week @ 2024-04-12

217 downloads per month

MIT/Apache

96KB
2K SLoC

dvb-gse

Crates.io Rust

dvg-gse is a Rust implementation of the DVB GSE (Generic Stream Encapsulation) protocol and related protocols.

It is mainly intended to be used as a CLI application that receives BBFRAMEs by UDP or TCP packets from a DVB-S2 receiver (such as Longmynd), obtains IP packets from a continous-mode GSE stream, and sends the IP packets to a TUN device.

The crate can also be used as a library to process GSE Packets and DVB-S2/DVB-S2X BBFRAMES.

Quickstart

Install dvb-gse with cargo:

cargo install dvb-gse

Create a TUN device to receive the IP packets:

sudo ip tuntap add dev tun0 mode tun
sudo ip link set tun0 up

Run dvb-gse:

dvb-gse --listen 0.0.0.0:2000 --tun tun0

It is possible to use the environment variable RUST_LOG=debug or RUST_LOG=trace to see more detailed logging information.

Now send BBFRAMEs to UDP port 2000 (how to do this will depend on the DVB-S2 receiver being used). dvb-gse will obtain the IP packets from the GSE stream and write them into the tun0 interface. These packets can be inspected by running Wireshark or tcpdump in tun0.

Input formats

The CLI application supports the following input formats for the BBFRAMEs. The input format is selected with the --input argument:

UDP fragments (--input UDP or --input "UDP fragments")

This corresponds to BBFRAMEs fragmented into multiple UDP packets (since usually DVB-S2 BBFRAMEs are larger than a 1500 byte MTU). The following rules need to be followed.

  • The payload of each UDP packet can optionally be begin by a header of up to 64 bytes, which is discarded by this application. The header length is set with the --header-length argument. By default, no header is assumed.

  • The beginning of each BBFRAME should happen at the end of a header, or at the beginning of the payload of a UDP packet if there is no header.

  • The BBFRAME padding can either be removed or be present. If possible, it is recommended to remove the BBFRAME padding, in order to reduce the network traffic and to simplify the operation of the defragmenter.

  • BBFRAMEs can be fragmented into multiple UDP packets in any way.

The CLI application tries to recover from dropped UDP packets.

UDP packets with complete BBFRAMES (--input "UDP complete")

This corresponds to BBFRAMEs carried in a single UDP packet (it will typically be a jumbo packet). The following rules need to be followed.

  • The payload of each UDP packet can optionally be begin by a header of up to 64 bytes, which is discarded by this application. The header length is set with the --header-length argument. By default, no header is assumed.

  • Each BBFRAME should be completely contained in a single UDP packet. The BBFRAME should follow the header immediately.

  • There can be padding or any other data following the BBFRAME in the same UDP packet.

UDP packets can be dropped. The CLI application will handle this gracefully.

TCP stream (--input TCP)

This corresponds to receiving BBFRAMEs in a TCP stream. The CLI application acts as server. The following rules need to be followed.

  • Each BBFRAME can optionally be preceded by a header of up to 64 bytes, which is discarded by this application. The header length is set with the --header-length argument. By default, no header is assumed.

  • BBFRAMEs (including their headers, if applicable) need to be present back to back in the TCP stream.

  • BBFRAMEs padding must be removed. The length of the BBFRAMEs in the stream must equal 10 bytes for the BBHEADER plus the value of their DFL dividided by 8.

  • No other data besides the headers and BBFRAMEs can be present in the TCP stream.

If an error occurrs or the client closes the connection, the CLI application will continue listen for new clients.

API documentation

The documentation for dvb-gse Rust crate is hosted in docs.rs.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5–3MB
~62K SLoC