summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/ipoe/ipoe.h
blob: a2efd374980c934c3a487813a254caf13f380c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef __IPOE_H
#define __IPOE_H

#include <stdint.h>
#include <pthread.h>

#include "triton.h"
#include "ap_session.h"
#include "dhcpv4.h"

struct ipoe_serv
{
	struct list_head entry;
	struct triton_context_t ctx;
	char *ifname;
	int ifindex;
	int active;
	struct list_head sessions;
	struct dhcpv4_serv *dhcpv4;
	pthread_mutex_t lock;
	int opt_mode;
	int opt_shared:1;
	int opt_dhcpv4:1;
	int opt_up:1;
	int need_close:1;
};

struct dhcp_opt
{
	uint8_t len;
	uint8_t data[0];
};

struct ipoe_session
{
	struct list_head entry;
	struct triton_context_t ctx;
	struct triton_timer_t timer;
	struct ipoe_serv *serv;
	struct ap_ctrl ctrl;
	struct ap_session ses;
	uint8_t hwaddr[6];
	struct dhcp_opt *client_id;
	struct dhcp_opt *agent_circuit_id;
	struct dhcp_opt *agent_remote_id;
	uint32_t xid;
	uint32_t giaddr;
	uint8_t *data;
	struct dhcpv4_packet *dhcpv4_request;
	int ifindex;
};

#ifdef USE_LUA
int ipoe_lua_set_username(struct ipoe_session *, const char *func);
#endif

struct iphdr;
struct ethhdr;

void ipoe_recv_up(int ifindex, struct ethhdr *eth, struct iphdr *iph);
struct ipoe_session *ipoe_session_alloc(void);

struct ipoe_serv *ipoe_find_serv(const char *ifname);

void ipoe_nl_add_net(uint32_t addr, int mask);
void ipoe_nl_delete_nets(void);
int ipoe_nl_create(uint32_t peer_addr, uint32_t addr, const char *ifname, uint8_t *hwaddr);
void ipoe_nl_delete(int ifindex);
int ipoe_nl_modify(int ifindex, uint32_t peer_addr, uint32_t addr, const char *ifname, uint8_t *hwaddr);

#endif