2 * Copyright (c) 2015 Tom Herbert <tom@herbertland.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
14 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/socket.h>
19 #include <linux/skbuff.h>
20 #include <linux/types.h>
21 #include <net/checksum.h>
23 #include <net/protocol.h>
24 #include <uapi/linux/ila.h>
35 struct ila_identifier
{
38 #if defined(__LITTLE_ENDIAN_BITFIELD)
42 #elif defined(__BIG_ENDIAN_BITFIELD)
47 #error "Adjust your <asm/byteorder.h> defines"
62 ILA_ATYPE_VIRT_UNI_V6
,
63 ILA_ATYPE_VIRT_MULTI_V6
,
69 #define CSUM_NEUTRAL_FLAG htonl(0x10000000)
75 struct ila_locator loc
;
76 struct ila_identifier ident
;
81 static inline struct ila_addr
*ila_a2i(struct in6_addr
*addr
)
83 return (struct ila_addr
*)addr
;
86 static inline bool ila_addr_is_ila(struct ila_addr
*iaddr
)
88 return (iaddr
->ident
.type
!= ILA_ATYPE_IID
);
92 struct ila_locator locator
;
93 struct ila_locator locator_match
;
98 static inline __wsum
compute_csum_diff8(const __be32
*from
, const __be32
*to
)
101 ~from
[0], ~from
[1], to
[0], to
[1],
104 return csum_partial(diff
, sizeof(diff
), 0);
107 static inline bool ila_csum_neutral_set(struct ila_identifier ident
)
109 return !!(ident
.csum_neutral
);
112 void ila_update_ipv6_locator(struct sk_buff
*skb
, struct ila_params
*p
,
113 bool set_csum_neutral
);
115 void ila_init_saved_csum(struct ila_params
*p
);
117 int ila_lwt_init(void);
118 void ila_lwt_fini(void);
119 int ila_xlat_init(void);
120 void ila_xlat_fini(void);