ptp_classifier.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* PTP classifier
  2. *
  3. * This program is free software; you can redistribute it and/or
  4. * modify it under the terms of version 2 of the GNU General Public
  5. * License as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful, but
  8. * WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. * General Public License for more details.
  11. */
  12. /* The below program is the bpf_asm (tools/net/) representation of
  13. * the opcode array in the ptp_filter structure.
  14. *
  15. * For convenience, this can easily be altered and reviewed with
  16. * bpf_asm and bpf_dbg, e.g. `./bpf_asm -c prog` where prog is a
  17. * simple file containing the below program:
  18. *
  19. * ldh [12] ; load ethertype
  20. *
  21. * ; PTP over UDP over IPv4 over Ethernet
  22. * test_ipv4:
  23. * jneq #0x800, test_ipv6 ; ETH_P_IP ?
  24. * ldb [23] ; load proto
  25. * jneq #17, drop_ipv4 ; IPPROTO_UDP ?
  26. * ldh [20] ; load frag offset field
  27. * jset #0x1fff, drop_ipv4 ; don't allow fragments
  28. * ldxb 4*([14]&0xf) ; load IP header len
  29. * ldh [x + 16] ; load UDP dst port
  30. * jneq #319, drop_ipv4 ; is port PTP_EV_PORT ?
  31. * ldh [x + 22] ; load payload
  32. * and #0xf ; mask PTP_CLASS_VMASK
  33. * or #0x10 ; PTP_CLASS_IPV4
  34. * ret a ; return PTP class
  35. * drop_ipv4: ret #0x0 ; PTP_CLASS_NONE
  36. *
  37. * ; PTP over UDP over IPv6 over Ethernet
  38. * test_ipv6:
  39. * jneq #0x86dd, test_8021q ; ETH_P_IPV6 ?
  40. * ldb [20] ; load proto
  41. * jneq #17, drop_ipv6 ; IPPROTO_UDP ?
  42. * ldh [56] ; load UDP dst port
  43. * jneq #319, drop_ipv6 ; is port PTP_EV_PORT ?
  44. * ldh [62] ; load payload
  45. * and #0xf ; mask PTP_CLASS_VMASK
  46. * or #0x20 ; PTP_CLASS_IPV6
  47. * ret a ; return PTP class
  48. * drop_ipv6: ret #0x0 ; PTP_CLASS_NONE
  49. *
  50. * ; PTP over 802.1Q over Ethernet
  51. * test_8021q:
  52. * jneq #0x8100, test_ieee1588 ; ETH_P_8021Q ?
  53. * ldh [16] ; load inner type
  54. * jneq #0x88f7, drop_ieee1588 ; ETH_P_1588 ?
  55. * ldb [18] ; load payload
  56. * and #0x8 ; as we don't have ports here, test
  57. * jneq #0x0, drop_ieee1588 ; for PTP_GEN_BIT and drop these
  58. * ldh [18] ; reload payload
  59. * and #0xf ; mask PTP_CLASS_VMASK
  60. * or #0x40 ; PTP_CLASS_V2_VLAN
  61. * ret a ; return PTP class
  62. *
  63. * ; PTP over Ethernet
  64. * test_ieee1588:
  65. * jneq #0x88f7, drop_ieee1588 ; ETH_P_1588 ?
  66. * ldb [14] ; load payload
  67. * and #0x8 ; as we don't have ports here, test
  68. * jneq #0x0, drop_ieee1588 ; for PTP_GEN_BIT and drop these
  69. * ldh [14] ; reload payload
  70. * and #0xf ; mask PTP_CLASS_VMASK
  71. * or #0x30 ; PTP_CLASS_L2
  72. * ret a ; return PTP class
  73. * drop_ieee1588: ret #0x0 ; PTP_CLASS_NONE
  74. */
  75. #include <linux/skbuff.h>
  76. #include <linux/filter.h>
  77. #include <linux/ptp_classify.h>
  78. static struct sk_filter *ptp_insns __read_mostly;
  79. unsigned int ptp_classify_raw(const struct sk_buff *skb)
  80. {
  81. return SK_RUN_FILTER(ptp_insns, skb);
  82. }
  83. EXPORT_SYMBOL_GPL(ptp_classify_raw);
  84. void __init ptp_classifier_init(void)
  85. {
  86. static struct sock_filter ptp_filter[] = {
  87. { 0x28, 0, 0, 0x0000000c },
  88. { 0x15, 0, 12, 0x00000800 },
  89. { 0x30, 0, 0, 0x00000017 },
  90. { 0x15, 0, 9, 0x00000011 },
  91. { 0x28, 0, 0, 0x00000014 },
  92. { 0x45, 7, 0, 0x00001fff },
  93. { 0xb1, 0, 0, 0x0000000e },
  94. { 0x48, 0, 0, 0x00000010 },
  95. { 0x15, 0, 4, 0x0000013f },
  96. { 0x48, 0, 0, 0x00000016 },
  97. { 0x54, 0, 0, 0x0000000f },
  98. { 0x44, 0, 0, 0x00000010 },
  99. { 0x16, 0, 0, 0x00000000 },
  100. { 0x06, 0, 0, 0x00000000 },
  101. { 0x15, 0, 9, 0x000086dd },
  102. { 0x30, 0, 0, 0x00000014 },
  103. { 0x15, 0, 6, 0x00000011 },
  104. { 0x28, 0, 0, 0x00000038 },
  105. { 0x15, 0, 4, 0x0000013f },
  106. { 0x28, 0, 0, 0x0000003e },
  107. { 0x54, 0, 0, 0x0000000f },
  108. { 0x44, 0, 0, 0x00000020 },
  109. { 0x16, 0, 0, 0x00000000 },
  110. { 0x06, 0, 0, 0x00000000 },
  111. { 0x15, 0, 9, 0x00008100 },
  112. { 0x28, 0, 0, 0x00000010 },
  113. { 0x15, 0, 15, 0x000088f7 },
  114. { 0x30, 0, 0, 0x00000012 },
  115. { 0x54, 0, 0, 0x00000008 },
  116. { 0x15, 0, 12, 0x00000000 },
  117. { 0x28, 0, 0, 0x00000012 },
  118. { 0x54, 0, 0, 0x0000000f },
  119. { 0x44, 0, 0, 0x00000040 },
  120. { 0x16, 0, 0, 0x00000000 },
  121. { 0x15, 0, 7, 0x000088f7 },
  122. { 0x30, 0, 0, 0x0000000e },
  123. { 0x54, 0, 0, 0x00000008 },
  124. { 0x15, 0, 4, 0x00000000 },
  125. { 0x28, 0, 0, 0x0000000e },
  126. { 0x54, 0, 0, 0x0000000f },
  127. { 0x44, 0, 0, 0x00000030 },
  128. { 0x16, 0, 0, 0x00000000 },
  129. { 0x06, 0, 0, 0x00000000 },
  130. };
  131. struct sock_fprog ptp_prog = {
  132. .len = ARRAY_SIZE(ptp_filter), .filter = ptp_filter,
  133. };
  134. BUG_ON(sk_unattached_filter_create(&ptp_insns, &ptp_prog));
  135. }