]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/resizepart.c
misc: consolidate version printing and close_stdout()
[thirdparty/util-linux.git] / disk-utils / resizepart.c
CommitLineData
8863a802
KZ
1#include <getopt.h>
2#include <stdio.h>
3#include <stdlib.h>
4#include <fcntl.h>
5#include <sys/types.h>
6#include <sys/stat.h>
7#include <unistd.h>
8
9#include "c.h"
10#include "nls.h"
11#include "partx.h"
12#include "sysfs.h"
13#include "strutils.h"
dd79e7c9 14#include "closestream.h"
8863a802 15
6e1eda6f 16static void __attribute__((__noreturn__)) usage(void)
8863a802 17{
6e1eda6f 18 FILE *out = stdout;
8863a802
KZ
19 fputs(USAGE_HEADER, out);
20 fprintf(out, _(" %s <disk device> <partition number> <length>\n"),
21 program_invocation_short_name);
451dbcfa
BS
22
23 fputs(USAGE_SEPARATOR, out);
24 fputs(_("Tell the kernel about the new size of a partition.\n"), out);
25
8863a802 26 fputs(USAGE_OPTIONS, out);
f45f3ec3
RM
27 printf(USAGE_HELP_OPTIONS(16));
28 printf(USAGE_MAN_TAIL("resizepart(8)"));
6e1eda6f 29 exit(EXIT_SUCCESS);
8863a802
KZ
30}
31
32static int get_partition_start(int fd, int partno, uint64_t *start)
33{
34 struct stat st;
7f8a4066 35 struct path_cxt *disk = NULL, *part = NULL;
8863a802
KZ
36 dev_t devno = 0;
37 int rc = -1;
38
39 /*
40 * wholedisk
41 */
42 if (fstat(fd, &st) || !S_ISBLK(st.st_mode))
43 goto done;
44 devno = st.st_rdev;
7f8a4066
KZ
45 disk = ul_new_sysfs_path(devno, NULL, NULL);
46 if (!disk)
8863a802
KZ
47 goto done;
48 /*
49 * partition
50 */
7f8a4066 51 devno = sysfs_blkdev_partno_to_devno(disk, partno);
8863a802
KZ
52 if (!devno)
53 goto done;
7f8a4066
KZ
54
55 part = ul_new_sysfs_path(devno, disk, NULL);
56 if (!part)
8863a802 57 goto done;
7f8a4066 58 if (ul_path_read_u64(part, start, "start"))
8863a802
KZ
59 goto done;
60
61 rc = 0;
62done:
7f8a4066
KZ
63 ul_unref_path(part);
64 ul_unref_path(disk);
8863a802
KZ
65 return rc;
66}
67
68int main(int argc, char **argv)
69{
70 int c, fd, partno;
71 const char *wholedisk;
72 uint64_t start;
73
74 static const struct option longopts[] = {
87918040
SK
75 {"help", no_argument, NULL, 'h'},
76 {"version", no_argument, NULL, 'V'},
77 {NULL, 0, NULL, '0'},
8863a802
KZ
78 };
79
80 setlocale(LC_ALL, "");
81 bindtextdomain(PACKAGE, LOCALEDIR);
82 textdomain(PACKAGE);
2c308875 83 close_stdout_atexit();
8863a802
KZ
84
85 while ((c = getopt_long(argc, argv, "Vh", longopts, NULL)) != -1)
86 switch (c) {
87 case 'V':
2c308875 88 print_version(EXIT_SUCCESS);
8863a802 89 case 'h':
6e1eda6f 90 usage();
8863a802 91 default:
677ec86c 92 errtryhelp(EXIT_FAILURE);
8863a802
KZ
93 }
94
6e1eda6f
RM
95 if (argc != 4) {
96 warnx(_("not enough arguments"));
97 errtryhelp(EXIT_FAILURE);
98 }
8863a802
KZ
99
100 wholedisk = argv[1];
101 partno = strtou32_or_err(argv[2], _("invalid partition number argument"));
102
103 if ((fd = open(wholedisk, O_RDONLY)) < 0)
104 err(EXIT_FAILURE, _("cannot open %s"), wholedisk);
105
106 if (get_partition_start(fd, partno, &start))
107 err(EXIT_FAILURE, _("%s: failed to get start of the partition number %s"),
108 wholedisk, argv[2]);
109
8863a802
KZ
110 if (partx_resize_partition(fd, partno, start,
111 strtou64_or_err(argv[3], _("invalid length argument"))))
112 err(EXIT_FAILURE, _("failed to resize partition"));
113
dd79e7c9
SK
114 if (close_fd(fd) != 0)
115 err(EXIT_FAILURE, _("write failed"));
116
8863a802
KZ
117 return 0;
118}