Merge branch 'sock-cookie-initializers'
Willem de Bruijn says: ==================== sock cookie initializers Recent UDP GSO and SO_TXTIME features added new fields to cookie structs. When adding a field, all sites where a struct is initialized have to be updated, which is a lot of boilerplate. Alternatively, a field can be initialized selectively, but this is fragile. I introduced a bug in udp gso where an uninitialized field was read. See also fix commit ("9887cba19978 ip: limit use of gso_size to udp"). Introduce initializers for structs ipcm(6)_cookie and sockc_cookie. patch 1..3 do exactly this. patch 4..5 make ipv4 and ipv6 handle cookies the same way and remove some boilerplate in doing so. patch 6 removes the udp gso branch that needed the above fix ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
9ebcb397aa
|
@ -72,13 +72,27 @@ struct ipcm_cookie {
|
|||
__be32 addr;
|
||||
int oif;
|
||||
struct ip_options_rcu *opt;
|
||||
__u8 tx_flags;
|
||||
__u8 ttl;
|
||||
__s16 tos;
|
||||
char priority;
|
||||
__u16 gso_size;
|
||||
};
|
||||
|
||||
static inline void ipcm_init(struct ipcm_cookie *ipcm)
|
||||
{
|
||||
*ipcm = (struct ipcm_cookie) { .tos = -1 };
|
||||
}
|
||||
|
||||
static inline void ipcm_init_sk(struct ipcm_cookie *ipcm,
|
||||
const struct inet_sock *inet)
|
||||
{
|
||||
ipcm_init(ipcm);
|
||||
|
||||
ipcm->sockc.tsflags = inet->sk.sk_tsflags;
|
||||
ipcm->oif = inet->sk.sk_bound_dev_if;
|
||||
ipcm->addr = inet->inet_saddr;
|
||||
}
|
||||
|
||||
#define IPCB(skb) ((struct inet_skb_parm*)((skb)->cb))
|
||||
#define PKTINFO_SKB_CB(skb) ((struct in_pktinfo *)((skb)->cb))
|
||||
|
||||
|
|
|
@ -294,6 +294,7 @@ struct ipv6_fl_socklist {
|
|||
};
|
||||
|
||||
struct ipcm6_cookie {
|
||||
struct sockcm_cookie sockc;
|
||||
__s16 hlimit;
|
||||
__s16 tclass;
|
||||
__s8 dontfrag;
|
||||
|
@ -301,6 +302,25 @@ struct ipcm6_cookie {
|
|||
__u16 gso_size;
|
||||
};
|
||||
|
||||
static inline void ipcm6_init(struct ipcm6_cookie *ipc6)
|
||||
{
|
||||
*ipc6 = (struct ipcm6_cookie) {
|
||||
.hlimit = -1,
|
||||
.tclass = -1,
|
||||
.dontfrag = -1,
|
||||
};
|
||||
}
|
||||
|
||||
static inline void ipcm6_init_sk(struct ipcm6_cookie *ipc6,
|
||||
const struct ipv6_pinfo *np)
|
||||
{
|
||||
*ipc6 = (struct ipcm6_cookie) {
|
||||
.hlimit = -1,
|
||||
.tclass = np->tclass,
|
||||
.dontfrag = np->dontfrag,
|
||||
};
|
||||
}
|
||||
|
||||
static inline struct ipv6_txoptions *txopt_get(const struct ipv6_pinfo *np)
|
||||
{
|
||||
struct ipv6_txoptions *opt;
|
||||
|
@ -940,8 +960,7 @@ int ip6_append_data(struct sock *sk,
|
|||
int odd, struct sk_buff *skb),
|
||||
void *from, int length, int transhdrlen,
|
||||
struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
|
||||
struct rt6_info *rt, unsigned int flags,
|
||||
const struct sockcm_cookie *sockc);
|
||||
struct rt6_info *rt, unsigned int flags);
|
||||
|
||||
int ip6_push_pending_frames(struct sock *sk);
|
||||
|
||||
|
@ -958,8 +977,7 @@ struct sk_buff *ip6_make_skb(struct sock *sk,
|
|||
void *from, int length, int transhdrlen,
|
||||
struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
|
||||
struct rt6_info *rt, unsigned int flags,
|
||||
struct inet_cork_full *cork,
|
||||
const struct sockcm_cookie *sockc);
|
||||
struct inet_cork_full *cork);
|
||||
|
||||
static inline struct sk_buff *ip6_finish_skb(struct sock *sk)
|
||||
{
|
||||
|
|
|
@ -1600,6 +1600,12 @@ struct sockcm_cookie {
|
|||
u16 tsflags;
|
||||
};
|
||||
|
||||
static inline void sockcm_init(struct sockcm_cookie *sockc,
|
||||
const struct sock *sk)
|
||||
{
|
||||
*sockc = (struct sockcm_cookie) { .tsflags = sk->sk_tsflags };
|
||||
}
|
||||
|
||||
int __sock_cmsg_send(struct sock *sk, struct msghdr *msg, struct cmsghdr *cmsg,
|
||||
struct sockcm_cookie *sockc);
|
||||
int sock_cmsg_send(struct sock *sk, struct msghdr *msg,
|
||||
|
|
|
@ -42,8 +42,7 @@ void ip6_datagram_recv_specific_ctl(struct sock *sk, struct msghdr *msg,
|
|||
struct sk_buff *skb);
|
||||
|
||||
int ip6_datagram_send_ctl(struct net *net, struct sock *sk, struct msghdr *msg,
|
||||
struct flowi6 *fl6, struct ipcm6_cookie *ipc6,
|
||||
struct sockcm_cookie *sockc);
|
||||
struct flowi6 *fl6, struct ipcm6_cookie *ipc6);
|
||||
|
||||
void __ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
|
||||
__u16 srcp, __u16 destp, int rqueue, int bucket);
|
||||
|
|
|
@ -429,15 +429,11 @@ static void icmp_reply(struct icmp_bxm *icmp_param, struct sk_buff *skb)
|
|||
|
||||
icmp_param->data.icmph.checksum = 0;
|
||||
|
||||
ipcm_init(&ipc);
|
||||
inet->tos = ip_hdr(skb)->tos;
|
||||
sk->sk_mark = mark;
|
||||
daddr = ipc.addr = ip_hdr(skb)->saddr;
|
||||
saddr = fib_compute_spec_dst(skb);
|
||||
ipc.opt = NULL;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
|
||||
if (icmp_param->replyopts.opt.opt.optlen) {
|
||||
ipc.opt = &icmp_param->replyopts.opt;
|
||||
|
@ -711,12 +707,9 @@ void icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info)
|
|||
icmp_param.offset = skb_network_offset(skb_in);
|
||||
inet_sk(sk)->tos = tos;
|
||||
sk->sk_mark = mark;
|
||||
ipcm_init(&ipc);
|
||||
ipc.addr = iph->saddr;
|
||||
ipc.opt = &icmp_param.replyopts.opt;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
|
||||
rt = icmp_route_lookup(net, &fl4, skb_in, iph, saddr, tos, mark,
|
||||
type, code, &icmp_param);
|
||||
|
|
|
@ -1146,15 +1146,15 @@ static int ip_setup_cork(struct sock *sk, struct inet_cork *cork,
|
|||
cork->fragsize = ip_sk_use_pmtu(sk) ?
|
||||
dst_mtu(&rt->dst) : rt->dst.dev->mtu;
|
||||
|
||||
cork->gso_size = sk->sk_type == SOCK_DGRAM &&
|
||||
sk->sk_protocol == IPPROTO_UDP ? ipc->gso_size : 0;
|
||||
cork->gso_size = ipc->gso_size;
|
||||
cork->dst = &rt->dst;
|
||||
cork->length = 0;
|
||||
cork->ttl = ipc->ttl;
|
||||
cork->tos = ipc->tos;
|
||||
cork->priority = ipc->priority;
|
||||
cork->tx_flags = ipc->tx_flags;
|
||||
cork->transmit_time = ipc->sockc.transmit_time;
|
||||
cork->tx_flags = 0;
|
||||
sock_tx_timestamp(sk, ipc->sockc.tsflags, &cork->tx_flags);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1548,12 +1548,8 @@ void ip_send_unicast_reply(struct sock *sk, struct sk_buff *skb,
|
|||
if (__ip_options_echo(net, &replyopts.opt.opt, skb, sopt))
|
||||
return;
|
||||
|
||||
ipcm_init(&ipc);
|
||||
ipc.addr = daddr;
|
||||
ipc.opt = NULL;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
|
||||
if (replyopts.opt.opt.optlen) {
|
||||
ipc.opt = &replyopts.opt;
|
||||
|
|
|
@ -739,14 +739,7 @@ static int ping_v4_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
/* no remote port */
|
||||
}
|
||||
|
||||
ipc.sockc.tsflags = sk->sk_tsflags;
|
||||
ipc.addr = inet->inet_saddr;
|
||||
ipc.opt = NULL;
|
||||
ipc.oif = sk->sk_bound_dev_if;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
ipcm_init_sk(&ipc, inet);
|
||||
|
||||
if (msg->msg_controllen) {
|
||||
err = ip_cmsg_send(sk, msg, &ipc, false);
|
||||
|
@ -770,8 +763,6 @@ static int ping_v4_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
rcu_read_unlock();
|
||||
}
|
||||
|
||||
sock_tx_timestamp(sk, ipc.sockc.tsflags, &ipc.tx_flags);
|
||||
|
||||
saddr = ipc.addr;
|
||||
ipc.addr = faddr = daddr;
|
||||
|
||||
|
|
|
@ -562,14 +562,7 @@ static int raw_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
daddr = inet->inet_daddr;
|
||||
}
|
||||
|
||||
ipc.sockc.tsflags = sk->sk_tsflags;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
ipc.addr = inet->inet_saddr;
|
||||
ipc.opt = NULL;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.oif = sk->sk_bound_dev_if;
|
||||
ipcm_init_sk(&ipc, inet);
|
||||
|
||||
if (msg->msg_controllen) {
|
||||
err = ip_cmsg_send(sk, msg, &ipc, false);
|
||||
|
@ -672,8 +665,6 @@ back_from_confirm:
|
|||
&rt, msg->msg_flags, &ipc.sockc);
|
||||
|
||||
else {
|
||||
sock_tx_timestamp(sk, ipc.sockc.tsflags, &ipc.tx_flags);
|
||||
|
||||
if (!ipc.addr)
|
||||
ipc.addr = fl4.daddr;
|
||||
lock_sock(sk);
|
||||
|
|
|
@ -1241,7 +1241,7 @@ int tcp_sendmsg_locked(struct sock *sk, struct msghdr *msg, size_t size)
|
|||
/* 'common' sending to sendq */
|
||||
}
|
||||
|
||||
sockc.tsflags = sk->sk_tsflags;
|
||||
sockcm_init(&sockc, sk);
|
||||
if (msg->msg_controllen) {
|
||||
err = sock_cmsg_send(sk, msg, &sockc);
|
||||
if (unlikely(err)) {
|
||||
|
|
|
@ -926,12 +926,6 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message compatibility */
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
ipc.opt = NULL;
|
||||
ipc.tx_flags = 0;
|
||||
ipc.ttl = 0;
|
||||
ipc.tos = -1;
|
||||
ipc.sockc.transmit_time = 0;
|
||||
|
||||
getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
|
||||
|
||||
fl4 = &inet->cork.fl.u.ip4;
|
||||
|
@ -978,9 +972,7 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
connected = 1;
|
||||
}
|
||||
|
||||
ipc.sockc.tsflags = sk->sk_tsflags;
|
||||
ipc.addr = inet->inet_saddr;
|
||||
ipc.oif = sk->sk_bound_dev_if;
|
||||
ipcm_init_sk(&ipc, inet);
|
||||
ipc.gso_size = up->gso_size;
|
||||
|
||||
if (msg->msg_controllen) {
|
||||
|
@ -1028,8 +1020,6 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
saddr = ipc.addr;
|
||||
ipc.addr = faddr = daddr;
|
||||
|
||||
sock_tx_timestamp(sk, ipc.sockc.tsflags, &ipc.tx_flags);
|
||||
|
||||
if (ipc.opt && ipc.opt->opt.srr) {
|
||||
if (!daddr) {
|
||||
err = -EINVAL;
|
||||
|
|
|
@ -736,7 +736,7 @@ EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
|
|||
|
||||
int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
|
||||
struct msghdr *msg, struct flowi6 *fl6,
|
||||
struct ipcm6_cookie *ipc6, struct sockcm_cookie *sockc)
|
||||
struct ipcm6_cookie *ipc6)
|
||||
{
|
||||
struct in6_pktinfo *src_info;
|
||||
struct cmsghdr *cmsg;
|
||||
|
@ -755,7 +755,7 @@ int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
|
|||
}
|
||||
|
||||
if (cmsg->cmsg_level == SOL_SOCKET) {
|
||||
err = __sock_cmsg_send(sk, msg, cmsg, sockc);
|
||||
err = __sock_cmsg_send(sk, msg, cmsg, &ipc6->sockc);
|
||||
if (err)
|
||||
return err;
|
||||
continue;
|
||||
|
|
|
@ -430,7 +430,6 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
|
|||
struct icmp6hdr tmp_hdr;
|
||||
struct flowi6 fl6;
|
||||
struct icmpv6_msg msg;
|
||||
struct sockcm_cookie sockc_unused = {0};
|
||||
struct ipcm6_cookie ipc6;
|
||||
int iif = 0;
|
||||
int addr_type = 0;
|
||||
|
@ -545,7 +544,7 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
|
|||
else if (!fl6.flowi6_oif)
|
||||
fl6.flowi6_oif = np->ucast_oif;
|
||||
|
||||
ipc6.tclass = np->tclass;
|
||||
ipcm6_init_sk(&ipc6, np);
|
||||
fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
|
||||
|
||||
dst = icmpv6_route_lookup(net, skb, sk, &fl6);
|
||||
|
@ -553,8 +552,6 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
|
|||
goto out;
|
||||
|
||||
ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
|
||||
ipc6.dontfrag = np->dontfrag;
|
||||
ipc6.opt = NULL;
|
||||
|
||||
msg.skb = skb;
|
||||
msg.offset = skb_network_offset(skb);
|
||||
|
@ -575,7 +572,7 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
|
|||
len + sizeof(struct icmp6hdr),
|
||||
sizeof(struct icmp6hdr),
|
||||
&ipc6, &fl6, (struct rt6_info *)dst,
|
||||
MSG_DONTWAIT, &sockc_unused)) {
|
||||
MSG_DONTWAIT)) {
|
||||
ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTERRORS);
|
||||
ip6_flush_pending_frames(sk);
|
||||
} else {
|
||||
|
@ -679,7 +676,6 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
|||
struct dst_entry *dst;
|
||||
struct ipcm6_cookie ipc6;
|
||||
u32 mark = IP6_REPLY_MARK(net, skb->mark);
|
||||
struct sockcm_cookie sockc_unused = {0};
|
||||
|
||||
saddr = &ipv6_hdr(skb)->daddr;
|
||||
|
||||
|
@ -726,16 +722,14 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
|||
msg.offset = 0;
|
||||
msg.type = ICMPV6_ECHO_REPLY;
|
||||
|
||||
ipcm6_init_sk(&ipc6, np);
|
||||
ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
|
||||
ipc6.tclass = ipv6_get_dsfield(ipv6_hdr(skb));
|
||||
ipc6.dontfrag = np->dontfrag;
|
||||
ipc6.opt = NULL;
|
||||
|
||||
if (ip6_append_data(sk, icmpv6_getfrag, &msg,
|
||||
skb->len + sizeof(struct icmp6hdr),
|
||||
sizeof(struct icmp6hdr), &ipc6, &fl6,
|
||||
(struct rt6_info *)dst, MSG_DONTWAIT,
|
||||
&sockc_unused)) {
|
||||
(struct rt6_info *)dst, MSG_DONTWAIT)) {
|
||||
__ICMP6_INC_STATS(net, idev, ICMP6_MIB_OUTERRORS);
|
||||
ip6_flush_pending_frames(sk);
|
||||
} else {
|
||||
|
|
|
@ -373,7 +373,6 @@ fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
|
|||
if (olen > 0) {
|
||||
struct msghdr msg;
|
||||
struct flowi6 flowi6;
|
||||
struct sockcm_cookie sockc_junk;
|
||||
struct ipcm6_cookie ipc6;
|
||||
|
||||
err = -ENOMEM;
|
||||
|
@ -392,7 +391,7 @@ fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
|
|||
memset(&flowi6, 0, sizeof(flowi6));
|
||||
|
||||
ipc6.opt = fl->opt;
|
||||
err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, &ipc6, &sockc_junk);
|
||||
err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, &ipc6);
|
||||
if (err)
|
||||
goto done;
|
||||
err = -EINVAL;
|
||||
|
|
|
@ -1158,8 +1158,7 @@ static void ip6_append_data_mtu(unsigned int *mtu,
|
|||
|
||||
static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork,
|
||||
struct inet6_cork *v6_cork, struct ipcm6_cookie *ipc6,
|
||||
struct rt6_info *rt, struct flowi6 *fl6,
|
||||
const struct sockcm_cookie *sockc)
|
||||
struct rt6_info *rt, struct flowi6 *fl6)
|
||||
{
|
||||
struct ipv6_pinfo *np = inet6_sk(sk);
|
||||
unsigned int mtu;
|
||||
|
@ -1220,14 +1219,15 @@ static int ip6_setup_cork(struct sock *sk, struct inet_cork_full *cork,
|
|||
if (mtu < IPV6_MIN_MTU)
|
||||
return -EINVAL;
|
||||
cork->base.fragsize = mtu;
|
||||
cork->base.gso_size = sk->sk_type == SOCK_DGRAM &&
|
||||
sk->sk_protocol == IPPROTO_UDP ? ipc6->gso_size : 0;
|
||||
cork->base.gso_size = ipc6->gso_size;
|
||||
cork->base.tx_flags = 0;
|
||||
sock_tx_timestamp(sk, ipc6->sockc.tsflags, &cork->base.tx_flags);
|
||||
|
||||
if (dst_allfrag(xfrm_dst_path(&rt->dst)))
|
||||
cork->base.flags |= IPCORK_ALLFRAG;
|
||||
cork->base.length = 0;
|
||||
|
||||
cork->base.transmit_time = sockc->transmit_time;
|
||||
cork->base.transmit_time = ipc6->sockc.transmit_time;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1241,8 +1241,7 @@ static int __ip6_append_data(struct sock *sk,
|
|||
int getfrag(void *from, char *to, int offset,
|
||||
int len, int odd, struct sk_buff *skb),
|
||||
void *from, int length, int transhdrlen,
|
||||
unsigned int flags, struct ipcm6_cookie *ipc6,
|
||||
const struct sockcm_cookie *sockc)
|
||||
unsigned int flags, struct ipcm6_cookie *ipc6)
|
||||
{
|
||||
struct sk_buff *skb, *skb_prev = NULL;
|
||||
unsigned int maxfraglen, fragheaderlen, mtu, orig_mtu, pmtu;
|
||||
|
@ -1252,7 +1251,6 @@ static int __ip6_append_data(struct sock *sk,
|
|||
int copy;
|
||||
int err;
|
||||
int offset = 0;
|
||||
__u8 tx_flags = 0;
|
||||
u32 tskey = 0;
|
||||
struct rt6_info *rt = (struct rt6_info *)cork->dst;
|
||||
struct ipv6_txoptions *opt = v6_cork->opt;
|
||||
|
@ -1271,6 +1269,10 @@ static int __ip6_append_data(struct sock *sk,
|
|||
mtu = cork->gso_size ? IP6_MAX_MTU : cork->fragsize;
|
||||
orig_mtu = mtu;
|
||||
|
||||
if (cork->tx_flags & SKBTX_ANY_SW_TSTAMP &&
|
||||
sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)
|
||||
tskey = sk->sk_tskey++;
|
||||
|
||||
hh_len = LL_RESERVED_SPACE(rt->dst.dev);
|
||||
|
||||
fragheaderlen = sizeof(struct ipv6hdr) + rt->rt6i_nfheader_len +
|
||||
|
@ -1320,13 +1322,6 @@ emsgsize:
|
|||
rt->dst.dev->features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
|
||||
csummode = CHECKSUM_PARTIAL;
|
||||
|
||||
if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_RAW) {
|
||||
sock_tx_timestamp(sk, sockc->tsflags, &tx_flags);
|
||||
if (tx_flags & SKBTX_ANY_SW_TSTAMP &&
|
||||
sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID)
|
||||
tskey = sk->sk_tskey++;
|
||||
}
|
||||
|
||||
/*
|
||||
* Let's try using as much space as possible.
|
||||
* Use MTU if total length of the message fits into the MTU.
|
||||
|
@ -1445,8 +1440,8 @@ alloc_new_skb:
|
|||
dst_exthdrlen);
|
||||
|
||||
/* Only the initial fragment is time stamped */
|
||||
skb_shinfo(skb)->tx_flags = tx_flags;
|
||||
tx_flags = 0;
|
||||
skb_shinfo(skb)->tx_flags = cork->tx_flags;
|
||||
cork->tx_flags = 0;
|
||||
skb_shinfo(skb)->tskey = tskey;
|
||||
tskey = 0;
|
||||
|
||||
|
@ -1563,8 +1558,7 @@ int ip6_append_data(struct sock *sk,
|
|||
int odd, struct sk_buff *skb),
|
||||
void *from, int length, int transhdrlen,
|
||||
struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
|
||||
struct rt6_info *rt, unsigned int flags,
|
||||
const struct sockcm_cookie *sockc)
|
||||
struct rt6_info *rt, unsigned int flags)
|
||||
{
|
||||
struct inet_sock *inet = inet_sk(sk);
|
||||
struct ipv6_pinfo *np = inet6_sk(sk);
|
||||
|
@ -1578,7 +1572,7 @@ int ip6_append_data(struct sock *sk,
|
|||
* setup for corking
|
||||
*/
|
||||
err = ip6_setup_cork(sk, &inet->cork, &np->cork,
|
||||
ipc6, rt, fl6, sockc);
|
||||
ipc6, rt, fl6);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
|
@ -1592,7 +1586,7 @@ int ip6_append_data(struct sock *sk,
|
|||
|
||||
return __ip6_append_data(sk, fl6, &sk->sk_write_queue, &inet->cork.base,
|
||||
&np->cork, sk_page_frag(sk), getfrag,
|
||||
from, length, transhdrlen, flags, ipc6, sockc);
|
||||
from, length, transhdrlen, flags, ipc6);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(ip6_append_data);
|
||||
|
||||
|
@ -1752,8 +1746,7 @@ struct sk_buff *ip6_make_skb(struct sock *sk,
|
|||
void *from, int length, int transhdrlen,
|
||||
struct ipcm6_cookie *ipc6, struct flowi6 *fl6,
|
||||
struct rt6_info *rt, unsigned int flags,
|
||||
struct inet_cork_full *cork,
|
||||
const struct sockcm_cookie *sockc)
|
||||
struct inet_cork_full *cork)
|
||||
{
|
||||
struct inet6_cork v6_cork;
|
||||
struct sk_buff_head queue;
|
||||
|
@ -1770,7 +1763,7 @@ struct sk_buff *ip6_make_skb(struct sock *sk,
|
|||
cork->base.opt = NULL;
|
||||
cork->base.dst = NULL;
|
||||
v6_cork.opt = NULL;
|
||||
err = ip6_setup_cork(sk, cork, &v6_cork, ipc6, rt, fl6, sockc);
|
||||
err = ip6_setup_cork(sk, cork, &v6_cork, ipc6, rt, fl6);
|
||||
if (err) {
|
||||
ip6_cork_release(cork, &v6_cork);
|
||||
return ERR_PTR(err);
|
||||
|
@ -1781,7 +1774,7 @@ struct sk_buff *ip6_make_skb(struct sock *sk,
|
|||
err = __ip6_append_data(sk, fl6, &queue, &cork->base, &v6_cork,
|
||||
¤t->task_frag, getfrag, from,
|
||||
length + exthdrlen, transhdrlen + exthdrlen,
|
||||
flags, ipc6, sockc);
|
||||
flags, ipc6);
|
||||
if (err) {
|
||||
__ip6_flush_pending_frames(sk, &queue, cork, &v6_cork);
|
||||
return ERR_PTR(err);
|
||||
|
|
|
@ -489,7 +489,6 @@ sticky_done:
|
|||
struct ipv6_txoptions *opt = NULL;
|
||||
struct msghdr msg;
|
||||
struct flowi6 fl6;
|
||||
struct sockcm_cookie sockc_junk;
|
||||
struct ipcm6_cookie ipc6;
|
||||
|
||||
memset(&fl6, 0, sizeof(fl6));
|
||||
|
@ -522,7 +521,7 @@ sticky_done:
|
|||
msg.msg_control = (void *)(opt+1);
|
||||
ipc6.opt = opt;
|
||||
|
||||
retv = ip6_datagram_send_ctl(net, sk, &msg, &fl6, &ipc6, &sockc_junk);
|
||||
retv = ip6_datagram_send_ctl(net, sk, &msg, &fl6, &ipc6);
|
||||
if (retv)
|
||||
goto done;
|
||||
update:
|
||||
|
|
|
@ -62,7 +62,6 @@ static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
struct dst_entry *dst;
|
||||
struct rt6_info *rt;
|
||||
struct pingfakehdr pfh;
|
||||
struct sockcm_cookie junk = {0};
|
||||
struct ipcm6_cookie ipc6;
|
||||
|
||||
pr_debug("ping_v6_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);
|
||||
|
@ -119,7 +118,7 @@ static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
fl6.fl6_icmp_code = user_icmph.icmp6_code;
|
||||
security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
|
||||
|
||||
ipc6.tclass = np->tclass;
|
||||
ipcm6_init_sk(&ipc6, np);
|
||||
fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
|
||||
|
||||
dst = ip6_sk_dst_lookup_flow(sk, &fl6, daddr, false);
|
||||
|
@ -142,13 +141,11 @@ static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
pfh.family = AF_INET6;
|
||||
|
||||
ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
|
||||
ipc6.dontfrag = np->dontfrag;
|
||||
ipc6.opt = NULL;
|
||||
|
||||
lock_sock(sk);
|
||||
err = ip6_append_data(sk, ping_getfrag, &pfh, len,
|
||||
0, &ipc6, &fl6, rt,
|
||||
MSG_DONTWAIT, &junk);
|
||||
MSG_DONTWAIT);
|
||||
|
||||
if (err) {
|
||||
ICMP6_INC_STATS(sock_net(sk), rt->rt6i_idev,
|
||||
|
|
|
@ -767,7 +767,6 @@ static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
struct dst_entry *dst = NULL;
|
||||
struct raw6_frag_vec rfv;
|
||||
struct flowi6 fl6;
|
||||
struct sockcm_cookie sockc;
|
||||
struct ipcm6_cookie ipc6;
|
||||
int addr_len = msg->msg_namelen;
|
||||
u16 proto;
|
||||
|
@ -791,10 +790,8 @@ static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
fl6.flowi6_mark = sk->sk_mark;
|
||||
fl6.flowi6_uid = sk->sk_uid;
|
||||
|
||||
ipc6.hlimit = -1;
|
||||
ipc6.tclass = -1;
|
||||
ipc6.dontfrag = -1;
|
||||
ipc6.opt = NULL;
|
||||
ipcm6_init(&ipc6);
|
||||
ipc6.sockc.tsflags = sk->sk_tsflags;
|
||||
|
||||
if (sin6) {
|
||||
if (addr_len < SIN6_LEN_RFC2133)
|
||||
|
@ -848,15 +845,13 @@ static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
if (fl6.flowi6_oif == 0)
|
||||
fl6.flowi6_oif = sk->sk_bound_dev_if;
|
||||
|
||||
sockc.tsflags = sk->sk_tsflags;
|
||||
sockc.transmit_time = 0;
|
||||
if (msg->msg_controllen) {
|
||||
opt = &opt_space;
|
||||
memset(opt, 0, sizeof(struct ipv6_txoptions));
|
||||
opt->tot_len = sizeof(struct ipv6_txoptions);
|
||||
ipc6.opt = opt;
|
||||
|
||||
err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
|
||||
err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
|
||||
if (err < 0) {
|
||||
fl6_sock_release(flowlabel);
|
||||
return err;
|
||||
|
@ -924,13 +919,13 @@ static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
back_from_confirm:
|
||||
if (inet->hdrincl)
|
||||
err = rawv6_send_hdrinc(sk, msg, len, &fl6, &dst,
|
||||
msg->msg_flags, &sockc);
|
||||
msg->msg_flags, &ipc6.sockc);
|
||||
else {
|
||||
ipc6.opt = opt;
|
||||
lock_sock(sk);
|
||||
err = ip6_append_data(sk, raw6_getfrag, &rfv,
|
||||
len, 0, &ipc6, &fl6, (struct rt6_info *)dst,
|
||||
msg->msg_flags, &sockc);
|
||||
msg->msg_flags);
|
||||
|
||||
if (err)
|
||||
ip6_flush_pending_frames(sk);
|
||||
|
|
|
@ -1141,14 +1141,10 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
int err;
|
||||
int is_udplite = IS_UDPLITE(sk);
|
||||
int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
|
||||
struct sockcm_cookie sockc;
|
||||
|
||||
ipc6.hlimit = -1;
|
||||
ipc6.tclass = -1;
|
||||
ipc6.dontfrag = -1;
|
||||
ipcm6_init(&ipc6);
|
||||
ipc6.gso_size = up->gso_size;
|
||||
sockc.tsflags = sk->sk_tsflags;
|
||||
sockc.transmit_time = 0;
|
||||
ipc6.sockc.tsflags = sk->sk_tsflags;
|
||||
|
||||
/* destination address check */
|
||||
if (sin6) {
|
||||
|
@ -1283,7 +1279,7 @@ do_udp_sendmsg:
|
|||
err = udp_cmsg_send(sk, msg, &ipc6.gso_size);
|
||||
if (err > 0)
|
||||
err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6,
|
||||
&ipc6, &sockc);
|
||||
&ipc6);
|
||||
if (err < 0) {
|
||||
fl6_sock_release(flowlabel);
|
||||
return err;
|
||||
|
@ -1377,7 +1373,7 @@ back_from_confirm:
|
|||
skb = ip6_make_skb(sk, getfrag, msg, ulen,
|
||||
sizeof(struct udphdr), &ipc6,
|
||||
&fl6, (struct rt6_info *)dst,
|
||||
msg->msg_flags, &cork, &sockc);
|
||||
msg->msg_flags, &cork);
|
||||
err = PTR_ERR(skb);
|
||||
if (!IS_ERR_OR_NULL(skb))
|
||||
err = udp_v6_send_skb(skb, &fl6, &cork.base);
|
||||
|
@ -1403,7 +1399,7 @@ do_append_data:
|
|||
up->len += ulen;
|
||||
err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
|
||||
&ipc6, &fl6, (struct rt6_info *)dst,
|
||||
corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
|
||||
corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
|
||||
if (err)
|
||||
udp_v6_flush_pending_frames(sk);
|
||||
else if (!corkreq)
|
||||
|
|
|
@ -500,7 +500,6 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
struct ip6_flowlabel *flowlabel = NULL;
|
||||
struct dst_entry *dst = NULL;
|
||||
struct flowi6 fl6;
|
||||
struct sockcm_cookie sockc_unused = {0};
|
||||
struct ipcm6_cookie ipc6;
|
||||
int addr_len = msg->msg_namelen;
|
||||
int transhdrlen = 4; /* zero session-id */
|
||||
|
@ -525,9 +524,7 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
fl6.flowi6_mark = sk->sk_mark;
|
||||
fl6.flowi6_uid = sk->sk_uid;
|
||||
|
||||
ipc6.hlimit = -1;
|
||||
ipc6.tclass = -1;
|
||||
ipc6.dontfrag = -1;
|
||||
ipcm6_init(&ipc6);
|
||||
|
||||
if (lsa) {
|
||||
if (addr_len < SIN6_LEN_RFC2133)
|
||||
|
@ -575,8 +572,7 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
|
|||
opt->tot_len = sizeof(struct ipv6_txoptions);
|
||||
ipc6.opt = opt;
|
||||
|
||||
err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6,
|
||||
&sockc_unused);
|
||||
err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6);
|
||||
if (err < 0) {
|
||||
fl6_sock_release(flowlabel);
|
||||
return err;
|
||||
|
@ -641,7 +637,7 @@ back_from_confirm:
|
|||
err = ip6_append_data(sk, ip_generic_getfrag, msg,
|
||||
ulen, transhdrlen, &ipc6,
|
||||
&fl6, (struct rt6_info *)dst,
|
||||
msg->msg_flags, &sockc_unused);
|
||||
msg->msg_flags);
|
||||
if (err)
|
||||
ip6_flush_pending_frames(sk);
|
||||
else if (!(msg->msg_flags & MSG_MORE))
|
||||
|
|
|
@ -1951,8 +1951,7 @@ retry:
|
|||
goto out_unlock;
|
||||
}
|
||||
|
||||
sockc.transmit_time = 0;
|
||||
sockc.tsflags = sk->sk_tsflags;
|
||||
sockcm_init(&sockc, sk);
|
||||
if (msg->msg_controllen) {
|
||||
err = sock_cmsg_send(sk, msg, &sockc);
|
||||
if (unlikely(err))
|
||||
|
@ -2636,8 +2635,7 @@ static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
|
|||
if (unlikely(!(dev->flags & IFF_UP)))
|
||||
goto out_put;
|
||||
|
||||
sockc.transmit_time = 0;
|
||||
sockc.tsflags = po->sk.sk_tsflags;
|
||||
sockcm_init(&sockc, &po->sk);
|
||||
if (msg->msg_controllen) {
|
||||
err = sock_cmsg_send(&po->sk, msg, &sockc);
|
||||
if (unlikely(err))
|
||||
|
@ -2833,8 +2831,7 @@ static int packet_snd(struct socket *sock, struct msghdr *msg, size_t len)
|
|||
if (unlikely(!(dev->flags & IFF_UP)))
|
||||
goto out_unlock;
|
||||
|
||||
sockc.transmit_time = 0;
|
||||
sockc.tsflags = sk->sk_tsflags;
|
||||
sockcm_init(&sockc, sk);
|
||||
sockc.mark = sk->sk_mark;
|
||||
if (msg->msg_controllen) {
|
||||
err = sock_cmsg_send(sk, msg, &sockc);
|
||||
|
|
Loading…
Reference in New Issue