mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:22:45 +00:00 
			
		
		
		
	 ed4c2f2f8e
			
		
	
	
		ed4c2f2f8e
		
	
	
	
	
		
			
			This generally seems like a better name, especially if we somehow also need a better name for "read the entire buffer, but not the entire file" somewhere down the line.
		
			
				
	
	
		
			84 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/Hex.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <LibCore/ArgsParser.h>
 | |
| #include <LibCore/DirIterator.h>
 | |
| #include <LibCore/Stream.h>
 | |
| #include <LibCore/System.h>
 | |
| #include <LibMain/Main.h>
 | |
| 
 | |
| static constexpr StringView format_row = "{:10s}\t{:10s}\t{:10s}\t{:10s}"sv;
 | |
| 
 | |
| ErrorOr<int> serenity_main(Main::Arguments arguments)
 | |
| {
 | |
|     TRY(Core::System::pledge("stdio rpath"));
 | |
|     TRY(Core::System::unveil("/sys/devices/storage", "r"));
 | |
|     TRY(Core::System::unveil(nullptr, nullptr));
 | |
| 
 | |
|     Core::ArgsParser args_parser;
 | |
|     args_parser.set_general_help("List Storage (Block) devices.");
 | |
|     args_parser.parse(arguments);
 | |
| 
 | |
|     Core::DirIterator di("/sys/devices/storage/", Core::DirIterator::SkipParentAndBaseDir);
 | |
|     if (di.has_error()) {
 | |
|         warnln("Failed to open /sys/devices/storage - {}", di.error());
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     outln(format_row, "LUN"sv, "Command set"sv, "Block Size"sv, "Last LBA"sv);
 | |
| 
 | |
|     TRY(Core::System::pledge("stdio rpath"));
 | |
| 
 | |
|     while (di.has_next()) {
 | |
|         auto dir = di.next_path();
 | |
|         auto command_set_filename = DeprecatedString::formatted("/sys/devices/storage/{}/command_set", dir);
 | |
|         auto command_set_file = Core::Stream::File::open(command_set_filename, Core::Stream::OpenMode::Read);
 | |
|         if (command_set_file.is_error()) {
 | |
|             dbgln("Error: Could not open {}: {}", command_set_filename, command_set_file.error());
 | |
|             continue;
 | |
|         }
 | |
|         auto last_lba_filename = DeprecatedString::formatted("/sys/devices/storage/{}/last_lba", dir);
 | |
|         auto last_lba_file = Core::Stream::File::open(last_lba_filename, Core::Stream::OpenMode::Read);
 | |
|         if (last_lba_file.is_error()) {
 | |
|             dbgln("Error: Could not open {}: {}", last_lba_filename, last_lba_file.error());
 | |
|             continue;
 | |
|         }
 | |
|         auto sector_size_filename = DeprecatedString::formatted("/sys/devices/storage/{}/sector_size", dir);
 | |
|         auto sector_size_file = Core::Stream::File::open(sector_size_filename, Core::Stream::OpenMode::Read);
 | |
|         if (sector_size_file.is_error()) {
 | |
|             dbgln("Error: Could not open {}: {}", sector_size_filename, sector_size_file.error());
 | |
|             continue;
 | |
|         }
 | |
| 
 | |
|         auto maybe_command_set = command_set_file.value()->read_until_eof();
 | |
|         if (maybe_command_set.is_error()) {
 | |
|             dbgln("Error: Could not read {}: {}", command_set_filename, maybe_command_set.error());
 | |
|             continue;
 | |
|         }
 | |
|         DeprecatedString command_set = StringView(maybe_command_set.value().bytes());
 | |
| 
 | |
|         auto maybe_last_lba = last_lba_file.value()->read_until_eof();
 | |
|         if (maybe_last_lba.is_error()) {
 | |
|             dbgln("Error: Could not read {}: {}", last_lba_filename, maybe_last_lba.error());
 | |
|             continue;
 | |
|         }
 | |
|         DeprecatedString last_lba = StringView(maybe_last_lba.value().bytes());
 | |
| 
 | |
|         auto maybe_sector_size = sector_size_file.value()->read_until_eof();
 | |
|         if (maybe_sector_size.is_error()) {
 | |
|             dbgln("Error: Could not read {}: {}", sector_size_filename, maybe_sector_size.error());
 | |
|             continue;
 | |
|         }
 | |
|         DeprecatedString sector_size = StringView(maybe_sector_size.value().bytes());
 | |
| 
 | |
|         outln(format_row, dir, command_set, sector_size, last_lba);
 | |
|     }
 | |
| 
 | |
|     return 0;
 | |
| }
 |