summaryrefslogtreecommitdiff
path: root/accel-pppd/ppp/lcp_opt_pcomp.c
blob: fec5e7b82da19f257e4bb734b15f8344b56ab0b5 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>

#include "ppp.h"
#include "ppp_lcp.h"
#include "log.h"

#include "memdebug.h"

static struct lcp_option_t *pcomp_init(struct ppp_lcp_t *lcp);
static void pcomp_free(struct ppp_lcp_t *lcp, struct lcp_option_t *opt);
static int pcomp_send_conf_req(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr);
static int pcomp_send_conf_nak(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr);
static int pcomp_recv_conf_req(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr);
static void pcomp_print(void (*print)(const char *fmt,...),struct lcp_option_t*, uint8_t *ptr);

struct pcomp_option_t
{
	struct lcp_option_t opt;
	int pcomp; // 0 - disabled, 1 - enabled, 2 - allow,disabled, 3 - allow,enabled
	int require;
};

static struct lcp_option_handler_t pcomp_opt_hnd=
{
	.init=pcomp_init,
	.send_conf_req=pcomp_send_conf_req,
	.send_conf_nak=pcomp_send_conf_nak,
	.recv_conf_req=pcomp_recv_conf_req,
	.free=pcomp_free,
	.print=pcomp_print,
};

static struct lcp_option_t *pcomp_init(struct ppp_lcp_t *lcp)
{
	struct pcomp_option_t *pcomp_opt=_malloc(sizeof(*pcomp_opt));
	memset(pcomp_opt,0,sizeof(*pcomp_opt));
	pcomp_opt->pcomp=0;
	pcomp_opt->opt.id=CI_PCOMP;
	pcomp_opt->opt.len=2;

	return &pcomp_opt->opt;
}

static void pcomp_free(struct ppp_lcp_t *lcp, struct lcp_option_t *opt)
{
	struct pcomp_option_t *pcomp_opt=container_of(opt,typeof(*pcomp_opt),opt);

	_free(pcomp_opt);
}

static int pcomp_send_conf_req(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr)
{
	struct pcomp_option_t *pcomp_opt=container_of(opt,typeof(*pcomp_opt),opt);
	struct lcp_opt_hdr_t *opt0=(struct lcp_opt_hdr_t*)ptr;
	if (pcomp_opt->pcomp==1 || pcomp_opt->pcomp==3)
	{
		opt0->id=CI_PCOMP;
		opt0->len=2;
		return 2;
	}
	return 0;
}

static int pcomp_send_conf_nak(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr)
{
	struct pcomp_option_t *pcomp_opt=container_of(opt,typeof(*pcomp_opt),opt);
	struct lcp_opt_hdr_t *opt0=(struct lcp_opt_hdr_t*)ptr;
	opt0->id=CI_PCOMP;
	opt0->len=2;
	return 2;
}

static int pcomp_recv_conf_req(struct ppp_lcp_t *lcp, struct lcp_option_t *opt, uint8_t *ptr)
{
	struct pcomp_option_t *pcomp_opt=container_of(opt,typeof(*pcomp_opt),opt);
	struct lcp_opt_hdr_t *opt0=(struct lcp_opt_hdr_t*)ptr;

	/*if (!ptr) {
		if (pcomp_opt->require)
			return LCP_OPT_NAK;
		pcomp_opt->pcomp=0;
		return LCP_OPT_ACK;
	}*/
	
	if (opt0->len != 2)
		return LCP_OPT_REJ;

	if (pcomp_opt->pcomp>0)
	{
		pcomp_opt->pcomp=1;
		return LCP_OPT_ACK;
	}else return LCP_OPT_REJ;
}

static void pcomp_print(void (*print)(const char *fmt,...),struct lcp_option_t *opt, uint8_t *ptr)
{
	print("<pcomp>");
}

static void pcomp_opt_init()
{
	lcp_option_register(&pcomp_opt_hnd);
}

DEFINE_INIT(4, pcomp_opt_init);