blob: f79b90732e2b2d25cbcb7297d15f1186e6639159 [file] [log] [blame]
subrata_modak50003752009-01-16 10:14:35 +00001/******************************************************************************/
2/* */
3/* Copyright (c) Ulrich Drepper <drepper@redhat.com> */
4/* Copyright (c) International Business Machines Corp., 2009 */
5/* */
6/* This program is free software; you can redistribute it and/or modify */
7/* it under the terms of the GNU General Public License as published by */
8/* the Free Software Foundation; either version 2 of the License, or */
9/* (at your option) any later version. */
10/* */
11/* This program is distributed in the hope that it will be useful, */
12/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See */
14/* the GNU General Public License for more details. */
15/* */
16/* You should have received a copy of the GNU General Public License */
17/* along with this program; if not, write to the Free Software */
Wanlong Gao4548c6c2012-10-19 18:03:36 +080018/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
subrata_modak50003752009-01-16 10:14:35 +000019/* */
20/******************************************************************************/
21/******************************************************************************/
22/* */
subrata_modakfc403152009-02-05 10:54:19 +000023/* File: epoll_create1_01.c */
subrata_modak50003752009-01-16 10:14:35 +000024/* */
25/* Description: This Program tests the new system call introduced in 2.6.27. */
26/* Ulrich´s comment as in: */
27/* http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a0998b50c3f0b8fdd265c63e0032f86ebe377dbf */
28/* says: */
subrata_modakfc403152009-02-05 10:54:19 +000029/* This patch adds the new epoll_create1 syscall. It extends the old */
subrata_modak50003752009-01-16 10:14:35 +000030/* epoll_create syscall by one parameter which is meant to hold a flag value. */
31/* In this patch the only flag support is EPOLL_CLOEXEC which causes the */
32/* close-on-exec flag for the returned file descriptor to be set. A new name */
33/* EPOLL_CLOEXEC is introduced which in this implementation must have the same*/
34/* value as O_CLOEXEC. The following test must be adjusted for architectures */
35/* other than x86 and x86-64 and in case the syscall numbers changed. */
36/* */
37/* Usage: <for command-line> */
subrata_modakfc403152009-02-05 10:54:19 +000038/* epoll_create1_01 [-c n] [-e][-i n] [-I x] [-p x] [-t] */
subrata_modak50003752009-01-16 10:14:35 +000039/* where, -c n : Run n copies concurrently. */
40/* -e : Turn on errno logging. */
41/* -i n : Execute test n times. */
42/* -I x : Execute test for x seconds. */
43/* -P x : Pause for x seconds between iterations. */
44/* -t : Turn on syscall timing. */
45/* */
46/* Total Tests: 1 */
47/* */
subrata_modakfc403152009-02-05 10:54:19 +000048/* Test Name: epoll_create1_01 */
subrata_modak50003752009-01-16 10:14:35 +000049/* */
50/* Author: Ulrich Drepper <drepper@redhat.com> */
51/* */
52/* History: Created - Jan 12 2009 - Ulrich Drepper <drepper@redhat.com> */
53/* Ported to LTP */
54/* - Jan 12 2009 - Subrata <subrata@linux.vnet.ibm.com> */
55/******************************************************************************/
56#include <fcntl.h>
57#include <stdio.h>
58#include <time.h>
59#include <unistd.h>
60#include <sys/syscall.h>
subrata_modakc488f902009-02-23 07:17:33 +000061#include <errno.h>
subrata_modak50003752009-01-16 10:14:35 +000062
subrata_modak50003752009-01-16 10:14:35 +000063#include "test.h"
Cyril Hrubis98f87472014-01-08 13:32:41 +010064#include "lapi/fcntl.h"
subrata_modak115006c2009-02-04 06:16:40 +000065#include "linux_syscall_numbers.h"
subrata_modak50003752009-01-16 10:14:35 +000066
subrata_modak50003752009-01-16 10:14:35 +000067#define EPOLL_CLOEXEC O_CLOEXEC
68
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020069char *TCID = "epoll_create1_01";
70int TST_TOTAL = 1;
subrata_modak50003752009-01-16 10:14:35 +000071
72/* Extern Global Functions */
73/******************************************************************************/
74/* */
75/* Function: cleanup */
76/* */
77/* Description: Performs all one time clean up for this test on successful */
78/* completion, premature exit or failure. Closes all temporary */
79/* files, removes all temporary directories exits the test with */
80/* appropriate return code by calling tst_exit() function. */
81/* */
82/* Input: None. */
83/* */
84/* Output: None. */
85/* */
86/* Return: On failure - Exits calling tst_exit(). Non '0' return code. */
87/* On success - Exits calling tst_exit(). With '0' return code. */
88/* */
89/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -040090void cleanup(void)
subrata_modak56207ce2009-03-23 13:35:39 +000091{
Garrett Cooper2c282152010-12-16 00:55:50 -080092
subrata_modak56207ce2009-03-23 13:35:39 +000093 tst_rmdir();
subrata_modak50003752009-01-16 10:14:35 +000094}
95
96/* Local Functions */
97/******************************************************************************/
98/* */
99/* Function: setup */
100/* */
101/* Description: Performs all one time setup for this test. This function is */
102/* typically used to capture signals, create temporary dirs */
103/* and temporary files that may be used in the course of this */
104/* test. */
105/* */
106/* Input: None. */
107/* */
108/* Output: None. */
109/* */
110/* Return: On failure - Exits by calling cleanup(). */
111/* On success - returns 0. */
112/* */
113/******************************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400114void setup(void)
subrata_modak56207ce2009-03-23 13:35:39 +0000115{
116 /* Capture signals if any */
117 /* Create temporary directories */
118 TEST_PAUSE;
119 tst_tmpdir();
subrata_modak50003752009-01-16 10:14:35 +0000120}
121
subrata_modak56207ce2009-03-23 13:35:39 +0000122int main(int argc, char *argv[])
123{
124 int fd, coe;
subrata_modak50003752009-01-16 10:14:35 +0000125
Garrett Cooper8dca4222010-12-18 03:57:35 -0800126 if ((tst_kvercmp(2, 6, 27)) < 0)
Garrett Cooper53740502010-12-16 00:04:01 -0800127 tst_brkm(TCONF, NULL,
Wanlong Gao354ebb42012-12-07 10:10:04 +0800128 "This test can only run on kernels that are 2.6.27 and "
129 "higher");
Garrett Cooper8dca4222010-12-18 03:57:35 -0800130
subrata_modak56207ce2009-03-23 13:35:39 +0000131 setup();
subrata_modak50003752009-01-16 10:14:35 +0000132
Jan Stancek359980f2013-02-15 10:16:05 +0100133 fd = ltp_syscall(__NR_epoll_create1, 0);
Garrett Cooper53740502010-12-16 00:04:01 -0800134 if (fd == -1) {
135 tst_brkm(TFAIL, cleanup, "epoll_create1(0) failed");
subrata_modak56207ce2009-03-23 13:35:39 +0000136 }
Garrett Cooper53740502010-12-16 00:04:01 -0800137 coe = fcntl(fd, F_GETFD);
138 if (coe == -1) {
139 tst_brkm(TBROK, cleanup, "fcntl failed");
140 }
141 if (coe & FD_CLOEXEC) {
142 tst_brkm(TFAIL, cleanup,
Wanlong Gao354ebb42012-12-07 10:10:04 +0800143 "epoll_create1(0) set close-on-exec flag");
Garrett Cooper53740502010-12-16 00:04:01 -0800144 }
145 close(fd);
Jan Stancek359980f2013-02-15 10:16:05 +0100146 fd = ltp_syscall(__NR_epoll_create1, EPOLL_CLOEXEC);
Garrett Cooper53740502010-12-16 00:04:01 -0800147 if (fd == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800148 tst_brkm(TFAIL, cleanup, "epoll_create1(EPOLL_CLOEXEC) failed");
Garrett Cooper53740502010-12-16 00:04:01 -0800149 }
150 coe = fcntl(fd, F_GETFD);
151 if (coe == -1) {
152 tst_brkm(TBROK, cleanup, "fcntl failed");
153 }
154 if ((coe & FD_CLOEXEC) == 0) {
155 tst_brkm(TFAIL, cleanup,
Wanlong Gao354ebb42012-12-07 10:10:04 +0800156 "epoll_create1(EPOLL_CLOEXEC) set close-on-exec flag");
Garrett Cooper53740502010-12-16 00:04:01 -0800157 }
158 close(fd);
159 tst_resm(TPASS, "epoll_create1(EPOLL_CLOEXEC) PASSED");
160
161 cleanup();
subrata_modak56207ce2009-03-23 13:35:39 +0000162 tst_exit();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700163}