/* * Copyright (c) 2008 Vijay Kumar B. * * Based on testcases/kernel/syscalls/waitpid/waitpid01.c * Original copyright message: * * Copyright (c) International Business Machines Corp., 2001 * * 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /* * NAME * move_pages11.c * * DESCRIPTION * Failure when trying move shared pages. * * ALGORITHM * 1. Allocate a shared memory in NUMA node A. * 2. Fork another process. * 3. Use move_pages() to move the pages to NUMA node B, with the * MPOL_MF_MOVE_ALL. * 4. Check if errno is set to EPERM. * * USAGE: * move_pages11 [-c n] [-i n] [-I x] [-P x] [-t] * where, -c n : Run n copies concurrently. * -i n : Execute test n times. * -I x : Execute test for x seconds. * -P x : Pause for x seconds between iterations. * -t : Turn on syscall timing. * * History * 05/2008 Vijay Kumar * Initial Version. * * Restrictions * None */ #include #include #include #include #include #include #include #include "test.h" #include "safe_macros.h" #include "move_pages_support.h" #define TEST_PAGES 2 #define TEST_NODES 2 enum { SEM_CHILD_SETUP, SEM_PARENT_TEST, MAX_SEMS }; void setup(void); void cleanup(void); char *TCID = "move_pages11"; int TST_TOTAL = 1; /* * child() - touches shared pages, and waits for signal from parent. * @pages: shared pages allocated in parent * @sem: semaphore to sync with parent */ void child(void **pages, sem_t * sem) { int i; for (i = 0; i < TEST_PAGES; i++) { char *page; page = pages[i]; page[0] = 0xAA; } /* Setup complete. Ask parent to continue. */ if (sem_post(&sem[SEM_CHILD_SETUP]) == -1) tst_resm(TWARN, "error post semaphore: %s", strerror(errno)); /* Wait for testcase in parent to complete. */ if (sem_wait(&sem[SEM_PARENT_TEST]) == -1) tst_resm(TWARN, "error wait semaphore: %s", strerror(errno)); exit(0); } int main(int argc, char **argv) { tst_parse_opts(argc, argv, NULL, NULL); setup(); #ifdef HAVE_NUMA_V2 unsigned int i; int lc; unsigned int from_node; unsigned int to_node; int ret; ret = get_allowed_nodes(NH_MEMS, 2, &from_node, &to_node); if (ret < 0) tst_brkm(TBROK | TERRNO, cleanup, "get_allowed_nodes: %d", ret); /* check for looping state if -i option is given */ for (lc = 0; TEST_LOOPING(lc); lc++) { void *pages[TEST_PAGES] = { 0 }; int nodes[TEST_PAGES]; int status[TEST_PAGES]; pid_t cpid; sem_t *sem; /* reset tst_count in case we are looping */ tst_count = 0; ret = alloc_shared_pages_on_node(pages, TEST_PAGES, from_node); if (ret == -1) continue; for (i = 0; i < TEST_PAGES; i++) { nodes[i] = to_node; } sem = alloc_sem(MAX_SEMS); if (sem == NULL) { goto err_free_pages; } /* * Fork a child process so that the shared pages are * now really shared between two processes. */ cpid = fork(); if (cpid == -1) { tst_resm(TBROK, "forking child failed: %s", strerror(errno)); goto err_free_sem; } else if (cpid == 0) { child(pages, sem); } /* Wait for child to setup and signal. */ if (sem_wait(&sem[SEM_CHILD_SETUP]) == -1) tst_resm(TWARN, "error wait semaphore: %s", strerror(errno)); ret = numa_move_pages(0, TEST_PAGES, pages, nodes, status, MPOL_MF_MOVE_ALL); if (ret == -1 && errno == EPERM) tst_resm(TPASS, "move_pages failed with " "EPERM as expected"); else tst_resm(TFAIL|TERRNO, "move_pages did not fail " "with EPERM ret: %d", ret); /* Test done. Ask child to terminate. */ if (sem_post(&sem[SEM_PARENT_TEST]) == -1) tst_resm(TWARN, "error post semaphore: %s", strerror(errno)); /* Read the status, no zombies! */ wait(NULL); err_free_sem: free_sem(sem, MAX_SEMS); err_free_pages: free_shared_pages(pages, TEST_PAGES); } #else tst_resm(TCONF, NUMA_ERROR_MSG); #endif cleanup(); tst_exit(); } /* * setup() - performs all ONE TIME setup for this test */ void setup(void) { struct passwd *ltpuser; tst_require_root(); tst_sig(FORK, DEF_HANDLER, cleanup); check_config(TEST_NODES); if ((ltpuser = getpwnam("nobody")) == NULL) { tst_brkm(TBROK, NULL, "'nobody' user not present"); } SAFE_SETEUID(NULL, ltpuser->pw_uid); /* Pause if that option was specified * TEST_PAUSE contains the code to fork the test with the -c option. */ TEST_PAUSE; } /* * cleanup() - performs all ONE TIME cleanup for this test at completion */ void cleanup(void) { }