1 /* df - summarize free file system space
2 Copyright (C) 1991-2023 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 <https://www.gnu.org/licenses/>. */
17 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>.
18 --human-readable option added by lm@sgi.com.
19 --si and large file support added by eggert@twinsun.com. */
23 #include <sys/types.h>
31 #include "canonicalize.h"
36 #include "mountlist.h"
38 #include "find-mount-point.h"
40 #include "xstrtol-error.h"
42 /* The official name of this program (e.g., no 'g' prefix). */
43 #define PROGRAM_NAME "df"
46 proper_name_lite ("Torbjorn Granlund", "Torbj\303\266rn Granlund"), \
47 proper_name ("David MacKenzie"), \
48 proper_name ("Paul Eggert")
53 struct mount_entry
*me
;
55 struct devlist
*seen_last
; /* valid for hashed devlist entries only */
58 /* Filled with device numbers of examined file systems to avoid
59 duplicates in output. */
60 static Hash_table
*devlist_table
;
62 /* If true, show even file systems with zero size or
63 uninteresting types. */
64 static bool show_all_fs
;
66 /* If true, show only local file systems. */
67 static bool show_local_fs
;
69 /* If true, output data for each file system corresponding to a
70 command line argument -- even if it's a dummy (automounter) entry. */
71 static bool show_listed_fs
;
73 /* Human-readable options for output. */
74 static int human_output_opts
;
76 /* The units to use when printing sizes. */
77 static uintmax_t output_block_size
;
79 /* True if a file system has been processed for output. */
80 static bool file_systems_processed
;
82 /* If true, invoke the 'sync' system call before getting any usage data.
83 Using this option can make df very slow, especially with many or very
84 busy file systems. This may make a difference on some systems --
85 SunOS 4.1.3, for one. It is *not* necessary on GNU/Linux. */
86 static bool require_sync
;
88 /* Desired exit status. */
89 static int exit_status
;
91 /* A file system type to display. */
96 struct fs_type_list
*fs_next
;
99 /* Linked list of file system types to display.
100 If 'fs_select_list' is null, list all types.
101 This table is generated dynamically from command-line options,
102 rather than hardcoding into the program what it thinks are the
103 valid file system types; let the user specify any file system type
104 they want to, and if there are any file systems of that type, they
107 Some file system types:
108 4.2 4.3 ufs nfs swap ignore io vm efs dbg */
110 static struct fs_type_list
*fs_select_list
;
112 /* Linked list of file system types to omit.
113 If the list is empty, don't exclude any types. */
115 static struct fs_type_list
*fs_exclude_list
;
117 /* Linked list of mounted file systems. */
118 static struct mount_entry
*mount_list
;
120 /* If true, print file system type as well. */
121 static bool print_type
;
123 /* If true, print a grand total at the end. */
124 static bool print_grand_total
;
126 /* Grand total data. */
127 static struct fs_usage grand_fsu
;
137 } header_mode
= DEFAULT_MODE
;
139 /* Displayable fields. */
142 SOURCE_FIELD
, /* file system */
143 FSTYPE_FIELD
, /* FS type */
144 SIZE_FIELD
, /* FS size */
145 USED_FIELD
, /* FS size used */
146 AVAIL_FIELD
, /* FS size available */
147 PCENT_FIELD
, /* percent used */
148 ITOTAL_FIELD
, /* inode total */
149 IUSED_FIELD
, /* inodes used */
150 IAVAIL_FIELD
, /* inodes available */
151 IPCENT_FIELD
, /* inodes used in percent */
152 TARGET_FIELD
, /* mount point */
153 FILE_FIELD
, /* specified file name */
154 INVALID_FIELD
/* validation marker */
157 /* Flag if a field contains a block, an inode or another value. */
160 BLOCK_FLD
, /* Block values field */
161 INODE_FLD
, /* Inode values field */
162 OTHER_FLD
/* Neutral field, e.g. target */
165 /* Attributes of a display field. */
168 display_field_t field
;
170 field_type_t field_type
;
171 char const *caption
;/* nullptr means use default header of this field. */
172 size_t width
; /* Auto adjusted (up) widths used to align columns. */
173 mbs_align_t align
; /* Alignment for this field. */
177 /* Header strings, minimum width and alignment for the above fields. */
178 static struct field_data_t field_data
[] = {
179 [SOURCE_FIELD
] = { SOURCE_FIELD
,
180 "source", OTHER_FLD
, N_("Filesystem"), 14, MBS_ALIGN_LEFT
, false },
182 [FSTYPE_FIELD
] = { FSTYPE_FIELD
,
183 "fstype", OTHER_FLD
, N_("Type"), 4, MBS_ALIGN_LEFT
, false },
185 [SIZE_FIELD
] = { SIZE_FIELD
,
186 "size", BLOCK_FLD
, N_("blocks"), 5, MBS_ALIGN_RIGHT
, false },
188 [USED_FIELD
] = { USED_FIELD
,
189 "used", BLOCK_FLD
, N_("Used"), 5, MBS_ALIGN_RIGHT
, false },
191 [AVAIL_FIELD
] = { AVAIL_FIELD
,
192 "avail", BLOCK_FLD
, N_("Available"), 5, MBS_ALIGN_RIGHT
, false },
194 [PCENT_FIELD
] = { PCENT_FIELD
,
195 "pcent", BLOCK_FLD
, N_("Use%"), 4, MBS_ALIGN_RIGHT
, false },
197 [ITOTAL_FIELD
] = { ITOTAL_FIELD
,
198 "itotal", INODE_FLD
, N_("Inodes"), 5, MBS_ALIGN_RIGHT
, false },
200 [IUSED_FIELD
] = { IUSED_FIELD
,
201 "iused", INODE_FLD
, N_("IUsed"), 5, MBS_ALIGN_RIGHT
, false },
203 [IAVAIL_FIELD
] = { IAVAIL_FIELD
,
204 "iavail", INODE_FLD
, N_("IFree"), 5, MBS_ALIGN_RIGHT
, false },
206 [IPCENT_FIELD
] = { IPCENT_FIELD
,
207 "ipcent", INODE_FLD
, N_("IUse%"), 4, MBS_ALIGN_RIGHT
, false },
209 [TARGET_FIELD
] = { TARGET_FIELD
,
210 "target", OTHER_FLD
, N_("Mounted on"), 0, MBS_ALIGN_LEFT
, false },
212 [FILE_FIELD
] = { FILE_FIELD
,
213 "file", OTHER_FLD
, N_("File"), 0, MBS_ALIGN_LEFT
, false }
216 static char const *all_args_string
=
217 "source,fstype,itotal,iused,iavail,ipcent,size,"
218 "used,avail,pcent,file,target";
220 /* Storage for the definition of output columns. */
221 static struct field_data_t
**columns
;
223 /* The current number of output columns. */
224 static size_t ncolumns
;
227 struct field_values_t
229 uintmax_t input_units
;
230 uintmax_t output_units
;
233 bool negate_available
;
234 uintmax_t available_to_root
;
239 /* Storage for pointers for each string (cell of table). */
240 static char ***table
;
242 /* The current number of processed rows (including header). */
245 /* For long options that have no equivalent short option, use a
246 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
249 NO_SYNC_OPTION
= CHAR_MAX
+ 1,
255 static struct option
const long_options
[] =
257 {"all", no_argument
, nullptr, 'a'},
258 {"block-size", required_argument
, nullptr, 'B'},
259 {"inodes", no_argument
, nullptr, 'i'},
260 {"human-readable", no_argument
, nullptr, 'h'},
261 {"si", no_argument
, nullptr, 'H'},
262 {"local", no_argument
, nullptr, 'l'},
263 {"output", optional_argument
, nullptr, OUTPUT_OPTION
},
264 {"portability", no_argument
, nullptr, 'P'},
265 {"print-type", no_argument
, nullptr, 'T'},
266 {"sync", no_argument
, nullptr, SYNC_OPTION
},
267 {"no-sync", no_argument
, nullptr, NO_SYNC_OPTION
},
268 {"total", no_argument
, nullptr, TOTAL_OPTION
},
269 {"type", required_argument
, nullptr, 't'},
270 {"exclude-type", required_argument
, nullptr, 'x'},
271 {GETOPT_HELP_OPTION_DECL
},
272 {GETOPT_VERSION_OPTION_DECL
},
273 {nullptr, 0, nullptr, 0}
276 /* Stat FILE and put the results into *ST. Return 0 if successful, an
277 error number otherwise. Try to open FILE before statting, to
278 trigger automounts. */
281 automount_stat_err (char const *file
, struct stat
*st
)
283 int fd
= open (file
, O_RDONLY
| O_NOCTTY
| O_NONBLOCK
);
286 if (errno
== ENOENT
|| errno
== ENOTDIR
)
288 return stat (file
, st
) == 0 ? 0 : errno
;
292 int err
= fstat (fd
, st
) == 0 ? 0 : errno
;
298 /* Replace problematic chars with '?'.
299 Since only control characters are currently considered,
300 this should work in all encodings. */
303 replace_control_chars (char *cell
)
308 if (c_iscntrl (to_uchar (*p
)))
314 /* Replace problematic chars with '?'. */
317 replace_invalid_chars (char *cell
)
319 char *srcend
= cell
+ strlen (cell
);
321 mbstate_t mbstate
= { 0, };
324 for (char *src
= cell
; src
!= srcend
; src
+= n
)
327 size_t srcbytes
= srcend
- src
;
328 n
= mbrtowc (&wc
, src
, srcbytes
, &mbstate
);
329 bool ok
= n
<= srcbytes
;
338 memmove (dst
, src
, n
);
344 memset (&mbstate
, 0, sizeof mbstate
);
352 replace_problematic_chars (char *cell
)
354 static int tty_out
= -1;
356 tty_out
= isatty (STDOUT_FILENO
);
358 (tty_out
? replace_invalid_chars
: replace_control_chars
) (cell
) ;
362 /* Dynamically allocate a row of pointers in TABLE, which
363 can then be accessed with standard 2D array notation. */
366 alloc_table_row (void)
369 table
= xnrealloc (table
, nrows
, sizeof (char **));
370 table
[nrows
- 1] = xnmalloc (ncolumns
, sizeof (char *));
373 /* Output each cell in the table, accounting for the
374 alignment and max width of each column. */
381 for (row
= 0; row
< nrows
; row
++)
384 for (col
= 0; col
< ncolumns
; col
++)
386 char *cell
= table
[row
][col
];
388 /* Note the SOURCE_FIELD used to be displayed on it's own line
389 if (!posix_format && mbswidth (cell) > 20), but that
390 functionality was probably more problematic than helpful,
391 hence changed in commit v8.10-40-g99679ff. */
396 if (col
== ncolumns
- 1) /* The last one. */
397 flags
= MBA_NO_RIGHT_PAD
;
399 size_t width
= columns
[col
]->width
;
400 cell
= ambsalign (cell
, &width
, columns
[col
]->align
, flags
);
401 /* When ambsalign fails, output unaligned data. */
402 fputs (cell
? cell
: table
[row
][col
], stdout
);
409 /* Dynamically allocate a struct field_t in COLUMNS, which
410 can then be accessed with standard array notation. */
413 alloc_field (int f
, char const *c
)
416 columns
= xnrealloc (columns
, ncolumns
, sizeof (struct field_data_t
*));
417 columns
[ncolumns
- 1] = &field_data
[f
];
419 columns
[ncolumns
- 1]->caption
= c
;
421 affirm (!field_data
[f
].used
);
423 /* Mark field as used. */
424 field_data
[f
].used
= true;
428 /* Given a string, ARG, containing a comma-separated list of arguments
429 to the --output option, add the appropriate fields to columns. */
431 decode_output_arg (char const *arg
)
433 char *arg_writable
= xstrdup (arg
);
434 char *s
= arg_writable
;
437 /* find next comma */
438 char *comma
= strchr (s
, ',');
440 /* If we found a comma, put a NUL in its place and advance. */
445 display_field_t field
= INVALID_FIELD
;
446 for (idx_t i
= 0; i
< ARRAY_CARDINALITY (field_data
); i
++)
448 if (STREQ (field_data
[i
].arg
, s
))
454 if (field
== INVALID_FIELD
)
456 error (0, 0, _("option --output: field %s unknown"), quote (s
));
457 usage (EXIT_FAILURE
);
460 if (field_data
[field
].used
)
462 /* Prevent the fields from being used more than once. */
463 error (0, 0, _("option --output: field %s used more than once"),
464 quote (field_data
[field
].arg
));
465 usage (EXIT_FAILURE
);
480 alloc_field (field
, nullptr);
484 alloc_field (field
, N_("Size"));
488 alloc_field (field
, N_("Avail"));
492 affirm (!"invalid field");
501 /* Get the appropriate columns for the mode. */
503 get_field_list (void)
508 alloc_field (SOURCE_FIELD
, nullptr);
510 alloc_field (FSTYPE_FIELD
, nullptr);
511 alloc_field (SIZE_FIELD
, nullptr);
512 alloc_field (USED_FIELD
, nullptr);
513 alloc_field (AVAIL_FIELD
, nullptr);
514 alloc_field (PCENT_FIELD
, nullptr);
515 alloc_field (TARGET_FIELD
, nullptr);
519 alloc_field (SOURCE_FIELD
, nullptr);
521 alloc_field (FSTYPE_FIELD
, nullptr);
523 alloc_field (SIZE_FIELD
, N_("Size"));
524 alloc_field (USED_FIELD
, nullptr);
525 alloc_field (AVAIL_FIELD
, N_("Avail"));
526 alloc_field (PCENT_FIELD
, nullptr);
527 alloc_field (TARGET_FIELD
, nullptr);
531 alloc_field (SOURCE_FIELD
, nullptr);
533 alloc_field (FSTYPE_FIELD
, nullptr);
534 alloc_field (ITOTAL_FIELD
, nullptr);
535 alloc_field (IUSED_FIELD
, nullptr);
536 alloc_field (IAVAIL_FIELD
, nullptr);
537 alloc_field (IPCENT_FIELD
, nullptr);
538 alloc_field (TARGET_FIELD
, nullptr);
542 alloc_field (SOURCE_FIELD
, nullptr);
544 alloc_field (FSTYPE_FIELD
, nullptr);
545 alloc_field (SIZE_FIELD
, nullptr);
546 alloc_field (USED_FIELD
, nullptr);
547 alloc_field (AVAIL_FIELD
, nullptr);
548 alloc_field (PCENT_FIELD
, N_("Capacity"));
549 alloc_field (TARGET_FIELD
, nullptr);
555 /* Add all fields if --output was given without a field list. */
556 decode_output_arg (all_args_string
);
565 /* Obtain the appropriate header entries. */
574 for (col
= 0; col
< ncolumns
; col
++)
576 char *cell
= nullptr;
577 char const *header
= _(columns
[col
]->caption
);
579 if (columns
[col
]->field
== SIZE_FIELD
580 && (header_mode
== DEFAULT_MODE
581 || (header_mode
== OUTPUT_MODE
582 && !(human_output_opts
& human_autoscale
))))
584 char buf
[LONGEST_HUMAN_READABLE
+ 1];
586 int opts
= (human_suppress_point_zero
587 | human_autoscale
| human_SI
589 & (human_group_digits
| human_base_1024
| human_B
)));
591 /* Prefer the base that makes the human-readable value more exact,
592 if there is a difference. */
594 uintmax_t q1000
= output_block_size
;
595 uintmax_t q1024
= output_block_size
;
596 bool divisible_by_1000
;
597 bool divisible_by_1024
;
601 divisible_by_1000
= q1000
% 1000 == 0; q1000
/= 1000;
602 divisible_by_1024
= q1024
% 1024 == 0; q1024
/= 1024;
604 while (divisible_by_1000
& divisible_by_1024
);
606 if (divisible_by_1000
< divisible_by_1024
)
607 opts
|= human_base_1024
;
608 if (divisible_by_1024
< divisible_by_1000
)
609 opts
&= ~human_base_1024
;
610 if (! (opts
& human_base_1024
))
613 char *num
= human_readable (output_block_size
, buf
, opts
, 1, 1);
615 /* Reset the header back to the default in OUTPUT_MODE. */
616 header
= _("blocks");
618 /* TRANSLATORS: this is the "1K-blocks" header in "df" output. */
619 if (asprintf (&cell
, _("%s-%s"), num
, header
) == -1)
622 else if (header_mode
== POSIX_MODE
&& columns
[col
]->field
== SIZE_FIELD
)
624 char buf
[INT_BUFSIZE_BOUND (uintmax_t)];
625 char *num
= umaxtostr (output_block_size
, buf
);
627 /* TRANSLATORS: this is the "1024-blocks" header in "df -P". */
628 if (asprintf (&cell
, _("%s-%s"), num
, header
) == -1)
632 cell
= strdup (header
);
637 replace_problematic_chars (cell
);
639 table
[nrows
- 1][col
] = cell
;
641 size_t cell_width
= mbswidth (cell
, 0);
642 columns
[col
]->width
= MAX (columns
[col
]->width
, cell_width
);
646 /* Is FSTYPE a type of file system that should be listed? */
650 selected_fstype (char const *fstype
)
652 const struct fs_type_list
*fsp
;
654 if (fs_select_list
== nullptr || fstype
== nullptr)
656 for (fsp
= fs_select_list
; fsp
; fsp
= fsp
->fs_next
)
657 if (STREQ (fstype
, fsp
->fs_name
))
662 /* Is FSTYPE a type of file system that should be omitted? */
666 excluded_fstype (char const *fstype
)
668 const struct fs_type_list
*fsp
;
670 if (fs_exclude_list
== nullptr || fstype
== nullptr)
672 for (fsp
= fs_exclude_list
; fsp
; fsp
= fsp
->fs_next
)
673 if (STREQ (fstype
, fsp
->fs_name
))
679 devlist_hash (void const *x
, size_t table_size
)
681 struct devlist
const *p
= x
;
682 return (uintmax_t) p
->dev_num
% table_size
;
686 devlist_compare (void const *x
, void const *y
)
688 struct devlist
const *a
= x
;
689 struct devlist
const *b
= y
;
690 return a
->dev_num
== b
->dev_num
;
693 static struct devlist
*
694 devlist_for_dev (dev_t dev
)
696 if (devlist_table
== nullptr)
698 struct devlist dev_entry
;
699 dev_entry
.dev_num
= dev
;
701 struct devlist
*found
= hash_lookup (devlist_table
, &dev_entry
);
702 if (found
== nullptr)
705 /* Return the last devlist entry we have seen with this dev_num */
706 return found
->seen_last
;
709 /* Filter mount list by skipping duplicate entries.
710 In the case of duplicates - based on the device number - the mount entry
711 with a '/' in its me_devname (i.e., not pseudo name like tmpfs) wins.
712 If both have a real devname (e.g. bind mounts), then that with the shorter
713 me_mountdir wins. With DEVICES_ONLY == true (set with df -a), only update
714 the global devlist_table, rather than filtering the global mount_list. */
717 filter_mount_list (bool devices_only
)
719 struct mount_entry
*me
;
721 /* Temporary list to keep entries ordered. */
722 struct devlist
*device_list
= nullptr;
723 int mount_list_size
= 0;
725 for (me
= mount_list
; me
; me
= me
->me_next
)
728 devlist_table
= hash_initialize (mount_list_size
, nullptr,
729 devlist_hash
, devlist_compare
, nullptr);
730 if (devlist_table
== nullptr)
733 /* Sort all 'wanted' entries into the list device_list. */
734 for (me
= mount_list
; me
;)
737 struct mount_entry
*discard_me
= nullptr;
739 /* Avoid stating remote file systems as that may hang.
740 On Linux we probably have me_dev populated from /proc/self/mountinfo,
741 however we still stat() in case another device was mounted later. */
742 if ((me
->me_remote
&& show_local_fs
)
743 || (me
->me_dummy
&& !show_all_fs
&& !show_listed_fs
)
744 || (!selected_fstype (me
->me_type
) || excluded_fstype (me
->me_type
))
745 || -1 == stat (me
->me_mountdir
, &buf
))
747 /* If remote, and showing just local, or FS type is excluded,
748 add ME for filtering later.
749 If stat failed; add ME to be able to complain about it later. */
750 buf
.st_dev
= me
->me_dev
;
754 /* If we've already seen this device... */
755 struct devlist
*seen_dev
= devlist_for_dev (buf
.st_dev
);
759 bool target_nearer_root
= strlen (seen_dev
->me
->me_mountdir
)
760 > strlen (me
->me_mountdir
);
761 /* With bind mounts, prefer items nearer the root of the source */
762 bool source_below_root
= seen_dev
->me
->me_mntroot
!= nullptr
763 && me
->me_mntroot
!= nullptr
764 && (strlen (seen_dev
->me
->me_mntroot
)
765 < strlen (me
->me_mntroot
));
766 if (! print_grand_total
767 && me
->me_remote
&& seen_dev
->me
->me_remote
768 && ! STREQ (seen_dev
->me
->me_devname
, me
->me_devname
))
770 /* Don't discard remote entries with different locations,
771 as these are more likely to be explicitly mounted.
772 However avoid this when producing a total to give
773 a more accurate value in that case. */
775 else if ((strchr (me
->me_devname
, '/')
776 /* let "real" devices with '/' in the name win. */
777 && ! strchr (seen_dev
->me
->me_devname
, '/'))
778 /* let points towards the root of the device win. */
779 || (target_nearer_root
&& ! source_below_root
)
780 /* let an entry overmounted on a new device win... */
781 || (! STREQ (seen_dev
->me
->me_devname
, me
->me_devname
)
782 /* ... but only when matching an existing mnt point,
783 to avoid problematic replacement when given
784 inaccurate mount lists, seen with some chroot
785 environments for example. */
786 && STREQ (me
->me_mountdir
,
787 seen_dev
->me
->me_mountdir
)))
789 /* Discard mount entry for existing device. */
790 discard_me
= seen_dev
->me
;
795 /* Discard mount entry currently being processed. */
806 free_mount_entry (discard_me
);
810 /* Add the device number to the device_table. */
811 struct devlist
*devlist
= xmalloc (sizeof *devlist
);
813 devlist
->dev_num
= buf
.st_dev
;
814 devlist
->next
= device_list
;
815 device_list
= devlist
;
817 struct devlist
*hash_entry
= hash_insert (devlist_table
, devlist
);
818 if (hash_entry
== nullptr)
820 /* Ensure lookups use this latest devlist. */
821 hash_entry
->seen_last
= devlist
;
827 /* Finally rebuild the mount_list from the devlist. */
828 if (! devices_only
) {
829 mount_list
= nullptr;
832 /* Add the mount entry. */
833 me
= device_list
->me
;
834 me
->me_next
= mount_list
;
836 struct devlist
*next
= device_list
->next
;
841 hash_free (devlist_table
);
842 devlist_table
= nullptr;
847 /* Search a mount entry list for device id DEV.
848 Return the corresponding mount entry if found or nullptr if not. */
851 static struct mount_entry
const *
852 me_for_dev (dev_t dev
)
854 struct devlist
*dl
= devlist_for_dev (dev
);
861 /* Return true if N is a known integer value. On many file systems,
862 UINTMAX_MAX represents an unknown value; on AIX, UINTMAX_MAX - 1
863 represents unknown. Use a rule that works on AIX file systems, and
864 that almost-always works on other types. */
866 known_value (uintmax_t n
)
868 return n
< UINTMAX_MAX
- 1;
871 /* Like human_readable (N, BUF, human_output_opts, INPUT_UNITS, OUTPUT_UNITS),
874 - If NEGATIVE, then N represents a negative number,
875 expressed in two's complement.
876 - Otherwise, return "-" if N is unknown. */
879 df_readable (bool negative
, uintmax_t n
, char *buf
,
880 uintmax_t input_units
, uintmax_t output_units
)
882 if (! known_value (n
) && !negative
)
886 char *p
= human_readable (negative
? -n
: n
, buf
+ negative
,
887 human_output_opts
, input_units
, output_units
);
894 /* Add integral value while using uintmax_t for value part and separate
895 negation flag. It adds value of SRC and SRC_NEG to DEST and DEST_NEG.
896 The result will be in DEST and DEST_NEG. See df_readable to understand
897 how the negation flag is used. */
899 add_uint_with_neg_flag (uintmax_t *dest
, bool *dest_neg
,
900 uintmax_t src
, bool src_neg
)
902 if (*dest_neg
== src_neg
)
926 /* Return true if S ends in a string that may be a 36-byte UUID,
927 i.e., of the form HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH, where
928 each H is an upper or lower case hexadecimal digit. */
931 has_uuid_suffix (char const *s
)
933 size_t len
= strlen (s
);
935 && strspn (s
+ len
- 36, "-0123456789abcdefABCDEF") == 36);
938 /* Obtain the block values BV and inode values IV
939 from the file system usage FSU. */
941 get_field_values (struct field_values_t
*bv
,
942 struct field_values_t
*iv
,
943 const struct fs_usage
*fsu
)
946 iv
->input_units
= iv
->output_units
= 1;
947 iv
->total
= fsu
->fsu_files
;
948 iv
->available
= iv
->available_to_root
= fsu
->fsu_ffree
;
949 iv
->negate_available
= false;
951 iv
->used
= UINTMAX_MAX
;
952 iv
->negate_used
= false;
953 if (known_value (iv
->total
) && known_value (iv
->available_to_root
))
955 iv
->used
= iv
->total
- iv
->available_to_root
;
956 iv
->negate_used
= (iv
->total
< iv
->available_to_root
);
960 bv
->input_units
= fsu
->fsu_blocksize
;
961 bv
->output_units
= output_block_size
;
962 bv
->total
= fsu
->fsu_blocks
;
963 bv
->available
= fsu
->fsu_bavail
;
964 bv
->available_to_root
= fsu
->fsu_bfree
;
965 bv
->negate_available
= (fsu
->fsu_bavail_top_bit_set
966 && known_value (fsu
->fsu_bavail
));
968 bv
->used
= UINTMAX_MAX
;
969 bv
->negate_used
= false;
970 if (known_value (bv
->total
) && known_value (bv
->available_to_root
))
972 bv
->used
= bv
->total
- bv
->available_to_root
;
973 bv
->negate_used
= (bv
->total
< bv
->available_to_root
);
977 /* Add block and inode values to grand total. */
979 add_to_grand_total (struct field_values_t
*bv
, struct field_values_t
*iv
)
981 if (known_value (iv
->total
))
982 grand_fsu
.fsu_files
+= iv
->total
;
983 if (known_value (iv
->available
))
984 grand_fsu
.fsu_ffree
+= iv
->available
;
986 if (known_value (bv
->total
))
987 grand_fsu
.fsu_blocks
+= bv
->input_units
* bv
->total
;
988 if (known_value (bv
->available_to_root
))
989 grand_fsu
.fsu_bfree
+= bv
->input_units
* bv
->available_to_root
;
990 if (known_value (bv
->available
))
991 add_uint_with_neg_flag (&grand_fsu
.fsu_bavail
,
992 &grand_fsu
.fsu_bavail_top_bit_set
,
993 bv
->input_units
* bv
->available
,
994 bv
->negate_available
);
997 /* Obtain a space listing for the device with absolute file name DEVICE.
998 If MOUNT_POINT is non-null, it is the name of the root of the
999 file system on DEVICE.
1000 If STAT_FILE is non-null, it is the name of a file within the file
1001 system that the user originally asked for; this provides better
1002 diagnostics, and sometimes it provides better results on networked
1003 file systems that give different free-space results depending on
1004 where in the file system you probe.
1005 If FSTYPE is non-null, it is the type of the file system on DEVICE.
1006 If MOUNT_POINT is non-null, then DEVICE may be null -- certain systems may
1007 not be able to produce statistics in this case.
1008 ME_DUMMY and ME_REMOTE are the mount entry flags.
1009 Caller must set PROCESS_ALL to true when iterating over all entries, as
1010 when df is invoked with no non-option argument. See below for details. */
1013 get_dev (char const *device
, char const *mount_point
, char const *file
,
1014 char const *stat_file
, char const *fstype
,
1015 bool me_dummy
, bool me_remote
,
1016 const struct fs_usage
*force_fsu
,
1019 if (me_remote
&& show_local_fs
)
1022 if (me_dummy
&& !show_all_fs
&& !show_listed_fs
)
1025 if (!selected_fstype (fstype
) || excluded_fstype (fstype
))
1028 /* Ignore relative MOUNT_POINTs, which are present for example
1029 in /proc/mounts on Linux with network namespaces. */
1030 if (!force_fsu
&& mount_point
&& ! IS_ABSOLUTE_FILE_NAME (mount_point
))
1033 /* If MOUNT_POINT is null, then the file system is not mounted, and this
1034 program reports on the file system that the special file is on.
1035 It would be better to report on the unmounted file system,
1036 but statfs doesn't do that on most systems. */
1038 stat_file
= mount_point
? mount_point
: device
;
1040 struct fs_usage fsu
;
1043 else if (get_fs_usage (stat_file
, device
, &fsu
))
1045 /* If we can't access a system provided entry due
1046 to it not being present (now), or due to permissions,
1047 just output placeholder values rather than failing. */
1048 if (process_all
&& (errno
== EACCES
|| errno
== ENOENT
))
1054 fsu
.fsu_bavail_top_bit_set
= false;
1055 fsu
.fsu_blocksize
= fsu
.fsu_blocks
= fsu
.fsu_bfree
=
1056 fsu
.fsu_bavail
= fsu
.fsu_files
= fsu
.fsu_ffree
= UINTMAX_MAX
;
1060 error (0, errno
, "%s", quotef (stat_file
));
1061 exit_status
= EXIT_FAILURE
;
1065 else if (process_all
&& show_all_fs
)
1067 /* Ensure we don't output incorrect stats for over-mounted directories.
1068 Discard stats when the device name doesn't match. Though don't
1069 discard when used and current mount entries are both remote due
1070 to the possibility of aliased host names or exports. */
1072 if (stat (stat_file
, &sb
) == 0)
1074 struct mount_entry
const * dev_me
= me_for_dev (sb
.st_dev
);
1075 if (dev_me
&& ! STREQ (dev_me
->me_devname
, device
)
1076 && (! dev_me
->me_remote
|| ! me_remote
))
1079 fsu
.fsu_bavail_top_bit_set
= false;
1080 fsu
.fsu_blocksize
= fsu
.fsu_blocks
= fsu
.fsu_bfree
=
1081 fsu
.fsu_bavail
= fsu
.fsu_files
= fsu
.fsu_ffree
= UINTMAX_MAX
;
1086 if (fsu
.fsu_blocks
== 0 && !show_all_fs
&& !show_listed_fs
)
1090 file_systems_processed
= true;
1095 device
= "-"; /* unknown */
1098 file
= "-"; /* unspecified */
1100 char *dev_name
= xstrdup (device
);
1103 /* On some systems, dev_name is a long-named symlink like
1104 /dev/disk/by-uuid/828fc648-9f30-43d8-a0b1-f7196a2edb66 pointing to a
1105 much shorter and more useful name like /dev/sda1. It may also look
1106 like /dev/mapper/luks-828fc648-9f30-43d8-a0b1-f7196a2edb66 and point to
1107 /dev/dm-0. When process_all is true and dev_name is a symlink whose
1108 name ends with a UUID use the resolved name instead. */
1110 && has_uuid_suffix (dev_name
)
1111 && (resolved_dev
= canonicalize_filename_mode (dev_name
, CAN_EXISTING
)))
1114 dev_name
= resolved_dev
;
1118 fstype
= "-"; /* unknown */
1120 struct field_values_t block_values
;
1121 struct field_values_t inode_values
;
1122 get_field_values (&block_values
, &inode_values
, &fsu
);
1124 /* Add to grand total unless processing grand total line. */
1125 if (print_grand_total
&& ! force_fsu
)
1126 add_to_grand_total (&block_values
, &inode_values
);
1129 for (col
= 0; col
< ncolumns
; col
++)
1131 char buf
[LONGEST_HUMAN_READABLE
+ 2];
1134 struct field_values_t
*v
;
1135 switch (columns
[col
]->field_type
)
1147 affirm (!"bad field_type");
1150 switch (columns
[col
]->field
)
1153 cell
= xstrdup (dev_name
);
1157 cell
= xstrdup (fstype
);
1162 cell
= xstrdup (df_readable (false, v
->total
, buf
,
1163 v
->input_units
, v
->output_units
));
1168 cell
= xstrdup (df_readable (v
->negate_used
, v
->used
, buf
,
1169 v
->input_units
, v
->output_units
));
1174 cell
= xstrdup (df_readable (v
->negate_available
, v
->available
, buf
,
1175 v
->input_units
, v
->output_units
));
1182 if (! known_value (v
->used
) || ! known_value (v
->available
))
1184 else if (!v
->negate_used
1185 && v
->used
<= TYPE_MAXIMUM (uintmax_t) / 100
1186 && v
->used
+ v
->available
!= 0
1187 && (v
->used
+ v
->available
< v
->used
)
1188 == v
->negate_available
)
1190 uintmax_t u100
= v
->used
* 100;
1191 uintmax_t nonroot_total
= v
->used
+ v
->available
;
1192 pct
= u100
/ nonroot_total
+ (u100
% nonroot_total
!= 0);
1196 /* The calculation cannot be done easily with integer
1197 arithmetic. Fall back on floating point. This can suffer
1198 from minor rounding errors, but doing it exactly requires
1199 multiple precision arithmetic, and it's not worth the
1201 double u
= v
->negate_used
? - (double) - v
->used
: v
->used
;
1202 double a
= v
->negate_available
1203 ? - (double) - v
->available
: v
->available
;
1204 double nonroot_total
= u
+ a
;
1207 long int lipct
= pct
= u
* 100 / nonroot_total
;
1208 double ipct
= lipct
;
1210 /* Like 'pct = ceil (dpct);', but avoid ceil so that
1211 the math library needn't be linked. */
1212 if (ipct
- 1 < pct
&& pct
<= ipct
+ 1)
1213 pct
= ipct
+ (ipct
< pct
);
1219 if (asprintf (&cell
, "%.0f%%", pct
) == -1)
1223 cell
= strdup ("-");
1232 cell
= xstrdup (file
);
1236 #ifdef HIDE_AUTOMOUNT_PREFIX
1237 /* Don't print the first directory name in MOUNT_POINT if it's an
1238 artifact of an automounter. This is a bit too aggressive to be
1240 if (STRNCMP_LIT (mount_point
, "/auto/") == 0)
1242 else if (STRNCMP_LIT (mount_point
, "/tmp_mnt/") == 0)
1245 cell
= xstrdup (mount_point
);
1249 affirm (!"unhandled field");
1254 replace_problematic_chars (cell
);
1255 size_t cell_width
= mbswidth (cell
, 0);
1256 columns
[col
]->width
= MAX (columns
[col
]->width
, cell_width
);
1257 table
[nrows
- 1][col
] = cell
;
1262 /* Scan the mount list returning the _last_ device found for MOUNT.
1263 nullptr is returned if MOUNT not found. The result is malloced. */
1265 last_device_for_mount (char const *mount
)
1267 struct mount_entry
const *me
;
1268 struct mount_entry
const *le
= nullptr;
1270 for (me
= mount_list
; me
; me
= me
->me_next
)
1272 if (STREQ (me
->me_mountdir
, mount
))
1278 char *devname
= le
->me_devname
;
1279 char *canon_dev
= canonicalize_file_name (devname
);
1280 if (canon_dev
&& IS_ABSOLUTE_FILE_NAME (canon_dev
))
1283 return xstrdup (le
->me_devname
);
1289 /* If DEVICE corresponds to a mount point, show its usage
1290 and return true. Otherwise, return false. */
1292 get_device (char const *device
)
1294 struct mount_entry
const *me
;
1295 struct mount_entry
const *best_match
= nullptr;
1296 bool best_match_accessible
= false;
1297 bool eclipsed_device
= false;
1298 char const *file
= device
;
1300 char *resolved
= canonicalize_file_name (device
);
1301 if (resolved
&& IS_ABSOLUTE_FILE_NAME (resolved
))
1304 size_t best_match_len
= SIZE_MAX
;
1305 for (me
= mount_list
; me
; me
= me
->me_next
)
1307 /* TODO: Should cache canon_dev in the mount_entry struct. */
1308 char *devname
= me
->me_devname
;
1309 char *canon_dev
= canonicalize_file_name (me
->me_devname
);
1310 if (canon_dev
&& IS_ABSOLUTE_FILE_NAME (canon_dev
))
1311 devname
= canon_dev
;
1313 if (STREQ (device
, devname
))
1315 char *last_device
= last_device_for_mount (me
->me_mountdir
);
1316 eclipsed_device
= last_device
&& ! STREQ (last_device
, devname
);
1317 size_t len
= strlen (me
->me_mountdir
);
1319 if (! eclipsed_device
1320 && (! best_match_accessible
|| len
< best_match_len
))
1322 struct stat device_stats
;
1323 bool this_match_accessible
= false;
1325 if (stat (me
->me_mountdir
, &device_stats
) == 0)
1326 best_match_accessible
= this_match_accessible
= true;
1328 if (this_match_accessible
1329 || (! best_match_accessible
&& len
< best_match_len
))
1332 if (len
== 1) /* Traditional root. */
1339 best_match_len
= len
;
1353 get_dev (best_match
->me_devname
, best_match
->me_mountdir
, file
, nullptr,
1354 best_match
->me_type
, best_match
->me_dummy
,
1355 best_match
->me_remote
, nullptr, false);
1358 else if (eclipsed_device
)
1360 error (0, 0, _("cannot access %s: over-mounted by another device"),
1362 exit_status
= EXIT_FAILURE
;
1369 /* Figure out which device file or directory POINT is mounted on
1370 and show its device usage.
1371 STATP must be the result of 'stat (POINT, STATP)'. */
1373 get_point (char const *point
, const struct stat
*statp
)
1375 struct stat device_stats
;
1376 struct mount_entry
*me
;
1377 struct mount_entry
const *best_match
= nullptr;
1379 /* Calculate the real absolute file name for POINT, and use that to find
1380 the mount point. This avoids statting unavailable mount points,
1381 which can hang df. */
1382 char *resolved
= canonicalize_file_name (point
);
1383 if (resolved
&& resolved
[0] == '/')
1385 size_t resolved_len
= strlen (resolved
);
1386 size_t best_match_len
= 0;
1388 for (me
= mount_list
; me
; me
= me
->me_next
)
1390 if (!STREQ (me
->me_type
, "lofs")
1391 && (!best_match
|| best_match
->me_dummy
|| !me
->me_dummy
))
1393 size_t len
= strlen (me
->me_mountdir
);
1394 if (best_match_len
<= len
&& len
<= resolved_len
1395 && (len
== 1 /* root file system */
1396 || ((len
== resolved_len
|| resolved
[len
] == '/')
1397 && STREQ_LEN (me
->me_mountdir
, resolved
, len
))))
1400 best_match_len
= len
;
1407 && (stat (best_match
->me_mountdir
, &device_stats
) != 0
1408 || device_stats
.st_dev
!= statp
->st_dev
))
1409 best_match
= nullptr;
1412 for (me
= mount_list
; me
; me
= me
->me_next
)
1414 if (me
->me_dev
== (dev_t
) -1)
1416 if (stat (me
->me_mountdir
, &device_stats
) == 0)
1417 me
->me_dev
= device_stats
.st_dev
;
1420 /* Report only I/O errors. Other errors might be
1421 caused by shadowed mount points, which means POINT
1422 can't possibly be on this file system. */
1425 error (0, errno
, "%s", quotef (me
->me_mountdir
));
1426 exit_status
= EXIT_FAILURE
;
1429 /* So we won't try and fail repeatedly. */
1430 me
->me_dev
= (dev_t
) -2;
1434 if (statp
->st_dev
== me
->me_dev
1435 && !STREQ (me
->me_type
, "lofs")
1436 && (!best_match
|| best_match
->me_dummy
|| !me
->me_dummy
))
1438 /* Skip bogus mtab entries. */
1439 if (stat (me
->me_mountdir
, &device_stats
) != 0
1440 || device_stats
.st_dev
!= me
->me_dev
)
1441 me
->me_dev
= (dev_t
) -2;
1448 get_dev (best_match
->me_devname
, best_match
->me_mountdir
, point
, point
,
1449 best_match
->me_type
, best_match
->me_dummy
, best_match
->me_remote
,
1453 /* We couldn't find the mount entry corresponding to POINT. Go ahead and
1454 print as much info as we can; methods that require the device to be
1455 present will fail at a later point. */
1457 /* Find the actual mount point. */
1458 char *mp
= find_mount_point (point
, statp
);
1461 get_dev (nullptr, mp
, point
, nullptr, nullptr,
1462 false, false, nullptr, false);
1468 /* Determine what kind of node NAME is and show the device usage
1469 for it. STATP is the results of 'stat' on NAME. */
1472 get_entry (char const *name
, struct stat
const *statp
)
1474 if ((S_ISBLK (statp
->st_mode
) || S_ISCHR (statp
->st_mode
))
1475 && get_device (name
))
1478 get_point (name
, statp
);
1481 /* Show all mounted file systems, except perhaps those that are of
1482 an unselected type or are empty. */
1485 get_all_entries (void)
1487 struct mount_entry
*me
;
1489 filter_mount_list (show_all_fs
);
1491 for (me
= mount_list
; me
; me
= me
->me_next
)
1492 get_dev (me
->me_devname
, me
->me_mountdir
, nullptr, nullptr, me
->me_type
,
1493 me
->me_dummy
, me
->me_remote
, nullptr, true);
1496 /* Add FSTYPE to the list of file system types to display. */
1499 add_fs_type (char const *fstype
)
1501 struct fs_type_list
*fsp
;
1503 fsp
= xmalloc (sizeof *fsp
);
1504 fsp
->fs_name
= (char *) fstype
;
1505 fsp
->fs_next
= fs_select_list
;
1506 fs_select_list
= fsp
;
1509 /* Add FSTYPE to the list of file system types to be omitted. */
1512 add_excluded_fs_type (char const *fstype
)
1514 struct fs_type_list
*fsp
;
1516 fsp
= xmalloc (sizeof *fsp
);
1517 fsp
->fs_name
= (char *) fstype
;
1518 fsp
->fs_next
= fs_exclude_list
;
1519 fs_exclude_list
= fsp
;
1525 if (status
!= EXIT_SUCCESS
)
1529 printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name
);
1531 Show information about the file system on which each FILE resides,\n\
1532 or all file systems by default.\n\
1535 emit_mandatory_arg_note ();
1537 /* TRANSLATORS: The thousands and decimal separators are best
1538 adjusted to an appropriate default for your locale. */
1540 -a, --all include pseudo, duplicate, inaccessible file systems\n\
1541 -B, --block-size=SIZE scale sizes by SIZE before printing them; e.g.,\n\
1542 '-BM' prints sizes in units of 1,048,576 bytes;\n\
1543 see SIZE format below\n\
1544 -h, --human-readable print sizes in powers of 1024 (e.g., 1023M)\n\
1545 -H, --si print sizes in powers of 1000 (e.g., 1.1G)\n\
1548 -i, --inodes list inode information instead of block usage\n\
1549 -k like --block-size=1K\n\
1550 -l, --local limit listing to local file systems\n\
1551 --no-sync do not invoke sync before getting usage info (default)\
1555 --output[=FIELD_LIST] use the output format defined by FIELD_LIST,\n\
1556 or print all fields if FIELD_LIST is omitted.\n\
1557 -P, --portability use the POSIX output format\n\
1558 --sync invoke sync before getting usage info\n\
1561 --total elide all entries insignificant to available space,\n\
1562 and produce a grand total\n\
1565 -t, --type=TYPE limit listing to file systems of type TYPE\n\
1566 -T, --print-type print file system type\n\
1567 -x, --exclude-type=TYPE limit listing to file systems not of type TYPE\n\
1570 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
1571 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
1572 emit_blocksize_note ("DF");
1575 FIELD_LIST is a comma-separated list of columns to be included. Valid\n\
1576 field names are: 'source', 'fstype', 'itotal', 'iused', 'iavail', 'ipcent',\n\
1577 'size', 'used', 'avail', 'pcent', 'file' and 'target' (see info page).\n\
1579 emit_ancillary_info (PROGRAM_NAME
);
1585 main (int argc
, char **argv
)
1587 struct stat
*stats
= nullptr;
1589 initialize_main (&argc
, &argv
);
1590 set_program_name (argv
[0]);
1591 setlocale (LC_ALL
, "");
1592 bindtextdomain (PACKAGE
, LOCALEDIR
);
1593 textdomain (PACKAGE
);
1595 atexit (close_stdout
);
1597 fs_select_list
= nullptr;
1598 fs_exclude_list
= nullptr;
1599 show_all_fs
= false;
1600 show_listed_fs
= false;
1601 human_output_opts
= -1;
1603 file_systems_processed
= false;
1604 exit_status
= EXIT_SUCCESS
;
1605 print_grand_total
= false;
1606 grand_fsu
.fsu_blocksize
= 1;
1608 /* If true, use the POSIX output format. */
1609 bool posix_format
= false;
1611 char const *msg_mut_excl
= _("options %s and %s are mutually exclusive");
1616 int c
= getopt_long (argc
, argv
, "aB:iF:hHklmPTt:vx:", long_options
,
1628 enum strtol_error e
= human_options (optarg
, &human_output_opts
,
1629 &output_block_size
);
1630 if (e
!= LONGINT_OK
)
1631 xstrtol_fatal (e
, oi
, c
, long_options
, optarg
);
1635 if (header_mode
== OUTPUT_MODE
)
1637 error (0, 0, msg_mut_excl
, "-i", "--output");
1638 usage (EXIT_FAILURE
);
1640 header_mode
= INODES_MODE
;
1643 human_output_opts
= human_autoscale
| human_SI
| human_base_1024
;
1644 output_block_size
= 1;
1647 human_output_opts
= human_autoscale
| human_SI
;
1648 output_block_size
= 1;
1651 human_output_opts
= 0;
1652 output_block_size
= 1024;
1655 show_local_fs
= true;
1657 case 'm': /* obsolescent, exists for BSD compatibility */
1658 human_output_opts
= 0;
1659 output_block_size
= 1024 * 1024;
1662 if (header_mode
== OUTPUT_MODE
)
1664 error (0, 0, msg_mut_excl
, "-T", "--output");
1665 usage (EXIT_FAILURE
);
1670 if (header_mode
== OUTPUT_MODE
)
1672 error (0, 0, msg_mut_excl
, "-P", "--output");
1673 usage (EXIT_FAILURE
);
1675 posix_format
= true;
1678 require_sync
= true;
1680 case NO_SYNC_OPTION
:
1681 require_sync
= false;
1685 /* Accept -F as a synonym for -t for compatibility with Solaris. */
1687 add_fs_type (optarg
);
1690 case 'v': /* For SysV compatibility. */
1694 add_excluded_fs_type (optarg
);
1698 if (header_mode
== INODES_MODE
)
1700 error (0, 0, msg_mut_excl
, "-i", "--output");
1701 usage (EXIT_FAILURE
);
1703 if (posix_format
&& header_mode
== DEFAULT_MODE
)
1705 error (0, 0, msg_mut_excl
, "-P", "--output");
1706 usage (EXIT_FAILURE
);
1710 error (0, 0, msg_mut_excl
, "-T", "--output");
1711 usage (EXIT_FAILURE
);
1713 header_mode
= OUTPUT_MODE
;
1715 decode_output_arg (optarg
);
1719 print_grand_total
= true;
1722 case_GETOPT_HELP_CHAR
;
1723 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1726 usage (EXIT_FAILURE
);
1730 if (human_output_opts
== -1)
1734 human_output_opts
= 0;
1735 output_block_size
= (getenv ("POSIXLY_CORRECT") ? 512 : 1024);
1738 human_options (getenv ("DF_BLOCK_SIZE"),
1739 &human_output_opts
, &output_block_size
);
1742 if (header_mode
== INODES_MODE
|| header_mode
== OUTPUT_MODE
)
1744 else if (human_output_opts
& human_autoscale
)
1745 header_mode
= HUMAN_MODE
;
1746 else if (posix_format
)
1747 header_mode
= POSIX_MODE
;
1749 /* Fail if the same file system type was both selected and excluded. */
1752 struct fs_type_list
*fs_incl
;
1753 for (fs_incl
= fs_select_list
; fs_incl
; fs_incl
= fs_incl
->fs_next
)
1755 struct fs_type_list
*fs_excl
;
1756 for (fs_excl
= fs_exclude_list
; fs_excl
; fs_excl
= fs_excl
->fs_next
)
1758 if (STREQ (fs_incl
->fs_name
, fs_excl
->fs_name
))
1761 _("file system type %s both selected and excluded"),
1762 quote (fs_incl
->fs_name
));
1769 return EXIT_FAILURE
;
1774 /* stat each of the given entries to make sure any corresponding
1775 partition is automounted. This must be done before reading the
1776 file system table. */
1777 stats
= xnmalloc (argc
- optind
, sizeof *stats
);
1778 for (int i
= optind
; i
< argc
; ++i
)
1780 int err
= automount_stat_err (argv
[i
], &stats
[i
- optind
]);
1783 error (0, err
, "%s", quotef (argv
[i
]));
1784 exit_status
= EXIT_FAILURE
;
1791 read_file_system_list ((fs_select_list
!= nullptr
1792 || fs_exclude_list
!= nullptr
1794 || field_data
[FSTYPE_FIELD
].used
1797 if (mount_list
== nullptr)
1799 /* Couldn't read the table of mounted file systems.
1800 Fail if df was invoked with no file name arguments,
1801 or when either of -a, -l, -t or -x is used with file name
1802 arguments. Otherwise, merely give a warning and proceed. */
1804 if ( ! (optind
< argc
)
1807 || fs_select_list
!= nullptr
1808 || fs_exclude_list
!= nullptr))
1810 status
= EXIT_FAILURE
;
1812 char const *warning
= (status
== 0 ? _("Warning: ") : "");
1813 error (status
, errno
, "%s%s", warning
,
1814 _("cannot read table of mounted file systems"));
1825 /* Display explicitly requested empty file systems. */
1826 show_listed_fs
= true;
1828 for (int i
= optind
; i
< argc
; ++i
)
1830 get_entry (argv
[i
], &stats
[i
- optind
]);
1835 if (file_systems_processed
)
1837 if (print_grand_total
)
1839 (field_data
[SOURCE_FIELD
].used
? "-" : "total"),
1840 nullptr, nullptr, nullptr, false, false, &grand_fsu
, false);
1846 /* Print the "no FS processed" diagnostic only if there was no preceding
1847 diagnostic, e.g., if all have been excluded. */
1848 if (exit_status
== EXIT_SUCCESS
)
1849 error (EXIT_FAILURE
, 0, _("no file systems processed"));
1852 main_exit (exit_status
);