blob: 6be8e1c382f1e3d3b11a4d1ea8fe889d7e32dc0f [file] [log] [blame]
subrata_modakc476f1d2008-10-15 16:46:46 +00001/*
2* Copyright (c) International Business Machines Corp., 2007
3* This program is free software; you can redistribute it and/or modify
4* it under the terms of the GNU General Public License as published by
5* the Free Software Foundation; either version 2 of the License, or
6* (at your option) any later version.
7* This program is distributed in the hope that it will be useful,
8* but WITHOUT ANY WARRANTY; without even the implied warranty of
9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
10* the GNU General Public License for more details.
11* You should have received a copy of the GNU General Public License
12* along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080013* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
subrata_modakc476f1d2008-10-15 16:46:46 +000014*
15***************************************************************************
16
17* File: pidns04.c
18*
19* Description:
20* The pidns04.c testcase builds into the ltp framework to verify
21* the basic functionality of PID Namespace.
22*
23* Verify that:
24* 1. When parent clone a process with flag CLONE_NEWPID, the process ID of
25* child should be one.
26*
27* 2. When parent clone a process with flag CLONE_NEWPID, the parent process ID
28* of should be zero.
29*
subrata_modak4bb656a2009-02-26 12:02:09 +000030* 3. The container init process (one), should not get killed by the SIGKILL in
subrata_modakc476f1d2008-10-15 16:46:46 +000031* the childNS
32*
33* Total Tests:
34*
35* Test Name: pidns04
36*
37* Test Assertion & Strategy:
38*
subrata_modak4bb656a2009-02-26 12:02:09 +000039* From main() clone a new child process with passing the clone_flag as
40* CLONE_NEWPID.
subrata_modakc476f1d2008-10-15 16:46:46 +000041* The container init, should not get killed by the SIGKILL inside the child NS.
42* Usage: <for command-line>
43* pidns04
44*
45* History:
46*
Garrett Cooperad14e902010-12-16 10:03:44 -080047* FLAG DATE NAME DESCRIPTION
subrata_modakc476f1d2008-10-15 16:46:46 +000048* 08/10/08 Veerendra C <vechandr@in.ibm.com> Verifies killing of cont init.
49*
50*******************************************************************************/
51#define _GNU_SOURCE 1
52#include <sys/wait.h>
53#include <assert.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <unistd.h>
57#include <string.h>
58#include <errno.h>
Garrett Coopere8530df2010-12-21 11:37:57 -080059#include "test.h"
yaberauneya7f140ab2009-12-06 20:55:15 +000060#define CLEANUP cleanup
61#include "libclone.h"
Jan Stanceked991ae2014-07-29 10:50:27 +020062#include "pidns_helper.h"
subrata_modakc476f1d2008-10-15 16:46:46 +000063
Garrett Cooperad14e902010-12-16 10:03:44 -080064#define INIT_PID 1
subrata_modakc476f1d2008-10-15 16:46:46 +000065#define CHILD_PID 1
66#define PARENT_PID 0
67
68char *TCID = "pid_namespace4";
Garrett Cooperad14e902010-12-16 10:03:44 -080069int TST_TOTAL = 1;
70int fd[2];
subrata_modakc476f1d2008-10-15 16:46:46 +000071
72/*
73 * child_fn1() - Inside container
74*/
75static int child_fn1(void *ttype)
76{
Garrett Cooperad14e902010-12-16 10:03:44 -080077 int exit_val;
subrata_modakc476f1d2008-10-15 16:46:46 +000078 pid_t cpid, ppid;
79 cpid = getpid();
80 ppid = getppid();
81 char mesg[] = "I was not killed !";
Wanlong Gao354ebb42012-12-07 10:10:04 +080082 /* Child process closes up read side of pipe */
Garrett Cooperad14e902010-12-16 10:03:44 -080083 close(fd[0]);
subrata_modakc476f1d2008-10-15 16:46:46 +000084
85 /* Comparing the values to make sure pidns is created correctly */
Garrett Cooperad14e902010-12-16 10:03:44 -080086 if ((cpid == CHILD_PID) && (ppid == PARENT_PID)) {
87 printf("PIDNS test is running inside container\n");
subrata_modakc476f1d2008-10-15 16:46:46 +000088 kill(INIT_PID, SIGKILL);
89 /* Verifying whether the container init is not killed, "
Wanlong Gao354ebb42012-12-07 10:10:04 +080090 If so writing into the pipe created in the parent NS" */
subrata_modakc476f1d2008-10-15 16:46:46 +000091
Garrett Cooperad14e902010-12-16 10:03:44 -080092 /* Send "mesg" through the write side of pipe */
Wanlong Gao354ebb42012-12-07 10:10:04 +080093 write(fd[1], mesg, (strlen(mesg) + 1));
Garrett Cooperad14e902010-12-16 10:03:44 -080094 exit_val = 0;
Wanlong Gao354ebb42012-12-07 10:10:04 +080095 } else {
Garrett Cooperad14e902010-12-16 10:03:44 -080096 printf("got unexpected result of cpid=%d ppid=%d\n",
Wanlong Gao354ebb42012-12-07 10:10:04 +080097 cpid, ppid);
Garrett Cooperad14e902010-12-16 10:03:44 -080098 exit_val = 1;
subrata_modakc476f1d2008-10-15 16:46:46 +000099 }
Garrett Cooperad14e902010-12-16 10:03:44 -0800100 exit(exit_val);
subrata_modakc476f1d2008-10-15 16:46:46 +0000101}
102
Jan Stanceked991ae2014-07-29 10:50:27 +0200103static void setup(void)
104{
105 tst_require_root(NULL);
106 check_newpid();
107}
108
subrata_modakc476f1d2008-10-15 16:46:46 +0000109int main(int argc, char *argv[])
110{
Garrett Cooperad14e902010-12-16 10:03:44 -0800111 int nbytes, status;
112 char readbuffer[80];
subrata_modakc476f1d2008-10-15 16:46:46 +0000113
Jan Stanceked991ae2014-07-29 10:50:27 +0200114 setup();
115
subrata_modakc476f1d2008-10-15 16:46:46 +0000116 pipe(fd);
Garrett Cooperad14e902010-12-16 10:03:44 -0800117 TEST(do_clone_unshare_test(T_CLONE, CLONE_NEWPID, child_fn1, NULL));
118 if (TEST_RETURN == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800119 tst_brkm(TFAIL | TTERRNO, CLEANUP, "clone failed");
Garrett Cooperad14e902010-12-16 10:03:44 -0800120 } else if (wait(&status) == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800121 tst_brkm(TFAIL | TERRNO, CLEANUP, "wait failed");
subrata_modakc476f1d2008-10-15 16:46:46 +0000122 }
123
124 /* Parent process closes up write side of pipe */
125 close(fd[1]);
126 /* Read in a string from the pipe */
127 nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
128
Garrett Cooperad14e902010-12-16 10:03:44 -0800129 if (0 <= nbytes) {
subrata_modakc476f1d2008-10-15 16:46:46 +0000130 tst_resm(TPASS, "Container init : %s", readbuffer);
Garrett Cooperad14e902010-12-16 10:03:44 -0800131 } else {
132 tst_brkm(TFAIL, CLEANUP,
Wanlong Gao354ebb42012-12-07 10:10:04 +0800133 "Container init is killed by SIGKILL !!!");
subrata_modakc476f1d2008-10-15 16:46:46 +0000134 }
135
Garrett Cooperad14e902010-12-16 10:03:44 -0800136 if (WIFEXITED(status) && WEXITSTATUS(status) != 0) {
137 tst_resm(TFAIL, "Container init pid exited abnormally");
138 } else if (WIFSIGNALED(status)) {
subrata_modakc476f1d2008-10-15 16:46:46 +0000139 tst_resm(TFAIL, "Container init pid got killed by signal %d",
Wanlong Gao354ebb42012-12-07 10:10:04 +0800140 WTERMSIG(status));
subrata_modakc476f1d2008-10-15 16:46:46 +0000141 }
yaberauneya7f140ab2009-12-06 20:55:15 +0000142 CLEANUP();
subrata_modakc476f1d2008-10-15 16:46:46 +0000143
yaberauneya7f140ab2009-12-06 20:55:15 +0000144 tst_exit();
subrata_modakc476f1d2008-10-15 16:46:46 +0000145
Garrett Cooper2c282152010-12-16 00:55:50 -0800146}
subrata_modakc476f1d2008-10-15 16:46:46 +0000147
Wanlong Gao354ebb42012-12-07 10:10:04 +0800148static void cleanup(void)
subrata_modakc476f1d2008-10-15 16:46:46 +0000149{
Garrett Cooperad14e902010-12-16 10:03:44 -0800150 close(fd[0]);
Chris Dearmanec6edca2012-10-17 19:54:01 -0700151}