From patchwork Wed May 15 06:41:43 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "D. Wythe" X-Patchwork-Id: 13664693 Received: from out30-99.freemail.mail.aliyun.com (out30-99.freemail.mail.aliyun.com [115.124.30.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E39E740861; Wed, 15 May 2024 06:41:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.99 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715755323; cv=none; b=MdiKdRD7XUzGoN9zdstYg0mjM8Wf/yX3Qkj/4G1lL05HaSpXbQ06Kpe2UT7KEYbH0fWiJltl0zV9+mHJhcUSJxEHL0Ojm9RjTuVK9B/QDtUUP1nF9sOXdQBrjSXv9Lrdd7nKecxbmU3FbkbAzcmsL1NwaBVau5lan30wYjHu6Xk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715755323; c=relaxed/simple; bh=93b5nFLFjaYh/CcuEhy7EREFQkZjm9ntSS9RZGMNoV8=; h=From:To:Cc:Subject:Date:Message-Id; b=Tux/RUjvQbtzRwfs1Y14aVMq+kM4oWZuEaEmWwPKSWWX86zpP/Xw7YR0gwHHcLwnjz5T6A8LuuEe21DkAfY8p/lMG8JDBj/l6QgU78sH9ASzEqCr6QZm7LcnQdqwuicg5jj9DKx+xVY8p5YobygIReItb1Y3uGCi9oifqmMnCAQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=AHs5v94M; arc=none smtp.client-ip=115.124.30.99 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="AHs5v94M" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1715755312; h=From:To:Subject:Date:Message-Id; bh=qM1ZBNxE6nnn6t/Eohb/7USkilkh1LqteSxTB7R5TJc=; b=AHs5v94MvO+jtZET3Hk2PuVXglUJfe2Lr0OU/7GfHOHEk7krZlZgc97gxZ8ccDvWuSz3NmM57DDXYcbBmC7VfAW5PRjNzcxaqw9zoVom+BynQ3P+r/Sa4xZIaBRw6CP/Eq6nLEZ7DXk92L6P3hHcox8UuSxplmSPYqTWI8bcuiQ= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R861e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=maildocker-contentspam033037067111;MF=alibuda@linux.alibaba.com;NM=1;PH=DS;RN=13;SR=0;TI=SMTPD_---0W6X3t-X_1715755306; Received: from j66a10360.sqa.eu95.tbsite.net(mailfrom:alibuda@linux.alibaba.com fp:SMTPD_---0W6X3t-X_1715755306) by smtp.aliyun-inc.com; Wed, 15 May 2024 14:41:51 +0800 From: "D. Wythe" To: kgraul@linux.ibm.com, wenjia@linux.ibm.com, jaka@linux.ibm.com, wintera@linux.ibm.com, guwen@linux.alibaba.com Cc: kuba@kernel.org, davem@davemloft.net, netdev@vger.kernel.org, linux-s390@vger.kernel.org, linux-rdma@vger.kernel.org, tonylu@linux.alibaba.com, pabeni@redhat.com, edumazet@google.com Subject: [PATCH net-next v2 0/3] Introduce IPPROTO_SMC Date: Wed, 15 May 2024 14:41:43 +0800 Message-Id: <1715755306-22347-1-git-send-email-alibuda@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Precedence: bulk X-Mailing-List: linux-rdma@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: From: "D. Wythe" This patch allows to create smc socket via AF_INET, similar to the following code, /* create v4 smc sock */ v4 = socket(AF_INET, SOCK_STREAM, IPPROTO_SMC); /* create v6 smc sock */ v6 = socket(AF_INET6, SOCK_STREAM, IPPROTO_SMC); There are several reasons why we believe it is appropriate here: 1. For smc sockets, it actually use IPv4 (AF-INET) or IPv6 (AF-INET6) address. There is no AF_SMC address at all. 2. Create smc socket in the AF_INET(6) path, which allows us to reuse the infrastructure of AF_INET(6) path, such as common ebpf hooks. Otherwise, smc have to implement it again in AF_SMC path. Such as: 1. Replace IPPROTO_TCP with IPPROTO_SMC in the socket() syscall initiated by the user, without the use of LD-PRELOAD. 2. Select whether immediate fallback is required based on peer's port/ip before connect(). A very significant result is that we can now use eBPF to implement smc_run instead of LD_PRELOAD, who is completely ineffective in scenarios of static linking. Another potential value is that we are attempting to optimize the performance of fallback socks, where merging socks is an important part, and it relies on the creation of SMC sockets under the AF_INET path. (More information : https://lore.kernel.org/netdev/1699442703-25015-1-git-send-email-alibuda@linux.alibaba.com/T/) v1 -> v2 : - Code formatting, mainly including alignment and annotation repair. - move inet_smc proto ops to inet_smc.c, avoiding af_smc.c becoming too bulky. - Fix the issue where refactoring affects the initialization order. - Fix compile warning (unused out_inet_prot) while CONFIG_IPV6 was not set. D. Wythe (3): net/smc: refatoring initialization of smc sock net/smc: expose smc proto operations net/smc: Introduce IPPROTO_SMC include/uapi/linux/in.h | 2 + net/smc/Makefile | 2 +- net/smc/af_smc.c | 183 ++++++++++++++++++++++++++++++------------------ net/smc/inet_smc.c | 107 ++++++++++++++++++++++++++++ net/smc/inet_smc.h | 32 +++++++++ net/smc/smc.h | 38 ++++++++++ 6 files changed, 294 insertions(+), 70 deletions(-) create mode 100644 net/smc/inet_smc.c create mode 100644 net/smc/inet_smc.h