Skip to content

Commit

Permalink
mptcp: unify ADD_ADDR and ADD_ADDR6 suboptions writing
Browse files Browse the repository at this point in the history
The length of ADD_ADDR6 is 12 octets longer than ADD_ADDR. That's the
only difference between them.

This patch dropped the duplicate code between ADD_ADDR and ADD_ADDR6
suboptions writing, and unify them into one.

Reviewed-by: Mat Martineau <[email protected]>
Signed-off-by: Geliang Tang <[email protected]>
  • Loading branch information
geliangtang authored and jenkins-tessares committed Nov 19, 2020
1 parent e2a0778 commit 2b40719
Showing 1 changed file with 17 additions and 20 deletions.
37 changes: 17 additions & 20 deletions net/mptcp/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -1067,44 +1067,41 @@ void mptcp_write_options(__be32 *ptr, const struct tcp_sock *tp,
}

mp_capable_done:
if (OPTION_MPTCP_ADD_ADDR & opts->suboptions) {
if ((OPTION_MPTCP_ADD_ADDR
#if IS_ENABLED(CONFIG_MPTCP_IPV6)
| OPTION_MPTCP_ADD_ADDR6
#endif
) & opts->suboptions) {
u8 len = TCPOLEN_MPTCP_ADD_ADDR_BASE;
u8 echo = MPTCP_ADDR_ECHO;

#if IS_ENABLED(CONFIG_MPTCP_IPV6)
if (OPTION_MPTCP_ADD_ADDR6 & opts->suboptions)
len = TCPOLEN_MPTCP_ADD_ADDR6_BASE;
#endif

if (opts->ahmac) {
len += sizeof(opts->ahmac);
echo = 0;
}

*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
len, echo, opts->addr_id);
memcpy((u8 *)ptr, (u8 *)&opts->addr.s_addr, 4);
ptr += 1;
if (opts->ahmac) {
put_unaligned_be64(opts->ahmac, ptr);
ptr += 2;
if (OPTION_MPTCP_ADD_ADDR & opts->suboptions) {
memcpy((u8 *)ptr, (u8 *)&opts->addr.s_addr, 4);
ptr += 1;
}
}

#if IS_ENABLED(CONFIG_MPTCP_IPV6)
if (OPTION_MPTCP_ADD_ADDR6 & opts->suboptions) {
u8 len = TCPOLEN_MPTCP_ADD_ADDR6_BASE;
u8 echo = MPTCP_ADDR_ECHO;

if (opts->ahmac) {
len += sizeof(opts->ahmac);
echo = 0;
else if (OPTION_MPTCP_ADD_ADDR6 & opts->suboptions) {
memcpy((u8 *)ptr, opts->addr6.s6_addr, 16);
ptr += 4;
}
*ptr++ = mptcp_option(MPTCPOPT_ADD_ADDR,
len, echo, opts->addr_id);
memcpy((u8 *)ptr, opts->addr6.s6_addr, 16);
ptr += 4;
#endif
if (opts->ahmac) {
put_unaligned_be64(opts->ahmac, ptr);
ptr += 2;
}
}
#endif

if (OPTION_MPTCP_RM_ADDR & opts->suboptions) {
*ptr++ = mptcp_option(MPTCPOPT_RM_ADDR,
Expand Down

0 comments on commit 2b40719

Please sign in to comment.