2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-11-15 15:11:21 +03:00
|
|
|
#include <AK/ByteBuffer.h>
|
2019-08-13 18:32:22 +03:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
2020-02-20 06:09:20 +03:00
|
|
|
#include <AK/String.h>
|
2021-01-26 20:40:44 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2020-02-06 17:04:03 +03:00
|
|
|
#include <LibCore/File.h>
|
2019-08-14 11:10:54 +03:00
|
|
|
#include <LibPCIDB/Database.h>
|
2019-08-13 18:32:22 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-01-26 20:40:44 +03:00
|
|
|
static bool flag_show_numerical = false;
|
|
|
|
|
|
|
|
static const char* format_numerical = "{:04x}:{:02x}:{:02x}.{} {}: {}:{} (rev {:02x})";
|
|
|
|
static const char* format_textual = "{:04x}:{:02x}:{:02x}.{} {}: {} {} (rev {:02x})";
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
2019-08-13 18:32:22 +03:00
|
|
|
{
|
2020-01-23 11:42:50 +03:00
|
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unveil("/res/pci.ids", "r") < 0) {
|
|
|
|
perror("unveil");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unveil("/proc/pci", "r") < 0) {
|
|
|
|
perror("unveil");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
unveil(nullptr, nullptr);
|
|
|
|
|
2021-01-26 20:40:44 +03:00
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.set_general_help("List PCI devices.");
|
|
|
|
args_parser.add_option(flag_show_numerical, "Show numerical IDs", "numerical", 'n');
|
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
|
|
|
const char* format = flag_show_numerical ? format_numerical : format_textual;
|
|
|
|
|
2021-02-25 23:10:47 +03:00
|
|
|
RefPtr<PCIDB::Database> db;
|
2021-01-26 20:40:44 +03:00
|
|
|
if (!flag_show_numerical) {
|
|
|
|
db = PCIDB::Database::open();
|
|
|
|
if (!db) {
|
|
|
|
warnln("Couldn't open PCI ID database");
|
|
|
|
flag_show_numerical = true;
|
|
|
|
}
|
|
|
|
}
|
2019-08-14 11:10:54 +03:00
|
|
|
|
2020-02-02 14:34:39 +03:00
|
|
|
auto proc_pci = Core::File::construct("/proc/pci");
|
|
|
|
if (!proc_pci->open(Core::IODevice::ReadOnly)) {
|
2019-09-21 21:50:06 +03:00
|
|
|
fprintf(stderr, "Error: %s\n", proc_pci->error_string());
|
2019-08-13 18:32:22 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-01-23 11:42:50 +03:00
|
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-09-21 21:50:06 +03:00
|
|
|
auto file_contents = proc_pci->read_all();
|
2020-06-11 07:40:27 +03:00
|
|
|
auto json = JsonValue::from_string(file_contents);
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(json.has_value());
|
2021-01-26 20:40:44 +03:00
|
|
|
json.value().as_array().for_each([db, format](auto& value) {
|
2019-08-13 18:32:22 +03:00
|
|
|
auto dev = value.as_object();
|
2019-12-31 14:04:30 +03:00
|
|
|
auto seg = dev.get("seg").to_u32();
|
2019-08-13 18:32:22 +03:00
|
|
|
auto bus = dev.get("bus").to_u32();
|
2021-01-31 14:32:50 +03:00
|
|
|
auto device = dev.get("device").to_u32();
|
2019-08-13 18:32:22 +03:00
|
|
|
auto function = dev.get("function").to_u32();
|
|
|
|
auto vendor_id = dev.get("vendor_id").to_u32();
|
|
|
|
auto device_id = dev.get("device_id").to_u32();
|
|
|
|
auto revision_id = dev.get("revision_id").to_u32();
|
|
|
|
auto class_id = dev.get("class").to_u32();
|
2021-01-26 20:40:44 +03:00
|
|
|
auto subclass_id = dev.get("subclass").to_u32();
|
2019-08-13 18:32:22 +03:00
|
|
|
|
2020-02-20 06:09:20 +03:00
|
|
|
String vendor_name;
|
|
|
|
String device_name;
|
|
|
|
String class_name;
|
2019-08-14 11:10:54 +03:00
|
|
|
|
2020-02-20 06:09:20 +03:00
|
|
|
if (db) {
|
|
|
|
vendor_name = db->get_vendor(vendor_id);
|
|
|
|
device_name = db->get_device(vendor_id, device_id);
|
|
|
|
class_name = db->get_class(class_id);
|
|
|
|
}
|
2019-08-14 11:10:54 +03:00
|
|
|
|
2020-02-20 06:09:20 +03:00
|
|
|
if (vendor_name.is_empty())
|
2021-01-26 20:40:44 +03:00
|
|
|
vendor_name = String::format("%04x", vendor_id);
|
2020-02-20 06:09:20 +03:00
|
|
|
if (device_name.is_empty())
|
2021-01-26 20:40:44 +03:00
|
|
|
device_name = String::format("%04x", device_id);
|
2020-02-20 06:09:20 +03:00
|
|
|
if (class_name.is_empty())
|
2021-01-26 20:40:44 +03:00
|
|
|
class_name = String::format("%02x%02x", class_id, subclass_id);
|
2019-08-14 11:10:54 +03:00
|
|
|
|
2021-01-31 14:32:50 +03:00
|
|
|
outln(format, seg, bus, device, function, class_name, vendor_name, device_name, revision_id);
|
2019-08-13 18:32:22 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|