1*19c3b8c2SApple OSS Distributions /* $NetBSD: t_utimensat.c,v 1.6 2017/01/10 15:13:56 christos Exp $ */
2*19c3b8c2SApple OSS Distributions
3*19c3b8c2SApple OSS Distributions /*-
4*19c3b8c2SApple OSS Distributions * Copyright (c) 2012 The NetBSD Foundation, Inc.
5*19c3b8c2SApple OSS Distributions * All rights reserved.
6*19c3b8c2SApple OSS Distributions *
7*19c3b8c2SApple OSS Distributions * This code is derived from software contributed to The NetBSD Foundation
8*19c3b8c2SApple OSS Distributions * by Emmanuel Dreyfus.
9*19c3b8c2SApple OSS Distributions *
10*19c3b8c2SApple OSS Distributions * Redistribution and use in source and binary forms, with or without
11*19c3b8c2SApple OSS Distributions * modification, are permitted provided that the following conditions
12*19c3b8c2SApple OSS Distributions * are met:
13*19c3b8c2SApple OSS Distributions * 1. Redistributions of source code must retain the above copyright
14*19c3b8c2SApple OSS Distributions * notice, this list of conditions and the following disclaimer.
15*19c3b8c2SApple OSS Distributions * 2. Redistributions in binary form must reproduce the above copyright
16*19c3b8c2SApple OSS Distributions * notice, this list of conditions and the following disclaimer in the
17*19c3b8c2SApple OSS Distributions * documentation and/or other materials provided with the distribution.
18*19c3b8c2SApple OSS Distributions *
19*19c3b8c2SApple OSS Distributions * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*19c3b8c2SApple OSS Distributions * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*19c3b8c2SApple OSS Distributions * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*19c3b8c2SApple OSS Distributions * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*19c3b8c2SApple OSS Distributions * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*19c3b8c2SApple OSS Distributions * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*19c3b8c2SApple OSS Distributions * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*19c3b8c2SApple OSS Distributions * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*19c3b8c2SApple OSS Distributions * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*19c3b8c2SApple OSS Distributions * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*19c3b8c2SApple OSS Distributions * POSSIBILITY OF SUCH DAMAGE.
30*19c3b8c2SApple OSS Distributions */
31*19c3b8c2SApple OSS Distributions #include <sys/cdefs.h>
32*19c3b8c2SApple OSS Distributions __RCSID("$NetBSD: t_utimensat.c,v 1.6 2017/01/10 15:13:56 christos Exp $");
33*19c3b8c2SApple OSS Distributions
34*19c3b8c2SApple OSS Distributions #include <sys/param.h>
35*19c3b8c2SApple OSS Distributions #include <sys/stat.h>
36*19c3b8c2SApple OSS Distributions #include <sys/time.h>
37*19c3b8c2SApple OSS Distributions #include <errno.h>
38*19c3b8c2SApple OSS Distributions #include <fcntl.h>
39*19c3b8c2SApple OSS Distributions #include <limits.h>
40*19c3b8c2SApple OSS Distributions #include <paths.h>
41*19c3b8c2SApple OSS Distributions #include <stdio.h>
42*19c3b8c2SApple OSS Distributions #include <string.h>
43*19c3b8c2SApple OSS Distributions #include <unistd.h>
44*19c3b8c2SApple OSS Distributions
45*19c3b8c2SApple OSS Distributions #include <darwintest.h>
46*19c3b8c2SApple OSS Distributions #include <darwintest_utils.h>
47*19c3b8c2SApple OSS Distributions
48*19c3b8c2SApple OSS Distributions #define DIRPATH "dir"
49*19c3b8c2SApple OSS Distributions #define FILEPATH "dir/utimensat"
50*19c3b8c2SApple OSS Distributions #define BASEFILE "utimensat"
51*19c3b8c2SApple OSS Distributions #define LINK "dir/symlink"
52*19c3b8c2SApple OSS Distributions #define BASELINK "symlink"
53*19c3b8c2SApple OSS Distributions #define FILEERR "dir/symlink"
54*19c3b8c2SApple OSS Distributions
55*19c3b8c2SApple OSS Distributions static const struct timespec tptr[] = {
56*19c3b8c2SApple OSS Distributions { 0x12345678, 987654321 },
57*19c3b8c2SApple OSS Distributions { 0x15263748, 123456789 },
58*19c3b8c2SApple OSS Distributions };
59*19c3b8c2SApple OSS Distributions
60*19c3b8c2SApple OSS Distributions static void
chtmpdir(void)61*19c3b8c2SApple OSS Distributions chtmpdir(void)
62*19c3b8c2SApple OSS Distributions {
63*19c3b8c2SApple OSS Distributions T_SETUPBEGIN;
64*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(chdir(dt_tmpdir()), NULL);
65*19c3b8c2SApple OSS Distributions
66*19c3b8c2SApple OSS Distributions // <rdar://problem/31780295> dt_tmpdir() should guarantee a clean directory for each run
67*19c3b8c2SApple OSS Distributions unlink(FILEPATH);
68*19c3b8c2SApple OSS Distributions unlink(LINK);
69*19c3b8c2SApple OSS Distributions rmdir(DIRPATH);
70*19c3b8c2SApple OSS Distributions
71*19c3b8c2SApple OSS Distributions // Skip the test if the current working directory is not on APFS.
72*19c3b8c2SApple OSS Distributions struct statfs sfs = { 0 };
73*19c3b8c2SApple OSS Distributions T_QUIET; T_ASSERT_POSIX_SUCCESS(statfs(".", &sfs), NULL);
74*19c3b8c2SApple OSS Distributions if (memcmp(&sfs.f_fstypename[0], "apfs", strlen("apfs")) != 0) {
75*19c3b8c2SApple OSS Distributions T_SKIP("utimensat is APFS-only, but working directory is non-APFS");
76*19c3b8c2SApple OSS Distributions }
77*19c3b8c2SApple OSS Distributions
78*19c3b8c2SApple OSS Distributions T_SETUPEND;
79*19c3b8c2SApple OSS Distributions }
80*19c3b8c2SApple OSS Distributions
81*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fd, "See that utimensat works with fd")
82*19c3b8c2SApple OSS Distributions {
83*19c3b8c2SApple OSS Distributions chtmpdir();
84*19c3b8c2SApple OSS Distributions
85*19c3b8c2SApple OSS Distributions int dfd;
86*19c3b8c2SApple OSS Distributions int fd;
87*19c3b8c2SApple OSS Distributions struct stat st;
88*19c3b8c2SApple OSS Distributions
89*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
90*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((fd = open(FILEPATH, O_CREAT | O_RDWR, 0644)), NULL);
91*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(fd), NULL);
92*19c3b8c2SApple OSS Distributions
93*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((dfd = open(DIRPATH, O_RDONLY, 0)), NULL);
94*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(utimensat(dfd, BASEFILE, tptr, 0), NULL);
95*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(dfd), NULL);
96*19c3b8c2SApple OSS Distributions
97*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(stat(FILEPATH, &st), NULL);
98*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_sec, tptr[0].tv_sec, NULL);
99*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_nsec, tptr[0].tv_nsec, NULL);
100*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_sec, tptr[1].tv_sec, NULL);
101*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_nsec, tptr[1].tv_nsec, NULL);
102*19c3b8c2SApple OSS Distributions }
103*19c3b8c2SApple OSS Distributions
104*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fdcwd, "See that utimensat works with fd as AT_FDCWD")
105*19c3b8c2SApple OSS Distributions {
106*19c3b8c2SApple OSS Distributions chtmpdir();
107*19c3b8c2SApple OSS Distributions
108*19c3b8c2SApple OSS Distributions int fd;
109*19c3b8c2SApple OSS Distributions struct stat st;
110*19c3b8c2SApple OSS Distributions
111*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
112*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((fd = open(FILEPATH, O_CREAT | O_RDWR, 0644)), NULL);
113*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(fd), NULL);
114*19c3b8c2SApple OSS Distributions
115*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(chdir(DIRPATH), NULL);
116*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(utimensat(AT_FDCWD, BASEFILE, tptr, 0), NULL);
117*19c3b8c2SApple OSS Distributions
118*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(stat(BASEFILE, &st), NULL);
119*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_sec, tptr[0].tv_sec, NULL);
120*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_nsec, tptr[0].tv_nsec, NULL);
121*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_sec, tptr[1].tv_sec, NULL);
122*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_nsec, tptr[1].tv_nsec, NULL);
123*19c3b8c2SApple OSS Distributions }
124*19c3b8c2SApple OSS Distributions
125*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fdcwderr, "See that utimensat fails with fd as AT_FDCWD and bad path")
126*19c3b8c2SApple OSS Distributions {
127*19c3b8c2SApple OSS Distributions chtmpdir();
128*19c3b8c2SApple OSS Distributions
129*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
130*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(utimensat(AT_FDCWD, FILEERR, tptr, 0), -1, NULL);
131*19c3b8c2SApple OSS Distributions }
132*19c3b8c2SApple OSS Distributions
133*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fderr1, "See that utimensat fail with bad path")
134*19c3b8c2SApple OSS Distributions {
135*19c3b8c2SApple OSS Distributions chtmpdir();
136*19c3b8c2SApple OSS Distributions
137*19c3b8c2SApple OSS Distributions int dfd;
138*19c3b8c2SApple OSS Distributions
139*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
140*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((dfd = open(DIRPATH, O_RDONLY, 0)), NULL);
141*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(utimensat(dfd, FILEERR, tptr, 0), -1, NULL);
142*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(dfd), NULL);
143*19c3b8c2SApple OSS Distributions }
144*19c3b8c2SApple OSS Distributions
145*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fderr2, "See that utimensat fails with bad fdat")
146*19c3b8c2SApple OSS Distributions {
147*19c3b8c2SApple OSS Distributions chtmpdir();
148*19c3b8c2SApple OSS Distributions
149*19c3b8c2SApple OSS Distributions int dfd;
150*19c3b8c2SApple OSS Distributions int fd;
151*19c3b8c2SApple OSS Distributions char cwd[MAXPATHLEN];
152*19c3b8c2SApple OSS Distributions
153*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
154*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((fd = open(FILEPATH, O_CREAT | O_RDWR, 0644)), NULL);
155*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(fd), NULL);
156*19c3b8c2SApple OSS Distributions
157*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((dfd = open(getcwd(cwd, MAXPATHLEN), O_RDONLY, 0)), NULL);
158*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(utimensat(dfd, BASEFILE, tptr, 0), -1, NULL);
159*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(dfd), NULL);
160*19c3b8c2SApple OSS Distributions }
161*19c3b8c2SApple OSS Distributions
162*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fderr3, "See that utimensat fails with fd as -1")
163*19c3b8c2SApple OSS Distributions {
164*19c3b8c2SApple OSS Distributions chtmpdir();
165*19c3b8c2SApple OSS Distributions
166*19c3b8c2SApple OSS Distributions int fd;
167*19c3b8c2SApple OSS Distributions
168*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
169*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((fd = open(FILEPATH, O_CREAT | O_RDWR, 0644)), NULL);
170*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(fd), NULL);
171*19c3b8c2SApple OSS Distributions
172*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(utimensat(-1, FILEPATH, tptr, 0), -1, NULL);
173*19c3b8c2SApple OSS Distributions }
174*19c3b8c2SApple OSS Distributions
175*19c3b8c2SApple OSS Distributions T_DECL(netbsd_utimensat_fdlink, "See that utimensat works on symlink")
176*19c3b8c2SApple OSS Distributions {
177*19c3b8c2SApple OSS Distributions chtmpdir();
178*19c3b8c2SApple OSS Distributions
179*19c3b8c2SApple OSS Distributions int dfd;
180*19c3b8c2SApple OSS Distributions struct stat st;
181*19c3b8c2SApple OSS Distributions
182*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(mkdir(DIRPATH, 0755), NULL);
183*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(symlink(FILEPATH, LINK), NULL); /* NB: FILE does not exists */
184*19c3b8c2SApple OSS Distributions
185*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_SUCCESS((dfd = open(DIRPATH, O_RDONLY, 0)), NULL);
186*19c3b8c2SApple OSS Distributions
187*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(utimensat(dfd, BASELINK, tptr, 0), -1, NULL);
188*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(errno, ENOENT, NULL);
189*19c3b8c2SApple OSS Distributions
190*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(utimensat(dfd, BASELINK, tptr, AT_SYMLINK_NOFOLLOW), NULL);
191*19c3b8c2SApple OSS Distributions
192*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(close(dfd), NULL);
193*19c3b8c2SApple OSS Distributions
194*19c3b8c2SApple OSS Distributions T_ASSERT_POSIX_ZERO(lstat(LINK, &st), NULL);
195*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_sec, tptr[0].tv_sec, NULL);
196*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_atimespec.tv_nsec, tptr[0].tv_nsec, NULL);
197*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_sec, tptr[1].tv_sec, NULL);
198*19c3b8c2SApple OSS Distributions T_ASSERT_EQ(st.st_mtimespec.tv_nsec, tptr[1].tv_nsec, NULL);
199*19c3b8c2SApple OSS Distributions }
200