James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * Linux PPP over L2TP (PPPoL2TP) Socket Implementation (RFC 2661) |
| 3 | * |
| 4 | * This file supplies definitions required by the PPP over L2TP driver |
James Chapman | fd558d1 | 2010-04-02 06:18:33 +0000 | [diff] [blame] | 5 | * (l2tp_ppp.c). All version information wrt this file is located in l2tp_ppp.c |
James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 6 | * |
| 7 | * License: |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #ifndef __LINUX_IF_PPPOL2TP_H |
| 16 | #define __LINUX_IF_PPPOL2TP_H |
| 17 | |
Jaswinder Singh Rajput | 00bfdda | 2009-01-15 13:51:26 -0800 | [diff] [blame] | 18 | #include <linux/types.h> |
James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 19 | |
| 20 | #ifdef __KERNEL__ |
| 21 | #include <linux/in.h> |
| 22 | #endif |
| 23 | |
| 24 | /* Structure used to connect() the socket to a particular tunnel UDP |
| 25 | * socket. |
| 26 | */ |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 27 | struct pppol2tp_addr { |
Arnd Bergmann | 85efde6 | 2009-02-26 00:51:39 +0100 | [diff] [blame] | 28 | __kernel_pid_t pid; /* pid that owns the fd. |
James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 29 | * 0 => current */ |
| 30 | int fd; /* FD of UDP socket to use */ |
| 31 | |
| 32 | struct sockaddr_in addr; /* IP address and port to send to */ |
| 33 | |
Al Viro | f424bb9 | 2007-08-24 23:04:18 -0700 | [diff] [blame] | 34 | __u16 s_tunnel, s_session; /* For matching incoming packets */ |
| 35 | __u16 d_tunnel, d_session; /* For sending outgoing packets */ |
James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
James Chapman | e0d4435 | 2010-04-02 06:18:54 +0000 | [diff] [blame] | 38 | /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32 |
| 39 | * bits. So we need a different sockaddr structure. |
| 40 | */ |
| 41 | struct pppol2tpv3_addr { |
| 42 | pid_t pid; /* pid that owns the fd. |
| 43 | * 0 => current */ |
| 44 | int fd; /* FD of UDP or IP socket to use */ |
| 45 | |
| 46 | struct sockaddr_in addr; /* IP address and port to send to */ |
| 47 | |
| 48 | __u32 s_tunnel, s_session; /* For matching incoming packets */ |
| 49 | __u32 d_tunnel, d_session; /* For sending outgoing packets */ |
| 50 | }; |
| 51 | |
James Chapman | cf14a4d | 2007-06-27 15:43:43 -0700 | [diff] [blame] | 52 | /* Socket options: |
| 53 | * DEBUG - bitmask of debug message categories |
| 54 | * SENDSEQ - 0 => don't send packets with sequence numbers |
| 55 | * 1 => send packets with sequence numbers |
| 56 | * RECVSEQ - 0 => receive packet sequence numbers are optional |
| 57 | * 1 => drop receive packets without sequence numbers |
| 58 | * LNSMODE - 0 => act as LAC. |
| 59 | * 1 => act as LNS. |
| 60 | * REORDERTO - reorder timeout (in millisecs). If 0, don't try to reorder. |
| 61 | */ |
| 62 | enum { |
| 63 | PPPOL2TP_SO_DEBUG = 1, |
| 64 | PPPOL2TP_SO_RECVSEQ = 2, |
| 65 | PPPOL2TP_SO_SENDSEQ = 3, |
| 66 | PPPOL2TP_SO_LNSMODE = 4, |
| 67 | PPPOL2TP_SO_REORDERTO = 5, |
| 68 | }; |
| 69 | |
| 70 | /* Debug message categories for the DEBUG socket option */ |
| 71 | enum { |
| 72 | PPPOL2TP_MSG_DEBUG = (1 << 0), /* verbose debug (if |
| 73 | * compiled in) */ |
| 74 | PPPOL2TP_MSG_CONTROL = (1 << 1), /* userspace - kernel |
| 75 | * interface */ |
| 76 | PPPOL2TP_MSG_SEQ = (1 << 2), /* sequence numbers */ |
| 77 | PPPOL2TP_MSG_DATA = (1 << 3), /* data packets */ |
| 78 | }; |
| 79 | |
| 80 | |
| 81 | |
| 82 | #endif |