Thomas Gleixner | c942299 | 2019-05-29 07:12:43 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2007-2013 Nicira, Inc. |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | |
| 7 | #ifndef FLOW_NETLINK_H |
| 8 | #define FLOW_NETLINK_H 1 |
| 9 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/netlink.h> |
| 12 | #include <linux/openvswitch.h> |
| 13 | #include <linux/spinlock.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/rcupdate.h> |
| 16 | #include <linux/if_ether.h> |
| 17 | #include <linux/in6.h> |
| 18 | #include <linux/jiffies.h> |
| 19 | #include <linux/time.h> |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 20 | |
| 21 | #include <net/inet_ecn.h> |
| 22 | #include <net/ip_tunnels.h> |
| 23 | |
| 24 | #include "flow.h" |
| 25 | |
Wenyu Zhang | 8f0aad6 | 2014-11-06 06:51:24 -0800 | [diff] [blame] | 26 | size_t ovs_tun_key_attr_size(void); |
Joe Stringer | 41af73e | 2014-10-18 16:14:14 -0700 | [diff] [blame] | 27 | size_t ovs_key_attr_size(void); |
| 28 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 29 | void ovs_match_init(struct sw_flow_match *match, |
pravin shelar | 2279994 | 2016-09-19 13:51:00 -0700 | [diff] [blame] | 30 | struct sw_flow_key *key, bool reset_key, |
| 31 | struct sw_flow_mask *mask); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 32 | |
Joe Stringer | 5b4237b | 2015-01-21 16:42:48 -0800 | [diff] [blame] | 33 | int ovs_nla_put_key(const struct sw_flow_key *, const struct sw_flow_key *, |
| 34 | int attr, bool is_mask, struct sk_buff *); |
Jarno Rajahalme | 9dd7f89 | 2017-02-09 11:21:59 -0800 | [diff] [blame] | 35 | int parse_flow_nlattrs(const struct nlattr *attr, const struct nlattr *a[], |
| 36 | u64 *attrsp, bool log); |
| 37 | int ovs_nla_get_flow_metadata(struct net *net, |
| 38 | const struct nlattr *a[OVS_KEY_ATTR_MAX + 1], |
| 39 | u64 attrs, struct sw_flow_key *key, bool log); |
Pravin B Shelar | 83c8df2 | 2014-09-15 19:20:31 -0700 | [diff] [blame] | 40 | |
Joe Stringer | 74ed7ab | 2015-01-21 16:42:52 -0800 | [diff] [blame] | 41 | int ovs_nla_put_identifier(const struct sw_flow *flow, struct sk_buff *skb); |
| 42 | int ovs_nla_put_masked_key(const struct sw_flow *flow, struct sk_buff *skb); |
Joe Stringer | 5b4237b | 2015-01-21 16:42:48 -0800 | [diff] [blame] | 43 | int ovs_nla_put_mask(const struct sw_flow *flow, struct sk_buff *skb); |
| 44 | |
Joe Stringer | c2ac667 | 2015-08-26 11:31:52 -0700 | [diff] [blame] | 45 | int ovs_nla_get_match(struct net *, struct sw_flow_match *, |
| 46 | const struct nlattr *key, const struct nlattr *mask, |
| 47 | bool log); |
Pravin B Shelar | fc4099f | 2015-10-22 18:17:16 -0700 | [diff] [blame] | 48 | |
| 49 | int ovs_nla_put_tunnel_info(struct sk_buff *skb, |
| 50 | struct ip_tunnel_info *tun_info); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 51 | |
Joe Stringer | 74ed7ab | 2015-01-21 16:42:52 -0800 | [diff] [blame] | 52 | bool ovs_nla_get_ufid(struct sw_flow_id *, const struct nlattr *, bool log); |
| 53 | int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid, |
| 54 | const struct sw_flow_key *key, bool log); |
| 55 | u32 ovs_nla_get_ufid_flags(const struct nlattr *attr); |
| 56 | |
Joe Stringer | 7f8a436 | 2015-08-26 11:31:48 -0700 | [diff] [blame] | 57 | int ovs_nla_copy_actions(struct net *net, const struct nlattr *attr, |
Simon Horman | 25cd9ba | 2014-10-06 05:05:13 -0700 | [diff] [blame] | 58 | const struct sw_flow_key *key, |
Jarno Rajahalme | 05da589 | 2014-11-06 07:03:05 -0800 | [diff] [blame] | 59 | struct sw_flow_actions **sfa, bool log); |
Joe Stringer | 7f8a436 | 2015-08-26 11:31:48 -0700 | [diff] [blame] | 60 | int ovs_nla_add_action(struct sw_flow_actions **sfa, int attrtype, |
| 61 | void *data, int len, bool log); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 62 | int ovs_nla_put_actions(const struct nlattr *attr, |
| 63 | int len, struct sk_buff *skb); |
| 64 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 65 | void ovs_nla_free_flow_actions(struct sw_flow_actions *); |
Thomas Graf | 34ae932 | 2015-07-21 10:44:03 +0200 | [diff] [blame] | 66 | void ovs_nla_free_flow_actions_rcu(struct sw_flow_actions *); |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 67 | |
Yi Yang | b2d0f5d | 2017-11-07 21:07:02 +0800 | [diff] [blame] | 68 | int nsh_key_from_nlattr(const struct nlattr *attr, struct ovs_key_nsh *nsh, |
| 69 | struct ovs_key_nsh *nsh_mask); |
| 70 | int nsh_hdr_from_nlattr(const struct nlattr *attr, struct nshhdr *nh, |
| 71 | size_t size); |
| 72 | |
Pravin B Shelar | e644571 | 2013-10-03 18:16:47 -0700 | [diff] [blame] | 73 | #endif /* flow_netlink.h */ |