summaryrefslogtreecommitdiff
path: root/accel-pptpd/ppp_auth.c
blob: b66727b08f9c916e0a6495ea194c9fc01e6e89d3 (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
108
109
110
111
#include "triton/triton.h"

#include "ppp.h"
#include "ppp_lcp.h"
#include "ppp_fsm.h"
#include "ppp_auth.h"

static LIST_HEAD(drv_list);

int auth_register(struct auth_driver_t *new)
{
	struct auth_driver_t *drv;

	list_for_each_entry(drv,&drv_list,entry)
	{
		if (drv->type==new->type)
			return -1;
	}
	list_add_tail(&new->entry,&drv_list);
	return 0;
}

int auth_get_conf_req(struct ppp_layer_t *l, struct lcp_opt32_t *opt)
{
	int i,n;
	struct auth_driver_t *drv;

	for(i=0; i<AUTH_MAX; i++)
	{
		if (l->auth[i] && l->options.lcp.neg_auth[i]>0)
			goto cont;
	}
	for(i=0; i<AUTH_MAX; i++)
	{
		if (l->auth[i] && l->options.lcp.neg_auth[i]==0)
			goto cont;
	}
	return -1;

cont:
	list_for_each_entry(drv,&drv_list,entry)
	{
		if (drv->type==l->auth[i])
			break;
	}
	n=drv->get_conf_req(drv,l,opt);
	opt->val=l->auth[i];
	opt->hdr.len=6+n;
	return 0;
}
int auth_recv_conf_req(struct ppp_layer_t *l, struct lcp_opt_hdr_t *hdr)
{
	struct lcp_opt32_t *opt=(struct lcp_opt32_t*)hdr;
	struct auth_driver_t *drv;
	int i;

	for(i=0; i<AUTH_MAX; i++)
	{
		if (l->auth[i]==opt->val)
		{
			list_for_each_entry(drv,&drv_list,entry)
			{
				if (drv->type==l->auth[i])
				{
					if (drv->recv_conf_req(drv,l,opt))
						return -1;
					l->options.lcp.neg_auth[i]=1;
					return 0;
				}
			}
			return -1;
		}
	}
	return -1;
}
int auth_recv_conf_rej(struct ppp_layer_t *l, struct lcp_opt_hdr_t *hdr)
{
	struct lcp_opt32_t *opt=(struct lcp_opt32_t*)hdr;
	int i;

	for(i=0; i<AUTH_MAX; i++)
	{
		if (l->auth[i]==opt->val)
		{
			l->options.lcp.neg_auth[i]=-1;
			break;
		}
	}
	for(i=0; i<3; i++)
	{
		if (l->auth[i] && l->options.lcp.neg_auth[i]!=-1)
			return 0;
	}
	return -1;
}
int auth_recv_conf_nak(struct ppp_layer_t *l, struct lcp_opt_hdr_t *hdr)
{
	struct lcp_opt32_t *opt=(struct lcp_opt32_t*)hdr;
	int i;

	for(i=0; i<AUTH_MAX; i++)
	{
		if (l->auth[i]==opt->val)
		{
			l->options.lcp.neg_auth[i]=2;
			return 0;
		}
	}
	return -1;
}