Skip to content

Commit 77dadc8

Browse files
committed
Taking out the related functions to tcp_migrate.c
1 parent 9016a27 commit 77dadc8

File tree

7 files changed

+407
-317
lines changed

7 files changed

+407
-317
lines changed

include/net/tcp.h

+18-10
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,16 @@ extern struct percpu_counter tcp_orphan_count;
5353
void tcp_time_wait(struct sock *sk, int state, int timeo);
5454

5555
#if IS_ENABLED(CONFIG_TCP_MIGRATE)
56+
#define tcpmig_debug(fmt, args...) \
57+
do { \
58+
pr_err(__FILE__ ": " fmt, ##args); \
59+
} while (0)
5660
/* Global array of migrate_enabled sockets */
5761
#define MAX_TOKEN 10000
5862
extern struct sock *migrate_socks[MAX_TOKEN];
63+
#else
64+
#define tcpmig_debug(fmt, args...) \
65+
do { } while (0)
5966
#endif
6067

6168
#define MAX_TCP_HEADER (128 + MAX_HEADER)
@@ -589,18 +596,22 @@ int tcp_send_synack(struct sock *);
589596
void tcp_push_one(struct sock *, unsigned int mss_now);
590597
void __tcp_send_ack(struct sock *sk, u32 rcv_nxt);
591598
void tcp_send_ack(struct sock *sk);
592-
#if IS_ENABLED(CONFIG_TCP_MIGRATE)
593-
void tcp_send_migrate_req(struct sock *sk);
594-
int tcp_v4_migrate_hash(struct sock *sk);
595-
int tcp_v4_migrate_unhash(struct sock *sk);
596-
int tcp_v4_migrate_hash_place(struct sock *sk, u32 token);
597-
bool tcp_v4_migrate_unhashed(const struct sock *sk);
598-
#endif
599599
void tcp_send_delayed_ack(struct sock *sk);
600600
void tcp_send_loss_probe(struct sock *sk);
601601
bool tcp_schedule_loss_probe(struct sock *sk, bool advancing_rto);
602602
void tcp_skb_collapse_tstamp(struct sk_buff *skb,
603603
const struct sk_buff *next_skb);
604+
/* tcp_migrate.c */
605+
int tcp_v4_migrate_hash(struct sock *sk);
606+
int tcp_v4_migrate_unhash(struct sock *sk);
607+
int tcp_v4_migrate_hash_place(struct sock *sk, u32 token);
608+
bool tcp_v4_migrate_unhashed(const struct sock *sk);
609+
void tcp_send_migrate_req(struct sock *sk);
610+
int tcp_v4_migrate_request(struct sk_buff *skb, struct tcp_options_received *opts);
611+
#ifdef CONFIG_PROC_FS
612+
int tcpmig_proc_init(void);
613+
void tcpmig_proc_exit(void);
614+
#endif
604615

605616
/* tcp_input.c */
606617
void tcp_rearm_rto(struct sock *sk);
@@ -1908,9 +1919,6 @@ int tcp_rtx_synack(const struct sock *sk, struct request_sock *req);
19081919
int tcp_conn_request(struct request_sock_ops *rsk_ops,
19091920
const struct tcp_request_sock_ops *af_ops,
19101921
struct sock *sk, struct sk_buff *skb);
1911-
#ifdef CONFIG_TCP_MIGRATE
1912-
int tcp_v4_migrate_request(struct sk_buff *skb, struct tcp_options_received *opts);
1913-
#endif
19141922

19151923
/* TCP af-specific functions */
19161924
struct tcp_sock_af_ops {

net/ipv4/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ obj-y := route.o inetpeer.o protocol.o \
1414
udp_offload.o arp.o icmp.o devinet.o af_inet.o igmp.o \
1515
fib_frontend.o fib_semantics.o fib_trie.o fib_notifier.o \
1616
inet_fragment.o ping.o ip_tunnel_core.o gre_offload.o \
17-
metrics.o netlink.o
17+
metrics.o netlink.o \
18+
tcp_migrate.o
1819

1920
obj-$(CONFIG_BPFILTER) += bpfilter/
2021

net/ipv4/af_inet.c

+8
Original file line numberDiff line numberDiff line change
@@ -2051,6 +2051,10 @@ static int __init ipv4_proc_init(void)
20512051
goto out_raw;
20522052
if (tcp4_proc_init())
20532053
goto out_tcp;
2054+
#ifdef CONFIG_TCP_MIGRATE
2055+
if (tcpmig_proc_init())
2056+
goto out_tcpmig;
2057+
#endif
20542058
if (udp4_proc_init())
20552059
goto out_udp;
20562060
if (ping_proc_init())
@@ -2063,6 +2067,10 @@ static int __init ipv4_proc_init(void)
20632067
ping_proc_exit();
20642068
out_ping:
20652069
udp4_proc_exit();
2070+
#ifdef CONFIG_TCP_MIGRATE
2071+
out_tcpmig:
2072+
tcpmig_proc_exit();
2073+
#endif
20662074
out_udp:
20672075
tcp4_proc_exit();
20682076
out_tcp:

net/ipv4/tcp_input.c

-65
Original file line numberDiff line numberDiff line change
@@ -6605,68 +6605,3 @@ int tcp_conn_request(struct request_sock_ops *rsk_ops,
66056605
return 0;
66066606
}
66076607
EXPORT_SYMBOL(tcp_conn_request);
6608-
6609-
#if IS_ENABLED(CONFIG_TCP_MIGRATE)
6610-
6611-
/* Atomically unhashes the sock from the ehash, updates its
6612-
* destination address, and hashes it back into the ehash
6613-
*/
6614-
int tcp_v4_change_daddr(struct sock *sk, __be32 newdaddr) {
6615-
int err;
6616-
//local_bh_disable();
6617-
6618-
printk(KERN_INFO "[%p][%s] unhashing\n", (void*)sk, __func__);
6619-
inet_unhash(sk);
6620-
6621-
sk->sk_daddr = newdaddr;
6622-
6623-
printk(KERN_INFO "[%p][%s] rehashing\n", (void*)sk, __func__);
6624-
err = inet_hash(sk);
6625-
if (err)
6626-
goto err;
6627-
6628-
//local_bh_enable();
6629-
return 0;
6630-
err:
6631-
return err;
6632-
}
6633-
6634-
struct sock *tcp_v4_migrate_lookup(u32 token) {
6635-
if (token >= MAX_TOKEN) {
6636-
return NULL;
6637-
}
6638-
return migrate_socks[token];
6639-
}
6640-
6641-
int tcp_v4_migrate_request(struct sk_buff *skb, struct tcp_options_received *opts) {
6642-
struct sock *sk;
6643-
const struct iphdr *iph;
6644-
__be32 remote_addr;
6645-
u32 token = opts->migrate_token;
6646-
int err;
6647-
6648-
printk(KERN_INFO "[%s] token received is %u\n", __func__, token);
6649-
6650-
iph = ip_hdr(skb);
6651-
printk(KERN_INFO "[%s] iph = %p\n", __func__, iph);
6652-
6653-
// Migrate connection to this address:
6654-
remote_addr = iph->saddr;
6655-
printk(KERN_INFO "[%s] remote addr is: %x\n", __func__, ntohl(remote_addr));
6656-
6657-
/* Find the sock with this token */
6658-
sk = tcp_v4_migrate_lookup(token);
6659-
6660-
if (!sk) {
6661-
printk(KERN_INFO "[%s] could not find socket with token %u\n", __func__, token);
6662-
return -1;
6663-
}
6664-
6665-
printk(KERN_INFO "[%p][%s] Found sock and setting its daddr\n", (void*)sk, __func__);
6666-
err = tcp_v4_change_daddr(sk, remote_addr);
6667-
6668-
return err;
6669-
}
6670-
EXPORT_SYMBOL(tcp_v4_migrate_request);
6671-
#endif
6672-

0 commit comments

Comments
 (0)