blob: 6d3b0a2ef9ce851f299c03b3f83fcd5a8e4d4952 [file] [log] [blame]
Richard Cochran15f01272010-07-17 08:49:17 +00001/*
2 * PTP 1588 support
3 *
4 * This file implements a BPF that recognizes PTP event messages.
5 *
6 * Copyright (C) 2010 OMICRON electronics GmbH
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#ifndef _PTP_CLASSIFY_H_
24#define _PTP_CLASSIFY_H_
25
26#include <linux/if_ether.h>
27#include <linux/if_vlan.h>
Richard Cochrand94ba802011-04-22 12:03:08 +020028#include <linux/ip.h>
Richard Cochran15f01272010-07-17 08:49:17 +000029#include <linux/filter.h>
Richard Cochran15f01272010-07-17 08:49:17 +000030#include <linux/in.h>
Richard Cochran15f01272010-07-17 08:49:17 +000031
32#define PTP_CLASS_NONE 0x00 /* not a PTP event message */
33#define PTP_CLASS_V1 0x01 /* protocol version 1 */
34#define PTP_CLASS_V2 0x02 /* protocol version 2 */
35#define PTP_CLASS_VMASK 0x0f /* max protocol version is 15 */
36#define PTP_CLASS_IPV4 0x10 /* event in an IPV4 UDP packet */
37#define PTP_CLASS_IPV6 0x20 /* event in an IPV6 UDP packet */
38#define PTP_CLASS_L2 0x30 /* event in a L2 packet */
39#define PTP_CLASS_VLAN 0x40 /* event in a VLAN tagged L2 packet */
40#define PTP_CLASS_PMASK 0xf0 /* mask for the packet type field */
41
42#define PTP_CLASS_V1_IPV4 (PTP_CLASS_V1 | PTP_CLASS_IPV4)
43#define PTP_CLASS_V1_IPV6 (PTP_CLASS_V1 | PTP_CLASS_IPV6) /*probably DNE*/
44#define PTP_CLASS_V2_IPV4 (PTP_CLASS_V2 | PTP_CLASS_IPV4)
45#define PTP_CLASS_V2_IPV6 (PTP_CLASS_V2 | PTP_CLASS_IPV6)
46#define PTP_CLASS_V2_L2 (PTP_CLASS_V2 | PTP_CLASS_L2)
47#define PTP_CLASS_V2_VLAN (PTP_CLASS_V2 | PTP_CLASS_VLAN)
48
49#define PTP_EV_PORT 319
Richard Cochranf75159e2011-09-20 01:25:41 +000050#define PTP_GEN_BIT 0x08 /* indicates general message, if set in message type */
Richard Cochran15f01272010-07-17 08:49:17 +000051
52#define OFF_ETYPE 12
53#define OFF_IHL 14
54#define OFF_FRAG 20
55#define OFF_PROTO4 23
56#define OFF_NEXT 6
57#define OFF_UDP_DST 2
58
Richard Cochrand94ba802011-04-22 12:03:08 +020059#define OFF_PTP_SOURCE_UUID 22 /* PTPv1 only */
60#define OFF_PTP_SEQUENCE_ID 30
61#define OFF_PTP_CONTROL 32 /* PTPv1 only */
62
63#define IPV4_HLEN(data) (((struct iphdr *)(data + OFF_IHL))->ihl << 2)
64
Richard Cochran15f01272010-07-17 08:49:17 +000065#define IP6_HLEN 40
66#define UDP_HLEN 8
67
68#define RELOFF_DST4 (ETH_HLEN + OFF_UDP_DST)
69#define OFF_DST6 (ETH_HLEN + IP6_HLEN + OFF_UDP_DST)
70#define OFF_PTP6 (ETH_HLEN + IP6_HLEN + UDP_HLEN)
71
72#define OP_AND (BPF_ALU | BPF_AND | BPF_K)
73#define OP_JEQ (BPF_JMP | BPF_JEQ | BPF_K)
74#define OP_JSET (BPF_JMP | BPF_JSET | BPF_K)
75#define OP_LDB (BPF_LD | BPF_B | BPF_ABS)
76#define OP_LDH (BPF_LD | BPF_H | BPF_ABS)
77#define OP_LDHI (BPF_LD | BPF_H | BPF_IND)
78#define OP_LDX (BPF_LDX | BPF_B | BPF_MSH)
79#define OP_OR (BPF_ALU | BPF_OR | BPF_K)
80#define OP_RETA (BPF_RET | BPF_A)
81#define OP_RETK (BPF_RET | BPF_K)
82
Richard Cochran15f01272010-07-17 08:49:17 +000083#define PTP_FILTER \
84 {OP_LDH, 0, 0, OFF_ETYPE }, /* */ \
85 {OP_JEQ, 0, 12, ETH_P_IP }, /* f goto L20 */ \
86 {OP_LDB, 0, 0, OFF_PROTO4 }, /* */ \
87 {OP_JEQ, 0, 9, IPPROTO_UDP }, /* f goto L10 */ \
88 {OP_LDH, 0, 0, OFF_FRAG }, /* */ \
89 {OP_JSET, 7, 0, 0x1fff }, /* t goto L11 */ \
90 {OP_LDX, 0, 0, OFF_IHL }, /* */ \
91 {OP_LDHI, 0, 0, RELOFF_DST4 }, /* */ \
92 {OP_JEQ, 0, 4, PTP_EV_PORT }, /* f goto L12 */ \
93 {OP_LDHI, 0, 0, ETH_HLEN + UDP_HLEN }, /* */ \
94 {OP_AND, 0, 0, PTP_CLASS_VMASK }, /* */ \
95 {OP_OR, 0, 0, PTP_CLASS_IPV4 }, /* */ \
96 {OP_RETA, 0, 0, 0 }, /* */ \
97/*L1x*/ {OP_RETK, 0, 0, PTP_CLASS_NONE }, /* */ \
98/*L20*/ {OP_JEQ, 0, 9, ETH_P_IPV6 }, /* f goto L40 */ \
99 {OP_LDB, 0, 0, ETH_HLEN + OFF_NEXT }, /* */ \
100 {OP_JEQ, 0, 6, IPPROTO_UDP }, /* f goto L30 */ \
101 {OP_LDH, 0, 0, OFF_DST6 }, /* */ \
102 {OP_JEQ, 0, 4, PTP_EV_PORT }, /* f goto L31 */ \
103 {OP_LDH, 0, 0, OFF_PTP6 }, /* */ \
104 {OP_AND, 0, 0, PTP_CLASS_VMASK }, /* */ \
105 {OP_OR, 0, 0, PTP_CLASS_IPV6 }, /* */ \
106 {OP_RETA, 0, 0, 0 }, /* */ \
107/*L3x*/ {OP_RETK, 0, 0, PTP_CLASS_NONE }, /* */ \
Richard Cochranf75159e2011-09-20 01:25:41 +0000108/*L40*/ {OP_JEQ, 0, 9, ETH_P_8021Q }, /* f goto L50 */ \
Richard Cochran15f01272010-07-17 08:49:17 +0000109 {OP_LDH, 0, 0, OFF_ETYPE + 4 }, /* */ \
Richard Cochranf75159e2011-09-20 01:25:41 +0000110 {OP_JEQ, 0, 15, ETH_P_1588 }, /* f goto L60 */ \
111 {OP_LDB, 0, 0, ETH_HLEN + VLAN_HLEN }, /* */ \
112 {OP_AND, 0, 0, PTP_GEN_BIT }, /* */ \
113 {OP_JEQ, 0, 12, 0 }, /* f goto L6x */ \
Richard Cochran15f01272010-07-17 08:49:17 +0000114 {OP_LDH, 0, 0, ETH_HLEN + VLAN_HLEN }, /* */ \
115 {OP_AND, 0, 0, PTP_CLASS_VMASK }, /* */ \
116 {OP_OR, 0, 0, PTP_CLASS_VLAN }, /* */ \
117 {OP_RETA, 0, 0, 0 }, /* */ \
Richard Cochranf75159e2011-09-20 01:25:41 +0000118/*L50*/ {OP_JEQ, 0, 7, ETH_P_1588 }, /* f goto L61 */ \
119 {OP_LDB, 0, 0, ETH_HLEN }, /* */ \
120 {OP_AND, 0, 0, PTP_GEN_BIT }, /* */ \
121 {OP_JEQ, 0, 4, 0 }, /* f goto L6x */ \
Richard Cochran15f01272010-07-17 08:49:17 +0000122 {OP_LDH, 0, 0, ETH_HLEN }, /* */ \
123 {OP_AND, 0, 0, PTP_CLASS_VMASK }, /* */ \
124 {OP_OR, 0, 0, PTP_CLASS_L2 }, /* */ \
125 {OP_RETA, 0, 0, 0 }, /* */ \
126/*L6x*/ {OP_RETK, 0, 0, PTP_CLASS_NONE },
127
Daniel Borkmann164d8c62014-03-28 18:58:22 +0100128unsigned int ptp_classify_raw(const struct sk_buff *skb);
129
Richard Cochran15f01272010-07-17 08:49:17 +0000130#endif