/* GTP-U ECHO implementation for osmo-upf */ #include #include #include #include #include #include #include #define GTP1U_PORT 2152 enum gtp1u_msgt { GTP1U_MSGTYPE_ECHO_REQ = 1, GTP1U_MSGTYPE_ECHO_RSP = 2, }; enum gtp1u_iei { GTP1U_IEI_RECOVERY = 14, }; /* 3GPP TS 29.281 */ struct gtp1u_hdr { #if OSMO_IS_LITTLE_ENDIAN uint8_t pn:1, /*< N-PDU Number flag */ s:1, /*< Sequence number flag */ e:1, /*< Extension header flag */ spare:1, pt:1, /*< Protocol Type: GTP=1, GTP'=0 */ version:3; /*< Version: 1 */ #elif OSMO_IS_BIG_ENDIAN /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */ uint8_t version:3, pt:1, spare:1, e:1, s:1, pn:1; #endif uint8_t msg_type; uint16_t length; uint32_t tei; /*< 05 - 08 Tunnel Endpoint ID */ union { uint8_t data1[0]; struct { uint16_t seq_nr; uint8_t n_pdu_nr; uint8_t next_ext_type; } ext; }; uint8_t data2[0]; } __attribute__((packed)); static int tx_echo_resp(struct upf_gtp_dev *dev, const struct osmo_sockaddr *remote, uint16_t seq_nr); static int rx_echo_req(struct upf_gtp_dev *dev, const struct osmo_sockaddr *remote, const struct gtp1u_hdr *rx_h) { if (!rx_h->s) { LOG_GTP_DEV(dev, LOGL_ERROR, "rx GTPv1-U ECHO REQ without sequence nr\n"); return -1; } return tx_echo_resp(dev, remote, rx_h->ext.seq_nr); } static int tx_echo_resp(struct upf_gtp_dev *dev, const struct osmo_sockaddr *remote, uint16_t seq_nr) { struct msgb *msg; struct gtp1u_hdr *tx_h; int rc; msg = msgb_alloc_headroom(1024, 128, "GTP-echo-resp"); tx_h = (void *)msgb_put(msg, sizeof(*tx_h)); *tx_h = (struct gtp1u_hdr){ /* 3GPP TS 29.281 5.1 defines that the ECHO REQ & RESP shall contain a sequence nr */ .s = 1, .pt = 1, .version = 1, .msg_type = GTP1U_MSGTYPE_ECHO_RSP, .ext = { .seq_nr = seq_nr, }, }; OSMO_ASSERT(msg->tail == tx_h->data2); /* ECHO RESPONSE shall contain a recovery counter */ msgb_put_u8(msg, GTP1U_IEI_RECOVERY); msgb_put_u8(msg, g_upf->tunend.recovery_count); osmo_store16be(msg->tail - tx_h->data1, &tx_h->length); rc = sendto(dev->gtpv1.ofd.fd, msgb_data(msg), msgb_length(msg), 0, &remote->u.sa, sizeof(*remote)); if (rc < 0) { int err = errno; LOG_GTP_DEV(dev, LOGL_ERROR, "GTP1-U sendto(len=%d, to=%s): %s\n", msgb_length(msg), osmo_sockaddr_to_str(remote), strerror(err)); } return rc; } int upf_gtpu_echo_read_cb(struct osmo_fd *ofd, unsigned int what) { struct upf_gtp_dev *dev = ofd->data; ssize_t sz; uint8_t buf[4096]; struct osmo_sockaddr remote; socklen_t remote_len = sizeof(remote); const struct gtp1u_hdr *h; uint16_t h_length; if ((sz = recvfrom(dev->gtpv1.ofd.fd, buf, sizeof(buf), 0, &remote.u.sa, &remote_len)) < 0) { LOG_GTP_DEV(dev, LOGL_ERROR, "recvfrom() failed: %s\n", strerror(errno)); return -1; } if (sz == 0) { LOG_GTP_DEV(dev, LOGL_ERROR, "recvfrom() yields zero bytes\n"); return -1; } /* A GTPv1-U header of size 8 is valid, but this code expects to handle only ECHO REQUEST messages. These are * required to have a sequence number, hence this check here consciously uses the full sizeof(*h) == 12. */ if (sz < sizeof(*h)) { LOG_GTP_DEV(dev, LOGL_ERROR, "rx GTP packet smaller than the GTPv1-U header + sequence nr: %zd < %zu\n", sz, sizeof(*h)); return -1; } h = (const struct gtp1u_hdr *)buf; if (h->version != 1) { LOG_GTP_DEV(dev, LOGL_ERROR, "rx GTP v%u: only GTP version 1 supported\n", h->version); return -1; } h_length = osmo_load16be(&h->length); if (offsetof(struct gtp1u_hdr, data1) + h_length > sz) { LOG_GTP_DEV(dev, LOGL_ERROR, "rx GTP: header + h.length = %zu > received bytes = %zd\n", offsetof(struct gtp1u_hdr, data1) + h_length, sz); return -1; } switch (h->msg_type) { case GTP1U_MSGTYPE_ECHO_REQ: return rx_echo_req(dev, &remote, h); default: LOG_GTP_DEV(dev, LOGL_ERROR, "rx: GTPv1-U message type %u not supported\n", h->msg_type); return -1; } return 0; } int upf_gtpu_echo_setup(struct upf_gtp_dev *dev) { if (dev->gtpv1.ofd.fd == -1) { LOGP(DGTP, LOGL_ERROR, "Cannot setup GTP-U ECHO: GTP-v1 socket not initialized\n"); return -EINVAL; } /* the caller should already have osmo_fd_register()ed when setting up the socket. */ OSMO_ASSERT(osmo_fd_is_registered(&dev->gtpv1.ofd)); /* make sure there is no cb yet that this would be replacing. */ OSMO_ASSERT(dev->gtpv1.ofd.cb == NULL); dev->gtpv1.ofd.cb = upf_gtpu_echo_read_cb; dev->gtpv1.ofd.data = dev; return 0; }