root/net/ipv4/ip_forward.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. ip_encap
  2. ip_forward

   1 /*
   2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
   3  *              operating system.  INET is implemented using the  BSD Socket
   4  *              interface as the means of communication with the user level.
   5  *
   6  *              The IP forwarding functionality.
   7  *              
   8  * Authors:     see ip.c
   9  *
  10  * Fixes:
  11  *              Many            :       Split from ip.c , see ip_input.c for history.
  12  *              Dave Gregorich  :       NULL ip_rt_put fix for multicast routing.
  13  *              Jos Vos         :       Add call_out_firewall before sending,
  14  *                                      use output device for accounting.
  15  */
  16 
  17 #include <linux/config.h>
  18 #include <linux/types.h>
  19 #include <linux/mm.h>
  20 #include <linux/sched.h>
  21 #include <linux/skbuff.h>
  22 #include <linux/ip.h>
  23 #include <linux/icmp.h>
  24 #include <linux/netdevice.h>
  25 #include <net/sock.h>
  26 #include <net/ip.h>
  27 #include <net/icmp.h>
  28 #include <linux/tcp.h>
  29 #include <linux/udp.h>
  30 #include <linux/firewall.h>
  31 #include <linux/ip_fw.h>
  32 #ifdef CONFIG_IP_MASQUERADE
  33 #include <net/ip_masq.h>
  34 #endif
  35 #include <net/checksum.h>
  36 #include <linux/route.h>
  37 #include <net/route.h>
  38  
  39 #ifdef CONFIG_IP_FORWARD
  40 #ifdef CONFIG_IP_MROUTE
  41 
  42 /*
  43  *      Encapsulate a packet by attaching a valid IPIP header to it.
  44  *      This avoids tunnel drivers and other mess and gives us the speed so
  45  *      important for multicast video.
  46  */
  47  
  48 static void ip_encap(struct sk_buff *skb, int len, struct device *out, __u32 daddr)
     /* [previous][next][first][last][top][bottom][index][help] */
  49 {
  50         /*
  51          *      There is space for the IPIP header and MAC left.
  52          *
  53          *      Firstly push down and install the IPIP header.
  54          */
  55         struct iphdr *iph=(struct iphdr *)skb_push(skb,sizeof(struct iphdr));
  56         if(len>65515)
  57                 len=65515;
  58         iph->version    =       4;
  59         iph->tos        =       skb->ip_hdr->tos;
  60         iph->ttl        =       skb->ip_hdr->ttl;
  61         iph->frag_off   =       0;
  62         iph->daddr      =       daddr;
  63         iph->saddr      =       out->pa_addr;
  64         iph->protocol   =       IPPROTO_IPIP;
  65         iph->ihl        =       5;
  66         iph->tot_len    =       htons(skb->len);
  67         iph->id         =       htons(ip_id_count++);
  68         ip_send_check(iph);
  69 
  70         skb->dev = out;
  71         skb->arp = 1;
  72         skb->raddr=daddr;
  73         /*
  74          *      Now add the physical header (driver will push it down).
  75          */
  76         if (out->hard_header && out->hard_header(skb, out, ETH_P_IP, NULL, NULL, len)<0)
  77                         skb->arp=0;
  78         /*
  79          *      Read to queue for transmission.
  80          */
  81 }
  82 
  83 #endif
  84 
  85 /*
  86  *      Forward an IP datagram to its next destination.
  87  */
  88 
  89 int ip_forward(struct sk_buff *skb, struct device *dev, int is_frag,
     /* [previous][next][first][last][top][bottom][index][help] */
  90                __u32 target_addr)
  91 {
  92         struct device *dev2;    /* Output device */
  93         struct iphdr *iph;      /* Our header */
  94         struct sk_buff *skb2;   /* Output packet */
  95         struct rtable *rt;      /* Route we use */
  96         unsigned char *ptr;     /* Data pointer */
  97         unsigned long raddr;    /* Router IP address */
  98         struct   options * opt  = (struct options*)skb->proto_priv;
  99         struct hh_cache *hh = NULL;
 100         int encap = 0;          /* Encap length */
 101 #ifdef CONFIG_FIREWALL
 102         int fw_res = 0;         /* Forwarding result */ 
 103 #ifdef CONFIG_IP_MASQUERADE     
 104         struct sk_buff *skb_in = skb;   /* So we can remember if the masquerader did some swaps */
 105 #endif
 106         
 107         /* 
 108          *      See if we are allowed to forward this.
 109          *      Note: demasqueraded fragments are always 'back'warded.
 110          */
 111 
 112         
 113         if(!(is_frag&IPFWD_MASQUERADED))
 114         {
 115                 fw_res=call_fw_firewall(PF_INET, skb, skb->h.iph);
 116                 switch (fw_res) {
 117                 case FW_ACCEPT:
 118                 case FW_MASQUERADE:
 119                         break;
 120                 case FW_REJECT:
 121                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_HOST_UNREACH, 0, dev);
 122                         /* fall thru */
 123                 default:
 124                         return -1;
 125                 }
 126         }
 127 #endif
 128         /*
 129          *      According to the RFC, we must first decrease the TTL field. If
 130          *      that reaches zero, we must reply an ICMP control message telling
 131          *      that the packet's lifetime expired.
 132          *
 133          *      Exception:
 134          *      We may not generate an ICMP for an ICMP. icmp_send does the
 135          *      enforcement of this so we can forget it here. It is however
 136          *      sometimes VERY important.
 137          */
 138 
 139         iph = skb->h.iph;
 140         iph->ttl--;
 141 
 142         /*
 143          *      Re-compute the IP header checksum.
 144          *      This is inefficient. We know what has happened to the header
 145          *      and could thus adjust the checksum as Phil Karn does in KA9Q
 146          */
 147 
 148         iph->check = ntohs(iph->check) + 0x0100;
 149         if ((iph->check & 0xFF00) == 0)
 150                 iph->check++;           /* carry overflow */
 151         iph->check = htons(iph->check);
 152 
 153         if (iph->ttl <= 0)
 154         {
 155                 /* Tell the sender its packet died... */
 156                 icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0, dev);
 157                 return -1;
 158         }
 159 
 160 #ifdef CONFIG_IP_MROUTE
 161         if(!(is_frag&IPFWD_MULTICASTING))
 162         {
 163 #endif  
 164                 /*
 165                  * OK, the packet is still valid.  Fetch its destination address,
 166                  * and give it to the IP sender for further processing.
 167                  */
 168 
 169                 rt = ip_rt_route(target_addr, 0);
 170 
 171                 if (rt == NULL)
 172                 {
 173                         /*
 174                          *      Tell the sender its packet cannot be delivered. Again
 175                          *      ICMP is screened later.
 176                          */
 177                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_NET_UNREACH, 0, dev);
 178                         return -1;
 179                 }
 180         
 181         
 182                 /*
 183                  * Gosh.  Not only is the packet valid; we even know how to
 184                  * forward it onto its final destination.  Can we say this
 185                  * is being plain lucky?
 186                  * If the router told us that there is no GW, use the dest.
 187                  * IP address itself- we seem to be connected directly...
 188                  */
 189 
 190                 raddr = rt->rt_gateway;
 191         
 192                 if (opt->is_strictroute && (rt->rt_flags & RTF_GATEWAY)) {
 193                         /*
 194                          *      Strict routing permits no gatewaying
 195                          */
 196         
 197                         ip_rt_put(rt);
 198                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_SR_FAILED, 0, dev);
 199                         return -1;
 200                 }
 201 
 202                 /*
 203                  *      Having picked a route we can now send the frame out.
 204                  */
 205 
 206                 dev2 = rt->rt_dev;
 207                 hh = rt->rt_hh;
 208                 /*
 209                  *      In IP you never have to forward a frame on the interface that it 
 210                  *      arrived upon. We now generate an ICMP HOST REDIRECT giving the route
 211                  *      we calculated.
 212                  */
 213 #ifndef CONFIG_IP_NO_ICMP_REDIRECT
 214                 if (dev == dev2 && 
 215                         !((iph->saddr^dev->pa_addr)&dev->pa_mask) &&
 216                         /* The daddr!=raddr test isnt obvious - what its doing
 217                            is avoiding sending a frame the receiver will not 
 218                            believe anyway.. */
 219                         iph->daddr != raddr/*ANK*/ && !opt->srr)
 220                                 icmp_send(skb, ICMP_REDIRECT, ICMP_REDIR_HOST, raddr, dev);
 221 #endif
 222 #ifdef CONFIG_IP_MROUTE
 223         }
 224         else
 225         {
 226                 /*
 227                  *      Multicast route forward. Routing is already done
 228                  */
 229                 dev2=skb->dev;
 230                 raddr=skb->raddr;
 231                 if(is_frag&IPFWD_MULTITUNNEL)   /* VIFF_TUNNEL mode */
 232                         encap=20;
 233                 rt=NULL;
 234         }
 235 #endif  
 236         
 237 
 238         /*
 239          * We now may allocate a new buffer, and copy the datagram into it.
 240          * If the indicated interface is up and running, kick it.
 241          */
 242 
 243         if (dev2->flags & IFF_UP)
 244         {
 245 #ifdef CONFIG_IP_MASQUERADE
 246                 /*
 247                  * If this fragment needs masquerading, make it so...
 248                  * (Dont masquerade de-masqueraded fragments)
 249                  */
 250                 if (!(is_frag&IPFWD_MASQUERADED) && fw_res==FW_MASQUERADE)
 251                         ip_fw_masquerade(&skb, dev2);
 252 #endif
 253                 IS_SKB(skb);
 254 
 255                 if (skb->len+encap > dev2->mtu && (ntohs(iph->frag_off) & IP_DF)) 
 256                 {
 257                         ip_statistics.IpFragFails++;
 258                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(dev2->mtu), dev);
 259                         if(rt)
 260                                 ip_rt_put(rt);
 261                         return -1;
 262                 }
 263 
 264 #ifdef CONFIG_IP_MROUTE
 265                 if(skb_headroom(skb)-encap<dev2->hard_header_len)
 266                 {
 267                         skb2 = alloc_skb(dev2->hard_header_len + skb->len + encap + 15, GFP_ATOMIC);
 268 #else
 269                 if(skb_headroom(skb)<dev2->hard_header_len)
 270                 {
 271                         skb2 = alloc_skb(dev2->hard_header_len + skb->len + 15, GFP_ATOMIC);
 272 #endif          
 273                         /*
 274                          *      This is rare and since IP is tolerant of network failures
 275                          *      quite harmless.
 276                          */
 277                 
 278                         if (skb2 == NULL)
 279                         {
 280                                 NETDEBUG(printk("\nIP: No memory available for IP forward\n"));
 281                                 if(rt)
 282                                         ip_rt_put(rt);
 283                                 return -1;
 284                         }
 285                 
 286                         IS_SKB(skb2);
 287                         /*
 288                          *      Add the physical headers.
 289                          */
 290                         skb2->protocol=htons(ETH_P_IP);
 291 #ifdef CONFIG_IP_MROUTE
 292                         if(is_frag&IPFWD_MULTITUNNEL)
 293                         {
 294                                 skb_reserve(skb,(encap+dev->hard_header_len+15)&~15);   /* 16 byte aligned IP headers are good */
 295                                 ip_encap(skb2,skb->len, dev2, raddr);
 296                         }
 297                         else
 298 #endif                  
 299                                 ip_send(rt,skb2,raddr,skb->len,dev2,dev2->pa_addr);
 300 
 301                         /*
 302                          *      We have to copy the bytes over as the new header wouldn't fit
 303                          *      the old buffer. This should be very rare.
 304                          */              
 305                         
 306                         ptr = skb_put(skb2,skb->len);
 307                         skb2->free = 1;
 308                         skb2->h.raw = ptr;
 309 
 310                         /*
 311                          *      Copy the packet data into the new buffer.
 312                          */
 313                         memcpy(ptr, skb->h.raw, skb->len);
 314                         memcpy(skb2->proto_priv, skb->proto_priv, sizeof(skb->proto_priv));
 315                         iph = skb2->ip_hdr = skb2->h.iph;
 316                 }
 317                 else
 318                 {
 319                         /* 
 320                          *      Build a new MAC header. 
 321                          */
 322 
 323                         skb2 = skb;             
 324                         skb2->dev=dev2;
 325 #ifdef CONFIG_IP_MROUTE
 326                         if(is_frag&IPFWD_MULTITUNNEL)
 327                                 ip_encap(skb,skb->len, dev2, raddr);
 328                         else
 329                         {
 330 #endif
 331                                 skb->arp=1;
 332                                 skb->raddr=raddr;
 333                                 if (hh)
 334                                 {
 335                                         memcpy(skb_push(skb, dev2->hard_header_len), hh->hh_data, dev2->hard_header_len);
 336                                         if (!hh->hh_uptodate)
 337                                         {
 338 #if RT_CACHE_DEBUG >= 2
 339                                                 printk("ip_forward: hh miss %08x via %08x\n", target_addr, rt->rt_gateway);
 340 #endif                                          
 341                                                 skb->arp = 0;
 342                                         }
 343                                 }
 344                                 else if (dev2->hard_header)
 345                                 {
 346                                         if(dev2->hard_header(skb, dev2, ETH_P_IP, NULL, NULL, skb->len)<0)
 347                                                 skb->arp=0;
 348                                 }
 349 #ifdef CONFIG_IP_MROUTE
 350                         }                               
 351 #endif                  
 352                 }
 353 #ifdef CONFIG_FIREWALL
 354                 if((fw_res = call_out_firewall(PF_INET, skb2, iph)) < FW_ACCEPT)
 355                 {
 356                         /* FW_ACCEPT and FW_MASQUERADE are treated equal:
 357                            masquerading is only supported via forward rules */
 358                         if (fw_res == FW_REJECT)
 359                                 icmp_send(skb2, ICMP_DEST_UNREACH, ICMP_HOST_UNREACH, 0, dev);
 360                         if (skb != skb2)
 361                                 kfree_skb(skb2,FREE_WRITE);
 362                         return -1;
 363                 }
 364 #endif
 365                 ip_statistics.IpForwDatagrams++;
 366 
 367                 if (opt->optlen) 
 368                 {
 369                         unsigned char * optptr;
 370                         if (opt->rr_needaddr) 
 371                         {
 372                                 optptr = (unsigned char *)iph + opt->rr;
 373                                 memcpy(&optptr[optptr[2]-5], &dev2->pa_addr, 4);
 374                                 opt->is_changed = 1;
 375                         }
 376                         if (opt->srr_is_hit) 
 377                         {
 378                                 int srrptr, srrspace;
 379 
 380                                 optptr = (unsigned char *)iph + opt->srr;
 381 
 382                                 for ( srrptr=optptr[2], srrspace = optptr[1];
 383                                       srrptr <= srrspace;
 384                                      srrptr += 4
 385                                     ) 
 386                                 {
 387                                         if (srrptr + 3 > srrspace)
 388                                                 break;
 389                                         if (memcmp(&target_addr, &optptr[srrptr-1], 4) == 0)
 390                                                 break;
 391                                 }
 392                                 if (srrptr + 3 <= srrspace) 
 393                                 {
 394                                         opt->is_changed = 1;
 395                                         memcpy(&optptr[srrptr-1], &dev2->pa_addr, 4);
 396                                         iph->daddr = target_addr;
 397                                         optptr[2] = srrptr+4;
 398                                 }
 399                                 else
 400                                         printk("ip_forward(): Argh! Destination lost!\n");
 401                         }
 402                         if (opt->ts_needaddr) 
 403                         {
 404                                 optptr = (unsigned char *)iph + opt->ts;
 405                                 memcpy(&optptr[optptr[2]-9], &dev2->pa_addr, 4);
 406                                 opt->is_changed = 1;
 407                         }
 408                         if (opt->is_changed) 
 409                         {
 410                                 opt->is_changed = 0;
 411                                 ip_send_check(iph);
 412                         }
 413                 }
 414 /*
 415  * ANK:  this is point of "no return", we cannot send an ICMP,
 416  *       because we changed SRR option.
 417  */
 418 
 419                 /*
 420                  *      See if it needs fragmenting. Note in ip_rcv we tagged
 421                  *      the fragment type. This must be right so that
 422                  *      the fragmenter does the right thing.
 423                  */
 424 
 425                 if(skb2->len > dev2->mtu + dev2->hard_header_len)
 426                 {
 427                         ip_fragment(NULL,skb2,dev2, is_frag);
 428                         kfree_skb(skb2,FREE_WRITE);
 429                 }
 430                 else
 431                 {
 432 #ifdef CONFIG_IP_ACCT           
 433                         /*
 434                          *      Count mapping we shortcut
 435                          */
 436                          
 437                         ip_fw_chk(iph,dev2,ip_acct_chain,IP_FW_F_ACCEPT,1);
 438 #endif                  
 439                         
 440                         /*
 441                          *      Map service types to priority. We lie about
 442                          *      throughput being low priority, but it's a good
 443                          *      choice to help improve general usage.
 444                          */
 445                         if(iph->tos & IPTOS_LOWDELAY)
 446                                 dev_queue_xmit(skb2, dev2, SOPRI_INTERACTIVE);
 447                         else if(iph->tos & IPTOS_THROUGHPUT)
 448                                 dev_queue_xmit(skb2, dev2, SOPRI_BACKGROUND);
 449                         else
 450                                 dev_queue_xmit(skb2, dev2, SOPRI_NORMAL);
 451                 }
 452         }
 453         else
 454         {
 455                 if(rt)
 456                         ip_rt_put(rt);
 457                 return -1;
 458         }
 459         if(rt)
 460                 ip_rt_put(rt);
 461         
 462         /*
 463          *      Tell the caller if their buffer is free.
 464          */      
 465          
 466         if(skb==skb2)
 467                 return 0;       
 468 
 469 #ifdef CONFIG_IP_MASQUERADE     
 470         /*
 471          *      The original is free. Free our copy and
 472          *      tell the caller not to free.
 473          */
 474         if(skb!=skb_in)
 475         {
 476                 kfree_skb(skb_in, FREE_WRITE);
 477                 return 0;
 478         }
 479 #endif  
 480         return 1;
 481 }
 482 
 483 
 484 #endif

/* [previous][next][first][last][top][bottom][index][help] */