diff options
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index f9895180f481..d1bcc9f21d4f 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <linux/string.h> | 51 | #include <linux/string.h> |
52 | #include <linux/errno.h> | 52 | #include <linux/errno.h> |
53 | #include <linux/highmem.h> | 53 | #include <linux/highmem.h> |
54 | #include <linux/slab.h> | ||
54 | 55 | ||
55 | #include <linux/socket.h> | 56 | #include <linux/socket.h> |
56 | #include <linux/sockios.h> | 57 | #include <linux/sockios.h> |
@@ -119,7 +120,7 @@ static int ip_dev_loopback_xmit(struct sk_buff *newskb) | |||
119 | newskb->pkt_type = PACKET_LOOPBACK; | 120 | newskb->pkt_type = PACKET_LOOPBACK; |
120 | newskb->ip_summed = CHECKSUM_UNNECESSARY; | 121 | newskb->ip_summed = CHECKSUM_UNNECESSARY; |
121 | WARN_ON(!skb_dst(newskb)); | 122 | WARN_ON(!skb_dst(newskb)); |
122 | netif_rx(newskb); | 123 | netif_rx_ni(newskb); |
123 | return 0; | 124 | return 0; |
124 | } | 125 | } |
125 | 126 | ||
@@ -254,7 +255,7 @@ int ip_mc_output(struct sk_buff *skb) | |||
254 | */ | 255 | */ |
255 | 256 | ||
256 | if (rt->rt_flags&RTCF_MULTICAST) { | 257 | if (rt->rt_flags&RTCF_MULTICAST) { |
257 | if ((!sk || inet_sk(sk)->mc_loop) | 258 | if (sk_mc_loop(sk) |
258 | #ifdef CONFIG_IP_MROUTE | 259 | #ifdef CONFIG_IP_MROUTE |
259 | /* Small optimization: do not loopback not local frames, | 260 | /* Small optimization: do not loopback not local frames, |
260 | which returned after forwarding; they will be dropped | 261 | which returned after forwarding; they will be dropped |
@@ -264,9 +265,11 @@ int ip_mc_output(struct sk_buff *skb) | |||
264 | 265 | ||
265 | This check is duplicated in ip_mr_input at the moment. | 266 | This check is duplicated in ip_mr_input at the moment. |
266 | */ | 267 | */ |
267 | && ((rt->rt_flags&RTCF_LOCAL) || !(IPCB(skb)->flags&IPSKB_FORWARDED)) | 268 | && |
269 | ((rt->rt_flags & RTCF_LOCAL) || | ||
270 | !(IPCB(skb)->flags & IPSKB_FORWARDED)) | ||
268 | #endif | 271 | #endif |
269 | ) { | 272 | ) { |
270 | struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC); | 273 | struct sk_buff *newskb = skb_clone(skb, GFP_ATOMIC); |
271 | if (newskb) | 274 | if (newskb) |
272 | NF_HOOK(PF_INET, NF_INET_POST_ROUTING, newskb, | 275 | NF_HOOK(PF_INET, NF_INET_POST_ROUTING, newskb, |
@@ -329,7 +332,7 @@ int ip_queue_xmit(struct sk_buff *skb, int ipfragok) | |||
329 | __be32 daddr; | 332 | __be32 daddr; |
330 | 333 | ||
331 | /* Use correct destination address if we have options. */ | 334 | /* Use correct destination address if we have options. */ |
332 | daddr = inet->daddr; | 335 | daddr = inet->inet_daddr; |
333 | if(opt && opt->srr) | 336 | if(opt && opt->srr) |
334 | daddr = opt->faddr; | 337 | daddr = opt->faddr; |
335 | 338 | ||
@@ -338,13 +341,13 @@ int ip_queue_xmit(struct sk_buff *skb, int ipfragok) | |||
338 | .mark = sk->sk_mark, | 341 | .mark = sk->sk_mark, |
339 | .nl_u = { .ip4_u = | 342 | .nl_u = { .ip4_u = |
340 | { .daddr = daddr, | 343 | { .daddr = daddr, |
341 | .saddr = inet->saddr, | 344 | .saddr = inet->inet_saddr, |
342 | .tos = RT_CONN_FLAGS(sk) } }, | 345 | .tos = RT_CONN_FLAGS(sk) } }, |
343 | .proto = sk->sk_protocol, | 346 | .proto = sk->sk_protocol, |
344 | .flags = inet_sk_flowi_flags(sk), | 347 | .flags = inet_sk_flowi_flags(sk), |
345 | .uli_u = { .ports = | 348 | .uli_u = { .ports = |
346 | { .sport = inet->sport, | 349 | { .sport = inet->inet_sport, |
347 | .dport = inet->dport } } }; | 350 | .dport = inet->inet_dport } } }; |
348 | 351 | ||
349 | /* If this fails, retransmit mechanism of transport layer will | 352 | /* If this fails, retransmit mechanism of transport layer will |
350 | * keep trying until route appears or the connection times | 353 | * keep trying until route appears or the connection times |
@@ -379,7 +382,7 @@ packet_routed: | |||
379 | 382 | ||
380 | if (opt && opt->optlen) { | 383 | if (opt && opt->optlen) { |
381 | iph->ihl += opt->optlen >> 2; | 384 | iph->ihl += opt->optlen >> 2; |
382 | ip_options_build(skb, opt, inet->daddr, rt, 0); | 385 | ip_options_build(skb, opt, inet->inet_daddr, rt, 0); |
383 | } | 386 | } |
384 | 387 | ||
385 | ip_select_ident_more(iph, &rt->u.dst, sk, | 388 | ip_select_ident_more(iph, &rt->u.dst, sk, |
@@ -501,8 +504,8 @@ int ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *)) | |||
501 | if (skb->sk) { | 504 | if (skb->sk) { |
502 | frag->sk = skb->sk; | 505 | frag->sk = skb->sk; |
503 | frag->destructor = sock_wfree; | 506 | frag->destructor = sock_wfree; |
504 | truesizes += frag->truesize; | ||
505 | } | 507 | } |
508 | truesizes += frag->truesize; | ||
506 | } | 509 | } |
507 | 510 | ||
508 | /* Everything is OK. Generate! */ | 511 | /* Everything is OK. Generate! */ |
@@ -846,7 +849,8 @@ int ip_append_data(struct sock *sk, | |||
846 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; | 849 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; |
847 | 850 | ||
848 | if (inet->cork.length + length > 0xFFFF - fragheaderlen) { | 851 | if (inet->cork.length + length > 0xFFFF - fragheaderlen) { |
849 | ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu-exthdrlen); | 852 | ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->inet_dport, |
853 | mtu-exthdrlen); | ||
850 | return -EMSGSIZE; | 854 | return -EMSGSIZE; |
851 | } | 855 | } |
852 | 856 | ||
@@ -1100,7 +1104,7 @@ ssize_t ip_append_page(struct sock *sk, struct page *page, | |||
1100 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; | 1104 | maxfraglen = ((mtu - fragheaderlen) & ~7) + fragheaderlen; |
1101 | 1105 | ||
1102 | if (inet->cork.length + size > 0xFFFF - fragheaderlen) { | 1106 | if (inet->cork.length + size > 0xFFFF - fragheaderlen) { |
1103 | ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport, mtu); | 1107 | ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->inet_dport, mtu); |
1104 | return -EMSGSIZE; | 1108 | return -EMSGSIZE; |
1105 | } | 1109 | } |
1106 | 1110 | ||