* [PATCH] xfs_io: implement 'utimes' command
@ 2016-12-18 1:57 Deepa Dinamani
2016-12-18 2:40 ` Eric Sandeen
0 siblings, 1 reply; 4+ messages in thread
From: Deepa Dinamani @ 2016-12-18 1:57 UTC (permalink / raw)
To: linux-xfs; +Cc: arnd, y2038
Add the utimes command to provide a way to utilize
the futimens C library call. This is the
interface to the utimensat system call, which updates
the mtime and atime of a file.
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
---
include/input.h | 1 +
io/Makefile | 2 +-
io/init.c | 1 +
io/io.h | 1 +
io/utimes.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
libxcmd/input.c | 22 +++++++++++++++
man/man8/xfs_io.8 | 12 ++++++++
7 files changed, 122 insertions(+), 1 deletion(-)
create mode 100644 io/utimes.c
diff --git a/include/input.h b/include/input.h
index d02170f..221678e 100644
--- a/include/input.h
+++ b/include/input.h
@@ -48,6 +48,7 @@ extern uid_t uid_from_string(char *user);
extern gid_t gid_from_string(char *group);
extern prid_t prid_from_string(char *project);
extern bool isdigits_only(const char *str);
+extern int timespec_from_string(const char *sec, const char *nsec, struct timespec *ts);
#define HAVE_FTW_H 1 /* TODO: configure me */
diff --git a/io/Makefile b/io/Makefile
index 62bc03b..392e02a 100644
--- a/io/Makefile
+++ b/io/Makefile
@@ -11,7 +11,7 @@ HFILES = init.h io.h
CFILES = init.c \
attr.c bmap.c file.c freeze.c fsync.c getrusage.c imap.c link.c \
mmap.c open.c parent.c pread.c prealloc.c pwrite.c seek.c shutdown.c \
- sync.c truncate.c reflink.c
+ sync.c truncate.c reflink.c utimes.c
LLDLIBS = $(LIBXCMD) $(LIBHANDLE)
LTDEPENDENCIES = $(LIBXCMD) $(LIBHANDLE)
diff --git a/io/init.c b/io/init.c
index efe7390..6319aeb 100644
--- a/io/init.c
+++ b/io/init.c
@@ -85,6 +85,7 @@ init_commands(void)
sync_range_init();
truncate_init();
reflink_init();
+ utimes_init();
}
static int
diff --git a/io/io.h b/io/io.h
index 2bc7ac4..fddd7a3 100644
--- a/io/io.h
+++ b/io/io.h
@@ -113,6 +113,7 @@ extern void seek_init(void);
extern void shutdown_init(void);
extern void sync_init(void);
extern void truncate_init(void);
+extern void utimes_init(void);
#ifdef HAVE_FADVISE
extern void fadvise_init(void);
diff --git a/io/utimes.c b/io/utimes.c
new file mode 100644
index 0000000..1465762
--- /dev/null
+++ b/io/utimes.c
@@ -0,0 +1,84 @@
+/*
+ * Copyright (c) 2016 Deepa Dinamani
+ * All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it would be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "command.h"
+#include "input.h"
+#include "init.h"
+#include "io.h"
+
+static cmdinfo_t utimes_cmd;
+
+static void
+utimes_help(void)
+{
+ printf(_(
+"\n"
+" Update file atime and mtime of the current file with nansecond precision.\n"
+"\n"
+" Usage: utimes atime_sec atime_nsec mtime_sec mtime_nsec.\n"
+" *_sec: Seconds elapsed since 1970-01-01 00:00:00 UTC.\n"
+" *_nsec: Nanoseconds since the corresponding *_sec.\n"
+"\n"));
+}
+
+static int
+utimes_f(
+ int argc,
+ char **argv)
+{
+ struct timespec t[2];
+ int result;
+
+ if (argc != 5)
+ return command_usage(&utimes_cmd);
+
+ /* Get the timestamps */
+ result = timespec_from_string(argv[1], argv[2], &t[0]);
+ if (result) {
+ fprintf(stderr, "Bad value for atime\n");
+ return 1;
+ }
+ result = timespec_from_string(argv[3], argv[4], &t[1]);
+ if (result) {
+ fprintf(stderr, "Bad value for mtime\n");
+ return 1;
+ }
+
+ /* Call futimens to update time. */
+ if (futimens(file->fd, t)) {
+ perror("futimens");
+ return 1;
+ }
+
+ return 0;
+}
+
+void
+utimes_init(void)
+{
+ utimes_cmd.name = "utimes";
+ utimes_cmd.cfunc = utimes_f;
+ utimes_cmd.argmin = 4;
+ utimes_cmd.argmax = 4;
+ utimes_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
+ utimes_cmd.args = _("atime_sec atime_nsec mtime_sec mtime_nsec");
+ utimes_cmd.oneline = _("Update file times of the current file");
+ utimes_cmd.help = utimes_help;
+
+ add_command(&utimes_cmd);
+}
diff --git a/libxcmd/input.c b/libxcmd/input.c
index 5a7dce3..2fdb3e8 100644
--- a/libxcmd/input.c
+++ b/libxcmd/input.c
@@ -327,6 +327,28 @@ timestr(
}
/*
+ * Convert from a pair of arbitrary user strings into a timespec.
+ */
+
+int
+timespec_from_string(
+ const char * secs,
+ const char * nsecs,
+ struct timespec * ts)
+{
+ char* p;
+ if (!secs || !nsecs || !ts)
+ return -1;
+ ts->tv_sec = strtoull(secs, &p, 0);
+ if (*p)
+ return -1;
+ ts->tv_nsec = strtoull(nsecs, &p, 0);
+ if (*p)
+ return -1;
+ return 0;
+}
+
+/*
* Convert from arbitrary user strings into a numeric ID.
* If it's all numeric, we convert that inplace, else we do
* the name lookup, and return the found identifier.
diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
index 2c56f09..3ffe439 100644
--- a/man/man8/xfs_io.8
+++ b/man/man8/xfs_io.8
@@ -589,6 +589,17 @@ Copy data into the open file beginning at
Copy up to
.I length
bytes of data.
+.RE
+.PD
+.TP
+.TP
+.BI utimes " atime_sec atime_nsec mtime_sec mtime_nsec"
+The utimes command changes the atime and mtime of the current file.
+sec uses UNIX timestamp notation and is the seconds elapsed since
+1970-01-01 00:00:00 UTC.
+nsec is the nanoseconds since the sec. This value needs to be in
+the range 0-999999999 with UTIME_NOW and UTIME_OMIT being exceptions.
+Each (sec, nsec) pair constitutes a single timestamp value.
.SH MEMORY MAPPED I/O COMMANDS
.TP
@@ -875,6 +886,7 @@ verbose output will be printed.
.BR fstatfs (2),
.BR fsync (2),
.BR ftruncate (2),
+.BR futimens (3),
.BR mmap (2),
.BR msync (2),
.BR open (2),
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] xfs_io: implement 'utimes' command
2016-12-18 1:57 [PATCH] xfs_io: implement 'utimes' command Deepa Dinamani
@ 2016-12-18 2:40 ` Eric Sandeen
2016-12-18 2:52 ` Eric Sandeen
2016-12-18 19:37 ` Deepa Dinamani
0 siblings, 2 replies; 4+ messages in thread
From: Eric Sandeen @ 2016-12-18 2:40 UTC (permalink / raw)
To: Deepa Dinamani, linux-xfs; +Cc: arnd, y2038
On 12/17/16 7:57 PM, Deepa Dinamani wrote:
> Add the utimes command to provide a way to utilize
> the futimens C library call. This is the
> interface to the utimensat system call, which updates
> the mtime and atime of a file.
>
> Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
...
> +static int
> +utimes_f(
> + int argc,
> + char **argv)
> +{
> + struct timespec t[2];
> + int result;
> +
> + if (argc != 5)
> + return command_usage(&utimes_cmd);
Because you set argsmin & argsmax to 4, it should be impossible
to get here with anything other than argc=5 - it's caught
elsewhere:
xfs_io> utimes
bad argument count 0 to utimes, expected 4 arguments
xfs_io> utimes 1 2 3 4 5
bad argument count 5 to utimes, expected 4 arguments
> +
> + /* Get the timestamps */
> + result = timespec_from_string(argv[1], argv[2], &t[0]);
> + if (result) {
> + fprintf(stderr, "Bad value for atime\n");
> + return 1;
> + }
> + result = timespec_from_string(argv[3], argv[4], &t[1]);
> + if (result) {
> + fprintf(stderr, "Bad value for mtime\n");
> + return 1;
> + }
> +
> + /* Call futimens to update time. */
> + if (futimens(file->fd, t)) {
> + perror("futimens");
> + return 1;
> + }
Most xfs_io functions return 0 even on errors, possibly after
setting exit_code = 1 to change the ultimate exit code;
returning 1 will cause all processing to stop, and/or kick you
out of the interactive shell:
$ xfs_io file
xfs_io> utimes a b c d
Bad value for atime
$
This needs some attention across all of xfs_io, but you might want
to return 0 for now for consistency with other commands.
-Eric
> +
> + return 0;
> +}
> +
> +void
> +utimes_init(void)
> +{
> + utimes_cmd.name = "utimes";
> + utimes_cmd.cfunc = utimes_f;
> + utimes_cmd.argmin = 4;
> + utimes_cmd.argmax = 4;
> + utimes_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
> + utimes_cmd.args = _("atime_sec atime_nsec mtime_sec mtime_nsec");
> + utimes_cmd.oneline = _("Update file times of the current file");
> + utimes_cmd.help = utimes_help;
> +
> + add_command(&utimes_cmd);
> +}
> diff --git a/libxcmd/input.c b/libxcmd/input.c
> index 5a7dce3..2fdb3e8 100644
> --- a/libxcmd/input.c
> +++ b/libxcmd/input.c
> @@ -327,6 +327,28 @@ timestr(
> }
>
> /*
> + * Convert from a pair of arbitrary user strings into a timespec.
> + */
> +
> +int
> +timespec_from_string(
> + const char * secs,
> + const char * nsecs,
> + struct timespec * ts)
> +{
> + char* p;
> + if (!secs || !nsecs || !ts)
> + return -1;
> + ts->tv_sec = strtoull(secs, &p, 0);
> + if (*p)
> + return -1;
> + ts->tv_nsec = strtoull(nsecs, &p, 0);
> + if (*p)
> + return -1;
> + return 0;
I'd return 1/0 not -1/0 - not that big a deal, but the reason
the i.e. prid_from_string() functions return -1 on error
is because they actually return an ID, which is >= 0, so
it detects "== -1" as an error, and can't simply test
1/0.
> +}
> +
> +/*
> * Convert from arbitrary user strings into a numeric ID.
> * If it's all numeric, we convert that inplace, else we do
> * the name lookup, and return the found identifier.
> diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
> index 2c56f09..3ffe439 100644
> --- a/man/man8/xfs_io.8
> +++ b/man/man8/xfs_io.8
> @@ -589,6 +589,17 @@ Copy data into the open file beginning at
> Copy up to
> .I length
> bytes of data.
> +.RE
> +.PD
> +.TP
> +.TP
don't need two .TPs, a patch to remove the others is pending.
thanks,
-Eric
> +.BI utimes " atime_sec atime_nsec mtime_sec mtime_nsec"
> +The utimes command changes the atime and mtime of the current file.
> +sec uses UNIX timestamp notation and is the seconds elapsed since
> +1970-01-01 00:00:00 UTC.
> +nsec is the nanoseconds since the sec. This value needs to be in
> +the range 0-999999999 with UTIME_NOW and UTIME_OMIT being exceptions.
> +Each (sec, nsec) pair constitutes a single timestamp value.
>
> .SH MEMORY MAPPED I/O COMMANDS
> .TP
> @@ -875,6 +886,7 @@ verbose output will be printed.
> .BR fstatfs (2),
> .BR fsync (2),
> .BR ftruncate (2),
> +.BR futimens (3),
> .BR mmap (2),
> .BR msync (2),
> .BR open (2),
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] xfs_io: implement 'utimes' command
2016-12-18 2:40 ` Eric Sandeen
@ 2016-12-18 2:52 ` Eric Sandeen
2016-12-18 19:37 ` Deepa Dinamani
1 sibling, 0 replies; 4+ messages in thread
From: Eric Sandeen @ 2016-12-18 2:52 UTC (permalink / raw)
To: Deepa Dinamani, linux-xfs; +Cc: arnd, y2038
On 12/17/16 8:40 PM, Eric Sandeen wrote:
> This needs some attention across all of xfs_io, but you might want
> to return 0 for now for consistency with other commands.
>
> -Eric
sorry, signed off too early, there were more comments below :)
>> +
>> + return 0;
>> +}
>> +
>> +void
>> +utimes_init(void)
>> +{
>> + utimes_cmd.name = "utimes";
>> + utimes_cmd.cfunc = utimes_f;
>> + utimes_cmd.argmin = 4;
>> + utimes_cmd.argmax = 4;
>> + utimes_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
>> + utimes_cmd.args = _("atime_sec atime_nsec mtime_sec mtime_nsec");
>> + utimes_cmd.oneline = _("Update file times of the current file");
>> + utimes_cmd.help = utimes_help;
>> +
>> + add_command(&utimes_cmd);
>> +}
>> diff --git a/libxcmd/input.c b/libxcmd/input.c
>> index 5a7dce3..2fdb3e8 100644
>> --- a/libxcmd/input.c
>> +++ b/libxcmd/input.c
>> @@ -327,6 +327,28 @@ timestr(
>> }
>>
>> /*
>> + * Convert from a pair of arbitrary user strings into a timespec.
>> + */
>> +
>> +int
>> +timespec_from_string(
>> + const char * secs,
>> + const char * nsecs,
>> + struct timespec * ts)
>> +{
>> + char* p;
>> + if (!secs || !nsecs || !ts)
>> + return -1;
>> + ts->tv_sec = strtoull(secs, &p, 0);
>> + if (*p)
>> + return -1;
>> + ts->tv_nsec = strtoull(nsecs, &p, 0);
>> + if (*p)
>> + return -1;
>> + return 0;
> I'd return 1/0 not -1/0 - not that big a deal, but the reason
> the i.e. prid_from_string() functions return -1 on error
> is because they actually return an ID, which is >= 0, so
> it detects "== -1" as an error, and can't simply test
> 1/0.
>
>
>> +}
>> +
>> +/*
>> * Convert from arbitrary user strings into a numeric ID.
>> * If it's all numeric, we convert that inplace, else we do
>> * the name lookup, and return the found identifier.
>> diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
>> index 2c56f09..3ffe439 100644
>> --- a/man/man8/xfs_io.8
>> +++ b/man/man8/xfs_io.8
>> @@ -589,6 +589,17 @@ Copy data into the open file beginning at
>> Copy up to
>> .I length
>> bytes of data.
>> +.RE
>> +.PD
>> +.TP
>> +.TP
> don't need two .TPs, a patch to remove the others is pending.
>
> thanks,
> -Eric
>
>> +.BI utimes " atime_sec atime_nsec mtime_sec mtime_nsec"
>> +The utimes command changes the atime and mtime of the current file.
>> +sec uses UNIX timestamp notation and is the seconds elapsed since
>> +1970-01-01 00:00:00 UTC.
>> +nsec is the nanoseconds since the sec. This value needs to be in
>> +the range 0-999999999 with UTIME_NOW and UTIME_OMIT being exceptions.
>> +Each (sec, nsec) pair constitutes a single timestamp value.
>>
>> .SH MEMORY MAPPED I/O COMMANDS
>> .TP
>> @@ -875,6 +886,7 @@ verbose output will be printed.
>> .BR fstatfs (2),
>> .BR fsync (2),
>> .BR ftruncate (2),
>> +.BR futimens (3),
>> .BR mmap (2),
>> .BR msync (2),
>> .BR open (2),
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] xfs_io: implement 'utimes' command
2016-12-18 2:40 ` Eric Sandeen
2016-12-18 2:52 ` Eric Sandeen
@ 2016-12-18 19:37 ` Deepa Dinamani
1 sibling, 0 replies; 4+ messages in thread
From: Deepa Dinamani @ 2016-12-18 19:37 UTC (permalink / raw)
To: Eric Sandeen; +Cc: linux-xfs, Arnd Bergmann, y2038 Mailman List
>> + if (argc != 5)
>> + return command_usage(&utimes_cmd);
>
> Because you set argsmin & argsmax to 4, it should be impossible
> to get here with anything other than argc=5 - it's caught
> elsewhere:
Yes, you are right. This was something I was using to debug.
I will remove this. Thanks.
>> + /* Get the timestamps */
>> + result = timespec_from_string(argv[1], argv[2], &t[0]);
>> + if (result) {
>> + fprintf(stderr, "Bad value for atime\n");
>> + return 1;
>> + }
>> + result = timespec_from_string(argv[3], argv[4], &t[1]);
>> + if (result) {
>> + fprintf(stderr, "Bad value for mtime\n");
>> + return 1;
>> + }
>> +
>> + /* Call futimens to update time. */
>> + if (futimens(file->fd, t)) {
>> + perror("futimens");
>> + return 1;
>> + }
>
> Most xfs_io functions return 0 even on errors, possibly after
> setting exit_code = 1 to change the ultimate exit code;
> returning 1 will cause all processing to stop, and/or kick you
> out of the interactive shell:
>
> $ xfs_io file
> xfs_io> utimes a b c d
> Bad value for atime
> $
>
> This needs some attention across all of xfs_io, but you might want
> to return 0 for now for consistency with other commands.
Will change to return 0 always. Thanks.
>> /*
>> + * Convert from a pair of arbitrary user strings into a timespec.
>> + */
>> +
>> +int
>> +timespec_from_string(
>> + const char * secs,
>> + const char * nsecs,
>> + struct timespec * ts)
>> +{
>> + char* p;
>> + if (!secs || !nsecs || !ts)
>> + return -1;
>> + ts->tv_sec = strtoull(secs, &p, 0);
>> + if (*p)
>> + return -1;
>> + ts->tv_nsec = strtoull(nsecs, &p, 0);
>> + if (*p)
>> + return -1;
>> + return 0;
>
> I'd return 1/0 not -1/0 - not that big a deal, but the reason
> the i.e. prid_from_string() functions return -1 on error
> is because they actually return an ID, which is >= 0, so
> it detects "== -1" as an error, and can't simply test
> 1/0.
Ok. Will change this to return 1/0.
>> diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
>> index 2c56f09..3ffe439 100644
>> --- a/man/man8/xfs_io.8
>> +++ b/man/man8/xfs_io.8
>> @@ -589,6 +589,17 @@ Copy data into the open file beginning at
>> Copy up to
>> .I length
>> bytes of data.
>> +.RE
>> +.PD
>> +.TP
>> +.TP
>
> don't need two .TPs, a patch to remove the others is pending.
Ok, will remove it.
I will wait for a couple of days to see if there are any more comments
before submitting a v2.
-Deepa
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-12-18 19:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-18 1:57 [PATCH] xfs_io: implement 'utimes' command Deepa Dinamani
2016-12-18 2:40 ` Eric Sandeen
2016-12-18 2:52 ` Eric Sandeen
2016-12-18 19:37 ` Deepa Dinamani
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.