atm.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* atm.h - general ATM declarations */
  2.  
  3. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  4.  
  5. /*
  6.  * WARNING: User-space programs should not #include <linux/atm.h> directly.
  7.  *          Instead, #include <atm.h>
  8.  */
  9. #ifndef _LINUX_ATM_H
  10. #define _LINUX_ATM_H
  11. /*
  12.  * BEGIN_xx and END_xx markers are used for automatic generation of
  13.  * documentation. Do not change them.
  14.  */
  15. #ifdef __KERNEL__
  16. #include <linux/socket.h>
  17. #include <linux/types.h>
  18. #endif
  19. #include <linux/atmapi.h>
  20. #include <linux/atmsap.h>
  21. #include <linux/atmioc.h>
  22. /* general ATM constants */
  23. #define ATM_CELL_SIZE     53 /* ATM cell size incl. header */
  24. #define ATM_CELL_PAYLOAD     48 /* ATM payload size */
  25. #define ATM_AAL0_SDU     52 /* AAL0 SDU size */
  26. #define ATM_MAX_AAL34_PDU  65535 /* maximum AAL3/4 PDU payload */
  27. #define ATM_AAL5_TRAILER      8 /* AAL5 trailer size */
  28. #define ATM_MAX_AAL5_PDU  65535 /* maximum AAL5 PDU payload */
  29. #define ATM_MAX_CDV   9999 /* maximum (default) CDV */
  30. #define ATM_NOT_RSV_VCI     32 /* first non-reserved VCI value */
  31. #define ATM_MAX_VPI    255 /* maximum VPI at the UNI */
  32. #define ATM_MAX_VPI_NNI   4096 /* maximum VPI at the NNI */
  33. #define ATM_MAX_VCI  65535 /* maximum VCI */
  34. /* "protcol" values for the socket system call */
  35. #define ATM_NO_AAL 0 /* AAL not specified */
  36. #define ATM_AAL0 13 /* "raw" ATM cells */
  37. #define ATM_AAL1 1 /* AAL1 (CBR) */
  38. #define ATM_AAL2 2 /* AAL2 (VBR) */
  39. #define ATM_AAL34 3 /* AAL3/4 (data) */
  40. #define ATM_AAL5 5 /* AAL5 (data) */
  41. /*
  42.  * socket option name coding functions
  43.  *
  44.  * Note that __SO_ENCODE and __SO_LEVEL are somewhat a hack since the
  45.  * << 22 only reserves 9 bits for the level.  On some architectures
  46.  * SOL_SOCKET is 0xFFFF, so that's a bit of a problem
  47.  */
  48. #define __SO_ENCODE(l,n,t) ((((l) & 0x1FF) << 22) | ((n) << 16) | 
  49. sizeof(t))
  50. #define __SO_LEVEL_MATCH(c,m) (((c) >> 22) == ((m) & 0x1FF))
  51. #define __SO_NUMBER(c) (((c) >> 16) & 0x3f)
  52. #define __SO_SIZE(c) ((c) & 0x3fff)
  53. /*
  54.  * ATM layer
  55.  */
  56. #define SO_SETCLP __SO_ENCODE(SOL_ATM,0,int)
  57.     /* set CLP bit value - TODO */
  58. #define SO_CIRANGE __SO_ENCODE(SOL_ATM,1,struct atm_cirange)
  59.     /* connection identifier range; socket must be
  60.        bound or connected */
  61. #define SO_ATMQOS __SO_ENCODE(SOL_ATM,2,struct atm_qos)
  62.     /* Quality of Service setting */
  63. #define SO_ATMSAP __SO_ENCODE(SOL_ATM,3,struct atm_sap)
  64.     /* Service Access Point */
  65. #define SO_ATMPVC __SO_ENCODE(SOL_ATM,4,struct sockaddr_atmpvc)
  66.     /* "PVC" address (also for SVCs); get only */
  67. /*
  68.  * Note @@@: since the socket layers don't really distinguish the control and
  69.  * the data plane but generally seems to be data plane-centric, any layer is
  70.  * about equally wrong for the SAP. If you have a better idea about this,
  71.  * please speak up ...
  72.  */
  73. /* ATM cell header (for AAL0) */
  74. /* BEGIN_CH */
  75. #define ATM_HDR_GFC_MASK 0xf0000000
  76. #define ATM_HDR_GFC_SHIFT 28
  77. #define ATM_HDR_VPI_MASK 0x0ff00000
  78. #define ATM_HDR_VPI_SHIFT 20
  79. #define ATM_HDR_VCI_MASK 0x000ffff0
  80. #define ATM_HDR_VCI_SHIFT 4
  81. #define ATM_HDR_PTI_MASK 0x0000000e
  82. #define ATM_HDR_PTI_SHIFT 1
  83. #define ATM_HDR_CLP 0x00000001
  84. /* END_CH */
  85. /* PTI codings */
  86. /* BEGIN_PTI */
  87. #define ATM_PTI_US0 0  /* user data cell, congestion not exp, SDU-type 0 */
  88. #define ATM_PTI_US1 1  /* user data cell, congestion not exp, SDU-type 1 */
  89. #define ATM_PTI_UCES0 2  /* user data cell, cong. experienced, SDU-type 0 */
  90. #define ATM_PTI_UCES1 3  /* user data cell, cong. experienced, SDU-type 1 */
  91. #define ATM_PTI_SEGF5 4  /* segment OAM F5 flow related cell */
  92. #define ATM_PTI_E2EF5 5  /* end-to-end OAM F5 flow related cell */
  93. #define ATM_PTI_RSV_RM 6  /* reserved for traffic control/resource mgmt */
  94. #define ATM_PTI_RSV 7  /* reserved */
  95. /* END_PTI */
  96. /*
  97.  * The following items should stay in linux/atm.h, which should be linked to
  98.  * netatm/atm.h
  99.  */
  100. /* Traffic description */
  101. #define ATM_NONE 0 /* no traffic */
  102. #define ATM_UBR 1
  103. #define ATM_CBR 2
  104. #define ATM_VBR 3
  105. #define ATM_ABR 4
  106. #define ATM_ANYCLASS 5 /* compatible with everything */
  107. #define ATM_MAX_PCR -1 /* maximum available PCR */
  108. struct atm_trafprm {
  109. unsigned char traffic_class; /* traffic class (ATM_UBR, ...) */
  110. int max_pcr; /* maximum PCR in cells per second */
  111. int pcr; /* desired PCR in cells per second */
  112. int min_pcr; /* minimum PCR in cells per second */
  113. int max_cdv; /* maximum CDV in microseconds */
  114. int max_sdu; /* maximum SDU in bytes */
  115.         /* extra params for ABR */
  116.         unsigned int  icr;          /* Initial Cell Rate (24-bit) */
  117.         unsigned int tbe; /* Transient Buffer Exposure (24-bit) */ 
  118.         unsigned int  frtt : 24; /* Fixed Round Trip Time (24-bit) */
  119.         unsigned int  rif  : 4;       /* Rate Increment Factor (4-bit) */
  120.         unsigned int  rdf  : 4;       /* Rate Decrease Factor (4-bit) */
  121.         unsigned int nrm_pres  :1;      /* nrm present bit */
  122.         unsigned int trm_pres  :1;      /* rm present bit */
  123.         unsigned int adtf_pres :1;      /* adtf present bit */
  124.         unsigned int cdf_pres  :1;     /* cdf present bit*/
  125.         unsigned int nrm       :3;      /* Max # of Cells for each forward RM cell (3-bit) */
  126.         unsigned int trm       :3;     /* Time between forward RM cells (3-bit) */    
  127. unsigned int adtf      :10;     /* ACR Decrease Time Factor (10-bit) */
  128. unsigned int cdf       :3;      /* Cutoff Decrease Factor (3-bit) */
  129.         unsigned int spare     :9;      /* spare bits */ 
  130. };
  131. struct atm_qos {
  132. struct atm_trafprm txtp; /* parameters in TX direction */
  133. struct atm_trafprm rxtp __ATM_API_ALIGN;
  134. /* parameters in RX direction */
  135. unsigned char aal __ATM_API_ALIGN;
  136. };
  137. /* PVC addressing */
  138. #define ATM_ITF_ANY -1 /* "magic" PVC address values */
  139. #define ATM_VPI_ANY -1
  140. #define ATM_VCI_ANY -1
  141. #define ATM_VPI_UNSPEC -2
  142. #define ATM_VCI_UNSPEC -2
  143. struct sockaddr_atmpvc {
  144. unsigned short  sap_family; /* address family, AF_ATMPVC  */
  145. struct { /* PVC address */
  146. short itf; /* ATM interface */
  147. short vpi; /* VPI (only 8 bits at UNI) */
  148. int vci; /* VCI (only 16 bits at UNI) */
  149. } sap_addr __ATM_API_ALIGN; /* PVC address */
  150. };
  151. /* SVC addressing */
  152. #define ATM_ESA_LEN 20 /* ATM End System Address length */
  153. #define ATM_E164_LEN 12 /* maximum E.164 number length */
  154. #define ATM_AFI_DCC 0x39 /* DCC ATM Format */
  155. #define ATM_AFI_ICD 0x47 /* ICD ATM Format */
  156. #define ATM_AFI_E164 0x45 /* E.164 ATM Format */
  157. #define ATM_AFI_LOCAL 0x49 /* Local ATM Format */ 
  158. #define ATM_AFI_DCC_GROUP 0xBD /* DCC ATM Group Format */
  159. #define ATM_AFI_ICD_GROUP 0xC5 /* ICD ATM Group Format */
  160. #define ATM_AFI_E164_GROUP 0xC3 /* E.164 ATM Group Format */
  161. #define ATM_AFI_LOCAL_GROUP 0xC7 /* Local ATM Group Format */
  162. #define ATM_LIJ_NONE 0 /* no leaf-initiated join */
  163. #define ATM_LIJ 1 /* request joining */
  164. #define ATM_LIJ_RPJ 2 /* set to root-prompted join */
  165. #define ATM_LIJ_NJ 3 /* set to network join */
  166. struct sockaddr_atmsvc {
  167.     unsigned short  sas_family; /* address family, AF_ATMSVC */
  168.     struct { /* SVC address */
  169.         unsigned char prv[ATM_ESA_LEN];/* private ATM address */
  170.         char pub[ATM_E164_LEN+1]; /* public address (E.164) */
  171.      /* unused addresses must be bzero'ed */
  172. char lij_type; /* role in LIJ call; one of ATM_LIJ* */
  173. uint32_t lij_id; /* LIJ call identifier */
  174.     } sas_addr __ATM_API_ALIGN; /* SVC address */
  175. };
  176. static __inline__ int atmsvc_addr_in_use(struct sockaddr_atmsvc addr)
  177. {
  178. return *addr.sas_addr.prv || *addr.sas_addr.pub;
  179. }
  180. static __inline__ int atmpvc_addr_in_use(struct sockaddr_atmpvc addr)
  181. {
  182. return addr.sap_addr.itf || addr.sap_addr.vpi || addr.sap_addr.vci;
  183. }
  184. /*
  185.  * Some stuff for linux/sockios.h
  186.  */
  187. struct atmif_sioc {
  188.     int number;
  189.     int length;
  190.     void *arg;
  191. };
  192. typedef unsigned short atm_backend_t;
  193. #ifdef __KERNEL__
  194. #include <linux/net.h> /* struct net_proto */
  195. void atmpvc_proto_init(struct net_proto *pro);
  196. void atmsvc_proto_init(struct net_proto *pro);
  197. #endif /* __KERNEL__ */
  198. #endif