-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NODERAWFS: utime, utimensat set wrong atime and mtime (overflow issue?) #16458
Comments
|
The value is off by factor 1000. Node's FS layer accepts times in seconds, not milliseconds, https://nodejs.org/api/fs.html#filehandleutimesatime-mtime This should do the trick:
|
Thanks for the report and for the fix. Would you like to submit at PR? (No worries if there is some reason why can't/don't want to, just curious). |
I have not figured out how to solve the second problem with utimensat. It does not handle the special case |
Fix off by factor 1000: ``FS.utime()`` expects mtime and atime in seconds. ``times == NULL`` is now correctly handled. ``utimes(path, NULL)`` updates atime and mtime to current time. https://nodejs.org/api/fs.html#fsutimespath-atime-mtime-callback Fixes: emscripten-core#16458 Signed-off-by: Christian Heimes <christian@python.org>
Fix off by factor 1000: ``FS.utime()`` expects mtime and atime in seconds. ``times == NULL`` is now correctly handled. ``utimes(path, NULL)`` updates atime and mtime to current time. https://nodejs.org/api/fs.html#fsutimespath-atime-mtime-callback Fixes: #16458 Signed-off-by: Christian Heimes <christian@python.org>
The utimensat function of NODERAWFS sets wrong atime and mtime. The issue looks like an overflow problem to me.
Update 1 It's a factor 1000 issue.
Update 2 The
utimensat
handler is also missing a check fortimes == NULL
. Value0
indicates that the OS should set mtime and atime to current time (NOW).Version of emscripten/emsdk:
Reproducer
Please note the difference between
stat()
call and stat command output. The stat command returns year 2446. The timestamp2147483647
is the beginning of the epochalypse. It appears that Emscripten NODERAWFS is not 2038-safe yet, but that is a different issue.The text was updated successfully, but these errors were encountered: