source: lab.git/Dev/utvpn/utvpn-unix-v101-7101-public/src/Mayaqua/TunTap.h @ a1bae3e

trunk
Last change on this file since a1bae3e was a1bae3e, checked in by mitty <mitty@…>, 12 years ago
  • copy vendor drop to trunk

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@147 7d2118f6-f56c-43e7-95a2-4bb3031d96e7

  • Property mode set to 100644
File size: 11.2 KB
Line 
1// SoftEther UT-VPN SourceCode
2//
3// Copyright (C) 2004-2010 SoftEther Corporation.
4// Copyright (C) 2004-2010 University of Tsukuba, Japan.
5// Copyright (C) 2003-2010 Daiyuu Nobori.
6// All Rights Reserved.
7//
8// http://utvpn.tsukuba.ac.jp/
9//
10// This program is free software; you can redistribute it and/or
11// modify it under the terms of the GNU General Public License
12// version 2 as published by the Free Software Foundation.
13//
14// This program is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18//
19// You should have received a copy of the GNU General Public License version 2
20// along with this program; if not, write to the Free Software
21// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22//
23// このファイルは GPL バージョン 2 ライセンスで公開されています。
24// 誰でもこのファイルの内容を複製、改変したり、改変したバージョンを再配布
25// することができます。ただし、原著作物を改変した場合は、原著作物の著作権表示
26// を除去することはできません。改変した著作物を配布する場合は、改変実施者の
27// 著作権表示を原著作物の著作権表示に付随して記載するようにしてください。
28//
29// この SoftEther UT-VPN オープンソース・プロジェクトは、日本国の
30// ソフトイーサ株式会社 (SoftEther Corporation, http://www.softether.co.jp/ )
31// および筑波大学 (University of Tsukuba, http://www.tsukuba.ac.jp/ ) によって
32// ホストされています。
33// 本プログラムの配布者は、本プログラムを、業としての利用以外のため、
34// および、試験または研究のために利用が行われることを想定して配布
35// しています。
36// SoftEther UT-VPN プロジェクトの Web サイトは http://utvpn.tsukuba.ac.jp/ に
37// あります。
38// 本ソフトウェアの不具合の修正、機能改良、セキュリティホールの修復などのコード
39// の改変を行った場合で、その成果物を SoftEther UT-VPN プロジェクトに提出して
40// いただける場合は、 http://utvpn.tsukuba.ac.jp/ までソースコードを送付して
41// ください。SoftEther UT-VPN プロジェクトの本体リリースまたはブランチリリース
42// に組み込みさせていただきます。
43//
44// GPL に基づいて原著作物が提供される本ソフトウェアの改良版を配布、販売する
45// 場合は、そのソースコードを GPL に基づいて誰にでも開示する義務が生じます。
46//
47// 本ソフトウェアに関連する著作権、特許権、商標権はソフトイーサ株式会社
48// (SoftEther Corporation) およびその他の著作権保持者が保有しています。
49// ソフトイーサ株式会社等はこれらの権利を放棄していません。本ソフトウェアの
50// 二次著作物を配布、販売する場合は、これらの権利を侵害しないようにご注意
51// ください。
52//
53// お願い: どのような通信ソフトウェアにも通常は必ず未発見の
54// セキュリティホールが潜んでいます。本ソースコードをご覧いただいた結果、
55// UT-VPN にセキュリティホールを発見された場合は、当該セキュリティホールの
56// 情報を不特定多数に開示される前に、必ず、ソフトイーサ株式会社
57// および脆弱性情報の届出を受け付ける公的機関まで通報いただき、
58// 公益保護にご協力いただきますようお願い申し上げます。
59//
60// ソフトイーサ株式会社は、当該セキュリティホールについて迅速に対処を
61// 行い、UT-VPN および UT-VPN に関連するソフトウェアのユーザー・顧客
62// を保護するための努力を行います。
63//
64// ソフトイーサへの届出先: http://www.softether.co.jp/jp/contact/
65// 日本国内の脆弱性情報届出受付公的機関:
66//         独立行政法人 情報処理推進機構
67//         http://www.ipa.go.jp/security/vuln/report/
68//
69// 上記各事項について不明な点は、ソフトイーサ株式会社までご連絡ください。
70// 連絡先: http://www.softether.co.jp/jp/contact/
71
72// -----------------------------------------------
73// [ChangeLog]
74// 2010.05.20
75//  新規リリース by SoftEther
76// -----------------------------------------------
77
78#ifndef TUNTAP_H
79#define TUNTAP_H
80
81#ifdef  UNIX_LINUX
82
83// -----------------------------------------------------------------
84// Linux 用 tap ヘッダ
85// -----------------------------------------------------------------
86/*
87 *  Universal TUN/TAP device driver.
88 *  Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
89 *
90 *  This program is free software; you can redistribute it and/or modify
91 *  it under the terms of the GNU General Public License as published by
92 *  the Free Software Foundation; either version 2 of the License, or
93 *  (at your option) any later version.
94 *
95 *  This program is distributed in the hope that it will be useful,
96 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
97 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
98 *  GNU General Public License for more details.
99 *
100 *  $Id: if_tun.h,v 1.2 2001/10/31 15:27:57 arjanv Exp $
101 */
102
103#ifndef __IF_TUN_H
104#define __IF_TUN_H
105
106/* Uncomment to enable debugging */
107/* #define TUN_DEBUG 1 */
108
109
110
111/* Read queue size */
112#define TUN_READQ_SIZE  10
113
114/* TUN device flags */
115#define TUN_TUN_DEV     0x0001 
116#define TUN_TAP_DEV     0x0002
117#define TUN_TYPE_MASK   0x000f
118
119#define TUN_FASYNC      0x0010
120#define TUN_NOCHECKSUM  0x0020
121#define TUN_NO_PI       0x0040
122#define TUN_ONE_QUEUE   0x0080
123#define TUN_PERSIST     0x0100 
124
125/* Ioctl defines */
126#define TUNSETNOCSUM  _IOW('T', 200, int)
127#define TUNSETDEBUG   _IOW('T', 201, int)
128#define TUNSETIFF     _IOW('T', 202, int)
129#define TUNSETPERSIST _IOW('T', 203, int)
130#define TUNSETOWNER   _IOW('T', 204, int)
131
132/* TUNSETIFF ifr flags */
133#define IFF_TUN         0x0001
134#define IFF_TAP         0x0002
135#define IFF_NO_PI       0x1000
136#define IFF_ONE_QUEUE   0x2000
137
138struct tun_pi {
139        unsigned short flags;
140        unsigned short proto;
141};
142#define TUN_PKT_STRIP   0x0001
143
144#endif /* __IF_TUN_H */
145#else   // UNIX_LINUX
146
147#ifdef  UNIX_SOLARIS
148
149// -----------------------------------------------------------------
150// Solaris 用 tap ヘッダ
151// -----------------------------------------------------------------
152/*
153 *  Universal TUN/TAP device driver.
154 *
155 *  Multithreaded STREAMS tun pseudo device driver.
156 *
157 *  Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
158 * 
159 *  This program is free software; you can redistribute it and/or modify
160 *  it under the terms of the GNU General Public License as published by
161 *  the Free Software Foundation; either version 2 of the License, or
162 *  (at your option) any later version.
163 * 
164 *  This program is distributed in the hope that it will be useful,
165 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
166 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
167 *  GNU General Public License for more details.
168 *
169 *  $Id: if_tun.h,v 1.4 2000/05/01 12:23:27 maxk Exp $
170 */
171
172#ifndef _SYS_IF_TUN_H
173#define _SYS_IF_TUN_H
174
175#ifdef _KERNEL
176/* Uncomment to enable debuging */
177/* #define TUN_DEBUG 1 */
178
179#ifdef TUN_DEBUG
180#define DBG      cmn_err
181#else
182#define DBG( a... )
183#endif
184
185/* PPA structure, one per TUN iface */ 
186struct tunppa {
187  unsigned int id;              /* Iface number         */
188  queue_t *rq;                  /* Control Stream RQ    */
189  struct tunstr * p_str;        /* Protocol Streams     */
190}; 
191#define TUNMAXPPA       20
192
193/* Stream structure, one per Stream */
194struct tunstr {
195  struct tunstr *s_next;        /* next in streams list */
196  struct tunstr *p_next;        /* next in ppa list */
197  queue_t *rq;                  /* pointer to rq */
198
199  struct tunppa *ppa;           /* assigned PPA */
200  u_long flags;                 /* flags */
201  u_long state;                 /* DL state */
202  u_long sap;                   /* bound sap */
203  u_long minor;                 /* minor device number */
204};
205
206/* Flags */
207#define TUN_CONTROL     0x0001
208
209#define TUN_RAW         0x0100
210#define TUN_FAST        0x0200
211
212#define TUN_ALL_PHY     0x0010
213#define TUN_ALL_SAP     0x0020
214#define TUN_ALL_MUL     0x0040
215
216#define SNIFFER(a) ( (a & TUN_ALL_SAP) || (a & TUN_ALL_PHY) )
217
218struct tundladdr {
219  u_short sap;
220};
221#define TUN_ADDR_LEN    (sizeof(struct tundladdr))
222
223#define TUN_QUEUE       0
224#define TUN_DROP        1
225
226#endif /* _KERNEL */
227
228/* IOCTL defines */
229#define TUNNEWPPA       (('T'<<16) | 0x0001)
230#define TUNSETPPA       (('T'<<16) | 0x0002)
231
232#endif  /* _SYS_IF_TUN_H */
233
234#else   // UNIX_SOLARIS
235
236#ifdef  UNIX_BSD
237
238// -----------------------------------------------------------------
239// FreeBSD 用 tap ヘッダ
240// -----------------------------------------------------------------
241/*      $NetBSD: if_tun.h,v 1.5 1994/06/29 06:36:27 cgd Exp $   */
242
243/*
244 * Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
245 * Nottingham University 1987.
246 *
247 * This source may be freely distributed, however I would be interested
248 * in any changes that are made.
249 *
250 * This driver takes packets off the IP i/f and hands them up to a
251 * user process to have its wicked way with. This driver has it's
252 * roots in a similar driver written by Phil Cockcroft (formerly) at
253 * UCL. This driver is based much more on read/write/select mode of
254 * operation though.
255 *
256 * $FreeBSD: src/sys/net/if_tun.h,v 1.17 2000/01/23 01:47:12 brian Exp $
257 */
258
259#ifndef _NET_IF_TUN_H_
260#define _NET_IF_TUN_H_
261
262/* Refer to if_tunvar.h for the softc stuff */
263
264/* Maximum transmit packet size (default) */
265#define TUNMTU          1500
266
267/* Maximum receive packet size (hard limit) */
268#define TUNMRU          16384
269
270struct tuninfo {
271        int     baudrate;               /* linespeed */
272        short   mtu;                    /* maximum transmission unit */
273        u_char  type;                   /* ethernet, tokenring, etc. */
274        u_char  dummy;                  /* place holder */
275};
276
277/* ioctl's for get/set debug */
278#define TUNSDEBUG       _IOW('t', 90, int)
279#define TUNGDEBUG       _IOR('t', 89, int)
280#define TUNSIFINFO      _IOW('t', 91, struct tuninfo)
281#define TUNGIFINFO      _IOR('t', 92, struct tuninfo)
282#define TUNSLMODE       _IOW('t', 93, int)
283#define TUNSIFMODE      _IOW('t', 94, int)
284#define TUNSIFPID       _IO('t', 95)
285#define TUNSIFHEAD      _IOW('t', 96, int)
286#define TUNGIFHEAD      _IOR('t', 97, int)
287
288#endif /* !_NET_IF_TUN_H_ */
289
290#else   // UNIX_BSD
291
292#ifdef  UNIX_MACOS
293
294// -----------------------------------------------------------------
295// MacOS 用 tap ヘッダ
296// -----------------------------------------------------------------
297
298#else   // UNIX_MACOS
299
300#endif  // UNIX_MACOS
301
302#endif  // UNIX_BSD
303
304#endif  // UNIX_SOLARIS
305
306#endif  // UNIX_LINUX
307
308#endif  // TUNTAP_H
Note: See TracBrowser for help on using the repository browser.