gtp: reorganize headers

* gtp_nl.h now contains exported netlink attributes and commands to
  userspace.

* gtp.h contains internal definition for the GTP protocol implementation.
This commit is contained in:
Pablo Neira Ayuso 2014-02-10 17:55:48 +01:00
parent a2f957390a
commit f40a5721ea
6 changed files with 82 additions and 76 deletions

View File

@ -6,7 +6,7 @@
#include <libmnl/libmnl.h>
#include <linux/genetlink.h>
#include "gtp.h"
#include "gtp_nl.h"
#include "genl.h"
static uint32_t seq;

View File

@ -10,7 +10,7 @@
#include <libmnl/libmnl.h>
#include <linux/genetlink.h>
#include "gtp.h"
#include "gtp_nl.h"
#include "genl.h"
static int

41
gtp.c
View File

@ -25,46 +25,7 @@
#include <net/genetlink.h>
#include "gtp.h"
/* Resides in include/uapi/linux/udp.h */
#ifndef UDP_ENCAP_GTP0
#define UDP_ENCAP_GTP0 4
#endif
#ifndef UDP_ENCAP_GTP1U
#define UDP_ENCAP_GTP1U 5
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
#define pcpu_sw_netstats pcpu_tstats
#endif
/* general GTP protocol related definitions */
#define GTP0_PORT 3386
#define GTP1U_PORT 2152
#define GTP_TPDU 255
struct gtp0_header { /* According to GSM TS 09.60 */
uint8_t flags;
uint8_t type;
uint16_t length;
uint16_t seq;
uint16_t flow;
uint8_t number;
uint8_t spare[3];
uint64_t tid;
} __attribute__ ((packed));
struct gtp1_header_short { /* According to 3GPP TS 29.060 */
uint8_t flags;
uint8_t type;
uint16_t length;
uint32_t tid;
} __attribute__ ((packed));
#define gtp1u_header gtp1_header_short /* XXX */
#include "gtp_nl.h"
/* implementation-specific definitions */

71
gtp.h
View File

@ -1,39 +1,44 @@
#ifndef _UAPI_LINUX_GTP_H_
#ifndef _GTP_H_
#define _GTP_H
enum gtp_genl_cmds {
GTP_CMD_CFG_NEW,
GTP_CMD_CFG_DELETE,
GTP_CMD_CFG_GET,
GTP_CMD_TUNNEL_NEW,
GTP_CMD_TUNNEL_DELETE,
GTP_CMD_TUNNEL_GET,
/* Resides in include/uapi/linux/udp.h */
#ifndef UDP_ENCAP_GTP0
#define UDP_ENCAP_GTP0 4
#endif
GTP_CMD_TUNNEL_MAX,
};
#ifndef UDP_ENCAP_GTP1U
#define UDP_ENCAP_GTP1U 5
#endif
enum gtp_version {
GTP_V0 = 0,
GTP_V1,
};
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
#define pcpu_sw_netstats pcpu_tstats
#endif
enum gtp_cfg_attrs {
GTPA_CFG_UNSPEC = 0,
GTPA_CFG_LINK,
GTPA_CFG_LOCAL_ADDR_IPV4,
GTPA_CFG_HSIZE,
__GTPA_CFG_MAX,
};
#define GTPA_CFG_MAX (__GTPA_CFG_MAX + 1)
/* general GTP protocol related definitions */
enum gtp_attrs {
GTPA_UNSPEC = 0,
GTPA_LINK,
GTPA_VERSION,
GTPA_TID, /* 64 bits for GTPv1 */
GTPA_SGSN_ADDRESS,
GTPA_MS_ADDRESS,
__GTPA_MAX,
};
#define GTPA_MAX (__GTPA_MAX + 1)
#define GTP0_PORT 3386
#define GTP1U_PORT 2152
#endif /* _UAPI_LINUX_GTP_H_ */
#define GTP_TPDU 255
struct gtp0_header { /* According to GSM TS 09.60 */
uint8_t flags;
uint8_t type;
uint16_t length;
uint16_t seq;
uint16_t flow;
uint8_t number;
uint8_t spare[3];
uint64_t tid;
} __attribute__ ((packed));
struct gtp1_header_short { /* According to 3GPP TS 29.060 */
uint8_t flags;
uint8_t type;
uint16_t length;
uint32_t tid;
} __attribute__ ((packed));
#define gtp1u_header gtp1_header_short /* XXX */
#endif

40
gtp_nl.h Normal file
View File

@ -0,0 +1,40 @@
#ifndef _UAPI_LINUX_GTP_H_
#define _UAPI_LINUX_GTP_H__
enum gtp_genl_cmds {
GTP_CMD_CFG_NEW,
GTP_CMD_CFG_DELETE,
GTP_CMD_CFG_GET,
GTP_CMD_TUNNEL_NEW,
GTP_CMD_TUNNEL_DELETE,
GTP_CMD_TUNNEL_GET,
GTP_CMD_TUNNEL_MAX,
};
enum gtp_version {
GTP_V0 = 0,
GTP_V1,
};
enum gtp_cfg_attrs {
GTPA_CFG_UNSPEC = 0,
GTPA_CFG_LINK,
GTPA_CFG_LOCAL_ADDR_IPV4,
GTPA_CFG_HSIZE,
__GTPA_CFG_MAX,
};
#define GTPA_CFG_MAX (__GTPA_CFG_MAX + 1)
enum gtp_attrs {
GTPA_UNSPEC = 0,
GTPA_LINK,
GTPA_VERSION,
GTPA_TID, /* 64 bits for GTPv1 */
GTPA_SGSN_ADDRESS,
GTPA_MS_ADDRESS,
__GTPA_MAX,
};
#define GTPA_MAX (__GTPA_MAX + 1)
#endif /* _UAPI_LINUX_GTP_H_ */

View File

@ -1,6 +1,6 @@
#include <stdint.h>
#include <libmnl/libmnl.h>
#include "gtp.h"
#include "gtp_nl.h"
void gtp_build_payload(struct nlmsghdr *nlh, uint64_t tid, uint32_t ifidx,
uint32_t sgsn_addr, uint32_t ms_addr, uint32_t version)