Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/tls-maxphys]: src/tests/lib/libc/c063 Add most system calls for POSIX ex...



details:   https://anonhg.NetBSD.org/src/rev/4af77c744afc
branches:  tls-maxphys
changeset: 852962:4af77c744afc
user:      manu <manu%NetBSD.org@localhost>
date:      Sun Nov 18 17:41:55 2012 +0000

description:
Add most system calls for POSIX extended API set, part 2, with test cases:
faccessat(2), fchmodat(2), fchownat(2), fstatat(2), mkdirat(2), mkfifoat(2),
mknodat(2), linkat(2), readlinkat(2), symlinkat(2), renameat(2), unlinkat(2),
utimensat(2), openat(2).

Also implement O_SEARCH for openat(2)

Still missing:
- some flags for openat(2)
- fexecve(2) implementation

diffstat:

 tests/lib/libc/c063/Makefile       |   26 +++
 tests/lib/libc/c063/t_faccessat.c  |  241 ++++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_fchmodat.c   |  253 +++++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_fchownat.c   |  295 +++++++++++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_fexecve.c    |   81 ++++++++++
 tests/lib/libc/c063/t_fstatat.c    |  253 +++++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_linkat.c     |  275 ++++++++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_mkdirat.c    |  154 +++++++++++++++++++
 tests/lib/libc/c063/t_mkfifoat.c   |  158 +++++++++++++++++++
 tests/lib/libc/c063/t_mknodat.c    |  180 ++++++++++++++++++++++
 tests/lib/libc/c063/t_o_search.c   |  226 ++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_openat.c     |  214 ++++++++++++++++++++++++++
 tests/lib/libc/c063/t_readlinkat.c |  197 ++++++++++++++++++++++++
 tests/lib/libc/c063/t_renameat.c   |  189 +++++++++++++++++++++++
 tests/lib/libc/c063/t_symlinkat.c  |  188 +++++++++++++++++++++++
 tests/lib/libc/c063/t_unlinkat.c   |  231 ++++++++++++++++++++++++++++
 tests/lib/libc/c063/t_utimensat.c  |  267 +++++++++++++++++++++++++++++++++
 17 files changed, 3428 insertions(+), 0 deletions(-)

diffs (truncated from 3496 to 300 lines):

