isdn_ppp.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Linux ISDN subsystem, sync PPP, interface to ipppd
  2.  *
  3.  * Copyright 1994-1999  by Fritz Elfert (fritz@isdn4linux.de)
  4.  * Copyright 1995,96    Thinking Objects Software GmbH Wuerzburg
  5.  * Copyright 1995,96    by Michael Hipp (Michael.Hipp@student.uni-tuebingen.de)
  6.  * Copyright 2000-2002  by Kai Germaschewski (kai@germaschewski.name)
  7.  *
  8.  * This software may be used and distributed according to the terms
  9.  * of the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  */
  12. #ifndef _LINUX_ISDN_PPP_H
  13. #define _LINUX_ISDN_PPP_H
  14. #define CALLTYPE_INCOMING 0x1
  15. #define CALLTYPE_OUTGOING 0x2
  16. #define CALLTYPE_CALLBACK 0x4
  17. #define IPPP_VERSION    "2.2.0"
  18. struct pppcallinfo
  19. {
  20.   int calltype;
  21.   unsigned char local_num[64];
  22.   unsigned char remote_num[64];
  23.   int charge_units;
  24. };
  25. #define PPPIOCGCALLINFO _IOWR('t',128,struct pppcallinfo)
  26. #define PPPIOCBUNDLE   _IOW('t',129,int)
  27. #define PPPIOCGMPFLAGS _IOR('t',130,int)
  28. #define PPPIOCSMPFLAGS _IOW('t',131,int)
  29. #define PPPIOCSMPMTU   _IOW('t',132,int)
  30. #define PPPIOCSMPMRU   _IOW('t',133,int)
  31. #define PPPIOCGCOMPRESSORS _IOR('t',134,unsigned long [8])
  32. #define PPPIOCSCOMPRESSOR _IOW('t',135,int)
  33. #define PPPIOCGIFNAME      _IOR('t',136, char [IFNAMSIZ] )
  34. #define SC_MP_PROT       0x00000200
  35. #define SC_REJ_MP_PROT   0x00000400
  36. #define SC_OUT_SHORT_SEQ 0x00000800
  37. #define SC_IN_SHORT_SEQ  0x00004000
  38. #define SC_DECOMP_ON 0x01
  39. #define SC_COMP_ON 0x02
  40. #define SC_DECOMP_DISCARD 0x04
  41. #define SC_COMP_DISCARD 0x08
  42. #define SC_LINK_DECOMP_ON 0x10
  43. #define SC_LINK_COMP_ON 0x20
  44. #define SC_LINK_DECOMP_DISCARD 0x40
  45. #define SC_LINK_COMP_DISCARD 0x80
  46. #define ISDN_PPP_COMP_MAX_OPTIONS 16
  47. #define IPPP_COMP_FLAG_XMIT 0x1
  48. #define IPPP_COMP_FLAG_LINK 0x2
  49. struct isdn_ppp_comp_data {
  50.   int num;
  51.   unsigned char options[ISDN_PPP_COMP_MAX_OPTIONS];
  52.   int optlen;
  53.   int flags;
  54. };
  55. #ifdef __KERNEL__
  56. #include <linux/config.h>
  57. #ifdef CONFIG_IPPP_FILTER
  58. #include <linux/filter.h>
  59. #endif
  60. #define DECOMP_ERR_NOMEM (-10)
  61. #define MP_END_FRAG    0x40
  62. #define MP_BEGIN_FRAG  0x80
  63. #define MP_MAX_QUEUE_LEN 16
  64. /*
  65.  * We need a way for the decompressor to influence the generation of CCP
  66.  * Reset-Requests in a variety of ways. The decompressor is already returning
  67.  * a lot of information (generated skb length, error conditions) so we use
  68.  * another parameter. This parameter is a pointer to a structure which is
  69.  * to be marked valid by the decompressor and only in this case is ever used.
  70.  * Furthermore, the only case where this data is used is when the decom-
  71.  * pressor returns DECOMP_ERROR.
  72.  *
  73.  * We use this same struct for the reset entry of the compressor to commu-
  74.  * nicate to its caller how to deal with sending of a Reset Ack. In this
  75.  * case, expra is not used, but other options still apply (suppressing
  76.  * sending with rsend, appending arbitrary data, etc).
  77.  */
  78. #define IPPP_RESET_MAXDATABYTES 32
  79. struct isdn_ppp_resetparams {
  80.   unsigned char valid:1; /* rw Is this structure filled at all ? */
  81.   unsigned char rsend:1; /* rw Should we send one at all ? */
  82.   unsigned char idval:1; /* rw Is the id field valid ? */
  83.   unsigned char dtval:1; /* rw Is the data field valid ? */
  84.   unsigned char expra:1; /* rw Is an Ack expected for this Req ? */
  85.   unsigned char id; /* wo Send CCP ResetReq with this id */
  86.   unsigned short maxdlen; /* ro Max bytes to be stored in data field */
  87.   unsigned short dlen; /* rw Bytes stored in data field */
  88.   unsigned char *data; /* wo Data for ResetReq info field */
  89. };
  90. /*
  91.  * this is an 'old friend' from ppp-comp.h under a new name 
  92.  * check the original include for more information
  93.  */
  94. struct isdn_ppp_compressor {
  95.   struct isdn_ppp_compressor *next, *prev;
  96.   struct module *owner;
  97.   int num; /* CCP compression protocol number */
  98.   
  99.   void *(*alloc) (struct isdn_ppp_comp_data *);
  100.   void (*free) (void *state);
  101.   int  (*init) (void *state, struct isdn_ppp_comp_data *,
  102. int unit,int debug);
  103.   
  104.   /* The reset entry needs to get more exact information about the
  105.      ResetReq or ResetAck it was called with. The parameters are
  106.      obvious. If reset is called without a Req or Ack frame which
  107.      could be handed into it, code MUST be set to 0. Using rsparm,
  108.      the reset entry can control if and how a ResetAck is returned. */
  109.   
  110.   void (*reset) (void *state, unsigned char code, unsigned char id,
  111.  unsigned char *data, unsigned len,
  112.  struct isdn_ppp_resetparams *rsparm);
  113.   
  114.   int  (*compress) (void *state, struct sk_buff *in,
  115.     struct sk_buff *skb_out, int proto);
  116.   
  117. int  (*decompress) (void *state,struct sk_buff *in,
  118.     struct sk_buff *skb_out,
  119.     struct isdn_ppp_resetparams *rsparm);
  120.   
  121.   void (*incomp) (void *state, struct sk_buff *in,int proto);
  122.   void (*stat) (void *state, struct compstat *stats);
  123. };
  124. extern int isdn_ppp_register_compressor(struct isdn_ppp_compressor *);
  125. extern int isdn_ppp_unregister_compressor(struct isdn_ppp_compressor *);
  126. extern int isdn_ppp_dial_slave(char *);
  127. extern int isdn_ppp_hangup_slave(char *);
  128. typedef struct {
  129.   unsigned long seqerrs;
  130.   unsigned long frame_drops;
  131.   unsigned long overflows;
  132.   unsigned long max_queue_len;
  133. } isdn_mppp_stats;
  134. typedef struct {
  135.   int mp_mrru;                        /* unused                             */
  136.   struct sk_buff * frags; /* fragments sl list -- use skb->next */
  137.   long frames; /* number of frames in the frame list */
  138.   unsigned int seq; /* last processed packet seq #: any packets
  139.     * with smaller seq # will be dropped
  140.  * unconditionally */
  141.   spinlock_t lock;
  142.   int ref_ct;  
  143.   /* statistics */
  144.   isdn_mppp_stats stats;
  145. } ippp_bundle;
  146. #define NUM_RCV_BUFFS     64
  147. struct ippp_buf_queue {
  148.   struct ippp_buf_queue *next;
  149.   struct ippp_buf_queue *last;
  150.   char *buf;                 /* NULL here indicates end of queue */
  151.   int len;
  152. };
  153. /* The data structure for one CCP reset transaction */
  154. enum ippp_ccp_reset_states {
  155.   CCPResetIdle,
  156.   CCPResetSentReq,
  157.   CCPResetRcvdReq,
  158.   CCPResetSentAck,
  159.   CCPResetRcvdAck
  160. };
  161. struct ippp_ccp_reset_state {
  162.   enum ippp_ccp_reset_states state; /* State of this transaction */
  163.   struct ippp_struct *is; /* Backlink to device stuff */
  164.   unsigned char id; /* Backlink id index */
  165.   unsigned char ta:1; /* The timer is active (flag) */
  166.   unsigned char expra:1; /* We expect a ResetAck at all */
  167.   int dlen; /* Databytes stored in data */
  168.   struct timer_list timer; /* For timeouts/retries */
  169.   /* This is a hack but seems sufficient for the moment. We do not want
  170.      to have this be yet another allocation for some bytes, it is more
  171.      memory management overhead than the whole mess is worth. */
  172.   unsigned char data[IPPP_RESET_MAXDATABYTES];
  173. };
  174. /* The data structure keeping track of the currently outstanding CCP Reset
  175.    transactions. */
  176. struct ippp_ccp_reset {
  177.   struct ippp_ccp_reset_state *rs[256]; /* One per possible id */
  178.   unsigned char lastid; /* Last id allocated by the engine */
  179. };
  180. struct ippp_struct {
  181.   struct ippp_struct *next_link;
  182.   int state;
  183.   spinlock_t buflock;
  184.   struct ippp_buf_queue rq[NUM_RCV_BUFFS]; /* packet queue for isdn_ppp_read() */
  185.   struct ippp_buf_queue *first;  /* pointer to (current) first packet */
  186.   struct ippp_buf_queue *last;   /* pointer to (current) last used packet in queue */
  187.   wait_queue_head_t wq;
  188.   struct task_struct *tk;
  189.   unsigned int mpppcfg;
  190.   unsigned int pppcfg;
  191.   unsigned int mru;
  192.   unsigned int mpmru;
  193.   unsigned int mpmtu;
  194.   unsigned int maxcid;
  195.   struct isdn_net_local_s *lp;
  196.   int unit;
  197.   int minor;
  198.   unsigned int last_link_seqno;
  199.   long mp_seqno;
  200. #ifdef CONFIG_ISDN_PPP_VJ
  201.   unsigned char *cbuf;
  202.   struct slcompress *slcomp;
  203. #endif
  204. #ifdef CONFIG_IPPP_FILTER
  205.   struct sock_filter *pass_filter; /* filter for packets to pass */
  206.   struct sock_filter *active_filter; /* filter for pkts to reset idle */
  207.   unsigned pass_len, active_len;
  208. #endif
  209.   unsigned long debug;
  210.   struct isdn_ppp_compressor *compressor,*decompressor;
  211.   struct isdn_ppp_compressor *link_compressor,*link_decompressor;
  212.   void *decomp_stat,*comp_stat,*link_decomp_stat,*link_comp_stat;
  213.   struct ippp_ccp_reset *reset; /* Allocated on demand, may never be needed */
  214.   unsigned long compflags;
  215. };
  216. #endif /* __KERNEL__ */
  217. #endif /* _LINUX_ISDN_PPP_H */