libosmocore 1.13.1.12-8e6ea
Osmocom core library
tun.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <stddef.h>
7#include <stdint.h>
8
9#include <osmocom/core/msgb.h>
10#include <osmocom/core/socket.h>
11#include <osmocom/core/netdev.h>
12
13struct osmo_tundev;
14
15/* callback user gets ownership of the msgb and is expected to free it. */
16typedef int (*osmo_tundev_data_ind_cb_t)(struct osmo_tundev *tun, struct msgb *msg);
17
18struct osmo_tundev *osmo_tundev_alloc(void *ctx, const char *name);
19void osmo_tundev_free(struct osmo_tundev *tundev);
20int osmo_tundev_open(struct osmo_tundev *tundev);
21int osmo_tundev_close(struct osmo_tundev *tundev);
22bool osmo_tundev_is_open(struct osmo_tundev *tundev);
23
24void osmo_tundev_set_priv_data(struct osmo_tundev *tundev, void *priv_data);
25void *osmo_tundev_get_priv_data(struct osmo_tundev *tundev);
26
28
29const char *osmo_tundev_get_name(const struct osmo_tundev *tundev);
30
31int osmo_tundev_get_fd(const struct osmo_tundev *tundev);
32
33int osmo_tundev_set_dev_name(struct osmo_tundev *tundev, const char *dev_name);
34const char *osmo_tundev_get_dev_name(const struct osmo_tundev *tundev);
35
36int osmo_tundev_set_netns_name(struct osmo_tundev *tundev, const char *netns);
37const char *osmo_tundev_get_netns_name(const struct osmo_tundev *tundev);
38
39struct osmo_netdev *osmo_tundev_get_netdev(struct osmo_tundev *tundev);
40
41int osmo_tundev_send(struct osmo_tundev *tundev, struct msgb *msg);
const char * name
const char * osmo_tundev_get_dev_name(const struct osmo_tundev *tundev)
Get name used to name the tunnel interface created by the tundev object.
Definition: tun.c:529
void osmo_tundev_set_priv_data(struct osmo_tundev *tundev, void *priv_data)
Set private user data pointer on the tundev object.
Definition: tun.c:464
struct osmo_tundev * osmo_tundev_alloc(void *ctx, const char *name)
Allocate a new tundev object.
Definition: tun.c:227
bool osmo_tundev_is_open(struct osmo_tundev *tundev)
Retrieve whether the tundev object is in "opened" state.
Definition: tun.c:456
int osmo_tundev_set_dev_name(struct osmo_tundev *tundev, const char *dev_name)
Set name used to name the tunnel interface created by the tundev object.
Definition: tun.c:516
void * osmo_tundev_get_priv_data(struct osmo_tundev *tundev)
Get private user data pointer from the tundev object.
Definition: tun.c:473
struct osmo_netdev * osmo_tundev_get_netdev(struct osmo_tundev *tundev)
Get netdev managing the tunnel interface of tundev.
Definition: tun.c:564
int osmo_tundev_get_fd(const struct osmo_tundev *tundev)
Get FD associated to the tundev object.
Definition: tun.c:500
void osmo_tundev_free(struct osmo_tundev *tundev)
Free an allocated tundev object.
Definition: tun.c:257
const char * osmo_tundev_get_netns_name(const struct osmo_tundev *tundev)
Get name of network namespace used when opening the tunnel interface.
Definition: tun.c:555
const char * osmo_tundev_get_name(const struct osmo_tundev *tundev)
Get name used to identify the tundev object.
Definition: tun.c:491
void osmo_tundev_set_data_ind_cb(struct osmo_tundev *tundev, osmo_tundev_data_ind_cb_t data_ind_cb)
Set data_ind_cb callback, called when a new packet is received on the tun interface.
Definition: tun.c:482
int osmo_tundev_send(struct osmo_tundev *tundev, struct msgb *msg)
Submit a packet to the tunnel device managed by the tundev object.
Definition: tun.c:576
int osmo_tundev_close(struct osmo_tundev *tundev)
Close the tunnel device owned by the tundev object.
Definition: tun.c:431
int osmo_tundev_set_netns_name(struct osmo_tundev *tundev, const char *netns)
Set name of the network namespace to use when opening the tunnel interface.
Definition: tun.c:543
int osmo_tundev_open(struct osmo_tundev *tundev)
Open the tunnel device owned by the tundev object.
Definition: tun.c:345
uint8_t msg[0]
network device (interface) convenience functions.
Osmocom socket convenience functions.
Osmocom message buffer.
Definition: msgb.h:31
Definition: netdev.c:259
Definition: tun.c:109
void * priv_data
Definition: tun.c:132
char * dev_name
Definition: tun.c:121
osmo_tundev_data_ind_cb_t data_ind_cb
Definition: tun.c:135
int(* osmo_tundev_data_ind_cb_t)(struct osmo_tundev *tun, struct msgb *msg)
Definition: tun.h:16