Skip to content
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

fs.stat returns a size of 0 for /proc/* files #43669

Closed
mleblebici opened this issue Jul 3, 2022 · 8 comments
Closed

fs.stat returns a size of 0 for /proc/* files #43669

mleblebici opened this issue Jul 3, 2022 · 8 comments
Labels
fs Issues and PRs related to the fs subsystem / file system. invalid Issues and PRs that are invalid.

Comments

@mleblebici
Copy link

mleblebici commented Jul 3, 2022

Version

v16.15.1

Platform

Linux ubuntu 5.13.0-48-generic #54~20.04.1-Ubuntu

Subsystem

fs

What steps will reproduce the bug?

You can see the result by simply running the following code.

var fs = require('fs')
 
fs.stat('/proc/meminfo', (error, stats) => {
   console.log(stats)
})

How often does it reproduce? Is there a required condition?

There is no required condition, it always returns the same result.

What is the expected behavior?

It was expected to return actual file size.

What do you see instead?

Instead of actual file size, it shows size as 0.

Additional information

This is valid for files under /proc directory. fs.stat returns size as 0 for /proc/meminfo, /proc/cpuinfo, /proc/version and other files.
Below code from nodejs-procfs with a small modification, is able to return actual file size.

const getSize = path => {
	const fd = openSync(path, 'r', 0o666);
	let pos = 0;
	let bytesRead;
	let buf = tmpBuf;
	let length = buf.length;
	do {
		bytesRead = readSync(fd, buf, pos, buf.length - pos, null);
		pos += bytesRead;
		if (pos === tmpBuf.length) {
			length = length << 1;
			let newBuf = Buffer.allocUnsafeSlow(length);

			if (length <= tmpBufMaxLen) {
				tmpBuf = newBuf;
			}

			buf.copy(newBuf);
			buf = newBuf;
		}
	} while (bytesRead !== 0);
	closeSync(fd);
	return buf.toString('utf8', 0, pos).length;
};
@mscdex
Copy link
Contributor

mscdex commented Jul 3, 2022

Returning zero agrees with the file size reported by the stat command on Linux, so I don't think there is any bug here.

@VoltrexKeyva VoltrexKeyva added the fs Issues and PRs related to the fs subsystem / file system. label Jul 4, 2022
@bnoordhuis
Copy link
Member

That's indeed how /proc files work. Closing as not a bug.

@bnoordhuis bnoordhuis closed this as not planned Won't fix, can't repro, duplicate, stale Jul 4, 2022
@bnoordhuis bnoordhuis added the invalid Issues and PRs that are invalid. label Jul 4, 2022
@dougwilson
Copy link
Member

Hi @mscdex @bnoordhuis thank you very much for your response! Any idea on how to tell the difference between a file like this and a file with an actual zero size? Should the docs at https://nodejs.org/dist/latest-v16.x/docs/api/fs.html#statssize be updated to note that it may return zero though the file actually does have contents? Perhaps including the same note in the Node.js docs that libuv does in http://docs.libuv.org/en/v1.x/fs.html

Note Any fields in the resulting uv_statfs_t that are not supported by the underlying operating system are set to zero.

@mscdex
Copy link
Contributor

mscdex commented Jul 4, 2022

@dougwilson If node exposed an fs API that called uv_fs_statfs(), then you could check the resulting f_type specifically for procfs (that wouldn't give you a "real" size but would let you handle the file differently). Alternatively you could just check if the path to the file starts with '/proc'.

Otherwise you could just try opening the file and start reading it. Obviously in this case if you're sending this as an HTTP request/response you'd need to stream it instead of setting a Content-Length.

@dougwilson
Copy link
Member

Thanks. What about updating the Node.js docs? Does the suggestion I put above make sense? I assume that Node.js has that libuv behavior, but just wanted to confirm before opening a pr to copy that note into the Node.js docs.

@mscdex
Copy link
Contributor

mscdex commented Jul 5, 2022

AFAIK it's not an OS issue, but a filesystem issue. I wouldn't be surprised if the same situation could happen with other filesystem types in various scenarios.

@bnoordhuis
Copy link
Member

I don't mind documenting it. It can double as a warning that stat-then-read is a pretty broken approach to slurping files because the file can change between stat and read.

(Not that I'm pointing any fingers. Node had the same bug at one point.)

@dougwilson
Copy link
Member

Right, for sure. I'm thinking the following note would suffice:

Note: a value of 0 means that the file has a size of 0 or the underlying file system does not support returning the file size.

dougwilson added a commit to dougwilson/node that referenced this issue Jul 5, 2022
dougwilson added a commit to dougwilson/node that referenced this issue Jul 5, 2022
nodejs-github-bot pushed a commit that referenced this issue Jul 5, 2022
Refs: #43669

PR-URL: #43690
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
targos pushed a commit that referenced this issue Jul 12, 2022
Refs: #43669

PR-URL: #43690
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
targos pushed a commit that referenced this issue Jul 20, 2022
Refs: #43669

PR-URL: #43690
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
targos pushed a commit that referenced this issue Jul 31, 2022
Refs: #43669

PR-URL: #43690
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
guangwong pushed a commit to noslate-project/node that referenced this issue Oct 10, 2022
Refs: nodejs/node#43669

PR-URL: nodejs/node#43690
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
fs Issues and PRs related to the fs subsystem / file system. invalid Issues and PRs that are invalid.
Projects
None yet
Development

No branches or pull requests

5 participants