LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-14-2012, 02:30 PM   #1
svenxix
LQ Newbie
 
Registered: Feb 2012
Distribution: Debian, Fedora
Posts: 24

Rep: Reputation: 0
How does ls calculate file size


The ls command can display the file size with the -s or -l switches. Where does it read this information from?

I know the du command recalculates file size by reading the file directly. Does the ls command do this or does it read the file size from the inode?
 
Old 09-14-2012, 02:55 PM   #2
tronayne
Senior Member
 
Registered: Oct 2003
Location: Northeastern Michigan, where Carhartt is a Designer Label
Distribution: Slackware 32- & 64-bit Stable
Posts: 3,541

Rep: Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065
I'm 99-44/100% sure it uses stat(); see man 2 stat.

Hope this helps some.
 
Old 09-14-2012, 08:42 PM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
I get the feeling ls only reads the i-node or file allocation table and does not compute sizes. I could be way wrong on that.

Last edited by jefro; 09-14-2012 at 08:43 PM.
 
Old 09-14-2012, 09:36 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,126

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
strace might be instructive - especially a comparison of "ls" versus "ls -l".
 
2 members found this post helpful.
Old 09-15-2012, 08:04 AM   #5
tronayne
Senior Member
 
Registered: Oct 2003
Location: Northeastern Michigan, where Carhartt is a Designer Label
Distribution: Slackware 32- & 64-bit Stable
Posts: 3,541

Rep: Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065Reputation: 1065
The stat, fstat and lstat library functions all return information about a file, including the total size in bytes (see the structure definition below); no calculation need take place.

