]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/mach/hurd/utime-helper.c
hurd: Define and pass UTIME_NOW and UTIME_OMIT to new file_utimens RPC
[thirdparty/glibc.git] / sysdeps / mach / hurd / utime-helper.c
CommitLineData
bbe762d1
FC
1/* Helpers for utimes/utimens conversions.
2 Copyright (C) 2015-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19#include <errno.h>
20#include <hurd/hurd_types.h>
21#include <stddef.h>
22#include <sys/time.h>
23
24/* Initializes atime/mtime timespec structures from an array of timeval. */
25static inline void
26utime_ts_from_tval (const struct timeval tvp[2],
27 struct timespec *atime, struct timespec *mtime)
28{
29 if (tvp == NULL)
30 {
31 /* Setting the number of nanoseconds to UTIME_NOW tells the
32 underlying filesystems to use the current time. */
33 atime->tv_sec = 0;
34 atime->tv_nsec = UTIME_NOW;
35 mtime->tv_sec = 0;
36 mtime->tv_nsec = UTIME_NOW;
37 }
38 else
39 {
40 TIMEVAL_TO_TIMESPEC (&tvp[0], atime);
41 TIMEVAL_TO_TIMESPEC (&tvp[1], mtime);
42 }
43}
44
45/* Initializes atime/mtime time_value_t structures from an array of timeval. */
46static inline void
47utime_tvalue_from_tval (const struct timeval tvp[2],
48 time_value_t *atime, time_value_t *mtime)
49{
50 if (tvp == NULL)
51 /* Setting the number of microseconds to `-1' tells the
52 underlying filesystems to use the current time. */
53 atime->microseconds = mtime->microseconds = -1;
54 else
55 {
56 atime->seconds = tvp[0].tv_sec;
57 atime->microseconds = tvp[0].tv_usec;
58 mtime->seconds = tvp[1].tv_sec;
59 mtime->microseconds = tvp[1].tv_usec;
60 }
61}
62
63/* Changes the access time of the file behind PORT using a timeval array. */
64static inline error_t
65hurd_futimens (const file_t port, const struct timeval tvp[2])
66{
67 error_t err;
68 struct timespec atime, mtime;
69
70 utime_ts_from_tval (tvp, &atime, &mtime);
71
72 err = __file_utimens (port, atime, mtime);
73
74 if (err == MIG_BAD_ID || err == EOPNOTSUPP)
75 {
76 time_value_t atim, mtim;
77
78 utime_tvalue_from_tval (tvp, &atim, &mtim);
79
80 err = __file_utimes (port, atim, mtim);
81 }
82
83 return err;
84}