blob: 24e91062f91aade1d13ede0c574598332f799f50 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +00002 * This file is part of utimensat strace test.
3 *
Dmitry V. Levin00777042016-01-06 11:49:27 +00004 * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00005 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
Dmitry V. Levin0c8853c2016-01-02 13:28:43 +000030#include "tests.h"
Dmitry V. Levin00777042016-01-06 11:49:27 +000031#include <assert.h>
32#include <errno.h>
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000033#include <fcntl.h>
Dmitry V. Levin00777042016-01-06 11:49:27 +000034#include <stdint.h>
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000035#include <stdio.h>
36#include <sys/stat.h>
37#include <sys/time.h>
38
39#if defined HAVE_UTIMENSAT \
40 && defined AT_FDCWD && defined AT_SYMLINK_NOFOLLOW \
41 && defined UTIME_NOW && defined UTIME_OMIT
42
43static void
44print_ts(const struct timespec *ts)
45{
46 printf("{%ju, %ju}", (uintmax_t) ts->tv_sec, (uintmax_t) ts->tv_nsec);
47}
48
49int
50main(void)
51{
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +000052 static const char fname[] = "utimensat\nfilename";
53
54 assert(utimensat(AT_FDCWD, fname, NULL, 0) == -1);
55 if (ENOENT != errno)
56 error_msg_and_skip("utimensat");
57
58 #define PREFIX "utimensat(AT_FDCWD, \"utimensat\\nfilename\", "
59 printf(PREFIX "NULL, 0) = -1 ENOENT (%m)\n");
60
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000061 struct timeval tv;
62 struct timespec ts[2];
63
64 if (gettimeofday(&tv, NULL))
Dmitry V. Levin00777042016-01-06 11:49:27 +000065 perror_msg_and_skip("gettimeofday");
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000066
67 ts[0].tv_sec = tv.tv_sec;
68 ts[0].tv_nsec = tv.tv_usec;
69 ts[1].tv_sec = tv.tv_sec - 1;
70 ts[1].tv_nsec = tv.tv_usec + 1;
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000071
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +000072 printf(PREFIX "[");
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000073 print_ts(&ts[0]);
74 printf(", ");
75 print_ts(&ts[1]);
Dmitry V. Levin00777042016-01-06 11:49:27 +000076 printf("], AT_SYMLINK_NOFOLLOW) = -1 ENOENT ");
77
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +000078 assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1);
Dmitry V. Levin00777042016-01-06 11:49:27 +000079 if (ENOENT != errno)
80 error_msg_and_skip("utimensat");
81 printf("(%m)\n");
82
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000083 ts[0].tv_nsec = UTIME_NOW;
84 ts[1].tv_nsec = UTIME_OMIT;
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +000085 assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1);
Dmitry V. Levin00777042016-01-06 11:49:27 +000086 if (ENOENT != errno)
87 error_msg_and_skip("utimensat");
Dmitry V. Levin9ee77b92016-02-08 00:01:57 +000088 printf(PREFIX "[UTIME_NOW, UTIME_OMIT], AT_SYMLINK_NOFOLLOW)"
89 " = -1 ENOENT (%m)\n");
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000090
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000091 puts("+++ exited with 0 +++");
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000092 return 0;
93}
94
95#else
96
Dmitry V. Levin00777042016-01-06 11:49:27 +000097SKIP_MAIN_UNDEFINED("HAVE_UTIMENSAT && AT_FDCWD && AT_SYMLINK_NOFOLLOW"
98 " && UTIME_NOW && UTIME_OMIT")
Dmitry V. Levin78e48eb2015-07-15 15:34:59 +000099
100#endif