diff options
Diffstat (limited to 'net/ipv4/ipmr.c')
-rw-r--r-- | net/ipv4/ipmr.c | 428 |
1 files changed, 225 insertions, 203 deletions
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index 179fcab866fc..86dd5691af46 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c | |||
@@ -75,7 +75,7 @@ struct mr_table { | |||
75 | struct net *net; | 75 | struct net *net; |
76 | #endif | 76 | #endif |
77 | u32 id; | 77 | u32 id; |
78 | struct sock *mroute_sk; | 78 | struct sock __rcu *mroute_sk; |
79 | struct timer_list ipmr_expire_timer; | 79 | struct timer_list ipmr_expire_timer; |
80 | struct list_head mfc_unres_queue; | 80 | struct list_head mfc_unres_queue; |
81 | struct list_head mfc_cache_array[MFC_LINES]; | 81 | struct list_head mfc_cache_array[MFC_LINES]; |
@@ -98,7 +98,7 @@ struct ipmr_result { | |||
98 | }; | 98 | }; |
99 | 99 | ||
100 | /* Big lock, protecting vif table, mrt cache and mroute socket state. | 100 | /* Big lock, protecting vif table, mrt cache and mroute socket state. |
101 | Note that the changes are semaphored via rtnl_lock. | 101 | * Note that the changes are semaphored via rtnl_lock. |
102 | */ | 102 | */ |
103 | 103 | ||
104 | static DEFINE_RWLOCK(mrt_lock); | 104 | static DEFINE_RWLOCK(mrt_lock); |
@@ -113,11 +113,11 @@ static DEFINE_RWLOCK(mrt_lock); | |||
113 | static DEFINE_SPINLOCK(mfc_unres_lock); | 113 | static DEFINE_SPINLOCK(mfc_unres_lock); |
114 | 114 | ||
115 | /* We return to original Alan's scheme. Hash table of resolved | 115 | /* We return to original Alan's scheme. Hash table of resolved |
116 | entries is changed only in process context and protected | 116 | * entries is changed only in process context and protected |
117 | with weak lock mrt_lock. Queue of unresolved entries is protected | 117 | * with weak lock mrt_lock. Queue of unresolved entries is protected |
118 | with strong spinlock mfc_unres_lock. | 118 | * with strong spinlock mfc_unres_lock. |
119 | 119 | * | |
120 | In this case data path is free of exclusive locks at all. | 120 | * In this case data path is free of exclusive locks at all. |
121 | */ | 121 | */ |
122 | 122 | ||
123 | static struct kmem_cache *mrt_cachep __read_mostly; | 123 | static struct kmem_cache *mrt_cachep __read_mostly; |
@@ -396,9 +396,9 @@ struct net_device *ipmr_new_tunnel(struct net *net, struct vifctl *v) | |||
396 | set_fs(KERNEL_DS); | 396 | set_fs(KERNEL_DS); |
397 | err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL); | 397 | err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL); |
398 | set_fs(oldfs); | 398 | set_fs(oldfs); |
399 | } else | 399 | } else { |
400 | err = -EOPNOTSUPP; | 400 | err = -EOPNOTSUPP; |
401 | 401 | } | |
402 | dev = NULL; | 402 | dev = NULL; |
403 | 403 | ||
404 | if (err == 0 && | 404 | if (err == 0 && |
@@ -495,7 +495,8 @@ static struct net_device *ipmr_reg_vif(struct net *net, struct mr_table *mrt) | |||
495 | dev->iflink = 0; | 495 | dev->iflink = 0; |
496 | 496 | ||
497 | rcu_read_lock(); | 497 | rcu_read_lock(); |
498 | if ((in_dev = __in_dev_get_rcu(dev)) == NULL) { | 498 | in_dev = __in_dev_get_rcu(dev); |
499 | if (!in_dev) { | ||
499 | rcu_read_unlock(); | 500 | rcu_read_unlock(); |
500 | goto failure; | 501 | goto failure; |
501 | } | 502 | } |
@@ -552,9 +553,10 @@ static int vif_delete(struct mr_table *mrt, int vifi, int notify, | |||
552 | mrt->mroute_reg_vif_num = -1; | 553 | mrt->mroute_reg_vif_num = -1; |
553 | #endif | 554 | #endif |
554 | 555 | ||
555 | if (vifi+1 == mrt->maxvif) { | 556 | if (vifi + 1 == mrt->maxvif) { |
556 | int tmp; | 557 | int tmp; |
557 | for (tmp=vifi-1; tmp>=0; tmp--) { | 558 | |
559 | for (tmp = vifi - 1; tmp >= 0; tmp--) { | ||
558 | if (VIF_EXISTS(mrt, tmp)) | 560 | if (VIF_EXISTS(mrt, tmp)) |
559 | break; | 561 | break; |
560 | } | 562 | } |
@@ -565,25 +567,33 @@ static int vif_delete(struct mr_table *mrt, int vifi, int notify, | |||
565 | 567 | ||
566 | dev_set_allmulti(dev, -1); | 568 | dev_set_allmulti(dev, -1); |
567 | 569 | ||
568 | if ((in_dev = __in_dev_get_rtnl(dev)) != NULL) { | 570 | in_dev = __in_dev_get_rtnl(dev); |
571 | if (in_dev) { | ||
569 | IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--; | 572 | IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)--; |
570 | ip_rt_multicast_event(in_dev); | 573 | ip_rt_multicast_event(in_dev); |
571 | } | 574 | } |
572 | 575 | ||
573 | if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER) && !notify) | 576 | if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER) && !notify) |
574 | unregister_netdevice_queue(dev, head); | 577 | unregister_netdevice_queue(dev, head); |
575 | 578 | ||
576 | dev_put(dev); | 579 | dev_put(dev); |
577 | return 0; | 580 | return 0; |
578 | } | 581 | } |
579 | 582 | ||
580 | static inline void ipmr_cache_free(struct mfc_cache *c) | 583 | static void ipmr_cache_free_rcu(struct rcu_head *head) |
581 | { | 584 | { |
585 | struct mfc_cache *c = container_of(head, struct mfc_cache, rcu); | ||
586 | |||
582 | kmem_cache_free(mrt_cachep, c); | 587 | kmem_cache_free(mrt_cachep, c); |
583 | } | 588 | } |
584 | 589 | ||
590 | static inline void ipmr_cache_free(struct mfc_cache *c) | ||
591 | { | ||
592 | call_rcu(&c->rcu, ipmr_cache_free_rcu); | ||
593 | } | ||
594 | |||
585 | /* Destroy an unresolved cache entry, killing queued skbs | 595 | /* Destroy an unresolved cache entry, killing queued skbs |
586 | and reporting error to netlink readers. | 596 | * and reporting error to netlink readers. |
587 | */ | 597 | */ |
588 | 598 | ||
589 | static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c) | 599 | static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c) |
@@ -605,8 +615,9 @@ static void ipmr_destroy_unres(struct mr_table *mrt, struct mfc_cache *c) | |||
605 | memset(&e->msg, 0, sizeof(e->msg)); | 615 | memset(&e->msg, 0, sizeof(e->msg)); |
606 | 616 | ||
607 | rtnl_unicast(skb, net, NETLINK_CB(skb).pid); | 617 | rtnl_unicast(skb, net, NETLINK_CB(skb).pid); |
608 | } else | 618 | } else { |
609 | kfree_skb(skb); | 619 | kfree_skb(skb); |
620 | } | ||
610 | } | 621 | } |
611 | 622 | ||
612 | ipmr_cache_free(c); | 623 | ipmr_cache_free(c); |
@@ -724,13 +735,13 @@ static int vif_add(struct net *net, struct mr_table *mrt, | |||
724 | case 0: | 735 | case 0: |
725 | if (vifc->vifc_flags == VIFF_USE_IFINDEX) { | 736 | if (vifc->vifc_flags == VIFF_USE_IFINDEX) { |
726 | dev = dev_get_by_index(net, vifc->vifc_lcl_ifindex); | 737 | dev = dev_get_by_index(net, vifc->vifc_lcl_ifindex); |
727 | if (dev && dev->ip_ptr == NULL) { | 738 | if (dev && __in_dev_get_rtnl(dev) == NULL) { |
728 | dev_put(dev); | 739 | dev_put(dev); |
729 | return -EADDRNOTAVAIL; | 740 | return -EADDRNOTAVAIL; |
730 | } | 741 | } |
731 | } else | 742 | } else { |
732 | dev = ip_dev_find(net, vifc->vifc_lcl_addr.s_addr); | 743 | dev = ip_dev_find(net, vifc->vifc_lcl_addr.s_addr); |
733 | 744 | } | |
734 | if (!dev) | 745 | if (!dev) |
735 | return -EADDRNOTAVAIL; | 746 | return -EADDRNOTAVAIL; |
736 | err = dev_set_allmulti(dev, 1); | 747 | err = dev_set_allmulti(dev, 1); |
@@ -743,16 +754,16 @@ static int vif_add(struct net *net, struct mr_table *mrt, | |||
743 | return -EINVAL; | 754 | return -EINVAL; |
744 | } | 755 | } |
745 | 756 | ||
746 | if ((in_dev = __in_dev_get_rtnl(dev)) == NULL) { | 757 | in_dev = __in_dev_get_rtnl(dev); |
758 | if (!in_dev) { | ||
747 | dev_put(dev); | 759 | dev_put(dev); |
748 | return -EADDRNOTAVAIL; | 760 | return -EADDRNOTAVAIL; |
749 | } | 761 | } |
750 | IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++; | 762 | IPV4_DEVCONF(in_dev->cnf, MC_FORWARDING)++; |
751 | ip_rt_multicast_event(in_dev); | 763 | ip_rt_multicast_event(in_dev); |
752 | 764 | ||
753 | /* | 765 | /* Fill in the VIF structures */ |
754 | * Fill in the VIF structures | 766 | |
755 | */ | ||
756 | v->rate_limit = vifc->vifc_rate_limit; | 767 | v->rate_limit = vifc->vifc_rate_limit; |
757 | v->local = vifc->vifc_lcl_addr.s_addr; | 768 | v->local = vifc->vifc_lcl_addr.s_addr; |
758 | v->remote = vifc->vifc_rmt_addr.s_addr; | 769 | v->remote = vifc->vifc_rmt_addr.s_addr; |
@@ -765,14 +776,14 @@ static int vif_add(struct net *net, struct mr_table *mrt, | |||
765 | v->pkt_in = 0; | 776 | v->pkt_in = 0; |
766 | v->pkt_out = 0; | 777 | v->pkt_out = 0; |
767 | v->link = dev->ifindex; | 778 | v->link = dev->ifindex; |
768 | if (v->flags&(VIFF_TUNNEL|VIFF_REGISTER)) | 779 | if (v->flags & (VIFF_TUNNEL | VIFF_REGISTER)) |
769 | v->link = dev->iflink; | 780 | v->link = dev->iflink; |
770 | 781 | ||
771 | /* And finish update writing critical data */ | 782 | /* And finish update writing critical data */ |
772 | write_lock_bh(&mrt_lock); | 783 | write_lock_bh(&mrt_lock); |
773 | v->dev = dev; | 784 | v->dev = dev; |
774 | #ifdef CONFIG_IP_PIMSM | 785 | #ifdef CONFIG_IP_PIMSM |
775 | if (v->flags&VIFF_REGISTER) | 786 | if (v->flags & VIFF_REGISTER) |
776 | mrt->mroute_reg_vif_num = vifi; | 787 | mrt->mroute_reg_vif_num = vifi; |
777 | #endif | 788 | #endif |
778 | if (vifi+1 > mrt->maxvif) | 789 | if (vifi+1 > mrt->maxvif) |
@@ -781,6 +792,7 @@ static int vif_add(struct net *net, struct mr_table *mrt, | |||
781 | return 0; | 792 | return 0; |
782 | } | 793 | } |
783 | 794 | ||
795 | /* called with rcu_read_lock() */ | ||
784 | static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt, | 796 | static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt, |
785 | __be32 origin, | 797 | __be32 origin, |
786 | __be32 mcastgrp) | 798 | __be32 mcastgrp) |
@@ -788,7 +800,7 @@ static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt, | |||
788 | int line = MFC_HASH(mcastgrp, origin); | 800 | int line = MFC_HASH(mcastgrp, origin); |
789 | struct mfc_cache *c; | 801 | struct mfc_cache *c; |
790 | 802 | ||
791 | list_for_each_entry(c, &mrt->mfc_cache_array[line], list) { | 803 | list_for_each_entry_rcu(c, &mrt->mfc_cache_array[line], list) { |
792 | if (c->mfc_origin == origin && c->mfc_mcastgrp == mcastgrp) | 804 | if (c->mfc_origin == origin && c->mfc_mcastgrp == mcastgrp) |
793 | return c; | 805 | return c; |
794 | } | 806 | } |
@@ -801,19 +813,20 @@ static struct mfc_cache *ipmr_cache_find(struct mr_table *mrt, | |||
801 | static struct mfc_cache *ipmr_cache_alloc(void) | 813 | static struct mfc_cache *ipmr_cache_alloc(void) |
802 | { | 814 | { |
803 | struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL); | 815 | struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL); |
804 | if (c == NULL) | 816 | |
805 | return NULL; | 817 | if (c) |
806 | c->mfc_un.res.minvif = MAXVIFS; | 818 | c->mfc_un.res.minvif = MAXVIFS; |
807 | return c; | 819 | return c; |
808 | } | 820 | } |
809 | 821 | ||
810 | static struct mfc_cache *ipmr_cache_alloc_unres(void) | 822 | static struct mfc_cache *ipmr_cache_alloc_unres(void) |
811 | { | 823 | { |
812 | struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC); | 824 | struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_ATOMIC); |
813 | if (c == NULL) | 825 | |
814 | return NULL; | 826 | if (c) { |
815 | skb_queue_head_init(&c->mfc_un.unres.unresolved); | 827 | skb_queue_head_init(&c->mfc_un.unres.unresolved); |
816 | c->mfc_un.unres.expires = jiffies + 10*HZ; | 828 | c->mfc_un.unres.expires = jiffies + 10*HZ; |
829 | } | ||
817 | return c; | 830 | return c; |
818 | } | 831 | } |
819 | 832 | ||
@@ -827,17 +840,15 @@ static void ipmr_cache_resolve(struct net *net, struct mr_table *mrt, | |||
827 | struct sk_buff *skb; | 840 | struct sk_buff *skb; |
828 | struct nlmsgerr *e; | 841 | struct nlmsgerr *e; |
829 | 842 | ||
830 | /* | 843 | /* Play the pending entries through our router */ |
831 | * Play the pending entries through our router | ||
832 | */ | ||
833 | 844 | ||
834 | while ((skb = __skb_dequeue(&uc->mfc_un.unres.unresolved))) { | 845 | while ((skb = __skb_dequeue(&uc->mfc_un.unres.unresolved))) { |
835 | if (ip_hdr(skb)->version == 0) { | 846 | if (ip_hdr(skb)->version == 0) { |
836 | struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr)); | 847 | struct nlmsghdr *nlh = (struct nlmsghdr *)skb_pull(skb, sizeof(struct iphdr)); |
837 | 848 | ||
838 | if (__ipmr_fill_mroute(mrt, skb, c, NLMSG_DATA(nlh)) > 0) { | 849 | if (__ipmr_fill_mroute(mrt, skb, c, NLMSG_DATA(nlh)) > 0) { |
839 | nlh->nlmsg_len = (skb_tail_pointer(skb) - | 850 | nlh->nlmsg_len = skb_tail_pointer(skb) - |
840 | (u8 *)nlh); | 851 | (u8 *)nlh; |
841 | } else { | 852 | } else { |
842 | nlh->nlmsg_type = NLMSG_ERROR; | 853 | nlh->nlmsg_type = NLMSG_ERROR; |
843 | nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr)); | 854 | nlh->nlmsg_len = NLMSG_LENGTH(sizeof(struct nlmsgerr)); |
@@ -848,8 +859,9 @@ static void ipmr_cache_resolve(struct net *net, struct mr_table *mrt, | |||
848 | } | 859 | } |
849 | 860 | ||
850 | rtnl_unicast(skb, net, NETLINK_CB(skb).pid); | 861 | rtnl_unicast(skb, net, NETLINK_CB(skb).pid); |
851 | } else | 862 | } else { |
852 | ip_mr_forward(net, mrt, skb, c, 0); | 863 | ip_mr_forward(net, mrt, skb, c, 0); |
864 | } | ||
853 | } | 865 | } |
854 | } | 866 | } |
855 | 867 | ||
@@ -867,6 +879,7 @@ static int ipmr_cache_report(struct mr_table *mrt, | |||
867 | const int ihl = ip_hdrlen(pkt); | 879 | const int ihl = ip_hdrlen(pkt); |
868 | struct igmphdr *igmp; | 880 | struct igmphdr *igmp; |
869 | struct igmpmsg *msg; | 881 | struct igmpmsg *msg; |
882 | struct sock *mroute_sk; | ||
870 | int ret; | 883 | int ret; |
871 | 884 | ||
872 | #ifdef CONFIG_IP_PIMSM | 885 | #ifdef CONFIG_IP_PIMSM |
@@ -882,9 +895,9 @@ static int ipmr_cache_report(struct mr_table *mrt, | |||
882 | #ifdef CONFIG_IP_PIMSM | 895 | #ifdef CONFIG_IP_PIMSM |
883 | if (assert == IGMPMSG_WHOLEPKT) { | 896 | if (assert == IGMPMSG_WHOLEPKT) { |
884 | /* Ugly, but we have no choice with this interface. | 897 | /* Ugly, but we have no choice with this interface. |
885 | Duplicate old header, fix ihl, length etc. | 898 | * Duplicate old header, fix ihl, length etc. |
886 | And all this only to mangle msg->im_msgtype and | 899 | * And all this only to mangle msg->im_msgtype and |
887 | to set msg->im_mbz to "mbz" :-) | 900 | * to set msg->im_mbz to "mbz" :-) |
888 | */ | 901 | */ |
889 | skb_push(skb, sizeof(struct iphdr)); | 902 | skb_push(skb, sizeof(struct iphdr)); |
890 | skb_reset_network_header(skb); | 903 | skb_reset_network_header(skb); |
@@ -901,39 +914,38 @@ static int ipmr_cache_report(struct mr_table *mrt, | |||
901 | #endif | 914 | #endif |
902 | { | 915 | { |
903 | 916 | ||
904 | /* | 917 | /* Copy the IP header */ |
905 | * Copy the IP header | ||
906 | */ | ||
907 | 918 | ||
908 | skb->network_header = skb->tail; | 919 | skb->network_header = skb->tail; |
909 | skb_put(skb, ihl); | 920 | skb_put(skb, ihl); |
910 | skb_copy_to_linear_data(skb, pkt->data, ihl); | 921 | skb_copy_to_linear_data(skb, pkt->data, ihl); |
911 | ip_hdr(skb)->protocol = 0; /* Flag to the kernel this is a route add */ | 922 | ip_hdr(skb)->protocol = 0; /* Flag to the kernel this is a route add */ |
912 | msg = (struct igmpmsg *)skb_network_header(skb); | 923 | msg = (struct igmpmsg *)skb_network_header(skb); |
913 | msg->im_vif = vifi; | 924 | msg->im_vif = vifi; |
914 | skb_dst_set(skb, dst_clone(skb_dst(pkt))); | 925 | skb_dst_set(skb, dst_clone(skb_dst(pkt))); |
915 | 926 | ||
916 | /* | 927 | /* Add our header */ |
917 | * Add our header | ||
918 | */ | ||
919 | 928 | ||
920 | igmp=(struct igmphdr *)skb_put(skb, sizeof(struct igmphdr)); | 929 | igmp = (struct igmphdr *)skb_put(skb, sizeof(struct igmphdr)); |
921 | igmp->type = | 930 | igmp->type = |
922 | msg->im_msgtype = assert; | 931 | msg->im_msgtype = assert; |
923 | igmp->code = 0; | 932 | igmp->code = 0; |
924 | ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */ | 933 | ip_hdr(skb)->tot_len = htons(skb->len); /* Fix the length */ |
925 | skb->transport_header = skb->network_header; | 934 | skb->transport_header = skb->network_header; |
926 | } | 935 | } |
927 | 936 | ||
928 | if (mrt->mroute_sk == NULL) { | 937 | rcu_read_lock(); |
938 | mroute_sk = rcu_dereference(mrt->mroute_sk); | ||
939 | if (mroute_sk == NULL) { | ||
940 | rcu_read_unlock(); | ||
929 | kfree_skb(skb); | 941 | kfree_skb(skb); |
930 | return -EINVAL; | 942 | return -EINVAL; |
931 | } | 943 | } |
932 | 944 | ||
933 | /* | 945 | /* Deliver to mrouted */ |
934 | * Deliver to mrouted | 946 | |
935 | */ | 947 | ret = sock_queue_rcv_skb(mroute_sk, skb); |
936 | ret = sock_queue_rcv_skb(mrt->mroute_sk, skb); | 948 | rcu_read_unlock(); |
937 | if (ret < 0) { | 949 | if (ret < 0) { |
938 | if (net_ratelimit()) | 950 | if (net_ratelimit()) |
939 | printk(KERN_WARNING "mroute: pending queue full, dropping entries.\n"); | 951 | printk(KERN_WARNING "mroute: pending queue full, dropping entries.\n"); |
@@ -965,9 +977,7 @@ ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi, struct sk_buff *skb) | |||
965 | } | 977 | } |
966 | 978 | ||
967 | if (!found) { | 979 | if (!found) { |
968 | /* | 980 | /* Create a new entry if allowable */ |
969 | * Create a new entry if allowable | ||
970 | */ | ||
971 | 981 | ||
972 | if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 || | 982 | if (atomic_read(&mrt->cache_resolve_queue_len) >= 10 || |
973 | (c = ipmr_cache_alloc_unres()) == NULL) { | 983 | (c = ipmr_cache_alloc_unres()) == NULL) { |
@@ -977,16 +987,14 @@ ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi, struct sk_buff *skb) | |||
977 | return -ENOBUFS; | 987 | return -ENOBUFS; |
978 | } | 988 | } |
979 | 989 | ||
980 | /* | 990 | /* Fill in the new cache entry */ |
981 | * Fill in the new cache entry | 991 | |
982 | */ | ||
983 | c->mfc_parent = -1; | 992 | c->mfc_parent = -1; |
984 | c->mfc_origin = iph->saddr; | 993 | c->mfc_origin = iph->saddr; |
985 | c->mfc_mcastgrp = iph->daddr; | 994 | c->mfc_mcastgrp = iph->daddr; |
986 | 995 | ||
987 | /* | 996 | /* Reflect first query at mrouted. */ |
988 | * Reflect first query at mrouted. | 997 | |
989 | */ | ||
990 | err = ipmr_cache_report(mrt, skb, vifi, IGMPMSG_NOCACHE); | 998 | err = ipmr_cache_report(mrt, skb, vifi, IGMPMSG_NOCACHE); |
991 | if (err < 0) { | 999 | if (err < 0) { |
992 | /* If the report failed throw the cache entry | 1000 | /* If the report failed throw the cache entry |
@@ -1006,10 +1014,9 @@ ipmr_cache_unresolved(struct mr_table *mrt, vifi_t vifi, struct sk_buff *skb) | |||
1006 | mod_timer(&mrt->ipmr_expire_timer, c->mfc_un.unres.expires); | 1014 | mod_timer(&mrt->ipmr_expire_timer, c->mfc_un.unres.expires); |
1007 | } | 1015 | } |
1008 | 1016 | ||
1009 | /* | 1017 | /* See if we can append the packet */ |
1010 | * See if we can append the packet | 1018 | |
1011 | */ | 1019 | if (c->mfc_un.unres.unresolved.qlen > 3) { |
1012 | if (c->mfc_un.unres.unresolved.qlen>3) { | ||
1013 | kfree_skb(skb); | 1020 | kfree_skb(skb); |
1014 | err = -ENOBUFS; | 1021 | err = -ENOBUFS; |
1015 | } else { | 1022 | } else { |
@@ -1035,9 +1042,7 @@ static int ipmr_mfc_delete(struct mr_table *mrt, struct mfcctl *mfc) | |||
1035 | list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[line], list) { | 1042 | list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[line], list) { |
1036 | if (c->mfc_origin == mfc->mfcc_origin.s_addr && | 1043 | if (c->mfc_origin == mfc->mfcc_origin.s_addr && |
1037 | c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) { | 1044 | c->mfc_mcastgrp == mfc->mfcc_mcastgrp.s_addr) { |
1038 | write_lock_bh(&mrt_lock); | 1045 | list_del_rcu(&c->list); |
1039 | list_del(&c->list); | ||
1040 | write_unlock_bh(&mrt_lock); | ||
1041 | 1046 | ||
1042 | ipmr_cache_free(c); | 1047 | ipmr_cache_free(c); |
1043 | return 0; | 1048 | return 0; |
@@ -1090,9 +1095,7 @@ static int ipmr_mfc_add(struct net *net, struct mr_table *mrt, | |||
1090 | if (!mrtsock) | 1095 | if (!mrtsock) |
1091 | c->mfc_flags |= MFC_STATIC; | 1096 | c->mfc_flags |= MFC_STATIC; |
1092 | 1097 | ||
1093 | write_lock_bh(&mrt_lock); | 1098 | list_add_rcu(&c->list, &mrt->mfc_cache_array[line]); |
1094 | list_add(&c->list, &mrt->mfc_cache_array[line]); | ||
1095 | write_unlock_bh(&mrt_lock); | ||
1096 | 1099 | ||
1097 | /* | 1100 | /* |
1098 | * Check to see if we resolved a queued list. If so we | 1101 | * Check to see if we resolved a queued list. If so we |
@@ -1130,26 +1133,21 @@ static void mroute_clean_tables(struct mr_table *mrt) | |||
1130 | LIST_HEAD(list); | 1133 | LIST_HEAD(list); |
1131 | struct mfc_cache *c, *next; | 1134 | struct mfc_cache *c, *next; |
1132 | 1135 | ||
1133 | /* | 1136 | /* Shut down all active vif entries */ |
1134 | * Shut down all active vif entries | 1137 | |
1135 | */ | ||
1136 | for (i = 0; i < mrt->maxvif; i++) { | 1138 | for (i = 0; i < mrt->maxvif; i++) { |
1137 | if (!(mrt->vif_table[i].flags&VIFF_STATIC)) | 1139 | if (!(mrt->vif_table[i].flags & VIFF_STATIC)) |
1138 | vif_delete(mrt, i, 0, &list); | 1140 | vif_delete(mrt, i, 0, &list); |
1139 | } | 1141 | } |
1140 | unregister_netdevice_many(&list); | 1142 | unregister_netdevice_many(&list); |
1141 | 1143 | ||
1142 | /* | 1144 | /* Wipe the cache */ |
1143 | * Wipe the cache | 1145 | |
1144 | */ | ||
1145 | for (i = 0; i < MFC_LINES; i++) { | 1146 | for (i = 0; i < MFC_LINES; i++) { |
1146 | list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[i], list) { | 1147 | list_for_each_entry_safe(c, next, &mrt->mfc_cache_array[i], list) { |
1147 | if (c->mfc_flags&MFC_STATIC) | 1148 | if (c->mfc_flags & MFC_STATIC) |
1148 | continue; | 1149 | continue; |
1149 | write_lock_bh(&mrt_lock); | 1150 | list_del_rcu(&c->list); |
1150 | list_del(&c->list); | ||
1151 | write_unlock_bh(&mrt_lock); | ||
1152 | |||
1153 | ipmr_cache_free(c); | 1151 | ipmr_cache_free(c); |
1154 | } | 1152 | } |
1155 | } | 1153 | } |
@@ -1164,6 +1162,9 @@ static void mroute_clean_tables(struct mr_table *mrt) | |||
1164 | } | 1162 | } |
1165 | } | 1163 | } |
1166 | 1164 | ||
1165 | /* called from ip_ra_control(), before an RCU grace period, | ||
1166 | * we dont need to call synchronize_rcu() here | ||
1167 | */ | ||
1167 | static void mrtsock_destruct(struct sock *sk) | 1168 | static void mrtsock_destruct(struct sock *sk) |
1168 | { | 1169 | { |
1169 | struct net *net = sock_net(sk); | 1170 | struct net *net = sock_net(sk); |
@@ -1171,13 +1172,9 @@ static void mrtsock_destruct(struct sock *sk) | |||
1171 | 1172 | ||
1172 | rtnl_lock(); | 1173 | rtnl_lock(); |
1173 | ipmr_for_each_table(mrt, net) { | 1174 | ipmr_for_each_table(mrt, net) { |
1174 | if (sk == mrt->mroute_sk) { | 1175 | if (sk == rtnl_dereference(mrt->mroute_sk)) { |
1175 | IPV4_DEVCONF_ALL(net, MC_FORWARDING)--; | 1176 | IPV4_DEVCONF_ALL(net, MC_FORWARDING)--; |
1176 | 1177 | rcu_assign_pointer(mrt->mroute_sk, NULL); | |
1177 | write_lock_bh(&mrt_lock); | ||
1178 | mrt->mroute_sk = NULL; | ||
1179 | write_unlock_bh(&mrt_lock); | ||
1180 | |||
1181 | mroute_clean_tables(mrt); | 1178 | mroute_clean_tables(mrt); |
1182 | } | 1179 | } |
1183 | } | 1180 | } |
@@ -1204,7 +1201,8 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1204 | return -ENOENT; | 1201 | return -ENOENT; |
1205 | 1202 | ||
1206 | if (optname != MRT_INIT) { | 1203 | if (optname != MRT_INIT) { |
1207 | if (sk != mrt->mroute_sk && !capable(CAP_NET_ADMIN)) | 1204 | if (sk != rcu_dereference_raw(mrt->mroute_sk) && |
1205 | !capable(CAP_NET_ADMIN)) | ||
1208 | return -EACCES; | 1206 | return -EACCES; |
1209 | } | 1207 | } |
1210 | 1208 | ||
@@ -1217,23 +1215,20 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1217 | return -ENOPROTOOPT; | 1215 | return -ENOPROTOOPT; |
1218 | 1216 | ||
1219 | rtnl_lock(); | 1217 | rtnl_lock(); |
1220 | if (mrt->mroute_sk) { | 1218 | if (rtnl_dereference(mrt->mroute_sk)) { |
1221 | rtnl_unlock(); | 1219 | rtnl_unlock(); |
1222 | return -EADDRINUSE; | 1220 | return -EADDRINUSE; |
1223 | } | 1221 | } |
1224 | 1222 | ||
1225 | ret = ip_ra_control(sk, 1, mrtsock_destruct); | 1223 | ret = ip_ra_control(sk, 1, mrtsock_destruct); |
1226 | if (ret == 0) { | 1224 | if (ret == 0) { |
1227 | write_lock_bh(&mrt_lock); | 1225 | rcu_assign_pointer(mrt->mroute_sk, sk); |
1228 | mrt->mroute_sk = sk; | ||
1229 | write_unlock_bh(&mrt_lock); | ||
1230 | |||
1231 | IPV4_DEVCONF_ALL(net, MC_FORWARDING)++; | 1226 | IPV4_DEVCONF_ALL(net, MC_FORWARDING)++; |
1232 | } | 1227 | } |
1233 | rtnl_unlock(); | 1228 | rtnl_unlock(); |
1234 | return ret; | 1229 | return ret; |
1235 | case MRT_DONE: | 1230 | case MRT_DONE: |
1236 | if (sk != mrt->mroute_sk) | 1231 | if (sk != rcu_dereference_raw(mrt->mroute_sk)) |
1237 | return -EACCES; | 1232 | return -EACCES; |
1238 | return ip_ra_control(sk, 0, NULL); | 1233 | return ip_ra_control(sk, 0, NULL); |
1239 | case MRT_ADD_VIF: | 1234 | case MRT_ADD_VIF: |
@@ -1246,7 +1241,8 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1246 | return -ENFILE; | 1241 | return -ENFILE; |
1247 | rtnl_lock(); | 1242 | rtnl_lock(); |
1248 | if (optname == MRT_ADD_VIF) { | 1243 | if (optname == MRT_ADD_VIF) { |
1249 | ret = vif_add(net, mrt, &vif, sk == mrt->mroute_sk); | 1244 | ret = vif_add(net, mrt, &vif, |
1245 | sk == rtnl_dereference(mrt->mroute_sk)); | ||
1250 | } else { | 1246 | } else { |
1251 | ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL); | 1247 | ret = vif_delete(mrt, vif.vifc_vifi, 0, NULL); |
1252 | } | 1248 | } |
@@ -1267,7 +1263,8 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1267 | if (optname == MRT_DEL_MFC) | 1263 | if (optname == MRT_DEL_MFC) |
1268 | ret = ipmr_mfc_delete(mrt, &mfc); | 1264 | ret = ipmr_mfc_delete(mrt, &mfc); |
1269 | else | 1265 | else |
1270 | ret = ipmr_mfc_add(net, mrt, &mfc, sk == mrt->mroute_sk); | 1266 | ret = ipmr_mfc_add(net, mrt, &mfc, |
1267 | sk == rtnl_dereference(mrt->mroute_sk)); | ||
1271 | rtnl_unlock(); | 1268 | rtnl_unlock(); |
1272 | return ret; | 1269 | return ret; |
1273 | /* | 1270 | /* |
@@ -1276,7 +1273,7 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1276 | case MRT_ASSERT: | 1273 | case MRT_ASSERT: |
1277 | { | 1274 | { |
1278 | int v; | 1275 | int v; |
1279 | if (get_user(v,(int __user *)optval)) | 1276 | if (get_user(v, (int __user *)optval)) |
1280 | return -EFAULT; | 1277 | return -EFAULT; |
1281 | mrt->mroute_do_assert = (v) ? 1 : 0; | 1278 | mrt->mroute_do_assert = (v) ? 1 : 0; |
1282 | return 0; | 1279 | return 0; |
@@ -1286,7 +1283,7 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1286 | { | 1283 | { |
1287 | int v; | 1284 | int v; |
1288 | 1285 | ||
1289 | if (get_user(v,(int __user *)optval)) | 1286 | if (get_user(v, (int __user *)optval)) |
1290 | return -EFAULT; | 1287 | return -EFAULT; |
1291 | v = (v) ? 1 : 0; | 1288 | v = (v) ? 1 : 0; |
1292 | 1289 | ||
@@ -1309,14 +1306,16 @@ int ip_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, unsi | |||
1309 | return -EINVAL; | 1306 | return -EINVAL; |
1310 | if (get_user(v, (u32 __user *)optval)) | 1307 | if (get_user(v, (u32 __user *)optval)) |
1311 | return -EFAULT; | 1308 | return -EFAULT; |
1312 | if (sk == mrt->mroute_sk) | ||
1313 | return -EBUSY; | ||
1314 | 1309 | ||
1315 | rtnl_lock(); | 1310 | rtnl_lock(); |
1316 | ret = 0; | 1311 | ret = 0; |
1317 | if (!ipmr_new_table(net, v)) | 1312 | if (sk == rtnl_dereference(mrt->mroute_sk)) { |
1318 | ret = -ENOMEM; | 1313 | ret = -EBUSY; |
1319 | raw_sk(sk)->ipmr_table = v; | 1314 | } else { |
1315 | if (!ipmr_new_table(net, v)) | ||
1316 | ret = -ENOMEM; | ||
1317 | raw_sk(sk)->ipmr_table = v; | ||
1318 | } | ||
1320 | rtnl_unlock(); | 1319 | rtnl_unlock(); |
1321 | return ret; | 1320 | return ret; |
1322 | } | 1321 | } |
@@ -1347,9 +1346,9 @@ int ip_mroute_getsockopt(struct sock *sk, int optname, char __user *optval, int | |||
1347 | 1346 | ||
1348 | if (optname != MRT_VERSION && | 1347 | if (optname != MRT_VERSION && |
1349 | #ifdef CONFIG_IP_PIMSM | 1348 | #ifdef CONFIG_IP_PIMSM |
1350 | optname!=MRT_PIM && | 1349 | optname != MRT_PIM && |
1351 | #endif | 1350 | #endif |
1352 | optname!=MRT_ASSERT) | 1351 | optname != MRT_ASSERT) |
1353 | return -ENOPROTOOPT; | 1352 | return -ENOPROTOOPT; |
1354 | 1353 | ||
1355 | if (get_user(olr, optlen)) | 1354 | if (get_user(olr, optlen)) |
@@ -1416,19 +1415,19 @@ int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg) | |||
1416 | if (copy_from_user(&sr, arg, sizeof(sr))) | 1415 | if (copy_from_user(&sr, arg, sizeof(sr))) |
1417 | return -EFAULT; | 1416 | return -EFAULT; |
1418 | 1417 | ||
1419 | read_lock(&mrt_lock); | 1418 | rcu_read_lock(); |
1420 | c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr); | 1419 | c = ipmr_cache_find(mrt, sr.src.s_addr, sr.grp.s_addr); |
1421 | if (c) { | 1420 | if (c) { |
1422 | sr.pktcnt = c->mfc_un.res.pkt; | 1421 | sr.pktcnt = c->mfc_un.res.pkt; |
1423 | sr.bytecnt = c->mfc_un.res.bytes; | 1422 | sr.bytecnt = c->mfc_un.res.bytes; |
1424 | sr.wrong_if = c->mfc_un.res.wrong_if; | 1423 | sr.wrong_if = c->mfc_un.res.wrong_if; |
1425 | read_unlock(&mrt_lock); | 1424 | rcu_read_unlock(); |
1426 | 1425 | ||
1427 | if (copy_to_user(arg, &sr, sizeof(sr))) | 1426 | if (copy_to_user(arg, &sr, sizeof(sr))) |
1428 | return -EFAULT; | 1427 | return -EFAULT; |
1429 | return 0; | 1428 | return 0; |
1430 | } | 1429 | } |
1431 | read_unlock(&mrt_lock); | 1430 | rcu_read_unlock(); |
1432 | return -EADDRNOTAVAIL; | 1431 | return -EADDRNOTAVAIL; |
1433 | default: | 1432 | default: |
1434 | return -ENOIOCTLCMD; | 1433 | return -ENOIOCTLCMD; |
@@ -1465,7 +1464,7 @@ static struct notifier_block ip_mr_notifier = { | |||
1465 | }; | 1464 | }; |
1466 | 1465 | ||
1467 | /* | 1466 | /* |
1468 | * Encapsulate a packet by attaching a valid IPIP header to it. | 1467 | * Encapsulate a packet by attaching a valid IPIP header to it. |
1469 | * This avoids tunnel drivers and other mess and gives us the speed so | 1468 | * This avoids tunnel drivers and other mess and gives us the speed so |
1470 | * important for multicast video. | 1469 | * important for multicast video. |
1471 | */ | 1470 | */ |
@@ -1480,7 +1479,7 @@ static void ip_encap(struct sk_buff *skb, __be32 saddr, __be32 daddr) | |||
1480 | skb_reset_network_header(skb); | 1479 | skb_reset_network_header(skb); |
1481 | iph = ip_hdr(skb); | 1480 | iph = ip_hdr(skb); |
1482 | 1481 | ||
1483 | iph->version = 4; | 1482 | iph->version = 4; |
1484 | iph->tos = old_iph->tos; | 1483 | iph->tos = old_iph->tos; |
1485 | iph->ttl = old_iph->ttl; | 1484 | iph->ttl = old_iph->ttl; |
1486 | iph->frag_off = 0; | 1485 | iph->frag_off = 0; |
@@ -1498,7 +1497,7 @@ static void ip_encap(struct sk_buff *skb, __be32 saddr, __be32 daddr) | |||
1498 | 1497 | ||
1499 | static inline int ipmr_forward_finish(struct sk_buff *skb) | 1498 | static inline int ipmr_forward_finish(struct sk_buff *skb) |
1500 | { | 1499 | { |
1501 | struct ip_options * opt = &(IPCB(skb)->opt); | 1500 | struct ip_options *opt = &(IPCB(skb)->opt); |
1502 | 1501 | ||
1503 | IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTFORWDATAGRAMS); | 1502 | IP_INC_STATS_BH(dev_net(skb_dst(skb)->dev), IPSTATS_MIB_OUTFORWDATAGRAMS); |
1504 | 1503 | ||
@@ -1535,22 +1534,34 @@ static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt, | |||
1535 | } | 1534 | } |
1536 | #endif | 1535 | #endif |
1537 | 1536 | ||
1538 | if (vif->flags&VIFF_TUNNEL) { | 1537 | if (vif->flags & VIFF_TUNNEL) { |
1539 | struct flowi fl = { .oif = vif->link, | 1538 | struct flowi fl = { |
1540 | .nl_u = { .ip4_u = | 1539 | .oif = vif->link, |
1541 | { .daddr = vif->remote, | 1540 | .nl_u = { |
1542 | .saddr = vif->local, | 1541 | .ip4_u = { |
1543 | .tos = RT_TOS(iph->tos) } }, | 1542 | .daddr = vif->remote, |
1544 | .proto = IPPROTO_IPIP }; | 1543 | .saddr = vif->local, |
1544 | .tos = RT_TOS(iph->tos) | ||
1545 | } | ||
1546 | }, | ||
1547 | .proto = IPPROTO_IPIP | ||
1548 | }; | ||
1549 | |||
1545 | if (ip_route_output_key(net, &rt, &fl)) | 1550 | if (ip_route_output_key(net, &rt, &fl)) |
1546 | goto out_free; | 1551 | goto out_free; |
1547 | encap = sizeof(struct iphdr); | 1552 | encap = sizeof(struct iphdr); |
1548 | } else { | 1553 | } else { |
1549 | struct flowi fl = { .oif = vif->link, | 1554 | struct flowi fl = { |
1550 | .nl_u = { .ip4_u = | 1555 | .oif = vif->link, |
1551 | { .daddr = iph->daddr, | 1556 | .nl_u = { |
1552 | .tos = RT_TOS(iph->tos) } }, | 1557 | .ip4_u = { |
1553 | .proto = IPPROTO_IPIP }; | 1558 | .daddr = iph->daddr, |
1559 | .tos = RT_TOS(iph->tos) | ||
1560 | } | ||
1561 | }, | ||
1562 | .proto = IPPROTO_IPIP | ||
1563 | }; | ||
1564 | |||
1554 | if (ip_route_output_key(net, &rt, &fl)) | 1565 | if (ip_route_output_key(net, &rt, &fl)) |
1555 | goto out_free; | 1566 | goto out_free; |
1556 | } | 1567 | } |
@@ -1559,8 +1570,8 @@ static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt, | |||
1559 | 1570 | ||
1560 | if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) { | 1571 | if (skb->len+encap > dst_mtu(&rt->dst) && (ntohs(iph->frag_off) & IP_DF)) { |
1561 | /* Do not fragment multicasts. Alas, IPv4 does not | 1572 | /* Do not fragment multicasts. Alas, IPv4 does not |
1562 | allow to send ICMP, so that packets will disappear | 1573 | * allow to send ICMP, so that packets will disappear |
1563 | to blackhole. | 1574 | * to blackhole. |
1564 | */ | 1575 | */ |
1565 | 1576 | ||
1566 | IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_FRAGFAILS); | 1577 | IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_FRAGFAILS); |
@@ -1583,7 +1594,8 @@ static void ipmr_queue_xmit(struct net *net, struct mr_table *mrt, | |||
1583 | ip_decrease_ttl(ip_hdr(skb)); | 1594 | ip_decrease_ttl(ip_hdr(skb)); |
1584 | 1595 | ||
1585 | /* FIXME: forward and output firewalls used to be called here. | 1596 | /* FIXME: forward and output firewalls used to be called here. |
1586 | * What do we do with netfilter? -- RR */ | 1597 | * What do we do with netfilter? -- RR |
1598 | */ | ||
1587 | if (vif->flags & VIFF_TUNNEL) { | 1599 | if (vif->flags & VIFF_TUNNEL) { |
1588 | ip_encap(skb, vif->local, vif->remote); | 1600 | ip_encap(skb, vif->local, vif->remote); |
1589 | /* FIXME: extra output firewall step used to be here. --RR */ | 1601 | /* FIXME: extra output firewall step used to be here. --RR */ |
@@ -1644,15 +1656,15 @@ static int ip_mr_forward(struct net *net, struct mr_table *mrt, | |||
1644 | 1656 | ||
1645 | if (skb_rtable(skb)->fl.iif == 0) { | 1657 | if (skb_rtable(skb)->fl.iif == 0) { |
1646 | /* It is our own packet, looped back. | 1658 | /* It is our own packet, looped back. |
1647 | Very complicated situation... | 1659 | * Very complicated situation... |
1648 | 1660 | * | |
1649 | The best workaround until routing daemons will be | 1661 | * The best workaround until routing daemons will be |
1650 | fixed is not to redistribute packet, if it was | 1662 | * fixed is not to redistribute packet, if it was |
1651 | send through wrong interface. It means, that | 1663 | * send through wrong interface. It means, that |
1652 | multicast applications WILL NOT work for | 1664 | * multicast applications WILL NOT work for |
1653 | (S,G), which have default multicast route pointing | 1665 | * (S,G), which have default multicast route pointing |
1654 | to wrong oif. In any case, it is not a good | 1666 | * to wrong oif. In any case, it is not a good |
1655 | idea to use multicasting applications on router. | 1667 | * idea to use multicasting applications on router. |
1656 | */ | 1668 | */ |
1657 | goto dont_forward; | 1669 | goto dont_forward; |
1658 | } | 1670 | } |
@@ -1662,9 +1674,9 @@ static int ip_mr_forward(struct net *net, struct mr_table *mrt, | |||
1662 | 1674 | ||
1663 | if (true_vifi >= 0 && mrt->mroute_do_assert && | 1675 | if (true_vifi >= 0 && mrt->mroute_do_assert && |
1664 | /* pimsm uses asserts, when switching from RPT to SPT, | 1676 | /* pimsm uses asserts, when switching from RPT to SPT, |
1665 | so that we cannot check that packet arrived on an oif. | 1677 | * so that we cannot check that packet arrived on an oif. |
1666 | It is bad, but otherwise we would need to move pretty | 1678 | * It is bad, but otherwise we would need to move pretty |
1667 | large chunk of pimd to kernel. Ough... --ANK | 1679 | * large chunk of pimd to kernel. Ough... --ANK |
1668 | */ | 1680 | */ |
1669 | (mrt->mroute_do_pim || | 1681 | (mrt->mroute_do_pim || |
1670 | cache->mfc_un.res.ttls[true_vifi] < 255) && | 1682 | cache->mfc_un.res.ttls[true_vifi] < 255) && |
@@ -1682,10 +1694,12 @@ static int ip_mr_forward(struct net *net, struct mr_table *mrt, | |||
1682 | /* | 1694 | /* |
1683 | * Forward the frame | 1695 | * Forward the frame |
1684 | */ | 1696 | */ |
1685 | for (ct = cache->mfc_un.res.maxvif-1; ct >= cache->mfc_un.res.minvif; ct--) { | 1697 | for (ct = cache->mfc_un.res.maxvif - 1; |
1698 | ct >= cache->mfc_un.res.minvif; ct--) { | ||
1686 | if (ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) { | 1699 | if (ip_hdr(skb)->ttl > cache->mfc_un.res.ttls[ct]) { |
1687 | if (psend != -1) { | 1700 | if (psend != -1) { |
1688 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); | 1701 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
1702 | |||
1689 | if (skb2) | 1703 | if (skb2) |
1690 | ipmr_queue_xmit(net, mrt, skb2, cache, | 1704 | ipmr_queue_xmit(net, mrt, skb2, cache, |
1691 | psend); | 1705 | psend); |
@@ -1696,6 +1710,7 @@ static int ip_mr_forward(struct net *net, struct mr_table *mrt, | |||
1696 | if (psend != -1) { | 1710 | if (psend != -1) { |
1697 | if (local) { | 1711 | if (local) { |
1698 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); | 1712 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
1713 | |||
1699 | if (skb2) | 1714 | if (skb2) |
1700 | ipmr_queue_xmit(net, mrt, skb2, cache, psend); | 1715 | ipmr_queue_xmit(net, mrt, skb2, cache, psend); |
1701 | } else { | 1716 | } else { |
@@ -1713,6 +1728,7 @@ dont_forward: | |||
1713 | 1728 | ||
1714 | /* | 1729 | /* |
1715 | * Multicast packets for forwarding arrive here | 1730 | * Multicast packets for forwarding arrive here |
1731 | * Called with rcu_read_lock(); | ||
1716 | */ | 1732 | */ |
1717 | 1733 | ||
1718 | int ip_mr_input(struct sk_buff *skb) | 1734 | int ip_mr_input(struct sk_buff *skb) |
@@ -1724,9 +1740,9 @@ int ip_mr_input(struct sk_buff *skb) | |||
1724 | int err; | 1740 | int err; |
1725 | 1741 | ||
1726 | /* Packet is looped back after forward, it should not be | 1742 | /* Packet is looped back after forward, it should not be |
1727 | forwarded second time, but still can be delivered locally. | 1743 | * forwarded second time, but still can be delivered locally. |
1728 | */ | 1744 | */ |
1729 | if (IPCB(skb)->flags&IPSKB_FORWARDED) | 1745 | if (IPCB(skb)->flags & IPSKB_FORWARDED) |
1730 | goto dont_forward; | 1746 | goto dont_forward; |
1731 | 1747 | ||
1732 | err = ipmr_fib_lookup(net, &skb_rtable(skb)->fl, &mrt); | 1748 | err = ipmr_fib_lookup(net, &skb_rtable(skb)->fl, &mrt); |
@@ -1736,28 +1752,28 @@ int ip_mr_input(struct sk_buff *skb) | |||
1736 | } | 1752 | } |
1737 | 1753 | ||
1738 | if (!local) { | 1754 | if (!local) { |
1739 | if (IPCB(skb)->opt.router_alert) { | 1755 | if (IPCB(skb)->opt.router_alert) { |
1740 | if (ip_call_ra_chain(skb)) | 1756 | if (ip_call_ra_chain(skb)) |
1741 | return 0; | 1757 | return 0; |
1742 | } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP){ | 1758 | } else if (ip_hdr(skb)->protocol == IPPROTO_IGMP) { |
1743 | /* IGMPv1 (and broken IGMPv2 implementations sort of | 1759 | /* IGMPv1 (and broken IGMPv2 implementations sort of |
1744 | Cisco IOS <= 11.2(8)) do not put router alert | 1760 | * Cisco IOS <= 11.2(8)) do not put router alert |
1745 | option to IGMP packets destined to routable | 1761 | * option to IGMP packets destined to routable |
1746 | groups. It is very bad, because it means | 1762 | * groups. It is very bad, because it means |
1747 | that we can forward NO IGMP messages. | 1763 | * that we can forward NO IGMP messages. |
1748 | */ | 1764 | */ |
1749 | read_lock(&mrt_lock); | 1765 | struct sock *mroute_sk; |
1750 | if (mrt->mroute_sk) { | 1766 | |
1751 | nf_reset(skb); | 1767 | mroute_sk = rcu_dereference(mrt->mroute_sk); |
1752 | raw_rcv(mrt->mroute_sk, skb); | 1768 | if (mroute_sk) { |
1753 | read_unlock(&mrt_lock); | 1769 | nf_reset(skb); |
1754 | return 0; | 1770 | raw_rcv(mroute_sk, skb); |
1755 | } | 1771 | return 0; |
1756 | read_unlock(&mrt_lock); | 1772 | } |
1757 | } | 1773 | } |
1758 | } | 1774 | } |
1759 | 1775 | ||
1760 | read_lock(&mrt_lock); | 1776 | /* already under rcu_read_lock() */ |
1761 | cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr); | 1777 | cache = ipmr_cache_find(mrt, ip_hdr(skb)->saddr, ip_hdr(skb)->daddr); |
1762 | 1778 | ||
1763 | /* | 1779 | /* |
@@ -1769,13 +1785,12 @@ int ip_mr_input(struct sk_buff *skb) | |||
1769 | if (local) { | 1785 | if (local) { |
1770 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); | 1786 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
1771 | ip_local_deliver(skb); | 1787 | ip_local_deliver(skb); |
1772 | if (skb2 == NULL) { | 1788 | if (skb2 == NULL) |
1773 | read_unlock(&mrt_lock); | ||
1774 | return -ENOBUFS; | 1789 | return -ENOBUFS; |
1775 | } | ||
1776 | skb = skb2; | 1790 | skb = skb2; |
1777 | } | 1791 | } |
1778 | 1792 | ||
1793 | read_lock(&mrt_lock); | ||
1779 | vif = ipmr_find_vif(mrt, skb->dev); | 1794 | vif = ipmr_find_vif(mrt, skb->dev); |
1780 | if (vif >= 0) { | 1795 | if (vif >= 0) { |
1781 | int err2 = ipmr_cache_unresolved(mrt, vif, skb); | 1796 | int err2 = ipmr_cache_unresolved(mrt, vif, skb); |
@@ -1788,8 +1803,8 @@ int ip_mr_input(struct sk_buff *skb) | |||
1788 | return -ENODEV; | 1803 | return -ENODEV; |
1789 | } | 1804 | } |
1790 | 1805 | ||
1806 | read_lock(&mrt_lock); | ||
1791 | ip_mr_forward(net, mrt, skb, cache, local); | 1807 | ip_mr_forward(net, mrt, skb, cache, local); |
1792 | |||
1793 | read_unlock(&mrt_lock); | 1808 | read_unlock(&mrt_lock); |
1794 | 1809 | ||
1795 | if (local) | 1810 | if (local) |
@@ -1805,6 +1820,7 @@ dont_forward: | |||
1805 | } | 1820 | } |
1806 | 1821 | ||
1807 | #ifdef CONFIG_IP_PIMSM | 1822 | #ifdef CONFIG_IP_PIMSM |
1823 | /* called with rcu_read_lock() */ | ||
1808 | static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb, | 1824 | static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb, |
1809 | unsigned int pimlen) | 1825 | unsigned int pimlen) |
1810 | { | 1826 | { |
@@ -1813,10 +1829,10 @@ static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb, | |||
1813 | 1829 | ||
1814 | encap = (struct iphdr *)(skb_transport_header(skb) + pimlen); | 1830 | encap = (struct iphdr *)(skb_transport_header(skb) + pimlen); |
1815 | /* | 1831 | /* |
1816 | Check that: | 1832 | * Check that: |
1817 | a. packet is really destinted to a multicast group | 1833 | * a. packet is really sent to a multicast group |
1818 | b. packet is not a NULL-REGISTER | 1834 | * b. packet is not a NULL-REGISTER |
1819 | c. packet is not truncated | 1835 | * c. packet is not truncated |
1820 | */ | 1836 | */ |
1821 | if (!ipv4_is_multicast(encap->daddr) || | 1837 | if (!ipv4_is_multicast(encap->daddr) || |
1822 | encap->tot_len == 0 || | 1838 | encap->tot_len == 0 || |
@@ -1826,26 +1842,23 @@ static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb, | |||
1826 | read_lock(&mrt_lock); | 1842 | read_lock(&mrt_lock); |
1827 | if (mrt->mroute_reg_vif_num >= 0) | 1843 | if (mrt->mroute_reg_vif_num >= 0) |
1828 | reg_dev = mrt->vif_table[mrt->mroute_reg_vif_num].dev; | 1844 | reg_dev = mrt->vif_table[mrt->mroute_reg_vif_num].dev; |
1829 | if (reg_dev) | ||
1830 | dev_hold(reg_dev); | ||
1831 | read_unlock(&mrt_lock); | 1845 | read_unlock(&mrt_lock); |
1832 | 1846 | ||
1833 | if (reg_dev == NULL) | 1847 | if (reg_dev == NULL) |
1834 | return 1; | 1848 | return 1; |
1835 | 1849 | ||
1836 | skb->mac_header = skb->network_header; | 1850 | skb->mac_header = skb->network_header; |
1837 | skb_pull(skb, (u8*)encap - skb->data); | 1851 | skb_pull(skb, (u8 *)encap - skb->data); |
1838 | skb_reset_network_header(skb); | 1852 | skb_reset_network_header(skb); |
1839 | skb->protocol = htons(ETH_P_IP); | 1853 | skb->protocol = htons(ETH_P_IP); |
1840 | skb->ip_summed = 0; | 1854 | skb->ip_summed = CHECKSUM_NONE; |
1841 | skb->pkt_type = PACKET_HOST; | 1855 | skb->pkt_type = PACKET_HOST; |
1842 | 1856 | ||
1843 | skb_tunnel_rx(skb, reg_dev); | 1857 | skb_tunnel_rx(skb, reg_dev); |
1844 | 1858 | ||
1845 | netif_rx(skb); | 1859 | netif_rx(skb); |
1846 | dev_put(reg_dev); | ||
1847 | 1860 | ||
1848 | return 0; | 1861 | return NET_RX_SUCCESS; |
1849 | } | 1862 | } |
1850 | #endif | 1863 | #endif |
1851 | 1864 | ||
@@ -1854,7 +1867,7 @@ static int __pim_rcv(struct mr_table *mrt, struct sk_buff *skb, | |||
1854 | * Handle IGMP messages of PIMv1 | 1867 | * Handle IGMP messages of PIMv1 |
1855 | */ | 1868 | */ |
1856 | 1869 | ||
1857 | int pim_rcv_v1(struct sk_buff * skb) | 1870 | int pim_rcv_v1(struct sk_buff *skb) |
1858 | { | 1871 | { |
1859 | struct igmphdr *pim; | 1872 | struct igmphdr *pim; |
1860 | struct net *net = dev_net(skb->dev); | 1873 | struct net *net = dev_net(skb->dev); |
@@ -1881,7 +1894,7 @@ drop: | |||
1881 | #endif | 1894 | #endif |
1882 | 1895 | ||
1883 | #ifdef CONFIG_IP_PIMSM_V2 | 1896 | #ifdef CONFIG_IP_PIMSM_V2 |
1884 | static int pim_rcv(struct sk_buff * skb) | 1897 | static int pim_rcv(struct sk_buff *skb) |
1885 | { | 1898 | { |
1886 | struct pimreghdr *pim; | 1899 | struct pimreghdr *pim; |
1887 | struct net *net = dev_net(skb->dev); | 1900 | struct net *net = dev_net(skb->dev); |
@@ -1891,8 +1904,8 @@ static int pim_rcv(struct sk_buff * skb) | |||
1891 | goto drop; | 1904 | goto drop; |
1892 | 1905 | ||
1893 | pim = (struct pimreghdr *)skb_transport_header(skb); | 1906 | pim = (struct pimreghdr *)skb_transport_header(skb); |
1894 | if (pim->type != ((PIM_VERSION<<4)|(PIM_REGISTER)) || | 1907 | if (pim->type != ((PIM_VERSION << 4) | (PIM_REGISTER)) || |
1895 | (pim->flags&PIM_NULL_REGISTER) || | 1908 | (pim->flags & PIM_NULL_REGISTER) || |
1896 | (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 && | 1909 | (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 && |
1897 | csum_fold(skb_checksum(skb, 0, skb->len, 0)))) | 1910 | csum_fold(skb_checksum(skb, 0, skb->len, 0)))) |
1898 | goto drop; | 1911 | goto drop; |
@@ -1958,28 +1971,33 @@ int ipmr_get_route(struct net *net, | |||
1958 | if (mrt == NULL) | 1971 | if (mrt == NULL) |
1959 | return -ENOENT; | 1972 | return -ENOENT; |
1960 | 1973 | ||
1961 | read_lock(&mrt_lock); | 1974 | rcu_read_lock(); |
1962 | cache = ipmr_cache_find(mrt, rt->rt_src, rt->rt_dst); | 1975 | cache = ipmr_cache_find(mrt, rt->rt_src, rt->rt_dst); |
1963 | 1976 | ||
1964 | if (cache == NULL) { | 1977 | if (cache == NULL) { |
1965 | struct sk_buff *skb2; | 1978 | struct sk_buff *skb2; |
1966 | struct iphdr *iph; | 1979 | struct iphdr *iph; |
1967 | struct net_device *dev; | 1980 | struct net_device *dev; |
1968 | int vif; | 1981 | int vif = -1; |
1969 | 1982 | ||
1970 | if (nowait) { | 1983 | if (nowait) { |
1971 | read_unlock(&mrt_lock); | 1984 | rcu_read_unlock(); |
1972 | return -EAGAIN; | 1985 | return -EAGAIN; |
1973 | } | 1986 | } |
1974 | 1987 | ||
1975 | dev = skb->dev; | 1988 | dev = skb->dev; |
1976 | if (dev == NULL || (vif = ipmr_find_vif(mrt, dev)) < 0) { | 1989 | read_lock(&mrt_lock); |
1990 | if (dev) | ||
1991 | vif = ipmr_find_vif(mrt, dev); | ||
1992 | if (vif < 0) { | ||
1977 | read_unlock(&mrt_lock); | 1993 | read_unlock(&mrt_lock); |
1994 | rcu_read_unlock(); | ||
1978 | return -ENODEV; | 1995 | return -ENODEV; |
1979 | } | 1996 | } |
1980 | skb2 = skb_clone(skb, GFP_ATOMIC); | 1997 | skb2 = skb_clone(skb, GFP_ATOMIC); |
1981 | if (!skb2) { | 1998 | if (!skb2) { |
1982 | read_unlock(&mrt_lock); | 1999 | read_unlock(&mrt_lock); |
2000 | rcu_read_unlock(); | ||
1983 | return -ENOMEM; | 2001 | return -ENOMEM; |
1984 | } | 2002 | } |
1985 | 2003 | ||
@@ -1992,13 +2010,16 @@ int ipmr_get_route(struct net *net, | |||
1992 | iph->version = 0; | 2010 | iph->version = 0; |
1993 | err = ipmr_cache_unresolved(mrt, vif, skb2); | 2011 | err = ipmr_cache_unresolved(mrt, vif, skb2); |
1994 | read_unlock(&mrt_lock); | 2012 | read_unlock(&mrt_lock); |
2013 | rcu_read_unlock(); | ||
1995 | return err; | 2014 | return err; |
1996 | } | 2015 | } |
1997 | 2016 | ||
1998 | if (!nowait && (rtm->rtm_flags&RTM_F_NOTIFY)) | 2017 | read_lock(&mrt_lock); |
2018 | if (!nowait && (rtm->rtm_flags & RTM_F_NOTIFY)) | ||
1999 | cache->mfc_flags |= MFC_NOTIFY; | 2019 | cache->mfc_flags |= MFC_NOTIFY; |
2000 | err = __ipmr_fill_mroute(mrt, skb, cache, rtm); | 2020 | err = __ipmr_fill_mroute(mrt, skb, cache, rtm); |
2001 | read_unlock(&mrt_lock); | 2021 | read_unlock(&mrt_lock); |
2022 | rcu_read_unlock(); | ||
2002 | return err; | 2023 | return err; |
2003 | } | 2024 | } |
2004 | 2025 | ||
@@ -2050,14 +2071,14 @@ static int ipmr_rtm_dumproute(struct sk_buff *skb, struct netlink_callback *cb) | |||
2050 | s_h = cb->args[1]; | 2071 | s_h = cb->args[1]; |
2051 | s_e = cb->args[2]; | 2072 | s_e = cb->args[2]; |
2052 | 2073 | ||
2053 | read_lock(&mrt_lock); | 2074 | rcu_read_lock(); |
2054 | ipmr_for_each_table(mrt, net) { | 2075 | ipmr_for_each_table(mrt, net) { |
2055 | if (t < s_t) | 2076 | if (t < s_t) |
2056 | goto next_table; | 2077 | goto next_table; |
2057 | if (t > s_t) | 2078 | if (t > s_t) |
2058 | s_h = 0; | 2079 | s_h = 0; |
2059 | for (h = s_h; h < MFC_LINES; h++) { | 2080 | for (h = s_h; h < MFC_LINES; h++) { |
2060 | list_for_each_entry(mfc, &mrt->mfc_cache_array[h], list) { | 2081 | list_for_each_entry_rcu(mfc, &mrt->mfc_cache_array[h], list) { |
2061 | if (e < s_e) | 2082 | if (e < s_e) |
2062 | goto next_entry; | 2083 | goto next_entry; |
2063 | if (ipmr_fill_mroute(mrt, skb, | 2084 | if (ipmr_fill_mroute(mrt, skb, |
@@ -2075,7 +2096,7 @@ next_table: | |||
2075 | t++; | 2096 | t++; |
2076 | } | 2097 | } |
2077 | done: | 2098 | done: |
2078 | read_unlock(&mrt_lock); | 2099 | rcu_read_unlock(); |
2079 | 2100 | ||
2080 | cb->args[2] = e; | 2101 | cb->args[2] = e; |
2081 | cb->args[1] = h; | 2102 | cb->args[1] = h; |
@@ -2086,7 +2107,8 @@ done: | |||
2086 | 2107 | ||
2087 | #ifdef CONFIG_PROC_FS | 2108 | #ifdef CONFIG_PROC_FS |
2088 | /* | 2109 | /* |
2089 | * The /proc interfaces to multicast routing /proc/ip_mr_cache /proc/ip_mr_vif | 2110 | * The /proc interfaces to multicast routing : |
2111 | * /proc/net/ip_mr_cache & /proc/net/ip_mr_vif | ||
2090 | */ | 2112 | */ |
2091 | struct ipmr_vif_iter { | 2113 | struct ipmr_vif_iter { |
2092 | struct seq_net_private p; | 2114 | struct seq_net_private p; |
@@ -2208,14 +2230,14 @@ static struct mfc_cache *ipmr_mfc_seq_idx(struct net *net, | |||
2208 | struct mr_table *mrt = it->mrt; | 2230 | struct mr_table *mrt = it->mrt; |
2209 | struct mfc_cache *mfc; | 2231 | struct mfc_cache *mfc; |
2210 | 2232 | ||
2211 | read_lock(&mrt_lock); | 2233 | rcu_read_lock(); |
2212 | for (it->ct = 0; it->ct < MFC_LINES; it->ct++) { | 2234 | for (it->ct = 0; it->ct < MFC_LINES; it->ct++) { |
2213 | it->cache = &mrt->mfc_cache_array[it->ct]; | 2235 | it->cache = &mrt->mfc_cache_array[it->ct]; |
2214 | list_for_each_entry(mfc, it->cache, list) | 2236 | list_for_each_entry_rcu(mfc, it->cache, list) |
2215 | if (pos-- == 0) | 2237 | if (pos-- == 0) |
2216 | return mfc; | 2238 | return mfc; |
2217 | } | 2239 | } |
2218 | read_unlock(&mrt_lock); | 2240 | rcu_read_unlock(); |
2219 | 2241 | ||
2220 | spin_lock_bh(&mfc_unres_lock); | 2242 | spin_lock_bh(&mfc_unres_lock); |
2221 | it->cache = &mrt->mfc_unres_queue; | 2243 | it->cache = &mrt->mfc_unres_queue; |
@@ -2274,7 +2296,7 @@ static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |||
2274 | } | 2296 | } |
2275 | 2297 | ||
2276 | /* exhausted cache_array, show unresolved */ | 2298 | /* exhausted cache_array, show unresolved */ |
2277 | read_unlock(&mrt_lock); | 2299 | rcu_read_unlock(); |
2278 | it->cache = &mrt->mfc_unres_queue; | 2300 | it->cache = &mrt->mfc_unres_queue; |
2279 | it->ct = 0; | 2301 | it->ct = 0; |
2280 | 2302 | ||
@@ -2282,7 +2304,7 @@ static void *ipmr_mfc_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |||
2282 | if (!list_empty(it->cache)) | 2304 | if (!list_empty(it->cache)) |
2283 | return list_first_entry(it->cache, struct mfc_cache, list); | 2305 | return list_first_entry(it->cache, struct mfc_cache, list); |
2284 | 2306 | ||
2285 | end_of_list: | 2307 | end_of_list: |
2286 | spin_unlock_bh(&mfc_unres_lock); | 2308 | spin_unlock_bh(&mfc_unres_lock); |
2287 | it->cache = NULL; | 2309 | it->cache = NULL; |
2288 | 2310 | ||
@@ -2297,7 +2319,7 @@ static void ipmr_mfc_seq_stop(struct seq_file *seq, void *v) | |||
2297 | if (it->cache == &mrt->mfc_unres_queue) | 2319 | if (it->cache == &mrt->mfc_unres_queue) |
2298 | spin_unlock_bh(&mfc_unres_lock); | 2320 | spin_unlock_bh(&mfc_unres_lock); |
2299 | else if (it->cache == &mrt->mfc_cache_array[it->ct]) | 2321 | else if (it->cache == &mrt->mfc_cache_array[it->ct]) |
2300 | read_unlock(&mrt_lock); | 2322 | rcu_read_unlock(); |
2301 | } | 2323 | } |
2302 | 2324 | ||
2303 | static int ipmr_mfc_seq_show(struct seq_file *seq, void *v) | 2325 | static int ipmr_mfc_seq_show(struct seq_file *seq, void *v) |
@@ -2323,7 +2345,7 @@ static int ipmr_mfc_seq_show(struct seq_file *seq, void *v) | |||
2323 | mfc->mfc_un.res.bytes, | 2345 | mfc->mfc_un.res.bytes, |
2324 | mfc->mfc_un.res.wrong_if); | 2346 | mfc->mfc_un.res.wrong_if); |
2325 | for (n = mfc->mfc_un.res.minvif; | 2347 | for (n = mfc->mfc_un.res.minvif; |
2326 | n < mfc->mfc_un.res.maxvif; n++ ) { | 2348 | n < mfc->mfc_un.res.maxvif; n++) { |
2327 | if (VIF_EXISTS(mrt, n) && | 2349 | if (VIF_EXISTS(mrt, n) && |
2328 | mfc->mfc_un.res.ttls[n] < 255) | 2350 | mfc->mfc_un.res.ttls[n] < 255) |
2329 | seq_printf(seq, | 2351 | seq_printf(seq, |
@@ -2421,7 +2443,7 @@ int __init ip_mr_init(void) | |||
2421 | 2443 | ||
2422 | mrt_cachep = kmem_cache_create("ip_mrt_cache", | 2444 | mrt_cachep = kmem_cache_create("ip_mrt_cache", |
2423 | sizeof(struct mfc_cache), | 2445 | sizeof(struct mfc_cache), |
2424 | 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, | 2446 | 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, |
2425 | NULL); | 2447 | NULL); |
2426 | if (!mrt_cachep) | 2448 | if (!mrt_cachep) |
2427 | return -ENOMEM; | 2449 | return -ENOMEM; |