llc_pdu.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. #ifndef LLC_PDU_H
  2. #define LLC_PDU_H
  3. /*
  4. * Copyright (c) 1997 by Procom Technology,Inc.
  5. * 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  6. *
  7. * This program can be redistributed or modified under the terms of the
  8. * GNU General Public License as published by the Free Software Foundation.
  9. * This program is distributed without any warranty or implied warranty
  10. * of merchantability or fitness for a particular purpose.
  11. *
  12. * See the GNU General Public License for more details.
  13. */
  14. #include <linux/if_ether.h>
  15. /* Lengths of frame formats */
  16. #define LLC_PDU_LEN_I 4 /* header and 2 control bytes */
  17. #define LLC_PDU_LEN_S 4
  18. #define LLC_PDU_LEN_U 3 /* header and 1 control byte */
  19. /* Known SAP addresses */
  20. #define LLC_GLOBAL_SAP 0xFF
  21. #define LLC_NULL_SAP 0x00 /* not network-layer visible */
  22. #define LLC_MGMT_INDIV 0x02 /* station LLC mgmt indiv addr */
  23. #define LLC_MGMT_GRP 0x03 /* station LLC mgmt group addr */
  24. #define LLC_RDE_SAP 0xA6 /* route ... */
  25. /* SAP field bit masks */
  26. #define LLC_ISO_RESERVED_SAP 0x02
  27. #define LLC_SAP_GROUP_DSAP 0x01
  28. #define LLC_SAP_RESP_SSAP 0x01
  29. /* Group/individual DSAP indicator is DSAP field */
  30. #define LLC_PDU_GROUP_DSAP_MASK 0x01
  31. #define LLC_PDU_IS_GROUP_DSAP(pdu) \
  32. ((pdu->dsap & LLC_PDU_GROUP_DSAP_MASK) ? 0 : 1)
  33. #define LLC_PDU_IS_INDIV_DSAP(pdu) \
  34. (!(pdu->dsap & LLC_PDU_GROUP_DSAP_MASK) ? 0 : 1)
  35. /* Command/response PDU indicator in SSAP field */
  36. #define LLC_PDU_CMD_RSP_MASK 0x01
  37. #define LLC_PDU_CMD 0
  38. #define LLC_PDU_RSP 1
  39. #define LLC_PDU_IS_CMD(pdu) ((pdu->ssap & LLC_PDU_RSP) ? 0 : 1)
  40. #define LLC_PDU_IS_RSP(pdu) ((pdu->ssap & LLC_PDU_RSP) ? 1 : 0)
  41. /* Get PDU type from 2 lowest-order bits of control field first byte */
  42. #define LLC_PDU_TYPE_I_MASK 0x01 /* 16-bit control field */
  43. #define LLC_PDU_TYPE_S_MASK 0x03
  44. #define LLC_PDU_TYPE_U_MASK 0x03 /* 8-bit control field */
  45. #define LLC_PDU_TYPE_MASK 0x03
  46. #define LLC_PDU_TYPE_I 0 /* first bit */
  47. #define LLC_PDU_TYPE_S 1 /* first two bits */
  48. #define LLC_PDU_TYPE_U 3 /* first two bits */
  49. #define LLC_PDU_TYPE_IS_I(pdu) \
  50. ((!(pdu->ctrl_1 & LLC_PDU_TYPE_I_MASK)) ? 1 : 0)
  51. #define LLC_PDU_TYPE_IS_U(pdu) \
  52. (((pdu->ctrl_1 & LLC_PDU_TYPE_U_MASK) == LLC_PDU_TYPE_U) ? 1 : 0)
  53. #define LLC_PDU_TYPE_IS_S(pdu) \
  54. (((pdu->ctrl_1 & LLC_PDU_TYPE_S_MASK) == LLC_PDU_TYPE_S) ? 1 : 0)
  55. /* U-format PDU control field masks */
  56. #define LLC_U_PF_BIT_MASK 0x10 /* P/F bit mask */
  57. #define LLC_U_PF_IS_1(pdu) ((pdu->ctrl_1 & LLC_U_PF_BIT_MASK) ? 1 : 0)
  58. #define LLC_U_PF_IS_0(pdu) ((!(pdu->ctrl_1 & LLC_U_PF_BIT_MASK)) ? 1 : 0)
  59. #define LLC_U_PDU_CMD_MASK 0xEC /* cmd/rsp mask */
  60. #define LLC_U_PDU_CMD(pdu) (pdu->ctrl_1 & LLC_U_PDU_CMD_MASK)
  61. #define LLC_U_PDU_RSP(pdu) (pdu->ctrl_1 & LLC_U_PDU_CMD_MASK)
  62. #define LLC_1_PDU_CMD_UI 0x00 /* Type 1 cmds/rsps */
  63. #define LLC_1_PDU_CMD_XID 0xAC
  64. #define LLC_1_PDU_CMD_TEST 0xE0
  65. #define LLC_2_PDU_CMD_SABME 0x6C /* Type 2 cmds/rsps */
  66. #define LLC_2_PDU_CMD_DISC 0x40
  67. #define LLC_2_PDU_RSP_UA 0x60
  68. #define LLC_2_PDU_RSP_DM 0x0C
  69. #define LLC_2_PDU_RSP_FRMR 0x84
  70. /* Type 1 operations */
  71. /* XID information field bit masks */
  72. /* LLC format identifier (byte 1) */
  73. #define LLC_XID_FMT_ID 0x81 /* first byte must be this */
  74. /* LLC types/classes identifier (byte 2) */
  75. #define LLC_XID_CLASS_ZEROS_MASK 0xE0 /* these must be zeros */
  76. #define LLC_XID_CLASS_MASK 0x1F /* AND with byte to get below */
  77. #define LLC_XID_NULL_CLASS_1 0x01 /* if NULL LSAP...use these */
  78. #define LLC_XID_NULL_CLASS_2 0x03
  79. #define LLC_XID_NULL_CLASS_3 0x05
  80. #define LLC_XID_NULL_CLASS_4 0x07
  81. #define LLC_XID_NNULL_TYPE_1 0x01 /* if non-NULL LSAP...use these */
  82. #define LLC_XID_NNULL_TYPE_2 0x02
  83. #define LLC_XID_NNULL_TYPE_3 0x04
  84. #define LLC_XID_NNULL_TYPE_1_2 0x03
  85. #define LLC_XID_NNULL_TYPE_1_3 0x05
  86. #define LLC_XID_NNULL_TYPE_2_3 0x06
  87. #define LLC_XID_NNULL_ALL 0x07
  88. /* Sender Receive Window (byte 3) */
  89. #define LLC_XID_RW_MASK 0xFE /* AND with value to get below */
  90. #define LLC_XID_MIN_RW 0x02 /* lowest-order bit always zero */
  91. /* Type 2 operations */
  92. #define LLC_2_SEQ_NBR_MODULO ((u8) 128)
  93. /* I-PDU masks ('ctrl' is I-PDU control word) */
  94. #define LLC_I_GET_NS(pdu) (u8)((pdu->ctrl_1 & 0xFE) >> 1)
  95. #define LLC_I_GET_NR(pdu) (u8)((pdu->ctrl_2 & 0xFE) >> 1)
  96. #define LLC_I_PF_BIT_MASK 0x01
  97. #define LLC_I_PF_IS_0(pdu) ((!(pdu->ctrl_2 & LLC_I_PF_BIT_MASK)) ? 1 : 0)
  98. #define LLC_I_PF_IS_1(pdu) ((pdu->ctrl_2 & LLC_I_PF_BIT_MASK) ? 1 : 0)
  99. /* S-PDU supervisory commands and responses */
  100. #define LLC_S_PDU_CMD_MASK 0x0C
  101. #define LLC_S_PDU_CMD(pdu) (pdu->ctrl_1 & LLC_S_PDU_CMD_MASK)
  102. #define LLC_S_PDU_RSP(pdu) (pdu->ctrl_1 & LLC_S_PDU_CMD_MASK)
  103. #define LLC_2_PDU_CMD_RR 0x00 /* rx ready cmd */
  104. #define LLC_2_PDU_RSP_RR 0x00 /* rx ready rsp */
  105. #define LLC_2_PDU_CMD_REJ 0x08 /* reject PDU cmd */
  106. #define LLC_2_PDU_RSP_REJ 0x08 /* reject PDU rsp */
  107. #define LLC_2_PDU_CMD_RNR 0x04 /* rx not ready cmd */
  108. #define LLC_2_PDU_RSP_RNR 0x04 /* rx not ready rsp */
  109. #define LLC_S_PF_BIT_MASK 0x01
  110. #define LLC_S_PF_IS_0(pdu) ((!(pdu->ctrl_2 & LLC_S_PF_BIT_MASK)) ? 1 : 0)
  111. #define LLC_S_PF_IS_1(pdu) ((pdu->ctrl_2 & LLC_S_PF_BIT_MASK) ? 1 : 0)
  112. #define PDU_SUPV_GET_Nr(pdu) ((pdu->ctrl_2 & 0xFE) >> 1)
  113. #define PDU_GET_NEXT_Vr(sn) (((sn) + 1) & ~LLC_2_SEQ_NBR_MODULO)
  114. /* FRMR information field macros */
  115. #define FRMR_INFO_LENGTH 5 /* 5 bytes of information */
  116. /*
  117. * info is pointer to FRMR info field structure; 'rej_ctrl' is byte pointer
  118. * (if U-PDU) or word pointer to rejected PDU control field
  119. */
  120. #define FRMR_INFO_SET_REJ_CNTRL(info,rej_ctrl) \
  121. info->rej_pdu_ctrl = ((*((u8 *) rej_ctrl) & \
  122. LLC_PDU_TYPE_U) != LLC_PDU_TYPE_U ? \
  123. (u16)*((u16 *) rej_ctrl) : \
  124. (((u16) *((u8 *) rej_ctrl)) & 0x00FF))
  125. /*
  126. * Info is pointer to FRMR info field structure; 'vs' is a byte containing
  127. * send state variable value in low-order 7 bits (insure the lowest-order
  128. * bit remains zero (0))
  129. */
  130. #define FRMR_INFO_SET_Vs(info,vs) (info->curr_ssv = (((u8) vs) << 1))
  131. #define FRMR_INFO_SET_Vr(info,vr) (info->curr_rsv = (((u8) vr) << 1))
  132. /*
  133. * Info is pointer to FRMR info field structure; 'cr' is a byte containing
  134. * the C/R bit value in the low-order bit
  135. */
  136. #define FRMR_INFO_SET_C_R_BIT(info, cr) (info->curr_rsv |= (((u8) cr) & 0x01))
  137. /*
  138. * In the remaining five macros, 'info' is pointer to FRMR info field
  139. * structure; 'ind' is a byte containing the bit value to set in the
  140. * lowest-order bit)
  141. */
  142. #define FRMR_INFO_SET_INVALID_PDU_CTRL_IND(info, ind) \
  143. (info->ind_bits = ((info->ind_bits & 0xFE) | (((u8) ind) & 0x01)))
  144. #define FRMR_INFO_SET_INVALID_PDU_INFO_IND(info, ind) \
  145. (info->ind_bits = ( (info->ind_bits & 0xFD) | (((u8) ind) & 0x02)))
  146. #define FRMR_INFO_SET_PDU_INFO_2LONG_IND(info, ind) \
  147. (info->ind_bits = ( (info->ind_bits & 0xFB) | (((u8) ind) & 0x04)))
  148. #define FRMR_INFO_SET_PDU_INVALID_Nr_IND(info, ind) \
  149. (info->ind_bits = ( (info->ind_bits & 0xF7) | (((u8) ind) & 0x08)))
  150. #define FRMR_INFO_SET_PDU_INVALID_Ns_IND(info, ind) \
  151. (info->ind_bits = ( (info->ind_bits & 0xEF) | (((u8) ind) & 0x10)))
  152. /* Sequence-numbered PDU format (4 bytes in length) */
  153. struct llc_pdu_sn {
  154. u8 dsap;
  155. u8 ssap;
  156. u8 ctrl_1;
  157. u8 ctrl_2;
  158. } __packed;
  159. static inline struct llc_pdu_sn *llc_pdu_sn_hdr(struct sk_buff *skb)
  160. {
  161. return (struct llc_pdu_sn *)skb_network_header(skb);
  162. }
  163. /* Un-numbered PDU format (3 bytes in length) */
  164. struct llc_pdu_un {
  165. u8 dsap;
  166. u8 ssap;
  167. u8 ctrl_1;
  168. } __packed;
  169. static inline struct llc_pdu_un *llc_pdu_un_hdr(struct sk_buff *skb)
  170. {
  171. return (struct llc_pdu_un *)skb_network_header(skb);
  172. }
  173. /**
  174. * llc_pdu_header_init - initializes pdu header
  175. * @skb: input skb that header must be set into it.
  176. * @type: type of PDU (U, I or S).
  177. * @ssap: source sap.
  178. * @dsap: destination sap.
  179. * @cr: command/response bit (0 or 1).
  180. *
  181. * This function sets DSAP, SSAP and command/Response bit in LLC header.
  182. */
  183. static inline void llc_pdu_header_init(struct sk_buff *skb, u8 type,
  184. u8 ssap, u8 dsap, u8 cr)
  185. {
  186. const int hlen = type == LLC_PDU_TYPE_U ? 3 : 4;
  187. struct llc_pdu_un *pdu;
  188. skb_push(skb, hlen);
  189. skb_reset_network_header(skb);
  190. pdu = llc_pdu_un_hdr(skb);
  191. pdu->dsap = dsap;
  192. pdu->ssap = ssap;
  193. pdu->ssap |= cr;
  194. }
  195. /**
  196. * llc_pdu_decode_sa - extracs source address (MAC) of input frame
  197. * @skb: input skb that source address must be extracted from it.
  198. * @sa: pointer to source address (6 byte array).
  199. *
  200. * This function extracts source address(MAC) of input frame.
  201. */
  202. static inline void llc_pdu_decode_sa(struct sk_buff *skb, u8 *sa)
  203. {
  204. if (skb->protocol == htons(ETH_P_802_2))
  205. memcpy(sa, eth_hdr(skb)->h_source, ETH_ALEN);
  206. }
  207. /**
  208. * llc_pdu_decode_da - extracts dest address of input frame
  209. * @skb: input skb that destination address must be extracted from it
  210. * @sa: pointer to destination address (6 byte array).
  211. *
  212. * This function extracts destination address(MAC) of input frame.
  213. */
  214. static inline void llc_pdu_decode_da(struct sk_buff *skb, u8 *da)
  215. {
  216. if (skb->protocol == htons(ETH_P_802_2))
  217. memcpy(da, eth_hdr(skb)->h_dest, ETH_ALEN);
  218. }
  219. /**
  220. * llc_pdu_decode_ssap - extracts source SAP of input frame
  221. * @skb: input skb that source SAP must be extracted from it.
  222. * @ssap: source SAP (output argument).
  223. *
  224. * This function extracts source SAP of input frame. Right bit of SSAP is
  225. * command/response bit.
  226. */
  227. static inline void llc_pdu_decode_ssap(struct sk_buff *skb, u8 *ssap)
  228. {
  229. *ssap = llc_pdu_un_hdr(skb)->ssap & 0xFE;
  230. }
  231. /**
  232. * llc_pdu_decode_dsap - extracts dest SAP of input frame
  233. * @skb: input skb that destination SAP must be extracted from it.
  234. * @dsap: destination SAP (output argument).
  235. *
  236. * This function extracts destination SAP of input frame. right bit of
  237. * DSAP designates individual/group SAP.
  238. */
  239. static inline void llc_pdu_decode_dsap(struct sk_buff *skb, u8 *dsap)
  240. {
  241. *dsap = llc_pdu_un_hdr(skb)->dsap & 0xFE;
  242. }
  243. /**
  244. * llc_pdu_init_as_ui_cmd - sets LLC header as UI PDU
  245. * @skb: input skb that header must be set into it.
  246. *
  247. * This function sets third byte of LLC header as a UI PDU.
  248. */
  249. static inline void llc_pdu_init_as_ui_cmd(struct sk_buff *skb)
  250. {
  251. struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  252. pdu->ctrl_1 = LLC_PDU_TYPE_U;
  253. pdu->ctrl_1 |= LLC_1_PDU_CMD_UI;
  254. }
  255. /**
  256. * llc_pdu_init_as_test_cmd - sets PDU as TEST
  257. * @skb - Address of the skb to build
  258. *
  259. * Sets a PDU as TEST
  260. */
  261. static inline void llc_pdu_init_as_test_cmd(struct sk_buff *skb)
  262. {
  263. struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  264. pdu->ctrl_1 = LLC_PDU_TYPE_U;
  265. pdu->ctrl_1 |= LLC_1_PDU_CMD_TEST;
  266. pdu->ctrl_1 |= LLC_U_PF_BIT_MASK;
  267. }
  268. /**
  269. * llc_pdu_init_as_test_rsp - build TEST response PDU
  270. * @skb: Address of the skb to build
  271. * @ev_skb: The received TEST command PDU frame
  272. *
  273. * Builds a pdu frame as a TEST response.
  274. */
  275. static inline void llc_pdu_init_as_test_rsp(struct sk_buff *skb,
  276. struct sk_buff *ev_skb)
  277. {
  278. struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  279. pdu->ctrl_1 = LLC_PDU_TYPE_U;
  280. pdu->ctrl_1 |= LLC_1_PDU_CMD_TEST;
  281. pdu->ctrl_1 |= LLC_U_PF_BIT_MASK;
  282. if (ev_skb->protocol == htons(ETH_P_802_2)) {
  283. struct llc_pdu_un *ev_pdu = llc_pdu_un_hdr(ev_skb);
  284. int dsize;
  285. dsize = ntohs(eth_hdr(ev_skb)->h_proto) - 3;
  286. memcpy(((u8 *)pdu) + 3, ((u8 *)ev_pdu) + 3, dsize);
  287. skb_put(skb, dsize);
  288. }
  289. }
  290. /* LLC Type 1 XID command/response information fields format */
  291. struct llc_xid_info {
  292. u8 fmt_id; /* always 0x81 for LLC */
  293. u8 type; /* different if NULL/non-NULL LSAP */
  294. u8 rw; /* sender receive window */
  295. } __packed;
  296. /**
  297. * llc_pdu_init_as_xid_cmd - sets bytes 3, 4 & 5 of LLC header as XID
  298. * @skb: input skb that header must be set into it.
  299. *
  300. * This function sets third,fourth,fifth and sixth bytes of LLC header as
  301. * a XID PDU.
  302. */
  303. static inline void llc_pdu_init_as_xid_cmd(struct sk_buff *skb,
  304. u8 svcs_supported, u8 rx_window)
  305. {
  306. struct llc_xid_info *xid_info;
  307. struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  308. pdu->ctrl_1 = LLC_PDU_TYPE_U;
  309. pdu->ctrl_1 |= LLC_1_PDU_CMD_XID;
  310. pdu->ctrl_1 |= LLC_U_PF_BIT_MASK;
  311. xid_info = (struct llc_xid_info *)(((u8 *)&pdu->ctrl_1) + 1);
  312. xid_info->fmt_id = LLC_XID_FMT_ID; /* 0x81 */
  313. xid_info->type = svcs_supported;
  314. xid_info->rw = rx_window << 1; /* size of receive window */
  315. skb_put(skb, sizeof(struct llc_xid_info));
  316. }
  317. /**
  318. * llc_pdu_init_as_xid_rsp - builds XID response PDU
  319. * @skb: Address of the skb to build
  320. * @svcs_supported: The class of the LLC (I or II)
  321. * @rx_window: The size of the receive window of the LLC
  322. *
  323. * Builds a pdu frame as an XID response.
  324. */
  325. static inline void llc_pdu_init_as_xid_rsp(struct sk_buff *skb,
  326. u8 svcs_supported, u8 rx_window)
  327. {
  328. struct llc_xid_info *xid_info;
  329. struct llc_pdu_un *pdu = llc_pdu_un_hdr(skb);
  330. pdu->ctrl_1 = LLC_PDU_TYPE_U;
  331. pdu->ctrl_1 |= LLC_1_PDU_CMD_XID;
  332. pdu->ctrl_1 |= LLC_U_PF_BIT_MASK;
  333. xid_info = (struct llc_xid_info *)(((u8 *)&pdu->ctrl_1) + 1);
  334. xid_info->fmt_id = LLC_XID_FMT_ID;
  335. xid_info->type = svcs_supported;
  336. xid_info->rw = rx_window << 1;
  337. skb_put(skb, sizeof(struct llc_xid_info));
  338. }
  339. /* LLC Type 2 FRMR response information field format */
  340. struct llc_frmr_info {
  341. u16 rej_pdu_ctrl; /* bits 1-8 if U-PDU */
  342. u8 curr_ssv; /* current send state variable val */
  343. u8 curr_rsv; /* current receive state variable */
  344. u8 ind_bits; /* indicator bits set with macro */
  345. } __packed;
  346. void llc_pdu_set_cmd_rsp(struct sk_buff *skb, u8 type);
  347. void llc_pdu_set_pf_bit(struct sk_buff *skb, u8 bit_value);
  348. void llc_pdu_decode_pf_bit(struct sk_buff *skb, u8 *pf_bit);
  349. void llc_pdu_init_as_disc_cmd(struct sk_buff *skb, u8 p_bit);
  350. void llc_pdu_init_as_i_cmd(struct sk_buff *skb, u8 p_bit, u8 ns, u8 nr);
  351. void llc_pdu_init_as_rej_cmd(struct sk_buff *skb, u8 p_bit, u8 nr);
  352. void llc_pdu_init_as_rnr_cmd(struct sk_buff *skb, u8 p_bit, u8 nr);
  353. void llc_pdu_init_as_rr_cmd(struct sk_buff *skb, u8 p_bit, u8 nr);
  354. void llc_pdu_init_as_sabme_cmd(struct sk_buff *skb, u8 p_bit);
  355. void llc_pdu_init_as_dm_rsp(struct sk_buff *skb, u8 f_bit);
  356. void llc_pdu_init_as_frmr_rsp(struct sk_buff *skb, struct llc_pdu_sn *prev_pdu,
  357. u8 f_bit, u8 vs, u8 vr, u8 vzyxw);
  358. void llc_pdu_init_as_rr_rsp(struct sk_buff *skb, u8 f_bit, u8 nr);
  359. void llc_pdu_init_as_rej_rsp(struct sk_buff *skb, u8 f_bit, u8 nr);
  360. void llc_pdu_init_as_rnr_rsp(struct sk_buff *skb, u8 f_bit, u8 nr);
  361. void llc_pdu_init_as_ua_rsp(struct sk_buff *skb, u8 f_bit);
  362. #endif /* LLC_PDU_H */