1 /* xfrm4_tunnel.c: Generic IP tunnel transformer.
3 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
6 #include <linux/skbuff.h>
7 #include <linux/module.h>
10 #include <net/protocol.h>
12 static int ipip_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
17 iph
->tot_len
= htons(skb
->len
);
23 static int ipip_xfrm_rcv(struct xfrm_state
*x
, struct xfrm_decap_state
*decap
, struct sk_buff
*skb
)
28 static struct xfrm_tunnel
*ipip_handler
;
29 static DECLARE_MUTEX(xfrm4_tunnel_sem
);
31 int xfrm4_tunnel_register(struct xfrm_tunnel
*handler
)
35 down(&xfrm4_tunnel_sem
);
37 if (ipip_handler
!= NULL
)
40 ipip_handler
= handler
;
41 up(&xfrm4_tunnel_sem
);
46 EXPORT_SYMBOL(xfrm4_tunnel_register
);
48 int xfrm4_tunnel_deregister(struct xfrm_tunnel
*handler
)
52 down(&xfrm4_tunnel_sem
);
54 if (ipip_handler
!= handler
)
58 up(&xfrm4_tunnel_sem
);
65 EXPORT_SYMBOL(xfrm4_tunnel_deregister
);
67 static int ipip_rcv(struct sk_buff
*skb
)
69 struct xfrm_tunnel
*handler
= ipip_handler
;
71 /* Tunnel devices take precedence. */
72 if (handler
&& handler
->handler(skb
) == 0)
75 return xfrm4_rcv(skb
);
78 static void ipip_err(struct sk_buff
*skb
, u32 info
)
80 struct xfrm_tunnel
*handler
= ipip_handler
;
84 handler
->err_handler(skb
, &arg
);
87 static int ipip_init_state(struct xfrm_state
*x
, void *args
)
95 x
->props
.header_len
= sizeof(struct iphdr
);
100 static void ipip_destroy(struct xfrm_state
*x
)
104 static struct xfrm_type ipip_type
= {
105 .description
= "IPIP",
106 .owner
= THIS_MODULE
,
107 .proto
= IPPROTO_IPIP
,
108 .init_state
= ipip_init_state
,
109 .destructor
= ipip_destroy
,
110 .input
= ipip_xfrm_rcv
,
111 .output
= ipip_output
114 static struct net_protocol ipip_protocol
= {
116 .err_handler
= ipip_err
,
120 static int __init
ipip_init(void)
122 if (xfrm_register_type(&ipip_type
, AF_INET
) < 0) {
123 printk(KERN_INFO
"ipip init: can't add xfrm type\n");
126 if (inet_add_protocol(&ipip_protocol
, IPPROTO_IPIP
) < 0) {
127 printk(KERN_INFO
"ipip init: can't add protocol\n");
128 xfrm_unregister_type(&ipip_type
, AF_INET
);
134 static void __exit
ipip_fini(void)
136 if (inet_del_protocol(&ipip_protocol
, IPPROTO_IPIP
) < 0)
137 printk(KERN_INFO
"ipip close: can't remove protocol\n");
138 if (xfrm_unregister_type(&ipip_type
, AF_INET
) < 0)
139 printk(KERN_INFO
"ipip close: can't remove xfrm type\n");
142 module_init(ipip_init
);
143 module_exit(ipip_fini
);
144 MODULE_LICENSE("GPL");