From: David Laight <david.laight.linux@gmail.com>
To: Kuniyuki Iwashima <kuniyu@amazon.com>
Cc: "David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Willem de Bruijn <willemb@google.com>,
Simon Horman <horms@kernel.org>,
Kuniyuki Iwashima <kuni1840@gmail.com>, <netdev@vger.kernel.org>
Subject: Re: [PATCH v1 net-next 1/6] socket: Un-export __sock_create().
Date: Mon, 19 May 2025 13:16:19 +0100 [thread overview]
Message-ID: <20250519131619.21132b21@pumpkin> (raw)
In-Reply-To: <20250517035120.55560-2-kuniyu@amazon.com>
On Fri, 16 May 2025 20:50:22 -0700
Kuniyuki Iwashima <kuniyu@amazon.com> wrote:
> Since commit eeb1bd5c40ed ("net: Add a struct net parameter to
> sock_create_kern"), we no longer need to export __sock_create()
> and can replace all non-core users with sock_create_kern().
>
> Let's convert them and un-export __sock_create().
Don't you need to worry about whether 'net' should be held before doing
this change?
Then you can unexport __sock_create() at the end when there are no callers.
I'm surprised you haven't found any __sock_create(..., 0) calls that are
used 'hold' 'net'.
(I've got some 'out of tree'.)
David
>
> Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
> ---
> fs/smb/client/connect.c | 4 ++--
> include/linux/net.h | 2 --
> net/9p/trans_fd.c | 9 +++++----
> net/handshake/handshake-test.c | 32 ++++++++++++++------------------
> net/socket.c | 3 +--
> net/sunrpc/clnt.c | 4 ++--
> net/sunrpc/svcsock.c | 2 +-
> net/sunrpc/xprtsock.c | 6 +++---
> net/wireless/nl80211.c | 4 ++--
> 9 files changed, 30 insertions(+), 36 deletions(-)
>
> diff --git a/fs/smb/client/connect.c b/fs/smb/client/connect.c
> index 6bf04d9a5491..c251a23a6447 100644
> --- a/fs/smb/client/connect.c
> +++ b/fs/smb/client/connect.c
> @@ -3350,8 +3350,8 @@ generic_ip_connect(struct TCP_Server_Info *server)
> struct net *net = cifs_net_ns(server);
> struct sock *sk;
>
> - rc = __sock_create(net, sfamily, SOCK_STREAM,
> - IPPROTO_TCP, &server->ssocket, 1);
> + rc = sock_create_kern(net, sfamily, SOCK_STREAM,
> + IPPROTO_TCP, &server->ssocket);
> if (rc < 0) {
> cifs_server_dbg(VFS, "Error %d creating socket\n", rc);
> return rc;
> diff --git a/include/linux/net.h b/include/linux/net.h
> index 0ff950eecc6b..26aaaa841f48 100644
> --- a/include/linux/net.h
> +++ b/include/linux/net.h
> @@ -251,8 +251,6 @@ int sock_wake_async(struct socket_wq *sk_wq, int how, int band);
> int sock_register(const struct net_proto_family *fam);
> void sock_unregister(int family);
> bool sock_is_registered(int family);
> -int __sock_create(struct net *net, int family, int type, int proto,
> - struct socket **res, int kern);
> int sock_create(int family, int type, int proto, struct socket **res);
> int sock_create_kern(struct net *net, int family, int type, int proto, struct socket **res);
> int sock_create_lite(int family, int type, int proto, struct socket **res);
> diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c
> index 339ec4e54778..842977f309b3 100644
> --- a/net/9p/trans_fd.c
> +++ b/net/9p/trans_fd.c
> @@ -1006,8 +1006,9 @@ p9_fd_create_tcp(struct p9_client *client, const char *addr, char *args)
>
> client->trans_opts.tcp.port = opts.port;
> client->trans_opts.tcp.privport = opts.privport;
> - err = __sock_create(current->nsproxy->net_ns, stor.ss_family,
> - SOCK_STREAM, IPPROTO_TCP, &csocket, 1);
> +
> + err = sock_create_kern(current->nsproxy->net_ns, stor.ss_family,
> + SOCK_STREAM, IPPROTO_TCP, &csocket);
> if (err) {
> pr_err("%s (%d): problem creating socket\n",
> __func__, task_pid_nr(current));
> @@ -1057,8 +1058,8 @@ p9_fd_create_unix(struct p9_client *client, const char *addr, char *args)
>
> sun_server.sun_family = PF_UNIX;
> strcpy(sun_server.sun_path, addr);
> - err = __sock_create(current->nsproxy->net_ns, PF_UNIX,
> - SOCK_STREAM, 0, &csocket, 1);
> + err = sock_create_kern(current->nsproxy->net_ns, PF_UNIX,
> + SOCK_STREAM, 0, &csocket);
> if (err < 0) {
> pr_err("%s (%d): problem creating socket\n",
> __func__, task_pid_nr(current));
> diff --git a/net/handshake/handshake-test.c b/net/handshake/handshake-test.c
> index 55442b2f518a..4f300504f3e5 100644
> --- a/net/handshake/handshake-test.c
> +++ b/net/handshake/handshake-test.c
> @@ -143,14 +143,18 @@ static void handshake_req_alloc_case(struct kunit *test)
> kfree(result);
> }
>
> +static int handshake_sock_create(struct socket **sock)
> +{
> + return sock_create_kern(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP, sock);
> +}
> +
> static void handshake_req_submit_test1(struct kunit *test)
> {
> struct socket *sock;
> int err, result;
>
> /* Arrange */
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
>
> /* Act */
> @@ -190,8 +194,7 @@ static void handshake_req_submit_test3(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
> sock->file = NULL;
>
> @@ -216,8 +219,7 @@ static void handshake_req_submit_test4(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
> @@ -251,8 +253,7 @@ static void handshake_req_submit_test5(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
> @@ -289,8 +290,7 @@ static void handshake_req_submit_test6(struct kunit *test)
> req2 = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req2);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
> @@ -321,8 +321,7 @@ static void handshake_req_cancel_test1(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
>
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> @@ -357,8 +356,7 @@ static void handshake_req_cancel_test2(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
>
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> @@ -399,8 +397,7 @@ static void handshake_req_cancel_test3(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
>
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> @@ -457,8 +454,7 @@ static void handshake_req_destroy_test1(struct kunit *test)
> req = handshake_req_alloc(&handshake_req_alloc_proto_destroy, GFP_KERNEL);
> KUNIT_ASSERT_NOT_NULL(test, req);
>
> - err = __sock_create(&init_net, PF_INET, SOCK_STREAM, IPPROTO_TCP,
> - &sock, 1);
> + err = handshake_sock_create(&sock);
> KUNIT_ASSERT_EQ(test, err, 0);
>
> filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
> diff --git a/net/socket.c b/net/socket.c
> index 9a0e720f0859..241d9767ae69 100644
> --- a/net/socket.c
> +++ b/net/socket.c
> @@ -1467,7 +1467,7 @@ EXPORT_SYMBOL(sock_wake_async);
> * This function internally uses GFP_KERNEL.
> */
>
> -int __sock_create(struct net *net, int family, int type, int protocol,
> +static int __sock_create(struct net *net, int family, int type, int protocol,
> struct socket **res, int kern)
> {
> int err;
> @@ -1581,7 +1581,6 @@ int __sock_create(struct net *net, int family, int type, int protocol,
> rcu_read_unlock();
> goto out_sock_release;
> }
> -EXPORT_SYMBOL(__sock_create);
>
> /**
> * sock_create - creates a socket
> diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
> index 6f75862d9782..f9f340171530 100644
> --- a/net/sunrpc/clnt.c
> +++ b/net/sunrpc/clnt.c
> @@ -1455,8 +1455,8 @@ static int rpc_sockname(struct net *net, struct sockaddr *sap, size_t salen,
> struct socket *sock;
> int err;
>
> - err = __sock_create(net, sap->sa_family,
> - SOCK_DGRAM, IPPROTO_UDP, &sock, 1);
> + err = sock_create_kern(net, sap->sa_family,
> + SOCK_DGRAM, IPPROTO_UDP, &sock);
> if (err < 0) {
> dprintk("RPC: can't create UDP socket (%d)\n", err);
> goto out;
> diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c
> index 72e5a01df3d3..e2c69ab17ac5 100644
> --- a/net/sunrpc/svcsock.c
> +++ b/net/sunrpc/svcsock.c
> @@ -1516,7 +1516,7 @@ static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
> return ERR_PTR(-EINVAL);
> }
>
> - error = __sock_create(net, family, type, protocol, &sock, 1);
> + error = sock_create_kern(net, family, type, protocol, &sock);
> if (error < 0)
> return ERR_PTR(error);
>
> diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
> index 83cc095846d3..5ffe88145193 100644
> --- a/net/sunrpc/xprtsock.c
> +++ b/net/sunrpc/xprtsock.c
> @@ -1924,7 +1924,7 @@ static struct socket *xs_create_sock(struct rpc_xprt *xprt,
> struct socket *sock;
> int err;
>
> - err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
> + err = sock_create_kern(xprt->xprt_net, family, type, protocol, &sock);
> if (err < 0) {
> dprintk("RPC: can't create %d transport socket (%d).\n",
> protocol, -err);
> @@ -1999,8 +1999,8 @@ static int xs_local_setup_socket(struct sock_xprt *transport)
> struct socket *sock;
> int status;
>
> - status = __sock_create(xprt->xprt_net, AF_LOCAL,
> - SOCK_STREAM, 0, &sock, 1);
> + status = sock_create_kern(xprt->xprt_net, AF_LOCAL,
> + SOCK_STREAM, 0, &sock);
> if (status < 0) {
> dprintk("RPC: can't create AF_LOCAL "
> "transport socket (%d).\n", -status);
> diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
> index fd5f79266471..98a7298e427d 100644
> --- a/net/wireless/nl80211.c
> +++ b/net/wireless/nl80211.c
> @@ -13750,8 +13750,8 @@ static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
> port = nla_get_u16_default(tb[NL80211_WOWLAN_TCP_SRC_PORT], 0);
> #ifdef CONFIG_INET
> /* allocate a socket and port for it and use it */
> - err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
> - IPPROTO_TCP, &cfg->sock, 1);
> + err = sock_create_kern(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
> + IPPROTO_TCP, &cfg->sock);
> if (err) {
> kfree(cfg);
> return err;
next prev parent reply other threads:[~2025-05-19 12:16 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-17 3:50 [PATCH v1 net-next 0/6] socket: Make sock_create_kern() robust against misuse Kuniyuki Iwashima
2025-05-17 3:50 ` [PATCH v1 net-next 1/6] socket: Un-export __sock_create() Kuniyuki Iwashima
2025-05-19 12:16 ` David Laight [this message]
2025-05-19 17:16 ` Kuniyuki Iwashima
2025-05-17 3:50 ` [PATCH v1 net-next 2/6] socket: Rename sock_create_kern() to __sock_create_kern() Kuniyuki Iwashima
2025-05-22 15:01 ` Matthieu Baerts
2025-05-17 3:50 ` [PATCH v1 net-next 3/6] socket: Restore sock_create_kern() Kuniyuki Iwashima
2025-05-22 15:02 ` Matthieu Baerts
2025-05-22 16:23 ` Kuniyuki Iwashima
2025-05-17 3:50 ` [PATCH v1 net-next 4/6] socket: Remove kernel socket conversion except for net/rds/ Kuniyuki Iwashima
2025-05-22 8:55 ` Paolo Abeni
2025-05-22 16:12 ` Kuniyuki Iwashima
2025-05-22 16:38 ` Chuck Lever
2025-05-22 17:04 ` Kuniyuki Iwashima
2025-05-23 4:23 ` Christoph Hellwig
2025-05-22 15:03 ` Matthieu Baerts
2025-05-17 3:50 ` [PATCH v1 net-next 5/6] socket: Replace most sock_create() calls with sock_create_kern() Kuniyuki Iwashima
2025-05-22 9:11 ` Paolo Abeni
2025-05-17 3:50 ` [PATCH v1 net-next 6/6] socket: Clean up kdoc for sock_create() and sock_create_lite() Kuniyuki Iwashima
2025-05-19 12:43 ` David Laight
2025-05-19 17:28 ` Kuniyuki Iwashima
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250519131619.21132b21@pumpkin \
--to=david.laight.linux@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=kuni1840@gmail.com \
--cc=kuniyu@amazon.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=willemb@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox