cregit-Linux how code gets into the kernel

Release 4.10 net/ipv6/inet6_connection_sock.c

Directory: net/ipv6
/*
 * INET        An implementation of the TCP/IP protocol suite for the LINUX
 *             operating system.  INET is implemented using the  BSD Socket
 *             interface as the means of communication with the user level.
 *
 *             Support for INET6 connection oriented protocols.
 *
 * Authors:    See the TCPv6 sources
 *
 *             This program is free software; you can redistribute it and/or
 *             modify it under the terms of the GNU General Public License
 *             as published by the Free Software Foundation; either version
 *             2 of the License, or(at your option) any later version.
 */

#include <linux/module.h>
#include <linux/in6.h>
#include <linux/ipv6.h>
#include <linux/jhash.h>
#include <linux/slab.h>

#include <net/addrconf.h>
#include <net/inet_connection_sock.h>
#include <net/inet_ecn.h>
#include <net/inet_hashtables.h>
#include <net/ip6_route.h>
#include <net/sock.h>
#include <net/inet6_connection_sock.h>
#include <net/sock_reuseport.h>


int inet6_csk_bind_conflict(const struct sock *sk, const struct inet_bind_bucket *tb, bool relax, bool reuseport_ok) { const struct sock *sk2; bool reuse = !!sk->sk_reuse; bool reuseport = !!sk->sk_reuseport && reuseport_ok; kuid_t uid = sock_i_uid((struct sock *)sk); /* We must walk the whole port owner list in this case. -DaveM */ /* * See comment in inet_csk_bind_conflict about sock lookup * vs net namespaces issues. */ sk_for_each_bound(sk2, &tb->owners) { if (sk != sk2 && (!sk->sk_bound_dev_if || !sk2->sk_bound_dev_if || sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) { if ((!reuse || !sk2->sk_reuse || sk2->sk_state == TCP_LISTEN) && (!reuseport || !sk2->sk_reuseport || rcu_access_pointer(sk->sk_reuseport_cb) || (sk2->sk_state != TCP_TIME_WAIT && !uid_eq(uid, sock_i_uid((struct sock *)sk2))))) { if (ipv6_rcv_saddr_equal(sk, sk2, true)) break; } if (!relax && reuse && sk2->sk_reuse && sk2->sk_state != TCP_LISTEN && ipv6_rcv_saddr_equal(sk, sk2, true)) break; } } return sk2 != NULL; }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo8240.00%19.09%
tom herberttom herbert7938.54%218.18%
flavio leitnerflavio leitner2512.20%19.09%
craig gallekcraig gallek115.37%218.18%
alex copotalex copot31.46%19.09%
david s. millerdavid s. miller20.98%19.09%
pavel emelianovpavel emelianov10.49%19.09%
sasha levinsasha levin10.49%19.09%
eric w. biedermaneric w. biederman10.49%19.09%
Total205100.00%11100.00%

EXPORT_SYMBOL_GPL(inet6_csk_bind_conflict);
struct dst_entry *inet6_csk_route_req(const struct sock *sk, struct flowi6 *fl6, const struct request_sock *req, u8 proto) { struct inet_request_sock *ireq = inet_rsk(req); const struct ipv6_pinfo *np = inet6_sk(sk); struct in6_addr *final_p, final; struct dst_entry *dst; memset(fl6, 0, sizeof(*fl6)); fl6->flowi6_proto = proto; fl6->daddr = ireq->ir_v6_rmt_addr; rcu_read_lock(); final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final); rcu_read_unlock(); fl6->saddr = ireq->ir_v6_loc_addr; fl6->flowi6_oif = ireq->ir_iif; fl6->flowi6_mark = ireq->ir_mark; fl6->fl6_dport = ireq->ir_rmt_port; fl6->fl6_sport = htons(ireq->ir_num); fl6->flowi6_uid = sk->sk_uid; security_req_classify_flow(req, flowi6_to_flowi(fl6)); dst = ip6_dst_lookup_flow(sk, fl6, final_p); if (IS_ERR(dst)) return NULL; return dst; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller13971.28%430.77%
eric dumazeteric dumazet3115.90%538.46%
neal cardwellneal cardwell136.67%17.69%
lorenzo colittilorenzo colitti105.13%215.38%
alexey dobriyanalexey dobriyan21.03%17.69%
Total195100.00%13100.00%

EXPORT_SYMBOL(inet6_csk_route_req);
void inet6_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) uaddr; sin6->sin6_family = AF_INET6; sin6->sin6_addr = sk->sk_v6_daddr; sin6->sin6_port = inet_sk(sk)->inet_dport; /* We do not store received flowlabel for TCP */ sin6->sin6_flowinfo = 0; sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr, sk->sk_bound_dev_if); }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo6890.67%120.00%
hannes frederic sowahannes frederic sowa34.00%120.00%
eric dumazeteric dumazet34.00%240.00%
alexey dobriyanalexey dobriyan11.33%120.00%
Total75100.00%5100.00%

EXPORT_SYMBOL_GPL(inet6_csk_addr2sockaddr);
static inline struct dst_entry *__inet6_csk_dst_check(struct sock *sk, u32 cookie) { return __sk_dst_check(sk, cookie); }

Contributors

