diff options
author | Timo Teras <timo.teras@iki.fi> | 2007-10-23 23:31:53 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-24 00:27:53 -0400 |
commit | 6a5f44d7a048c97b8bae8ce464c97b8fad61ff99 (patch) | |
tree | 7e7a8e51c34ae5038ea5e228d4b86dce6684fb7f /net/ipv4/ip_gre.c | |
parent | 16d14ef9f29dfa9b1d99f3eff860e9f15bc99f39 (diff) |
[IPV4] ip_gre: sendto/recvfrom NBMA address
When GRE tunnel is in NBMA mode, this patch allows an application to use
a PF_PACKET socket to:
- send a packet to specific NBMA address with sendto()
- use recvfrom() to receive packet and check which NBMA address it came from
This is required to implement properly NHRP over GRE tunnel.
Signed-off-by: Timo Teras <timo.teras@iki.fi>
Acked-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_gre.c')
-rw-r--r-- | net/ipv4/ip_gre.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index f151900efaf9..c5b77bbbe844 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
@@ -1033,7 +1033,6 @@ static int ipgre_tunnel_change_mtu(struct net_device *dev, int new_mtu) | |||
1033 | return 0; | 1033 | return 0; |
1034 | } | 1034 | } |
1035 | 1035 | ||
1036 | #ifdef CONFIG_NET_IPGRE_BROADCAST | ||
1037 | /* Nice toy. Unfortunately, useless in real life :-) | 1036 | /* Nice toy. Unfortunately, useless in real life :-) |
1038 | It allows to construct virtual multiprotocol broadcast "LAN" | 1037 | It allows to construct virtual multiprotocol broadcast "LAN" |
1039 | over the Internet, provided multicast routing is tuned. | 1038 | over the Internet, provided multicast routing is tuned. |
@@ -1092,10 +1091,19 @@ static int ipgre_header(struct sk_buff *skb, struct net_device *dev, | |||
1092 | return -t->hlen; | 1091 | return -t->hlen; |
1093 | } | 1092 | } |
1094 | 1093 | ||
1094 | static int ipgre_header_parse(const struct sk_buff *skb, unsigned char *haddr) | ||
1095 | { | ||
1096 | struct iphdr *iph = (struct iphdr*) skb_mac_header(skb); | ||
1097 | memcpy(haddr, &iph->saddr, 4); | ||
1098 | return 4; | ||
1099 | } | ||
1100 | |||
1095 | static const struct header_ops ipgre_header_ops = { | 1101 | static const struct header_ops ipgre_header_ops = { |
1096 | .create = ipgre_header, | 1102 | .create = ipgre_header, |
1103 | .parse = ipgre_header_parse, | ||
1097 | }; | 1104 | }; |
1098 | 1105 | ||
1106 | #ifdef CONFIG_NET_IPGRE_BROADCAST | ||
1099 | static int ipgre_open(struct net_device *dev) | 1107 | static int ipgre_open(struct net_device *dev) |
1100 | { | 1108 | { |
1101 | struct ip_tunnel *t = netdev_priv(dev); | 1109 | struct ip_tunnel *t = netdev_priv(dev); |
@@ -1197,6 +1205,8 @@ static int ipgre_tunnel_init(struct net_device *dev) | |||
1197 | dev->stop = ipgre_close; | 1205 | dev->stop = ipgre_close; |
1198 | } | 1206 | } |
1199 | #endif | 1207 | #endif |
1208 | } else { | ||
1209 | dev->header_ops = &ipgre_header_ops; | ||
1200 | } | 1210 | } |
1201 | 1211 | ||
1202 | if (!tdev && tunnel->parms.link) | 1212 | if (!tdev && tunnel->parms.link) |