/* * Copyright (c) 2021, David Isaksson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include #include static void fetch_ioctl(int fd, int request) { size_t value; if (ioctl(fd, request, &value) < 0) { perror("ioctl"); exit(1); } outln("{}", value); } ErrorOr serenity_main(Main::Arguments arguments) { TRY(Core::System::unveil("/dev", "r")); TRY(Core::System::unveil(nullptr, nullptr)); TRY(Core::System::pledge("stdio rpath", nullptr)); const char* device = nullptr; bool flag_get_disk_size = false; bool flag_get_block_size = false; Core::ArgsParser args_parser; args_parser.set_general_help("Call block device ioctls"); args_parser.add_option(flag_get_disk_size, "Get size in bytes", "size", 's'); args_parser.add_option(flag_get_block_size, "Get block size in bytes", "block-size", 'b'); args_parser.add_positional_argument(device, "Device to query", "device"); args_parser.parse(arguments); int fd = open(device, O_RDONLY); if (fd < 0) { perror("open"); return 1; } if (flag_get_disk_size) { fetch_ioctl(fd, STORAGE_DEVICE_GET_SIZE); } if (flag_get_block_size) { fetch_ioctl(fd, STORAGE_DEVICE_GET_BLOCK_SIZE); } return 0; }