| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540 |
- // SPDX-License-Identifier: GPL-2.0
- /*
- * Copyright (c) 2023 Oracle and/or its affiliates.
- *
- * KUnit test of the handshake upcall mechanism.
- */
- #include <kunit/test.h>
- #include <kunit/visibility.h>
- #include <linux/kernel.h>
- #include <net/sock.h>
- #include <net/genetlink.h>
- #include <net/netns/generic.h>
- #include <uapi/linux/handshake.h>
- #include "handshake.h"
- MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
- static int test_accept_func(struct handshake_req *req, struct genl_info *info,
- int fd)
- {
- return 0;
- }
- static void test_done_func(struct handshake_req *req, unsigned int status,
- struct genl_info *info)
- {
- }
- struct handshake_req_alloc_test_param {
- const char *desc;
- struct handshake_proto *proto;
- gfp_t gfp;
- bool expect_success;
- };
- static struct handshake_proto handshake_req_alloc_proto_2 = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_NONE,
- };
- static struct handshake_proto handshake_req_alloc_proto_3 = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_MAX,
- };
- static struct handshake_proto handshake_req_alloc_proto_4 = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_TLSHD,
- };
- static struct handshake_proto handshake_req_alloc_proto_5 = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_TLSHD,
- .hp_accept = test_accept_func,
- };
- static struct handshake_proto handshake_req_alloc_proto_6 = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_TLSHD,
- .hp_privsize = UINT_MAX,
- .hp_accept = test_accept_func,
- .hp_done = test_done_func,
- };
- static struct handshake_proto handshake_req_alloc_proto_good = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_TLSHD,
- .hp_accept = test_accept_func,
- .hp_done = test_done_func,
- };
- static const
- struct handshake_req_alloc_test_param handshake_req_alloc_params[] = {
- {
- .desc = "handshake_req_alloc NULL proto",
- .proto = NULL,
- .gfp = GFP_KERNEL,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc CLASS_NONE",
- .proto = &handshake_req_alloc_proto_2,
- .gfp = GFP_KERNEL,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc CLASS_MAX",
- .proto = &handshake_req_alloc_proto_3,
- .gfp = GFP_KERNEL,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc no callbacks",
- .proto = &handshake_req_alloc_proto_4,
- .gfp = GFP_KERNEL,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc no done callback",
- .proto = &handshake_req_alloc_proto_5,
- .gfp = GFP_KERNEL,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc excessive privsize",
- .proto = &handshake_req_alloc_proto_6,
- .gfp = GFP_KERNEL | __GFP_NOWARN,
- .expect_success = false,
- },
- {
- .desc = "handshake_req_alloc all good",
- .proto = &handshake_req_alloc_proto_good,
- .gfp = GFP_KERNEL,
- .expect_success = true,
- },
- };
- static void
- handshake_req_alloc_get_desc(const struct handshake_req_alloc_test_param *param,
- char *desc)
- {
- strscpy(desc, param->desc, KUNIT_PARAM_DESC_SIZE);
- }
- /* Creates the function handshake_req_alloc_gen_params */
- KUNIT_ARRAY_PARAM(handshake_req_alloc, handshake_req_alloc_params,
- handshake_req_alloc_get_desc);
- static void handshake_req_alloc_case(struct kunit *test)
- {
- const struct handshake_req_alloc_test_param *param = test->param_value;
- struct handshake_req *result;
- /* Arrange */
- /* Act */
- result = handshake_req_alloc(param->proto, param->gfp);
- /* Assert */
- if (param->expect_success)
- KUNIT_EXPECT_NOT_NULL(test, result);
- else
- KUNIT_EXPECT_NULL(test, result);
- kfree(result);
- }
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- /* Act */
- result = handshake_req_submit(sock, NULL, GFP_KERNEL);
- /* Assert */
- KUNIT_EXPECT_EQ(test, result, -EINVAL);
- sock_release(sock);
- }
- static void handshake_req_submit_test2(struct kunit *test)
- {
- struct handshake_req *req;
- int result;
- /* Arrange */
- req = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
- KUNIT_ASSERT_NOT_NULL(test, req);
- /* Act */
- result = handshake_req_submit(NULL, req, GFP_KERNEL);
- /* Assert */
- KUNIT_EXPECT_EQ(test, result, -EINVAL);
- /* handshake_req_submit() destroys @req on error */
- }
- static void handshake_req_submit_test3(struct kunit *test)
- {
- struct handshake_req *req;
- struct socket *sock;
- int err, result;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- sock->file = NULL;
- /* Act */
- result = handshake_req_submit(sock, req, GFP_KERNEL);
- /* Assert */
- KUNIT_EXPECT_EQ(test, result, -EINVAL);
- /* handshake_req_submit() destroys @req on error */
- sock_release(sock);
- }
- static void handshake_req_submit_test4(struct kunit *test)
- {
- struct handshake_req *req, *result;
- struct socket *sock;
- struct file *filp;
- int err;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- KUNIT_ASSERT_NOT_NULL(test, sock->sk);
- sock->file = filp;
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- /* Act */
- result = handshake_req_hash_lookup(sock->sk);
- /* Assert */
- KUNIT_EXPECT_NOT_NULL(test, result);
- KUNIT_EXPECT_PTR_EQ(test, req, result);
- handshake_req_cancel(sock->sk);
- fput(filp);
- }
- static void handshake_req_submit_test5(struct kunit *test)
- {
- struct handshake_req *req;
- struct handshake_net *hn;
- struct socket *sock;
- struct file *filp;
- struct net *net;
- int saved, err;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- KUNIT_ASSERT_NOT_NULL(test, sock->sk);
- sock->file = filp;
- net = sock_net(sock->sk);
- hn = handshake_pernet(net);
- KUNIT_ASSERT_NOT_NULL(test, hn);
- saved = hn->hn_pending;
- hn->hn_pending = hn->hn_pending_max + 1;
- /* Act */
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- /* Assert */
- KUNIT_EXPECT_EQ(test, err, -EAGAIN);
- fput(filp);
- hn->hn_pending = saved;
- }
- static void handshake_req_submit_test6(struct kunit *test)
- {
- struct handshake_req *req1, *req2;
- struct socket *sock;
- struct file *filp;
- int err;
- /* Arrange */
- req1 = handshake_req_alloc(&handshake_req_alloc_proto_good, GFP_KERNEL);
- KUNIT_ASSERT_NOT_NULL(test, req1);
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- KUNIT_ASSERT_NOT_NULL(test, sock->sk);
- sock->file = filp;
- /* Act */
- err = handshake_req_submit(sock, req1, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- err = handshake_req_submit(sock, req2, GFP_KERNEL);
- /* Assert */
- KUNIT_EXPECT_EQ(test, err, -EBUSY);
- handshake_req_cancel(sock->sk);
- fput(filp);
- }
- static void handshake_req_cancel_test1(struct kunit *test)
- {
- struct handshake_req *req;
- struct socket *sock;
- struct file *filp;
- bool result;
- int err;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- sock->file = filp;
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- /* NB: handshake_req hasn't been accepted */
- /* Act */
- result = handshake_req_cancel(sock->sk);
- /* Assert */
- KUNIT_EXPECT_TRUE(test, result);
- fput(filp);
- }
- static void handshake_req_cancel_test2(struct kunit *test)
- {
- struct handshake_req *req, *next;
- struct handshake_net *hn;
- struct socket *sock;
- struct file *filp;
- struct net *net;
- bool result;
- int err;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- sock->file = filp;
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- net = sock_net(sock->sk);
- hn = handshake_pernet(net);
- KUNIT_ASSERT_NOT_NULL(test, hn);
- /* Pretend to accept this request */
- next = handshake_req_next(hn, HANDSHAKE_HANDLER_CLASS_TLSHD);
- KUNIT_ASSERT_PTR_EQ(test, req, next);
- /* Act */
- result = handshake_req_cancel(sock->sk);
- /* Assert */
- KUNIT_EXPECT_TRUE(test, result);
- fput(filp);
- }
- static void handshake_req_cancel_test3(struct kunit *test)
- {
- struct handshake_req *req, *next;
- struct handshake_net *hn;
- struct socket *sock;
- struct file *filp;
- struct net *net;
- bool result;
- int err;
- /* Arrange */
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- sock->file = filp;
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- net = sock_net(sock->sk);
- hn = handshake_pernet(net);
- KUNIT_ASSERT_NOT_NULL(test, hn);
- /* Pretend to accept this request */
- next = handshake_req_next(hn, HANDSHAKE_HANDLER_CLASS_TLSHD);
- KUNIT_ASSERT_PTR_EQ(test, req, next);
- /* Pretend to complete this request */
- handshake_complete(next, -ETIMEDOUT, NULL);
- /* Act */
- result = handshake_req_cancel(sock->sk);
- /* Assert */
- KUNIT_EXPECT_FALSE(test, result);
- fput(filp);
- }
- static struct handshake_req *handshake_req_destroy_test;
- static void test_destroy_func(struct handshake_req *req)
- {
- handshake_req_destroy_test = req;
- }
- static struct handshake_proto handshake_req_alloc_proto_destroy = {
- .hp_handler_class = HANDSHAKE_HANDLER_CLASS_TLSHD,
- .hp_accept = test_accept_func,
- .hp_done = test_done_func,
- .hp_destroy = test_destroy_func,
- };
- static void handshake_req_destroy_test1(struct kunit *test)
- {
- struct handshake_req *req;
- struct socket *sock;
- struct file *filp;
- int err;
- /* Arrange */
- handshake_req_destroy_test = NULL;
- 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);
- KUNIT_ASSERT_EQ(test, err, 0);
- filp = sock_alloc_file(sock, O_NONBLOCK, NULL);
- KUNIT_ASSERT_NOT_ERR_OR_NULL(test, filp);
- sock->file = filp;
- err = handshake_req_submit(sock, req, GFP_KERNEL);
- KUNIT_ASSERT_EQ(test, err, 0);
- handshake_req_cancel(sock->sk);
- /* Act */
- /* Ensure the close/release/put process has run to
- * completion before checking the result.
- */
- __fput_sync(filp);
- /* Assert */
- KUNIT_EXPECT_PTR_EQ(test, handshake_req_destroy_test, req);
- }
- static struct kunit_case handshake_api_test_cases[] = {
- {
- .name = "req_alloc API fuzzing",
- .run_case = handshake_req_alloc_case,
- .generate_params = handshake_req_alloc_gen_params,
- },
- {
- .name = "req_submit NULL req arg",
- .run_case = handshake_req_submit_test1,
- },
- {
- .name = "req_submit NULL sock arg",
- .run_case = handshake_req_submit_test2,
- },
- {
- .name = "req_submit NULL sock->file",
- .run_case = handshake_req_submit_test3,
- },
- {
- .name = "req_lookup works",
- .run_case = handshake_req_submit_test4,
- },
- {
- .name = "req_submit max pending",
- .run_case = handshake_req_submit_test5,
- },
- {
- .name = "req_submit multiple",
- .run_case = handshake_req_submit_test6,
- },
- {
- .name = "req_cancel before accept",
- .run_case = handshake_req_cancel_test1,
- },
- {
- .name = "req_cancel after accept",
- .run_case = handshake_req_cancel_test2,
- },
- {
- .name = "req_cancel after done",
- .run_case = handshake_req_cancel_test3,
- },
- {
- .name = "req_destroy works",
- .run_case = handshake_req_destroy_test1,
- },
- {}
- };
- static struct kunit_suite handshake_api_suite = {
- .name = "Handshake API tests",
- .test_cases = handshake_api_test_cases,
- };
- kunit_test_suites(&handshake_api_suite);
- MODULE_DESCRIPTION("Test handshake upcall API functions");
- MODULE_LICENSE("GPL");
|