source: mainline/uspace/app/df/df.c@ 4f29118

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 4f29118 was 6afc9d7, checked in by Jiri Svoboda <jiri@…>, 10 years ago

UNIX-like I/O functions should use errno to return error code for many reasons.

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[66366470]1/*
2 * Copyright (c) 2013 Manuele Conti
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup df
30 * @brief Df utility.
31 * @{
32 */
33/**
34 * @file
35 */
36
37#include <stdio.h>
38#include <stdlib.h>
39#include <unistd.h>
[e8f0158]40#include <stdint.h>
[be99d30]41#include <getopt.h>
[9dc6083]42#include <sys/statfs.h>
[66366470]43#include <errno.h>
44#include <adt/list.h>
45#include <vfs/vfs.h>
46
47#define NAME "df"
48
[3432ddb]49#define HEADER_TABLE "Filesystem %4u-blocks Used Available Used%% Mounted on"
50#define HEADER_TABLE_HR "Filesystem Size Used Available Used%% Mounted on"
[66366470]51
[737227c7]52#define PERCENTAGE(x, tot) (tot ? (100ULL * (x) / (tot)) : 0)
[be99d30]53#define FSBK_TO_BK(x, fsbk, bk) \
54 (((fsbk) != 0 && (fsbk) < (bk)) ? \
55 (unsigned long long) ((x) / ((bk) / (fsbk))) : \
56 (unsigned long long) ((x) * ((fsbk) / (bk))))
57
[f4cbf9dd]58static unsigned int unit_size;
[3432ddb]59static unsigned int human_readable;
[f4cbf9dd]60
[737227c7]61static void size_to_human_readable(char *buf, uint64_t bytes);
[3432ddb]62static void print_header(void);
[be99d30]63static void print_statfs(struct statfs *, char *, char *);
64static void print_usage(void);
[66366470]65
66int main(int argc, char *argv[])
67{
[be99d30]68 int optres, errflg = 0;
[66366470]69 struct statfs st;
[332513a]70
[f4cbf9dd]71 unit_size = 512;
[3432ddb]72 human_readable = 0;
[f4cbf9dd]73
[be99d30]74 /******************************************/
75 /* Parse command line options... */
76 /******************************************/
[523a4b6]77 while ((optres = getopt(argc, argv, ":uhb:")) != -1) {
[be99d30]78 switch(optres) {
[523a4b6]79 case 'u':
80 print_usage();
81 return 0;
82
[be99d30]83 case 'h':
[3432ddb]84 human_readable = 1;
[be99d30]85 break;
[8a8a08d1]86
[f4cbf9dd]87 case 'b':
88 str_uint32_t(optarg, NULL, 0, 0, &unit_size);
89 break;
[332513a]90
91 case ':':
[737227c7]92 fprintf(stderr, "Option -%c requires an operand\n",
93 optopt);
[be99d30]94 errflg++;
95 break;
96
97 case '?':
98 fprintf(stderr, "Unrecognized option: -%c\n", optopt);
99 errflg++;
100 break;
101
102 default:
[737227c7]103 fprintf(stderr,
104 "Unknown error while parsing command line options");
[be99d30]105 errflg++;
106 break;
107 }
108 }
[66366470]109
[be99d30]110 if (optind > argc) {
[737227c7]111 fprintf(stderr, "Too many input parameters\n");
[be99d30]112 errflg++;
113 }
[332513a]114
[be99d30]115 if (errflg) {
116 print_usage();
117 return 1;
118 }
[332513a]119
[66366470]120 LIST_INITIALIZE(mtab_list);
[6afc9d7]121 vfs_get_mtab_list(&mtab_list);
[737227c7]122
[3432ddb]123 print_header();
[e1ec5a2]124 list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) {
[6afc9d7]125 if (statfs(mtab_ent->mp, &st) == 0) {
126 print_statfs(&st, mtab_ent->fs_name, mtab_ent->mp);
127 } else {
128 fprintf(stderr, "Cannot get information for '%s' (%d).\n",
129 mtab_ent->mp, errno);
130 }
[66366470]131 }
[737227c7]132
[332513a]133 putchar('\n');
[66366470]134 return 0;
135}
136
[737227c7]137static void size_to_human_readable(char *buf, uint64_t bytes)
[3432ddb]138{
139 const char *units = "BkMGTPEZY";
140 int i = 0;
141
142 while (bytes >= 1024) {
143 bytes /= 1024;
144 i++;
145 }
146
[737227c7]147 snprintf(buf, 6, "%4llu%c", (unsigned long long) bytes, units[i]);
[3432ddb]148}
149
150static void print_header(void)
151{
152 if (human_readable)
[332513a]153 printf(HEADER_TABLE_HR);
154 else
[3432ddb]155 printf(HEADER_TABLE, unit_size);
[737227c7]156
[3432ddb]157 putchar('\n');
158}
159
[be99d30]160static void print_statfs(struct statfs *st, char *name, char *mountpoint)
161{
[737227c7]162 uint64_t const used_blocks = st->f_blocks - st->f_bfree;
163 unsigned const perc_used = PERCENTAGE(used_blocks, st->f_blocks);
164
[be99d30]165 printf("%10s", name);
[332513a]166
[3432ddb]167 if (human_readable) {
168 char tmp[1024];
[737227c7]169
170 /* Print size */
[3432ddb]171 size_to_human_readable(tmp, st->f_blocks * st->f_bsize);
[737227c7]172 printf(" %14s", tmp);
173
174 /* Number of used blocks */
175 size_to_human_readable(tmp, used_blocks * st->f_bsize);
176 printf(" %14s", tmp);
177
178 /* Number of available blocks */
[3432ddb]179 size_to_human_readable(tmp, st->f_bfree * st->f_bsize);
[737227c7]180 printf(" %14s", tmp);
181
182 /* Percentage of used blocks */
[651c8db]183 printf(" %4u%%", perc_used);
[737227c7]184
185 /* Mount point */
186 printf(" %s\n", mountpoint);
187 } else {
188 /* Blocks / Used blocks / Available blocks / Used% / Mounted on */
189 printf(" %15llu %14llu %14llu %4u%% %s\n",
190 FSBK_TO_BK(st->f_blocks, st->f_bsize, unit_size),
191 FSBK_TO_BK(used_blocks, st->f_bsize, unit_size),
192 FSBK_TO_BK(st->f_bfree, st->f_bsize, unit_size),
193 perc_used,
194 mountpoint);
[3432ddb]195 }
[332513a]196
[be99d30]197}
198
199static void print_usage(void)
200{
[332513a]201 printf("syntax: %s [-u] [-h] [-b <size>] \n", NAME);
202 printf(" u : Show usage.\n");
203 printf(" h : \"Human-readable\" output.\n");
204 printf(" b : Scale block sizes by selected size.\n");
205 printf("\n");
[be99d30]206}
207
[66366470]208/** @}
209 */
Note: See TracBrowser for help on using the repository browser.