flow_netlink.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2007-2013 Nicira, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of version 2 of the GNU General Public
  6. * License as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. * 02110-1301, USA
  17. */
  18. #ifndef FLOW_NETLINK_H
  19. #define FLOW_NETLINK_H 1
  20. #include <linux/kernel.h>
  21. #include <linux/netlink.h>
  22. #include <linux/openvswitch.h>
  23. #include <linux/spinlock.h>
  24. #include <linux/types.h>
  25. #include <linux/rcupdate.h>
  26. #include <linux/if_ether.h>
  27. #include <linux/in6.h>
  28. #include <linux/jiffies.h>
  29. #include <linux/time.h>
  30. #include <linux/flex_array.h>
  31. #include <net/inet_ecn.h>
  32. #include <net/ip_tunnels.h>
  33. #include "flow.h"
  34. size_t ovs_tun_key_attr_size(void);
  35. size_t ovs_key_attr_size(void);
  36. void ovs_match_init(struct sw_flow_match *match,
  37. struct sw_flow_key *key, struct sw_flow_mask *mask);
  38. int ovs_nla_put_key(const struct sw_flow_key *, const struct sw_flow_key *,
  39. int attr, bool is_mask, struct sk_buff *);
  40. int ovs_nla_get_flow_metadata(const struct nlattr *, struct sw_flow_key *,
  41. bool log);
  42. int ovs_nla_put_identifier(const struct sw_flow *flow, struct sk_buff *skb);
  43. int ovs_nla_put_masked_key(const struct sw_flow *flow, struct sk_buff *skb);
  44. int ovs_nla_put_mask(const struct sw_flow *flow, struct sk_buff *skb);
  45. int ovs_nla_get_match(struct sw_flow_match *, const struct nlattr *key,
  46. const struct nlattr *mask, bool log);
  47. int ovs_nla_put_egress_tunnel_key(struct sk_buff *,
  48. const struct ovs_tunnel_info *);
  49. bool ovs_nla_get_ufid(struct sw_flow_id *, const struct nlattr *, bool log);
  50. int ovs_nla_get_identifier(struct sw_flow_id *sfid, const struct nlattr *ufid,
  51. const struct sw_flow_key *key, bool log);
  52. u32 ovs_nla_get_ufid_flags(const struct nlattr *attr);
  53. int ovs_nla_copy_actions(const struct nlattr *attr,
  54. const struct sw_flow_key *key,
  55. struct sw_flow_actions **sfa, bool log);
  56. int ovs_nla_put_actions(const struct nlattr *attr,
  57. int len, struct sk_buff *skb);
  58. void ovs_nla_free_flow_actions(struct sw_flow_actions *);
  59. #endif /* flow_netlink.h */