1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef MPLS_INTERNAL_H
3 #define MPLS_INTERNAL_H
6 /* put a reasonable limit on the number of labels
7 * we will accept from userspace
9 #define MAX_NEW_LABELS 30
11 struct mpls_entry_decoded {
18 struct mpls_pcpu_stats {
19 struct mpls_link_stats stats;
20 struct u64_stats_sync syncp;
25 struct net_device *dev;
26 struct mpls_pcpu_stats __percpu *stats;
28 struct ctl_table_header *sysctl;
32 #if BITS_PER_LONG == 32
34 #define MPLS_INC_STATS_LEN(mdev, len, pkts_field, bytes_field) \
36 __typeof__(*(mdev)->stats) *ptr = \
37 raw_cpu_ptr((mdev)->stats); \
39 u64_stats_update_begin(&ptr->syncp); \
40 ptr->stats.pkts_field++; \
41 ptr->stats.bytes_field += (len); \
42 u64_stats_update_end(&ptr->syncp); \
46 #define MPLS_INC_STATS(mdev, field) \
48 __typeof__(*(mdev)->stats) *ptr = \
49 raw_cpu_ptr((mdev)->stats); \
51 u64_stats_update_begin(&ptr->syncp); \
53 u64_stats_update_end(&ptr->syncp); \
59 #define MPLS_INC_STATS_LEN(mdev, len, pkts_field, bytes_field) \
61 this_cpu_inc((mdev)->stats->stats.pkts_field); \
62 this_cpu_add((mdev)->stats->stats.bytes_field, (len)); \
65 #define MPLS_INC_STATS(mdev, field) \
66 this_cpu_inc((mdev)->stats->stats.field)
72 #define LABEL_NOT_SPECIFIED (1 << 20)
74 /* This maximum ha length copied from the definition of struct neighbour */
75 #define VIA_ALEN_ALIGN sizeof(unsigned long)
76 #define MAX_VIA_ALEN (ALIGN(MAX_ADDR_LEN, VIA_ALEN_ALIGN))
78 enum mpls_payload_type {
79 MPT_UNSPEC, /* IPv4 or IPv6 */
83 /* Other types not implemented:
84 * - Pseudo-wire with or without control word (RFC4385)
89 struct mpls_nh { /* next hop label forwarding entry */
90 struct net_device *nh_dev;
92 /* nh_flags is accessed under RCU in the packet path; it is
93 * modified handling netdev events with rtnl lock held
95 unsigned int nh_flags;
104 /* offset of via from beginning of mpls_nh */
105 #define MPLS_NH_VIA_OFF(num_labels) \
106 ALIGN(sizeof(struct mpls_nh) + (num_labels) * sizeof(u32), \
109 /* all nexthops within a route have the same size based on the
110 * max number of labels and max via length across all nexthops
112 #define MPLS_NH_SIZE(num_labels, max_via_alen) \
113 (MPLS_NH_VIA_OFF((num_labels)) + \
114 ALIGN((max_via_alen), VIA_ALEN_ALIGN))
116 enum mpls_ttl_propagation {
117 MPLS_TTL_PROP_DEFAULT,
118 MPLS_TTL_PROP_ENABLED,
119 MPLS_TTL_PROP_DISABLED,
122 /* The route, nexthops and vias are stored together in the same memory
125 * +----------------------+
127 * +----------------------+
129 * +----------------------+
130 * | alignment padding | 4 bytes for odd number of labels
131 * +----------------------+
132 * | via[rt_max_alen] 0 |
133 * +----------------------+
134 * | alignment padding | via's aligned on sizeof(unsigned long)
135 * +----------------------+
137 * +----------------------+
139 * +----------------------+
140 * | via[rt_max_alen] n-1 |
141 * +----------------------+
143 struct mpls_route { /* next hop label forwarding entry */
144 struct rcu_head rt_rcu;
150 /* rt_nhn_alive is accessed under RCU in the packet path; it
151 * is modified handling netdev events with rtnl lock held
157 struct mpls_nh rt_nh[];
160 #define for_nexthops(rt) { \
161 int nhsel; const struct mpls_nh *nh; \
162 for (nhsel = 0, nh = (rt)->rt_nh; \
163 nhsel < (rt)->rt_nhn; \
164 nh = (void *)nh + (rt)->rt_nh_size, nhsel++)
166 #define change_nexthops(rt) { \
167 int nhsel; struct mpls_nh *nh; \
168 for (nhsel = 0, nh = (rt)->rt_nh; \
169 nhsel < (rt)->rt_nhn; \
170 nh = (void *)nh + (rt)->rt_nh_size, nhsel++)
172 #define endfor_nexthops(rt) }
174 static inline struct mpls_entry_decoded mpls_entry_decode(struct mpls_shim_hdr *hdr)
176 struct mpls_entry_decoded result;
177 unsigned entry = be32_to_cpu(hdr->label_stack_entry);
179 result.label = (entry & MPLS_LS_LABEL_MASK) >> MPLS_LS_LABEL_SHIFT;
180 result.ttl = (entry & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT;
181 result.tc = (entry & MPLS_LS_TC_MASK) >> MPLS_LS_TC_SHIFT;
182 result.bos = (entry & MPLS_LS_S_MASK) >> MPLS_LS_S_SHIFT;
187 static inline struct mpls_dev *mpls_dev_get(const struct net_device *dev)
189 return rcu_dereference_rtnl(dev->mpls_ptr);
192 int nla_put_labels(struct sk_buff *skb, int attrtype, u8 labels,
194 int nla_get_labels(const struct nlattr *nla, u8 max_labels, u8 *labels,
195 u32 label[], struct netlink_ext_ack *extack);
196 bool mpls_output_possible(const struct net_device *dev);
197 unsigned int mpls_dev_mtu(const struct net_device *dev);
198 bool mpls_pkt_too_big(const struct sk_buff *skb, unsigned int mtu);
199 void mpls_stats_inc_outucastpkts(struct net_device *dev,
200 const struct sk_buff *skb);
202 #endif /* MPLS_INTERNAL_H */