1 /* du -- summarize disk usage
2 Copyright (C) 1988-2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Differences from the Unix du:
18 * Doesn't simply ignore the names of regular files given as arguments
21 By tege@sics.se, Torbjorn Granlund,
22 and djm@ai.mit.edu, David MacKenzie.
23 Variable blocks added by lm@sgi.com and eggert@twinsun.com.
24 Rewritten to use nftw, then to use fts by Jim Meyering. */
28 #include <sys/types.h>
32 #include "argv-iter.h"
36 #include "fprintftime.h"
38 #include "mountlist.h"
41 #include "stat-size.h"
42 #include "stat-time.h"
47 extern bool fts_debug
;
49 /* The official name of this program (e.g., no 'g' prefix). */
50 #define PROGRAM_NAME "du"
53 proper_name_utf8 ("Torbjorn Granlund", "Torbj\303\266rn Granlund"), \
54 proper_name ("David MacKenzie"), \
55 proper_name ("Paul Eggert"), \
56 proper_name ("Jim Meyering")
59 # define FTS_CROSS_CHECK(Fts) fts_cross_check (Fts)
61 # define FTS_CROSS_CHECK(Fts)
64 /* A set of dev/ino pairs to help identify files and directories
65 whose sizes have already been counted. */
66 static struct di_set
*di_files
;
68 /* A set containing a dev/ino pair for each local mount point directory. */
69 static struct di_set
*di_mnt
;
71 /* Keep track of the preceding "level" (depth in hierarchy)
72 from one call of process_file to the next. */
73 static size_t prev_level
;
75 /* Define a class for collecting directory information. */
78 /* Size of files in directory. */
81 /* Latest time stamp found. If tmax.tv_sec == TYPE_MINIMUM (time_t)
82 && tmax.tv_nsec < 0, no time stamp has been found. */
86 /* Initialize directory data. */
88 duinfo_init (struct duinfo
*a
)
91 a
->tmax
.tv_sec
= TYPE_MINIMUM (time_t);
95 /* Set directory data. */
97 duinfo_set (struct duinfo
*a
, uintmax_t size
, struct timespec tmax
)
103 /* Accumulate directory data. */
105 duinfo_add (struct duinfo
*a
, struct duinfo
const *b
)
107 uintmax_t sum
= a
->size
+ b
->size
;
108 a
->size
= a
->size
<= sum
? sum
: UINTMAX_MAX
;
109 if (timespec_cmp (a
->tmax
, b
->tmax
) < 0)
113 /* A structure for per-directory level information. */
116 /* Entries in this directory. */
119 /* Total for subdirectories. */
120 struct duinfo subdir
;
123 /* If true, display counts for all files, not just directories. */
124 static bool opt_all
= false;
126 /* If true, rather than using the disk usage of each file,
127 use the apparent size (a la stat.st_size). */
128 static bool apparent_size
= false;
130 /* If true, count each hard link of files with multiple links. */
131 static bool opt_count_all
= false;
133 /* If true, hash all files to look for hard links. */
134 static bool hash_all
;
136 /* If true, output the NUL byte instead of a newline at the end of each line. */
137 static bool opt_nul_terminate_output
= false;
139 /* If true, print a grand total at the end. */
140 static bool print_grand_total
= false;
142 /* If nonzero, do not add sizes of subdirectories. */
143 static bool opt_separate_dirs
= false;
145 /* Show the total for each directory (and file if --all) that is at
146 most MAX_DEPTH levels down from the root of the hierarchy. The root
147 is at level 0, so 'du --max-depth=0' is equivalent to 'du -s'. */
148 static size_t max_depth
= SIZE_MAX
;
150 /* Human-readable options for output. */
151 static int human_output_opts
;
153 /* If true, print most recently modified date, using the specified format. */
154 static bool opt_time
= false;
156 /* Type of time to display. controlled by --time. */
160 time_mtime
, /* default */
165 static enum time_type time_type
= time_mtime
;
167 /* User specified date / time style */
168 static char const *time_style
= NULL
;
170 /* Format used to display date / time. Controlled by --time-style */
171 static char const *time_format
= NULL
;
173 /* The units to use when printing sizes. */
174 static uintmax_t output_block_size
;
176 /* File name patterns to exclude. */
177 static struct exclude
*exclude
;
179 /* Grand total size of all args, in bytes. Also latest modified date. */
180 static struct duinfo tot_dui
;
182 #define IS_DIR_TYPE(Type) \
184 || (Type) == FTS_DNR)
186 /* For long options that have no equivalent short option, use a
187 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
190 APPARENT_SIZE_OPTION
= CHAR_MAX
+ 1,
199 static struct option
const long_options
[] =
201 {"all", no_argument
, NULL
, 'a'},
202 {"apparent-size", no_argument
, NULL
, APPARENT_SIZE_OPTION
},
203 {"block-size", required_argument
, NULL
, 'B'},
204 {"bytes", no_argument
, NULL
, 'b'},
205 {"count-links", no_argument
, NULL
, 'l'},
206 /* {"-debug", no_argument, NULL, FTS_DEBUG}, */
207 {"dereference", no_argument
, NULL
, 'L'},
208 {"dereference-args", no_argument
, NULL
, 'D'},
209 {"exclude", required_argument
, NULL
, EXCLUDE_OPTION
},
210 {"exclude-from", required_argument
, NULL
, 'X'},
211 {"files0-from", required_argument
, NULL
, FILES0_FROM_OPTION
},
212 {"human-readable", no_argument
, NULL
, 'h'},
213 {"si", no_argument
, NULL
, HUMAN_SI_OPTION
},
214 {"max-depth", required_argument
, NULL
, 'd'},
215 {"null", no_argument
, NULL
, '0'},
216 {"no-dereference", no_argument
, NULL
, 'P'},
217 {"one-file-system", no_argument
, NULL
, 'x'},
218 {"separate-dirs", no_argument
, NULL
, 'S'},
219 {"summarize", no_argument
, NULL
, 's'},
220 {"total", no_argument
, NULL
, 'c'},
221 {"time", optional_argument
, NULL
, TIME_OPTION
},
222 {"time-style", required_argument
, NULL
, TIME_STYLE_OPTION
},
223 {GETOPT_HELP_OPTION_DECL
},
224 {GETOPT_VERSION_OPTION_DECL
},
228 static char const *const time_args
[] =
230 "atime", "access", "use", "ctime", "status", NULL
232 static enum time_type
const time_types
[] =
234 time_atime
, time_atime
, time_atime
, time_ctime
, time_ctime
236 ARGMATCH_VERIFY (time_args
, time_types
);
238 /* 'full-iso' uses full ISO-style dates and times. 'long-iso' uses longer
239 ISO-style time stamps, though shorter than 'full-iso'. 'iso' uses shorter
240 ISO-style time stamps. */
243 full_iso_time_style
, /* --time-style=full-iso */
244 long_iso_time_style
, /* --time-style=long-iso */
245 iso_time_style
/* --time-style=iso */
248 static char const *const time_style_args
[] =
250 "full-iso", "long-iso", "iso", NULL
252 static enum time_style
const time_style_types
[] =
254 full_iso_time_style
, long_iso_time_style
, iso_time_style
256 ARGMATCH_VERIFY (time_style_args
, time_style_types
);
261 if (status
!= EXIT_SUCCESS
)
266 Usage: %s [OPTION]... [FILE]...\n\
267 or: %s [OPTION]... --files0-from=F\n\
268 "), program_name
, program_name
);
270 Summarize disk usage of each FILE, recursively for directories.\n\
274 Mandatory arguments to long options are mandatory for short options too.\n\
277 -a, --all write counts for all files, not just directories\n\
278 --apparent-size print apparent sizes, rather than disk usage; although\
280 the apparent size is usually smaller, it may be\n\
281 larger due to holes in ('sparse') files, internal\n\
282 fragmentation, indirect blocks, and the like\n\
285 -B, --block-size=SIZE scale sizes by SIZE before printing them. E.g.,\n\
286 '-BM' prints sizes in units of 1,048,576 bytes.\n\
287 See SIZE format below.\n\
288 -b, --bytes equivalent to '--apparent-size --block-size=1'\n\
289 -c, --total produce a grand total\n\
290 -D, --dereference-args dereference only symlinks that are listed on the\n\
294 --files0-from=F summarize disk usage of the NUL-terminated file\n\
295 names specified in file F;\n\
296 If F is - then read names from standard input\n\
297 -H equivalent to --dereference-args (-D)\n\
298 -h, --human-readable print sizes in human readable format (e.g., 1K 234M 2G)\
300 --si like -h, but use powers of 1000 not 1024\n\
303 -k like --block-size=1K\n\
304 -l, --count-links count sizes many times if hard linked\n\
305 -m like --block-size=1M\n\
308 -L, --dereference dereference all symbolic links\n\
309 -P, --no-dereference don't follow any symbolic links (this is the default)\n\
310 -0, --null end each output line with 0 byte rather than newline\n\
311 -S, --separate-dirs do not include size of subdirectories\n\
312 -s, --summarize display only a total for each argument\n\
315 -x, --one-file-system skip directories on different file systems\n\
316 -X, --exclude-from=FILE exclude files that match any pattern in FILE\n\
317 --exclude=PATTERN exclude files that match PATTERN\n\
318 -d, --max-depth=N print the total for a directory (or file, with --all)\n\
319 only if it is N or fewer levels below the command\n\
320 line argument; --max-depth=0 is the same as\n\
324 --time show time of the last modification of any file in the\n\
325 directory, or any of its subdirectories\n\
326 --time=WORD show time as WORD instead of modification time:\n\
327 atime, access, use, ctime or status\n\
328 --time-style=STYLE show times using style STYLE:\n\
329 full-iso, long-iso, iso, +FORMAT\n\
330 FORMAT is interpreted like 'date'\n\
332 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
333 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
334 emit_blocksize_note ("DU");
336 emit_ancillary_info ();
341 /* Try to insert the INO/DEV pair into DI_SET.
342 Return true if the pair is successfully inserted,
343 false if the pair was already there. */
345 hash_ins (struct di_set
*di_set
, ino_t ino
, dev_t dev
)
347 int inserted
= di_set_insert (di_set
, dev
, ino
);
353 /* FIXME: this code is nearly identical to code in date.c */
354 /* Display the date and time in WHEN according to the format specified
358 show_date (const char *format
, struct timespec when
)
360 struct tm
*tm
= localtime (&when
.tv_sec
);
363 char buf
[INT_BUFSIZE_BOUND (intmax_t)];
364 char *when_str
= timetostr (when
.tv_sec
, buf
);
365 error (0, 0, _("time %s is out of range"), when_str
);
366 fputs (when_str
, stdout
);
370 fprintftime (stdout
, format
, tm
, 0, when
.tv_nsec
);
373 /* Print N_BYTES. Convert it to a readable value before printing. */
376 print_only_size (uintmax_t n_bytes
)
378 char buf
[LONGEST_HUMAN_READABLE
+ 1];
379 fputs ((n_bytes
== UINTMAX_MAX
381 : human_readable (n_bytes
, buf
, human_output_opts
,
382 1, output_block_size
)),
386 /* Print size (and optionally time) indicated by *PDUI, followed by STRING. */
389 print_size (const struct duinfo
*pdui
, const char *string
)
391 print_only_size (pdui
->size
);
395 show_date (time_format
, pdui
->tmax
);
397 printf ("\t%s%c", string
, opt_nul_terminate_output
? '\0' : '\n');
401 /* This function is called once for every file system object that fts
402 encounters. fts does a depth-first traversal. This function knows
403 that and accumulates per-directory totals based on changes in
404 the depth of the current entry. It returns true on success. */
407 process_file (FTS
*fts
, FTSENT
*ent
)
411 struct duinfo dui_to_print
;
413 static size_t n_alloc
;
414 /* First element of the structure contains:
415 The sum of the st_size values of all entries in the single directory
416 at the corresponding level. Although this does include the st_size
417 corresponding to each subdirectory, it does not include the size of
418 any file in a subdirectory. Also corresponding last modified date.
419 Second element of the structure contains:
420 The sum of the sizes of all entries in the hierarchy at or below the
421 directory at the specified level. */
422 static struct dulevel
*dulvl
;
424 const char *file
= ent
->fts_path
;
425 const struct stat
*sb
= ent
->fts_statp
;
426 int info
= ent
->fts_info
;
430 /* An error occurred, but the size is known, so count it. */
431 error (0, ent
->fts_errno
, _("cannot read directory %s"), quote (file
));
434 else if (info
!= FTS_DP
)
436 bool excluded
= excluded_file_name (exclude
, file
);
439 /* Make the stat buffer *SB valid, or fail noisily. */
441 if (info
== FTS_NSOK
)
443 fts_set (fts
, ent
, FTS_AGAIN
);
444 FTSENT
const *e
= fts_read (fts
);
446 info
= ent
->fts_info
;
449 if (info
== FTS_NS
|| info
== FTS_SLNONE
)
451 error (0, ent
->fts_errno
, _("cannot access %s"), quote (file
));
455 /* The --one-file-system (-x) option cannot exclude anything
456 specified on the command-line. By definition, it can exclude
457 a file or directory only when its device number is different
458 from that of its just-processed parent directory, and du does
459 not process the parent of a command-line argument. */
460 if (fts
->fts_options
& FTS_XDEV
461 && FTS_ROOTLEVEL
< ent
->fts_level
462 && fts
->fts_dev
!= sb
->st_dev
)
468 && (hash_all
|| (! S_ISDIR (sb
->st_mode
) && 1 < sb
->st_nlink
))
469 && ! hash_ins (di_files
, sb
->st_ino
, sb
->st_dev
)))
471 /* If ignoring a directory in preorder, skip its children.
472 Ignore the next fts_read output too, as it's a postorder
473 visit to the same directory. */
476 fts_set (fts
, ent
, FTS_SKIP
);
477 FTSENT
const *e
= fts_read (fts
);
490 /* An error occurred, but the size is known, so count it. */
491 error (0, ent
->fts_errno
, "%s", quote (file
));
496 if (cycle_warning_required (fts
, ent
))
498 /* If this is a mount point, then diagnose it and avoid
500 if (di_set_lookup (di_mnt
, sb
->st_dev
, sb
->st_ino
))
501 error (0, 0, _("mount point %s already traversed"),
504 emit_cycle_warning (file
);
513 ? MAX (0, sb
->st_size
)
514 : (uintmax_t) ST_NBLOCKS (*sb
) * ST_NBLOCKSIZE
),
515 (time_type
== time_mtime
? get_stat_mtime (sb
)
516 : time_type
== time_atime
? get_stat_atime (sb
)
517 : get_stat_ctime (sb
)));
519 level
= ent
->fts_level
;
524 n_alloc
= level
+ 10;
525 dulvl
= xcalloc (n_alloc
, sizeof *dulvl
);
529 if (level
== prev_level
)
531 /* This is usually the most common case. Do nothing. */
533 else if (level
> prev_level
)
535 /* Descending the hierarchy.
536 Clear the accumulators for *all* levels between prev_level
537 and the current one. The depth may change dramatically,
538 e.g., from 1 to 10. */
541 if (n_alloc
<= level
)
543 dulvl
= xnrealloc (dulvl
, level
, 2 * sizeof *dulvl
);
547 for (i
= prev_level
+ 1; i
<= level
; i
++)
549 duinfo_init (&dulvl
[i
].ent
);
550 duinfo_init (&dulvl
[i
].subdir
);
553 else /* level < prev_level */
555 /* Ascending the hierarchy.
556 Process a directory only after all entries in that
557 directory have been processed. When the depth decreases,
558 propagate sums from the children (prev_level) to the parent.
559 Here, the current level is always one smaller than the
561 assert (level
== prev_level
- 1);
562 duinfo_add (&dui_to_print
, &dulvl
[prev_level
].ent
);
563 if (!opt_separate_dirs
)
564 duinfo_add (&dui_to_print
, &dulvl
[prev_level
].subdir
);
565 duinfo_add (&dulvl
[level
].subdir
, &dulvl
[prev_level
].ent
);
566 duinfo_add (&dulvl
[level
].subdir
, &dulvl
[prev_level
].subdir
);
572 /* Let the size of a directory entry contribute to the total for the
573 containing directory, unless --separate-dirs (-S) is specified. */
574 if (! (opt_separate_dirs
&& IS_DIR_TYPE (info
)))
575 duinfo_add (&dulvl
[level
].ent
, &dui
);
577 /* Even if this directory is unreadable or we can't chdir into it,
578 do let its size contribute to the total. */
579 duinfo_add (&tot_dui
, &dui
);
581 if ((IS_DIR_TYPE (info
) && level
<= max_depth
)
582 || ((opt_all
&& level
<= max_depth
) || level
== 0))
583 print_size (&dui_to_print
, file
);
588 /* Recursively print the sizes of the directories (and, if selected, files)
589 named in FILES, the last entry of which is NULL.
590 BIT_FLAGS controls how fts works.
591 Return true if successful. */
594 du_files (char **files
, int bit_flags
)
600 FTS
*fts
= xfts_open (files
, bit_flags
, NULL
);
606 ent
= fts_read (fts
);
611 error (0, errno
, _("fts_read failed: %s"),
612 quotearg_colon (fts
->fts_path
));
616 /* When exiting this loop early, be careful to reset the
617 global, prev_level, used in process_file. Otherwise, its
618 (level == prev_level - 1) assertion could fail. */
622 FTS_CROSS_CHECK (fts
);
624 ok
&= process_file (fts
, ent
);
627 if (fts_close (fts
) != 0)
629 error (0, errno
, _("fts_close failed"));
637 /* Fill the di_mnt set with local mount point dev/ino pairs. */
640 fill_mount_table (void)
642 struct mount_entry
*mnt_ent
= read_file_system_list (false);
645 struct mount_entry
*mnt_free
;
646 if (!mnt_ent
->me_remote
&& !mnt_ent
->me_dummy
)
649 if (!stat (mnt_ent
->me_mountdir
, &buf
))
650 hash_ins (di_mnt
, buf
.st_ino
, buf
.st_dev
);
653 /* Ignore stat failure. False positives are too common.
654 E.g., "Permission denied" on /run/user/<name>/gvfs. */
659 mnt_ent
= mnt_ent
->me_next
;
661 free (mnt_free
->me_devname
);
662 free (mnt_free
->me_mountdir
);
663 if (mnt_free
->me_type_malloced
)
664 free (mnt_free
->me_type
);
670 main (int argc
, char **argv
)
673 bool max_depth_specified
= false;
675 char *files_from
= NULL
;
677 /* Bit flags that control how fts works. */
678 int bit_flags
= FTS_NOSTAT
;
680 /* Select one of the three FTS_ options that control if/when
681 to follow a symlink. */
682 int symlink_deref_bits
= FTS_PHYSICAL
;
684 /* If true, display only a total for each argument. */
685 bool opt_summarize_only
= false;
687 cwd_only
[0] = bad_cast (".");
690 initialize_main (&argc
, &argv
);
691 set_program_name (argv
[0]);
692 setlocale (LC_ALL
, "");
693 bindtextdomain (PACKAGE
, LOCALEDIR
);
694 textdomain (PACKAGE
);
696 atexit (close_stdout
);
698 exclude
= new_exclude ();
700 human_options (getenv ("DU_BLOCK_SIZE"),
701 &human_output_opts
, &output_block_size
);
706 int c
= getopt_long (argc
, argv
, "0abd:chHklmsxB:DLPSX:",
720 opt_nul_terminate_output
= true;
727 case APPARENT_SIZE_OPTION
:
728 apparent_size
= true;
732 apparent_size
= true;
733 human_output_opts
= 0;
734 output_block_size
= 1;
738 print_grand_total
= true;
742 human_output_opts
= human_autoscale
| human_SI
| human_base_1024
;
743 output_block_size
= 1;
746 case HUMAN_SI_OPTION
:
747 human_output_opts
= human_autoscale
| human_SI
;
748 output_block_size
= 1;
752 human_output_opts
= 0;
753 output_block_size
= 1024;
756 case 'd': /* --max-depth=N */
758 unsigned long int tmp_ulong
;
759 if (xstrtoul (optarg
, NULL
, 0, &tmp_ulong
, NULL
) == LONGINT_OK
760 && tmp_ulong
<= SIZE_MAX
)
762 max_depth_specified
= true;
763 max_depth
= tmp_ulong
;
767 error (0, 0, _("invalid maximum depth %s"),
775 human_output_opts
= 0;
776 output_block_size
= 1024 * 1024;
780 opt_count_all
= true;
784 opt_summarize_only
= true;
788 bit_flags
|= FTS_XDEV
;
793 enum strtol_error e
= human_options (optarg
, &human_output_opts
,
796 xstrtol_fatal (e
, oi
, c
, long_options
, optarg
);
800 case 'H': /* NOTE: before 2008-12, -H was equivalent to --si. */
802 symlink_deref_bits
= FTS_COMFOLLOW
| FTS_PHYSICAL
;
805 case 'L': /* --dereference */
806 symlink_deref_bits
= FTS_LOGICAL
;
809 case 'P': /* --no-dereference */
810 symlink_deref_bits
= FTS_PHYSICAL
;
814 opt_separate_dirs
= true;
818 if (add_exclude_file (add_exclude
, exclude
, optarg
,
819 EXCLUDE_WILDCARDS
, '\n'))
821 error (0, errno
, "%s", quotearg_colon (optarg
));
826 case FILES0_FROM_OPTION
:
831 add_exclude (exclude
, optarg
, EXCLUDE_WILDCARDS
);
838 ? XARGMATCH ("--time", optarg
, time_args
, time_types
)
842 case TIME_STYLE_OPTION
:
846 case_GETOPT_HELP_CHAR
;
848 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
856 usage (EXIT_FAILURE
);
858 if (opt_all
&& opt_summarize_only
)
860 error (0, 0, _("cannot both summarize and show all entries"));
861 usage (EXIT_FAILURE
);
864 if (opt_summarize_only
&& max_depth_specified
&& max_depth
== 0)
867 _("warning: summarizing is the same as using --max-depth=0"));
870 if (opt_summarize_only
&& max_depth_specified
&& max_depth
!= 0)
872 unsigned long int d
= max_depth
;
873 error (0, 0, _("warning: summarizing conflicts with --max-depth=%lu"), d
);
874 usage (EXIT_FAILURE
);
877 if (opt_summarize_only
)
880 /* Process time style if printing last times. */
885 time_style
= getenv ("TIME_STYLE");
887 /* Ignore TIMESTYLE="locale", for compatibility with ls. */
888 if (! time_style
|| STREQ (time_style
, "locale"))
889 time_style
= "long-iso";
890 else if (*time_style
== '+')
892 /* Ignore anything after a newline, for compatibility
894 char *p
= strchr (time_style
, '\n');
900 /* Ignore "posix-" prefix, for compatibility with ls. */
901 static char const posix_prefix
[] = "posix-";
902 while (strncmp (time_style
, posix_prefix
, sizeof posix_prefix
- 1)
904 time_style
+= sizeof posix_prefix
- 1;
908 if (*time_style
== '+')
909 time_format
= time_style
+ 1;
912 switch (XARGMATCH ("time style", time_style
,
913 time_style_args
, time_style_types
))
915 case full_iso_time_style
:
916 time_format
= "%Y-%m-%d %H:%M:%S.%N %z";
919 case long_iso_time_style
:
920 time_format
= "%Y-%m-%d %H:%M";
924 time_format
= "%Y-%m-%d";
930 struct argv_iterator
*ai
;
933 /* When using --files0-from=F, you may not specify any files
934 on the command-line. */
937 error (0, 0, _("extra operand %s"), quote (argv
[optind
]));
938 fprintf (stderr
, "%s\n",
939 _("file operands cannot be combined with --files0-from"));
940 usage (EXIT_FAILURE
);
943 if (! (STREQ (files_from
, "-") || freopen (files_from
, "r", stdin
)))
944 error (EXIT_FAILURE
, errno
, _("cannot open %s for reading"),
947 ai
= argv_iter_init_stream (stdin
);
949 /* It's not easy here to count the arguments, so assume the
955 char **files
= (optind
< argc
? argv
+ optind
: cwd_only
);
956 ai
= argv_iter_init_argv (files
);
958 /* Hash all dev,ino pairs if there are multiple arguments, or if
959 following non-command-line symlinks, because in either case a
960 file with just one hard link might be seen more than once. */
961 hash_all
= (optind
+ 1 < argc
|| symlink_deref_bits
== FTS_LOGICAL
);
967 /* Initialize the set of dev,inode pairs. */
969 di_mnt
= di_set_alloc ();
975 di_files
= di_set_alloc ();
979 /* If not hashing everything, process_file won't find cycles on its
980 own, so ask fts_read to check for them accurately. */
981 if (opt_count_all
|| ! hash_all
)
982 bit_flags
|= FTS_TIGHT_CYCLE_CHECK
;
984 bit_flags
|= symlink_deref_bits
;
985 static char *temp_argv
[] = { NULL
, NULL
};
989 bool skip_file
= false;
990 enum argv_iter_err ai_err
;
991 char *file_name
= argv_iter (ai
, &ai_err
);
999 error (0, errno
, _("%s: read error"),
1000 quotearg_colon (files_from
));
1002 goto argv_iter_done
;
1006 assert (!"unexpected error code from argv_iter");
1009 if (files_from
&& STREQ (files_from
, "-") && STREQ (file_name
, "-"))
1011 /* Give a better diagnostic in an unusual case:
1012 printf - | du --files0-from=- */
1013 error (0, 0, _("when reading file names from stdin, "
1014 "no file name of %s allowed"),
1019 /* Report and skip any empty file names before invoking fts.
1020 This works around a glitch in fts, which fails immediately
1021 (without looking at the other file names) when given an empty
1025 /* Diagnose a zero-length file name. When it's one
1026 among many, knowing the record number may help.
1027 FIXME: currently print the record number only with
1028 --files0-from=FILE. Maybe do it for argv, too? */
1029 if (files_from
== NULL
)
1030 error (0, 0, "%s", _("invalid zero-length file name"));
1033 /* Using the standard 'filename:line-number:' prefix here is
1034 not totally appropriate, since NUL is the separator, not NL,
1035 but it might be better than nothing. */
1036 unsigned long int file_number
= argv_iter_n_args (ai
);
1037 error (0, 0, "%s:%lu: %s", quotearg_colon (files_from
),
1038 file_number
, _("invalid zero-length file name"));
1047 temp_argv
[0] = file_name
;
1048 ok
&= du_files (temp_argv
, bit_flags
);
1053 argv_iter_free (ai
);
1054 di_set_free (di_files
);
1055 di_set_free (di_mnt
);
1057 if (files_from
&& (ferror (stdin
) || fclose (stdin
) != 0) && ok
)
1058 error (EXIT_FAILURE
, 0, _("error reading %s"), quote (files_from
));
1060 if (print_grand_total
)
1061 print_size (&tot_dui
, _("total"));
1063 exit (ok
? EXIT_SUCCESS
: EXIT_FAILURE
);