Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 2 | * This file is part of utimensat strace test. |
| 3 | * |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 4 | * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 5 | * 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. Levin | 0c8853c | 2016-01-02 13:28:43 +0000 | [diff] [blame] | 30 | #include "tests.h" |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 31 | #include <assert.h> |
| 32 | #include <errno.h> |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 33 | #include <fcntl.h> |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 34 | #include <stdint.h> |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 35 | #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 | |
| 43 | static void |
| 44 | print_ts(const struct timespec *ts) |
| 45 | { |
| 46 | printf("{%ju, %ju}", (uintmax_t) ts->tv_sec, (uintmax_t) ts->tv_nsec); |
| 47 | } |
| 48 | |
| 49 | int |
| 50 | main(void) |
| 51 | { |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 52 | 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. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 61 | struct timeval tv; |
| 62 | struct timespec ts[2]; |
| 63 | |
| 64 | if (gettimeofday(&tv, NULL)) |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 65 | perror_msg_and_skip("gettimeofday"); |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 66 | |
| 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. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 71 | |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 72 | printf(PREFIX "["); |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 73 | print_ts(&ts[0]); |
| 74 | printf(", "); |
| 75 | print_ts(&ts[1]); |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 76 | printf("], AT_SYMLINK_NOFOLLOW) = -1 ENOENT "); |
| 77 | |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 78 | assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1); |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 79 | if (ENOENT != errno) |
| 80 | error_msg_and_skip("utimensat"); |
| 81 | printf("(%m)\n"); |
| 82 | |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 83 | ts[0].tv_nsec = UTIME_NOW; |
| 84 | ts[1].tv_nsec = UTIME_OMIT; |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 85 | assert(utimensat(AT_FDCWD, fname, ts, AT_SYMLINK_NOFOLLOW) == -1); |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 86 | if (ENOENT != errno) |
| 87 | error_msg_and_skip("utimensat"); |
Dmitry V. Levin | 9ee77b9 | 2016-02-08 00:01:57 +0000 | [diff] [blame] | 88 | printf(PREFIX "[UTIME_NOW, UTIME_OMIT], AT_SYMLINK_NOFOLLOW)" |
| 89 | " = -1 ENOENT (%m)\n"); |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 90 | |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 91 | puts("+++ exited with 0 +++"); |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 92 | return 0; |
| 93 | } |
| 94 | |
| 95 | #else |
| 96 | |
Dmitry V. Levin | 0077704 | 2016-01-06 11:49:27 +0000 | [diff] [blame] | 97 | SKIP_MAIN_UNDEFINED("HAVE_UTIMENSAT && AT_FDCWD && AT_SYMLINK_NOFOLLOW" |
| 98 | " && UTIME_NOW && UTIME_OMIT") |
Dmitry V. Levin | 78e48eb | 2015-07-15 15:34:59 +0000 | [diff] [blame] | 99 | |
| 100 | #endif |