man 2 stat displays the details along with the structure definition:
Quote:
struct stat {
dev_t st_dev; /* ID of device containing file */
ino_t st_ino; /* inode number */
mode_t st_mode; /* protection */
nlink_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of owner */
gid_t st_gid; /* group ID of owner */
dev_t st_rdev; /* device ID (if special file) */
off_t st_size; /* total size, in bytes */
blksize_t st_blksize; /* blocksize for file system I/O */
blkcnt_t st_blocks; /* number of 512B blocks allocated */
time_t st_atime; /* time of last access */
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
The stat library functions are used extensively by many utilities, among others the stat utility (display file or file system status), cp (copy files) and ls (I'm pretty sure).

Below is a demonstration version, status.c, that can be used to display all the information about one file contained in the stat structure, thus it's not terribly useful for general purposes:
Code:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <grp.h>
#include <pwd.h>
#include <time.h>

main	(int argc, char *argv[])
{
	time_t	now;
	struct	group	*grentry, *getgrgid (gid_t);
	struct	passwd	*pwentry, *getpwuid (uid_t);
	struct	stat	status;
	struct	tm	*tstr, *localtime (const time_t *);

	if (argc != 2) {
		(void) fprintf (stderr, "usage:\t%s file\n", argv [0]);
		return (1);
	}
	/*	get stat structure for specified file	*/
	if (stat (argv [1], &status) == -1) {
		(void) fprintf (stderr, "%s:\tcan't stat %s\n",
		    argv [0], argv [1]);
		return (2);
	}
	/*	display the type of file	*/
	if (status.st_mode & S_IFREG)
		(void) fprintf (stdout, "Regular File:\t");
	else if (status.st_mode & S_IFDIR)
		(void) fprintf (stdout, "Directory:\t");
	else if (status.st_mode & S_IFIFO)
		(void) fprintf (stdout, "FIFO Special File:\t");
	else if (status.st_mode & S_IFCHR)
		(void) fprintf (stdout, "Character Special File:\t");
	else if (status.st_mode & S_IFBLK)
		(void) fprintf (stdout, "Block Special File:\t");
	else if (status.st_mode & S_IFLNK)
		(void) fprintf (stdout, "Symbolic Link:\t");
	else
		(void) fprintf (stdout, "Unknown File:\t");
	(void) fprintf (stdout, "%s\n", argv [1]);
	(void) fprintf (stdout, "Inode:\t\t%d\n", (int) status.st_ino);
	(void) fprintf (stdout, "Mode:\t\t%d\n", (int) status.st_mode);
	(void) fprintf (stdout, "Device:\t\t%d\n", (int) status.st_dev);
	(void) fprintf (stdout, "Blocksize:\t%d\n", (int) status.st_blksize);
	(void) fprintf (stdout, "Links:\t\t%d\n", (int) status.st_nlink);
	(void) fprintf (stdout, "Owner (%d):\t", (int) status.st_uid);
	/*	look up owner in /etc/passwd	*/
	if ((pwentry = getpwuid (status.st_uid)) == (struct passwd *) NULL) {
		(void) fprintf (stdout, "not found\n");
	} else {
		(void) fprintf (stdout, "%s\n", pwentry->pw_name);
	}
	/*	look up group name in /etc/group	*/
	(void) fprintf (stdout, "Group (%d):\t", (int) status.st_gid);
	if ((grentry = getgrgid (status.st_gid)) == (struct group *) NULL) {
		(void) fprintf (stdout, "no found\n");
	} else {
		(void) fprintf (stdout, "%s\n", grentry->gr_name);
	}
	(void) fprintf (stdout, "Size:\t\t%d\n", (int) status.st_size);
	now = status.st_atime;
	tstr = localtime (&now);
	(void) fprintf (stdout, "atime:\t\t%02d:%02d:%02d %02d/%02d/%02d\t",
	    tstr->tm_hour, tstr->tm_min, tstr->tm_sec,
	    tstr->tm_mon+1, tstr->tm_mday, tstr->tm_year);
	(void) fprintf (stdout, "(Last Access)\n");
	now = status.st_ctime;
	tstr = localtime (&now);
	(void) fprintf (stdout, "ctime:\t\t%02d:%02d:%02d %02d/%02d/%02d\t",
	    tstr->tm_hour, tstr->tm_min, tstr->tm_sec,
	    tstr->tm_mon+1, tstr->tm_mday, tstr->tm_year);
	(void) fprintf (stdout, "(Last Data Modification)\n");
	now = status.st_mtime;
	tstr = localtime (&now);
	(void) fprintf (stdout, "mtime:\t\t%02d:%02d:%02d %02d/%02d/%02d\t",
	    tstr->tm_hour, tstr->tm_min, tstr->tm_sec,
	    tstr->tm_mon+1, tstr->tm_mday, tstr->tm_year);
	(void) fprintf (stdout, "(Last File Status Change)\n");
	return (0);
}
If you save the above as, say, status.c, you can
Code:
make status
or
cc -o status status.c
Usage is
Code:
status file.name
or
for FILE in *
do
     status ${FILE}
done
It's just a demo, not a full-blown utility.

Hope this helps some.
 
Old 09-15-2012, 09:36 AM   #6
SecretCode
Member
 
Registered: Apr 2011
Location: UK
Distribution: Kubuntu 11.10
Posts: 562

Rep: Reputation: 102Reputation: 102
Quote:
Originally Posted by svenxix View Post
I know the du command recalculates file size by reading the file directly. Does the ls command do this or does it read the file size from the inode?
Where did you read this? And what does it mean? The file itself is just a stream. If the inode is "wrong" about the file size, there's nothing in the file that gives any better information.

(I'm including the inode pointer blocks in what I mean by the inode, even though some of them can be indirect. They're still part of the metadata not part of the file.)

((OK now I think I know what you mean. If the file is sparse (or in some other cases) it may use less disk space - fewer physical disk blocks - than its apparent size. The space used, as reported by du (and the Blocks: part of stat), is the combined size of all the disk blocks it uses ... but this is still recorded in the inode and indirect metadata, not in the "file itself". ls and the Size: part of stat report the actual or apparent size read from a single field in the inode. For most files, this will be a bit smaller than the space used, if the last disk block is not full. But either way these are different meanings, one is not more accurate than the other.))

Last edited by SecretCode; 09-15-2012 at 09:48 AM. Reason: fallocate doesn't do what I thought. stat does both.
 
Old 09-15-2012, 09:50 AM   #7
SecretCode
Member
 
Registered: Apr 2011
Location: UK
Distribution: Kubuntu 11.10
Posts: 562

Rep: Reputation: 102Reputation: 102
For a pathological case, try
Code:
dd of=takes-no-space bs=1 count=0 seek=100G
Then
Code:
ls -1h takes-no-space
du takes-no-space
stat takes-no-space
ls says it's 100GB in size; du says it takes no space; stat says both are correct.
 
1 members found this post helpful.
Old 09-15-2012, 12:16 PM   #8
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
The file actually is taking that space on the drive. That space is reserved and can't be used so I guess we get to the question of what is the size. Size on disk or actual size of file.
 
Old 09-15-2012, 12:33 PM   #9
SecretCode
Member
 
Registered: Apr 2011
Location: UK
Distribution: Kubuntu 11.10
Posts: 562

Rep: Reputation: 102Reputation: 102
@jefro: if you're replying to me, no it isn't! It's not taking any space; no disk blocks are reserved.
 
Old 09-15-2012, 12:38 PM   #10
SecretCode
Member
 
Registered: Apr 2011
Location: UK
Distribution: Kubuntu 11.10
Posts: 562

Rep: Reputation: 102Reputation: 102
10 terabytes works too. I promise i don't have that much disk.

Code:
$ dd of=takes-no-space bs=1 count=0 seek=10T
0+0 records in
0+0 records out
0 bytes (0 B) copied, 1.776e-05 s, 0.0 kB/s
[joe@sourdust: ~/tests] Sat Sep 15 18:36:48
$ ls -lh takes-no-space 
-rw-rw-r-- 1 joe joe 10T 2012-09-15 18:36 takes-no-space
When I try 16T I get an error,
Code:
dd: failed to truncate to 17592186044416 bytes in output file `takes-no-space': File too large
which I guess is a file system limit.
 
Old 09-15-2012, 12:50 PM   #11
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by svenxix View Post
The ls command can display the file size with the -s or -l switches. Where does it read this information from?
Please, take a look at the source code of the ls command (from the latest GNU coreutils 8.19):
Code:
char const *size =
        (! f->stat_ok
         ? "?"
         : human_readable (unsigned_file_size (f->stat.st_size),
                           hbuf, file_human_output_opts, 1,
                           file_output_block_size));
Indeed, it uses the stat library (included in the coreutils themselves) as previously mentioned.
 
  


Reply

Tags
inode, ls



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
calculate total size nicksrulz Linux - Newbie 8 04-06-2012 07:20 AM
How to calculate the size of process cache footprint ? cypkw Linux - Kernel 5 11-11-2010 02:16 AM
bash script - calculate directory size noir911 Programming 1 01-20-2009 05:25 PM
how to calculate kernel structure size? cranium2004 Programming 1 04-15-2005 04:09 AM
how can i calculate an image size w/o creating one? rhxk Linux - Software 2 11-10-2004 04:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:24 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration