diff options
author | Luca Dariz <luca@orpolo.org> | 2024-01-11 22:09:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-01-13 22:47:00 +0100 |
commit | 973fdd3cf6a8c0e462e0f942f572112122bc5e52 (patch) | |
tree | 82074ab15d9c67d5cc7126a7683d1aa5f54932a2 /tests | |
parent | 31a4deada9fb0da82a448ffaf8825bbec65d6c84 (diff) | |
download | gnumach-973fdd3cf6a8c0e462e0f942f572112122bc5e52.tar.gz gnumach-973fdd3cf6a8c0e462e0f942f572112122bc5e52.tar.bz2 gnumach-973fdd3cf6a8c0e462e0f942f572112122bc5e52.zip |
add mach_port tests
Message-ID: <20240111210907.419689-4-luca@orpolo.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-mach_port.c | 121 | ||||
-rw-r--r-- | tests/user-qemu.mk | 3 |
2 files changed, 123 insertions, 1 deletions
diff --git a/tests/test-mach_port.c b/tests/test-mach_port.c new file mode 100644 index 00000000..81a1072b --- /dev/null +++ b/tests/test-mach_port.c @@ -0,0 +1,121 @@ +/* + * Copyright (C) 2024 Free Software Foundation + * + * This program is free software ; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation ; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY ; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with the program ; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include <mach/message.h> +#include <mach/mach_types.h> +#include <mach/vm_param.h> + +#include <syscalls.h> +#include <testlib.h> + +#include <mach.user.h> +#include <mach_port.user.h> + +void test_mach_port(void) +{ + kern_return_t err; + + mach_port_name_t *namesp; + mach_msg_type_number_t namesCnt=0; + mach_port_type_t *typesp; + mach_msg_type_number_t typesCnt=0; + err = mach_port_names(mach_task_self(), &namesp, &namesCnt, &typesp, &typesCnt); + ASSERT_RET(err, "mach_port_names"); + printf("mach_port_names: type/name length: %d %d\n", namesCnt, typesCnt); + ASSERT((namesCnt != 0) && (namesCnt == typesCnt), + "mach_port_names: wrong type/name length"); + for (int i=0; i<namesCnt; i++) + printf("port name %d type %x\n", namesp[i], typesp[i]); + + /* + * test mach_port_type() + * use the ports we have already as bootstrap modules + * maybe we could do more checks on the bootstrap ports, on other modules + */ + mach_port_type_t pt; + err = mach_port_type(mach_task_self(), host_priv(), &pt); + ASSERT_RET(err, "mach_port_type host_priv"); + ASSERT(pt == MACH_PORT_TYPE_SEND, "wrong type for host_priv"); + + err = mach_port_type(mach_task_self(), device_priv(), &pt); + ASSERT_RET(err, "mach_port_type device_priv"); + ASSERT(pt == MACH_PORT_TYPE_SEND, "wrong type for device_priv"); + + err = mach_port_rename(mach_task_self(), device_priv(), 111); + ASSERT_RET(err, "mach_port_rename"); + // FIXME: it seems we can't restore the old name + err = mach_port_rename(mach_task_self(), 111, 112); + ASSERT_RET(err, "mach_port_rename restore orig"); + + const mach_port_t nrx = 1000, nset = 1001, ndead = 1002; + err = mach_port_allocate_name(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, nrx); + ASSERT_RET(err, "mach_port_allocate_name rx"); + err = mach_port_allocate_name(mach_task_self(), MACH_PORT_RIGHT_PORT_SET, nset); + ASSERT_RET(err, "mach_port_allocate_name pset"); + err = mach_port_allocate_name(mach_task_self(), MACH_PORT_RIGHT_DEAD_NAME, ndead); + ASSERT_RET(err, "mach_port_allocate_name dead"); + + // set to a valid name to check it's really allocated to a new one + mach_port_t newname = nrx, oldname = nrx; + err = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &newname); + ASSERT_RET(err, "mach_port_allocate"); + ASSERT(newname != nrx, "allocated name didn't change"); + + oldname = newname; + newname = nrx; + err = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_PORT_SET, &newname); + ASSERT_RET(err, "mach_port_allocate"); + ASSERT(newname != nrx, "allocated name didn't change"); + ASSERT(newname != oldname, "allocated name is duplicated"); + + oldname = newname; + newname = nrx; + err = mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_DEAD_NAME, &newname); + ASSERT_RET(err, "mach_port_allocate"); + ASSERT(newname != nrx, "allocated name didn't change"); + ASSERT(newname != oldname, "allocated name is duplicated"); + + err = mach_port_destroy(mach_task_self(), newname); + ASSERT_RET(err, "mach_port_destroy"); + + mach_port_urefs_t urefs; + err = mach_port_get_refs(mach_task_self(), nrx, MACH_PORT_RIGHT_RECEIVE, &urefs); + ASSERT_RET(err, "mach_port_get_refs"); + ASSERT(urefs == 1, "rx port urefs"); + err = mach_port_get_refs(mach_task_self(), nset, MACH_PORT_RIGHT_PORT_SET, &urefs); + ASSERT_RET(err, "mach_port_get_refs"); + ASSERT(urefs == 1, "pset port urefs"); + err = mach_port_get_refs(mach_task_self(), ndead, MACH_PORT_RIGHT_DEAD_NAME, &urefs); + ASSERT_RET(err, "mach_port_get_refs"); + ASSERT(urefs == 1, "dead port urefs"); + + err = mach_port_destroy(mach_task_self(), nrx); + ASSERT_RET(err, "mach_port_destroy rx"); + err = mach_port_destroy(mach_task_self(), nset); + ASSERT_RET(err, "mach_port_destroy pset"); + err = mach_port_deallocate(mach_task_self(), ndead); + ASSERT_RET(err, "mach_port_deallocate dead"); + + // TODO test other rpc +} + +int main(int argc, char *argv[], int envc, char *envp[]) +{ + test_mach_port(); + return 0; +} diff --git a/tests/user-qemu.mk b/tests/user-qemu.mk index 7c5e6927..fe0f9569 100644 --- a/tests/user-qemu.mk +++ b/tests/user-qemu.mk @@ -197,7 +197,8 @@ clean-test-%: USER_TESTS := \ tests/test-hello \ tests/test-mach_host \ - tests/test-gsync + tests/test-gsync \ + tests/test-mach_port USER_TESTS_CLEAN = $(subst tests/,clean-,$(USER_TESTS)) |