diff -r a7fa319af3cd -r 4af77c744afc tests/lib/libc/c063/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/c063/Makefile      Sun Nov 18 17:41:55 2012 +0000
@@ -0,0 +1,26 @@
+# $NetBSD: Makefile,v 1.1.2.2 2012/11/18 17:41:55 manu Exp $
+
+.include <bsd.own.mk>
+
+TESTSDIR=      ${TESTSBASE}/lib/libc/c063
+
+TESTS_C+=      t_faccessat
+TESTS_C+=      t_fchmodat
+TESTS_C+=      t_fchownat
+TESTS_C+=      t_fexecve
+TESTS_C+=      t_fstatat
+TESTS_C+=      t_linkat
+TESTS_C+=      t_mkdirat
+TESTS_C+=      t_mkfifoat
+TESTS_C+=      t_mknodat
+TESTS_C+=      t_o_search
+TESTS_C+=      t_openat
+TESTS_C+=      t_readlinkat
+TESTS_C+=      t_renameat
+TESTS_C+=      t_symlinkat
+TESTS_C+=      t_unlinkat
+TESTS_C+=      t_utimensat
+
+COPTS+= -D_INCOMPLETE_XOPEN_C063
+
+.include <bsd.test.mk>
diff -r a7fa319af3cd -r 4af77c744afc tests/lib/libc/c063/t_faccessat.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/c063/t_faccessat.c Sun Nov 18 17:41:55 2012 +0000
@@ -0,0 +1,241 @@
+/*     $NetBSD: t_faccessat.c,v 1.1.2.2 2012/11/18 17:41:55 manu Exp $ */
+
+/*-
+ * Copyright (c) 2012 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Emmanuel Dreyfus.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+#include <sys/cdefs.h>
+__RCSID("$NetBSD: t_faccessat.c,v 1.1.2.2 2012/11/18 17:41:55 manu Exp $");
+
+#include <atf-c.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <paths.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/param.h>
+
+#define DIR "dir"
+#define FILE "dir/faccessat"
+#define BASEFILE "faccessat"
+#define LINK "dir/symlink"
+#define BASELINK "symlink"
+#define FILEERR "dir/faccessaterr"
+
+ATF_TC_WITH_CLEANUP(faccessat_fd);
+ATF_TC_HEAD(faccessat_fd, tc)
+{
+       atf_tc_set_md_var(tc, "descr", "See that faccessat works with fd");
+}
+
+ATF_TC_BODY(faccessat_fd, tc)
+{
+       int dfd;
+       int fd;
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE((fd = open(FILE, O_CREAT|O_RDWR, 0644)) != -1);
+       ATF_REQUIRE(close(fd) == 0);
+
+       ATF_REQUIRE((dfd = open(DIR, O_RDONLY, 0)) != -1);
+       ATF_REQUIRE(faccessat(dfd, BASEFILE, F_OK, 0) == 0);
+       ATF_REQUIRE(close(dfd) == 0);
+}
+
+ATF_TC_CLEANUP(faccessat_fd, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fdcwd);
+ATF_TC_HEAD(faccessat_fdcwd, tc)
+{
+       atf_tc_set_md_var(tc, "descr", 
+                         "See that faccessat works with fd as AT_FDCWD");
+}
+
+ATF_TC_BODY(faccessat_fdcwd, tc)
+{
+       int fd;
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE((fd = open(FILE, O_CREAT|O_RDWR, 0644)) != -1);
+       ATF_REQUIRE(close(fd) == 0);
+
+       ATF_REQUIRE(chdir(DIR) == 0);
+       ATF_REQUIRE(faccessat(AT_FDCWD, BASEFILE, F_OK, 0) == 0);
+}
+
+ATF_TC_CLEANUP(faccessat_fdcwd, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fdcwderr);
+ATF_TC_HEAD(faccessat_fdcwderr, tc)
+{
+       atf_tc_set_md_var(tc, "descr", 
+                 "See that faccessat fails with fd as AT_FDCWD and bad path");
+}
+
+ATF_TC_BODY(faccessat_fdcwderr, tc)
+{
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE(faccessat(AT_FDCWD, FILEERR, F_OK, 0) == -1);
+}
+
+ATF_TC_CLEANUP(faccessat_fdcwderr, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fderr1);
+ATF_TC_HEAD(faccessat_fderr1, tc)
+{
+       atf_tc_set_md_var(tc, "descr", "See that faccessat fail with bad path");
+}
+
+ATF_TC_BODY(faccessat_fderr1, tc)
+{
+       int dfd;
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE((dfd = open(DIR, O_RDONLY, 0)) != -1);
+       ATF_REQUIRE(faccessat(dfd, FILEERR, F_OK, 0) == -1);
+       ATF_REQUIRE(close(dfd) == 0);
+       
+}
+
+ATF_TC_CLEANUP(faccessat_fderr1, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fderr2);
+ATF_TC_HEAD(faccessat_fderr2, tc)
+{
+       atf_tc_set_md_var(tc, "descr", "See that faccessat fails with bad fdat");
+}
+
+ATF_TC_BODY(faccessat_fderr2, tc)
+{
+       int dfd;
+       int fd;
+       char cwd[MAXPATHLEN];
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE((fd = open(FILE, O_CREAT|O_RDWR, 0644)) != -1);
+       ATF_REQUIRE(close(fd) == 0);
+
+       ATF_REQUIRE((dfd = open(getcwd(cwd, MAXPATHLEN), O_RDONLY, 0)) != -1);
+       ATF_REQUIRE(faccessat(dfd, BASEFILE, F_OK, 0) == -1);
+       ATF_REQUIRE(close(dfd) == 0);
+}
+
+ATF_TC_CLEANUP(faccessat_fderr2, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fderr3);
+ATF_TC_HEAD(faccessat_fderr3, tc)
+{
+       atf_tc_set_md_var(tc, "descr", "See that faccessat fails with fd as -1");
+}
+
+ATF_TC_BODY(faccessat_fderr3, tc)
+{
+       int fd;
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE((fd = open(FILE, O_CREAT|O_RDWR, 0644)) != -1);
+       ATF_REQUIRE(close(fd) == 0);
+
+       ATF_REQUIRE(faccessat(-1, FILE, F_OK, 0) == -1);
+}
+
+ATF_TC_CLEANUP(faccessat_fderr3, tc)
+{
+       (void)unlink(FILE);
+       (void)unlink(FILEERR);
+       (void)rmdir(DIR);
+}
+
+ATF_TC_WITH_CLEANUP(faccessat_fdlink);
+ATF_TC_HEAD(faccessat_fdlink, tc)
+{
+       atf_tc_set_md_var(tc, "descr", "See that faccessat works on symlink");
+}
+
+ATF_TC_BODY(faccessat_fdlink, tc)
+{
+       int dfd;
+
+       ATF_REQUIRE(mkdir(DIR, 0755) == 0);
+       ATF_REQUIRE(symlink(FILE, LINK) == 0); /* NB: FILE does not exists */
+
+       ATF_REQUIRE((dfd = open(DIR, O_RDONLY, 0)) != -1);
+
+       ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, 0) == -1);
+       ATF_REQUIRE(errno == ENOENT);
+
+       ATF_REQUIRE(faccessat(dfd, BASELINK, F_OK, AT_SYMLINK_NOFOLLOW) == 0);
+
+       ATF_REQUIRE(close(dfd) == 0);
+}
+
+ATF_TC_CLEANUP(faccessat_fdlink, tc)
+{
+       (void)unlink(LINK);
+       (void)rmdir(DIR);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+
+       ATF_TP_ADD_TC(tp, faccessat_fd);
+       ATF_TP_ADD_TC(tp, faccessat_fdcwd);
+       ATF_TP_ADD_TC(tp, faccessat_fdcwderr);
+       ATF_TP_ADD_TC(tp, faccessat_fderr1);
+       ATF_TP_ADD_TC(tp, faccessat_fderr2);
+       ATF_TP_ADD_TC(tp, faccessat_fderr3);
+       ATF_TP_ADD_TC(tp, faccessat_fdlink);
+
+       return atf_no_error();
+}
diff -r a7fa319af3cd -r 4af77c744afc tests/lib/libc/c063/t_fchmodat.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/lib/libc/c063/t_fchmodat.c  Sun Nov 18 17:41:55 2012 +0000
@@ -0,0 +1,253 @@
+/*     $NetBSD: t_fchmodat.c,v 1.1.2.2 2012/11/18 17:41:55 manu Exp $ */
+
+/*-
+ * Copyright (c) 2012 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Emmanuel Dreyfus.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR



Home | Main Index | Thread Index | Old Index