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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef PPPOE_H
#define PPPOE_H 1
/*
* プロトコル上の定数 (RFC 2516)
*/
#define PPPOE_RFC2516_TYPE 0x01
#define PPPOE_RFC2516_VER 0x01
/** The PPPoE Active Discovery Initiation (PADI) packet */
#define PPPOE_CODE_PADI 0x09
/** The PPPoE Active Discovery Offer (PADO) packet */
#define PPPOE_CODE_PADO 0x07
/** The PPPoE Active Discovery Request (PADR) packet */
#define PPPOE_CODE_PADR 0x19
/** The PPPoE Active Discovery Session-confirmation (PADS) packet */
#define PPPOE_CODE_PADS 0x65
/** The PPPoE Active Discovery Terminate (PADT) packet */
#define PPPOE_CODE_PADT 0xa7
#define PPPOE_TAG_END_OF_LIST 0x0000
#define PPPOE_TAG_SERVICE_NAME 0x0101
#define PPPOE_TAG_AC_NAME 0x0102
#define PPPOE_TAG_HOST_UNIQ 0x0103
#define PPPOE_TAG_AC_COOKIE 0x0104
#define PPPOE_TAG_VENDOR_SPECIFIC 0x0105
#define PPPOE_TAG_RELAY_SESSION_ID 0x0110
#define PPPOE_TAG_SERVICE_NAME_ERROR 0x0201
#define PPPOE_TAG_AC_SYSTEM_ERROR 0x0202
#define PPPOE_TAG_GENERIC_ERROR 0x0203
/** PPPoE ヘッダ */
struct pppoe_header {
#if _BYTE_ORDER == _BIG_ENDIAN
uint8_t ver:4, type:4;
#else
uint8_t type:4, ver:4;
#endif
uint8_t code;
uint16_t session_id;
uint16_t length;
} __attribute__((__packed__));
/** PPPoE TLV ヘッダ */
struct pppoe_tlv {
uint16_t type;
uint16_t length;
uint8_t value[0];
} __attribute__((__packed__));
/*
* 実装
*/
/** デフォルトの物理層ラベル */
#define PPPOED_DEFAULT_LAYER2_LABEL "PPPoE"
#define PPPOED_CONFIG_BUFSIZ 65535
#define PPPOED_HOSTUNIQ_LEN 64
#define PPPOED_PHY_LABEL_SIZE 16
/*
* pppoed ステータス
*/
/** 初期状態 */
#define PPPOED_STATE_INIT 0
/** 走行中 */
#define PPPOED_STATE_RUNNING 1
/** 停止j状態 */
#define PPPOED_STATE_STOPPED 2
#define pppoed_is_stopped(pppoed) \
(((pppoed)->state == PPPOED_STATE_STOPPED)? 1 : 0)
#define pppoed_is_running(pppoed) \
(((pppoed)->state == PPPOED_STATE_RUNNING)? 1 : 0)
#define PPPOED_LISTENER_INVALID_INDEX UINT16_MAX
/** PPPoE デーモン待ち受け型 */
typedef struct _pppoed_listener {
/** bpf(4) デバイスファイルのディスクリプタ */
int bpf;
/** bpf 用のイベントコンテキスト */
struct event ev_bpf;
/** PPPoE デーモン自身 */
struct _pppoed *self;
/** イーサネットアドレス */
u_char ether_addr[ETHER_ADDR_LEN];
/** インデックス番号 */
uint16_t index;
/** 待ち受けるインタフェース名 */
char listen_ifname[IF_NAMESIZE];
/** 物理層のラベル */
char phy_label[PPPOED_PHY_LABEL_SIZE];
} pppoed_listener;
/** PPPoE デーモンを示す型です。*/
typedef struct _pppoed {
/** PPPoE デーモンの Id */
int id;
/** 待ち受けリスト */
slist listener;
/** このデーモンの状態 */
int state;
/** タイムアウトイベント **/
/** セッション番号 => pppoe_session のハッシュマップ */
hash_table *session_hash;
/** 空きセッション番号リスト */
slist session_free_list;
/** クッキー所持セッションのハッシュマップ */
hash_table *acookie_hash;
/** 次のクッキー番号 */
uint32_t acookie_next;
/** 設定プロパティ */
struct properties *config;
/** フラグ */
uint32_t
desc_in_pktdump:1,
desc_out_pktdump:1,
session_in_pktdump:1,
session_out_pktdump:1,
listen_incomplete:1,
/* phy_label_with_ifname:1, PPPoE は不要 */
reserved:27;
} pppoed;
/** PPPoE セッションを示す型です */
typedef struct _pppoe_session {
int state;
/** 親 PPPoE デーモン */
pppoed *pppoed;
/** PPP コンテキスト */
void *ppp;
/** セッション Id */
int session_id;
/** クッキー番号 */
int acookie;
/** 対抗のイーサネットアドレス */
u_char ether_addr[ETHER_ADDR_LEN];
/** リスナインデックス */
uint16_t listener_index;
/** イーサヘッダキャッシュ */
struct ether_header ehdr;
/** echo の送信間隔(秒) */
int lcp_echo_interval;
/** echo の最大連続失敗回数 */
int lcp_echo_max_failure;
/** 終了処理のための event コンテキスト */
struct event ev_disposing;
} pppoe_session;
/** pppoe_session の状態が初期状態であることを示す定数です */
#define PPPOE_SESSION_STATE_INIT 0
/** pppoe_session の状態が走行状態であることを示す定数です */
#define PPPOE_SESSION_STATE_RUNNING 1
/** pppoe_session の状態が終了中であることを示す定数です */
#define PPPOE_SESSION_STATE_DISPOSING 2
#define pppoed_need_polling(pppoed) (((pppoed)->listen_incomplete != 0)? 1 : 0)
#ifdef __cplusplus
extern "C" {
#endif
int pppoe_session_init (pppoe_session *, pppoed *, int, int, u_char *);
void pppoe_session_fini (pppoe_session *);
void pppoe_session_stop (pppoe_session *);
int pppoe_session_recv_PADR (pppoe_session *, slist *);
int pppoe_session_recv_PADT (pppoe_session *, slist *);
void pppoe_session_input (pppoe_session *, u_char *, int);
void pppoe_session_disconnect (pppoe_session *);
int pppoed_add_listener (pppoed *, int, const char *, const char *);
int pppoed_reload_listeners(pppoed *);
int pppoed_init (pppoed *);
int pppoed_start (pppoed *);
void pppoed_stop (pppoed *);
void pppoed_uninit (pppoed *);
void pppoed_pppoe_session_close_notify(pppoed *, pppoe_session *);
const char * pppoed_tlv_value_string(struct pppoe_tlv *);
int pppoed_reload(pppoed *, struct properties *, const char *, int);
const char *pppoed_config_str (pppoed *, const char *);
int pppoed_config_int (pppoed *, const char *, int);
int pppoed_config_str_equal (pppoed *, const char *, const char *, int);
int pppoed_config_str_equali (pppoed *, const char *, const char *, int);
const char *pppoed_listener_config_str (pppoed_listener *, const char *);
int pppoed_listener_config_int (pppoed_listener *, const char *, int);
int pppoed_listener_config_str_equal (pppoed_listener *, const char *, const char *, int);
int pppoed_listener_config_str_equali (pppoed_listener *, const char *, const char *, int);
#ifdef __cplusplus
}
#endif
#endif
|