aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorJamal Hadi Salim <hadi@cyberus.ca>2010-02-22 06:32:54 -0500
committerDavid S. Miller <davem@davemloft.net>2010-02-22 19:19:45 -0500
commitbf825f81b454fae2ffe1b675f3a549656726440e (patch)
tree8096391060484f831c0f2e4a7cef3448b4ff4845 /include/net
parent7f6b9dbd5afbd966a82dcbafc5ed62305eb9d479 (diff)
xfrm: introduce basic mark infrastructure
Add basic structuring and accessors for xfrm mark Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/xfrm.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h
index 0beb413c01c4..39f151c7f251 100644
--- a/include/net/xfrm.h
+++ b/include/net/xfrm.h
@@ -140,6 +140,7 @@ struct xfrm_state {
140 140
141 struct xfrm_id id; 141 struct xfrm_id id;
142 struct xfrm_selector sel; 142 struct xfrm_selector sel;
143 struct xfrm_mark mark;
143 144
144 u32 genid; 145 u32 genid;
145 146
@@ -481,6 +482,7 @@ struct xfrm_policy {
481 482
482 u32 priority; 483 u32 priority;
483 u32 index; 484 u32 index;
485 struct xfrm_mark mark;
484 struct xfrm_selector selector; 486 struct xfrm_selector selector;
485 struct xfrm_lifetime_cfg lft; 487 struct xfrm_lifetime_cfg lft;
486 struct xfrm_lifetime_cur curlft; 488 struct xfrm_lifetime_cur curlft;
@@ -1570,4 +1572,24 @@ static inline struct xfrm_state *xfrm_input_state(struct sk_buff *skb)
1570} 1572}
1571#endif 1573#endif
1572 1574
1575static inline int xfrm_mark_get(struct nlattr **attrs, struct xfrm_mark *m)
1576{
1577 if (attrs[XFRMA_MARK])
1578 memcpy(m, nla_data(attrs[XFRMA_MARK]), sizeof(m));
1579 else
1580 m->v = m->m = 0;
1581
1582 return m->v & m->m;
1583}
1584
1585static inline int xfrm_mark_put(struct sk_buff *skb, struct xfrm_mark *m)
1586{
1587 if (m->m | m->v)
1588 NLA_PUT(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m);
1589 return 0;
1590
1591nla_put_failure:
1592 return -1;
1593}
1594
1573#endif /* _NET_XFRM_H */ 1595#endif /* _NET_XFRM_H */