PersonTokensPropCommitsCommitProp
noriaki takamiyanoriaki takamiya2496.00%150.00%
nicolas dichtelnicolas dichtel14.00%150.00%
Total25100.00%2100.00%


static struct dst_entry *inet6_csk_route_socket(struct sock *sk, struct flowi6 *fl6) { struct inet_sock *inet = inet_sk(sk); struct ipv6_pinfo *np = inet6_sk(sk); struct in6_addr *final_p, final; struct dst_entry *dst; memset(fl6, 0, sizeof(*fl6)); fl6->flowi6_proto = sk->sk_protocol; fl6->daddr = sk->sk_v6_daddr; fl6->saddr = np->saddr; fl6->flowlabel = np->flow_label; IP6_ECN_flow_xmit(sk, fl6->flowlabel); fl6->flowi6_oif = sk->sk_bound_dev_if; fl6->flowi6_mark = sk->sk_mark; fl6->fl6_sport = inet->inet_sport; fl6->fl6_dport = inet->inet_dport; fl6->flowi6_uid = sk->sk_uid; security_sk_classify_flow(sk, flowi6_to_flowi(fl6)); rcu_read_lock(); final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final); rcu_read_unlock(); dst = __inet6_csk_dst_check(sk, np->dst_cookie); if (!dst) { dst = ip6_dst_lookup_flow(sk, fl6, final_p); if (!IS_ERR(dst)) ip6_dst_store(sk, dst, NULL, NULL); } return dst; }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo9943.42%15.56%
david s. millerdavid s. miller7131.14%633.33%
eric dumazeteric dumazet2912.72%527.78%
lorenzo colittilorenzo colitti83.51%15.56%
arnaud ebalardarnaud ebalard73.07%15.56%
venkat yekkiralavenkat yekkirala62.63%15.56%
brian haleybrian haley52.19%15.56%
alexey dobriyanalexey dobriyan20.88%15.56%
noriaki takamiyanoriaki takamiya10.44%15.56%
Total228100.00%18100.00%


int inet6_csk_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl_unused) { struct ipv6_pinfo *np = inet6_sk(sk); struct flowi6 fl6; struct dst_entry *dst; int res; dst = inet6_csk_route_socket(sk, &fl6); if (IS_ERR(dst)) { sk->sk_err_soft = -PTR_ERR(dst); sk->sk_route_caps = 0; kfree_skb(skb); return PTR_ERR(dst); } rcu_read_lock(); skb_dst_set_noref(skb, dst); /* Restore final destination back after routing done */ fl6.daddr = sk->sk_v6_daddr; res = ip6_xmit(sk, skb, &fl6, sk->sk_mark, rcu_dereference(np->opt), np->tclass); rcu_read_unlock(); return res; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller5841.43%320.00%
arnaldo carvalho de meloarnaldo carvalho de melo4028.57%16.67%
eric dumazeteric dumazet3122.14%746.67%
alexey kuznetsovalexey kuznetsov53.57%16.67%
pablo neira ayusopablo neira ayuso42.86%16.67%
alexey dobriyanalexey dobriyan21.43%213.33%
Total140100.00%15100.00%

EXPORT_SYMBOL_GPL(inet6_csk_xmit);
struct dst_entry *inet6_csk_update_pmtu(struct sock *sk, u32 mtu) { struct flowi6 fl6; struct dst_entry *dst = inet6_csk_route_socket(sk, &fl6); if (IS_ERR(dst)) return NULL; dst->ops->update_pmtu(dst, sk, NULL, mtu); dst = inet6_csk_route_socket(sk, &fl6); return IS_ERR(dst) ? NULL : dst; }

Contributors

PersonTokensPropCommitsCommitProp
david s. millerdavid s. miller5571.43%250.00%
eric dumazeteric dumazet2228.57%250.00%
Total77100.00%4100.00%

EXPORT_SYMBOL_GPL(inet6_csk_update_pmtu);

Overall Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo33533.17%24.08%
david s. millerdavid s. miller33032.67%918.37%
eric dumazeteric dumazet12111.98%1428.57%
tom herberttom herbert797.82%24.08%
noriaki takamiyanoriaki takamiya252.48%12.04%
flavio leitnerflavio leitner252.48%12.04%
lorenzo colittilorenzo colitti181.78%24.08%
craig gallekcraig gallek141.39%24.08%
neal cardwellneal cardwell131.29%12.04%
alexey dobriyanalexey dobriyan70.69%24.08%
arnaud ebalardarnaud ebalard70.69%12.04%
venkat yekkiralavenkat yekkirala60.59%12.04%
alexey kuznetsovalexey kuznetsov50.50%12.04%
brian haleybrian haley50.50%12.04%
pablo neira ayusopablo neira ayuso40.40%12.04%
hannes frederic sowahannes frederic sowa30.30%12.04%
adrian bunkadrian bunk30.30%12.04%
tejun heotejun heo30.30%12.04%
alex copotalex copot30.30%12.04%
pavel emelianovpavel emelianov10.10%12.04%
eric w. biedermaneric w. biederman10.10%12.04%
nicolas dichtelnicolas dichtel10.10%12.04%
sasha levinsasha levin10.10%12.04%
Total1010100.00%49100.00%
Directory: net/ipv6
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.