14febfb8dSArd Biesheuvel // SPDX-License-Identifier: GPL-2.0 258c5475aSLukas Wunner /* 358c5475aSLukas Wunner * apple-properties.c - EFI device properties on Macs 458c5475aSLukas Wunner * Copyright (C) 2016 Lukas Wunner <lukas@wunner.de> 558c5475aSLukas Wunner * 663dcc709SAndy Shevchenko * Note, all properties are considered as u8 arrays. 763dcc709SAndy Shevchenko * To get a value of any of them the caller must use device_property_read_u8_array(). 858c5475aSLukas Wunner */ 958c5475aSLukas Wunner 1058c5475aSLukas Wunner #define pr_fmt(fmt) "apple-properties: " fmt 1158c5475aSLukas Wunner 1257c8a661SMike Rapoport #include <linux/memblock.h> 1358c5475aSLukas Wunner #include <linux/efi.h> 1444612d7eSAndy Shevchenko #include <linux/io.h> 15630b3affSLukas Wunner #include <linux/platform_data/x86/apple.h> 1658c5475aSLukas Wunner #include <linux/property.h> 1758c5475aSLukas Wunner #include <linux/slab.h> 1858c5475aSLukas Wunner #include <linux/ucs2_string.h> 1958c5475aSLukas Wunner #include <asm/setup.h> 2058c5475aSLukas Wunner 2158c5475aSLukas Wunner static bool dump_properties __initdata; 2258c5475aSLukas Wunner 2358c5475aSLukas Wunner static int __init dump_properties_enable(char *arg) 2458c5475aSLukas Wunner { 2558c5475aSLukas Wunner dump_properties = true; 2658c5475aSLukas Wunner return 0; 2758c5475aSLukas Wunner } 2858c5475aSLukas Wunner 2958c5475aSLukas Wunner __setup("dump_apple_properties", dump_properties_enable); 3058c5475aSLukas Wunner 3158c5475aSLukas Wunner struct dev_header { 3258c5475aSLukas Wunner u32 len; 3358c5475aSLukas Wunner u32 prop_count; 3458c5475aSLukas Wunner struct efi_dev_path path[0]; 3558c5475aSLukas Wunner /* 3658c5475aSLukas Wunner * followed by key/value pairs, each key and value preceded by u32 len, 3758c5475aSLukas Wunner * len includes itself, value may be empty (in which case its len is 4) 3858c5475aSLukas Wunner */ 3958c5475aSLukas Wunner }; 4058c5475aSLukas Wunner 4158c5475aSLukas Wunner struct properties_header { 4258c5475aSLukas Wunner u32 len; 4358c5475aSLukas Wunner u32 version; 4458c5475aSLukas Wunner u32 dev_count; 4558c5475aSLukas Wunner struct dev_header dev_header[0]; 4658c5475aSLukas Wunner }; 4758c5475aSLukas Wunner 4858c5475aSLukas Wunner static void __init unmarshal_key_value_pairs(struct dev_header *dev_header, 4958c5475aSLukas Wunner struct device *dev, void *ptr, 5058c5475aSLukas Wunner struct property_entry entry[]) 5158c5475aSLukas Wunner { 5258c5475aSLukas Wunner int i; 5358c5475aSLukas Wunner 5458c5475aSLukas Wunner for (i = 0; i < dev_header->prop_count; i++) { 5558c5475aSLukas Wunner int remaining = dev_header->len - (ptr - (void *)dev_header); 56*4466bf82SDmitry Torokhov u32 key_len, val_len, entry_len; 57*4466bf82SDmitry Torokhov const u8 *entry_data; 5858c5475aSLukas Wunner char *key; 5958c5475aSLukas Wunner 6058c5475aSLukas Wunner if (sizeof(key_len) > remaining) 6158c5475aSLukas Wunner break; 6258c5475aSLukas Wunner 6358c5475aSLukas Wunner key_len = *(typeof(key_len) *)ptr; 6458c5475aSLukas Wunner if (key_len + sizeof(val_len) > remaining || 6558c5475aSLukas Wunner key_len < sizeof(key_len) + sizeof(efi_char16_t) || 6658c5475aSLukas Wunner *(efi_char16_t *)(ptr + sizeof(key_len)) == 0) { 6758c5475aSLukas Wunner dev_err(dev, "invalid property name len at %#zx\n", 6858c5475aSLukas Wunner ptr - (void *)dev_header); 6958c5475aSLukas Wunner break; 7058c5475aSLukas Wunner } 7158c5475aSLukas Wunner 7258c5475aSLukas Wunner val_len = *(typeof(val_len) *)(ptr + key_len); 7358c5475aSLukas Wunner if (key_len + val_len > remaining || 7458c5475aSLukas Wunner val_len < sizeof(val_len)) { 7558c5475aSLukas Wunner dev_err(dev, "invalid property val len at %#zx\n", 7658c5475aSLukas Wunner ptr - (void *)dev_header + key_len); 7758c5475aSLukas Wunner break; 7858c5475aSLukas Wunner } 7958c5475aSLukas Wunner 8058c5475aSLukas Wunner /* 4 bytes to accommodate UTF-8 code points + null byte */ 8158c5475aSLukas Wunner key = kzalloc((key_len - sizeof(key_len)) * 4 + 1, GFP_KERNEL); 8258c5475aSLukas Wunner if (!key) { 8358c5475aSLukas Wunner dev_err(dev, "cannot allocate property name\n"); 8458c5475aSLukas Wunner break; 8558c5475aSLukas Wunner } 8658c5475aSLukas Wunner ucs2_as_utf8(key, ptr + sizeof(key_len), 8758c5475aSLukas Wunner key_len - sizeof(key_len)); 8858c5475aSLukas Wunner 89*4466bf82SDmitry Torokhov entry_data = ptr + key_len + sizeof(val_len); 90*4466bf82SDmitry Torokhov entry_len = val_len - sizeof(val_len); 91*4466bf82SDmitry Torokhov entry[i] = PROPERTY_ENTRY_U8_ARRAY_LEN(key, entry_data, 92*4466bf82SDmitry Torokhov entry_len); 9358c5475aSLukas Wunner if (dump_properties) { 94*4466bf82SDmitry Torokhov dev_info(dev, "property: %s\n", key); 9558c5475aSLukas Wunner print_hex_dump(KERN_INFO, pr_fmt(), DUMP_PREFIX_OFFSET, 96*4466bf82SDmitry Torokhov 16, 1, entry_data, entry_len, true); 9758c5475aSLukas Wunner } 9858c5475aSLukas Wunner 9958c5475aSLukas Wunner ptr += key_len + val_len; 10058c5475aSLukas Wunner } 10158c5475aSLukas Wunner 10258c5475aSLukas Wunner if (i != dev_header->prop_count) { 10358c5475aSLukas Wunner dev_err(dev, "got %d device properties, expected %u\n", i, 10458c5475aSLukas Wunner dev_header->prop_count); 10558c5475aSLukas Wunner print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET, 10658c5475aSLukas Wunner 16, 1, dev_header, dev_header->len, true); 10758c5475aSLukas Wunner return; 10858c5475aSLukas Wunner } 10958c5475aSLukas Wunner 11058c5475aSLukas Wunner dev_info(dev, "assigning %d device properties\n", i); 11158c5475aSLukas Wunner } 11258c5475aSLukas Wunner 11358c5475aSLukas Wunner static int __init unmarshal_devices(struct properties_header *properties) 11458c5475aSLukas Wunner { 11558c5475aSLukas Wunner size_t offset = offsetof(struct properties_header, dev_header[0]); 11658c5475aSLukas Wunner 11758c5475aSLukas Wunner while (offset + sizeof(struct dev_header) < properties->len) { 11858c5475aSLukas Wunner struct dev_header *dev_header = (void *)properties + offset; 11958c5475aSLukas Wunner struct property_entry *entry = NULL; 12058c5475aSLukas Wunner struct device *dev; 12158c5475aSLukas Wunner size_t len; 12258c5475aSLukas Wunner int ret, i; 12358c5475aSLukas Wunner void *ptr; 12458c5475aSLukas Wunner 12558c5475aSLukas Wunner if (offset + dev_header->len > properties->len || 12658c5475aSLukas Wunner dev_header->len <= sizeof(*dev_header)) { 12758c5475aSLukas Wunner pr_err("invalid len in dev_header at %#zx\n", offset); 12858c5475aSLukas Wunner return -EINVAL; 12958c5475aSLukas Wunner } 13058c5475aSLukas Wunner 13158c5475aSLukas Wunner ptr = dev_header->path; 13258c5475aSLukas Wunner len = dev_header->len - sizeof(*dev_header); 13358c5475aSLukas Wunner 13458c5475aSLukas Wunner dev = efi_get_device_by_path((struct efi_dev_path **)&ptr, &len); 13558c5475aSLukas Wunner if (IS_ERR(dev)) { 13658c5475aSLukas Wunner pr_err("device path parse error %ld at %#zx:\n", 13758c5475aSLukas Wunner PTR_ERR(dev), ptr - (void *)dev_header); 13858c5475aSLukas Wunner print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET, 13958c5475aSLukas Wunner 16, 1, dev_header, dev_header->len, true); 14058c5475aSLukas Wunner dev = NULL; 14158c5475aSLukas Wunner goto skip_device; 14258c5475aSLukas Wunner } 14358c5475aSLukas Wunner 14458c5475aSLukas Wunner entry = kcalloc(dev_header->prop_count + 1, sizeof(*entry), 14558c5475aSLukas Wunner GFP_KERNEL); 14658c5475aSLukas Wunner if (!entry) { 14758c5475aSLukas Wunner dev_err(dev, "cannot allocate properties\n"); 14858c5475aSLukas Wunner goto skip_device; 14958c5475aSLukas Wunner } 15058c5475aSLukas Wunner 15158c5475aSLukas Wunner unmarshal_key_value_pairs(dev_header, dev, ptr, entry); 15258c5475aSLukas Wunner if (!entry[0].name) 15358c5475aSLukas Wunner goto skip_device; 15458c5475aSLukas Wunner 15558c5475aSLukas Wunner ret = device_add_properties(dev, entry); /* makes deep copy */ 15658c5475aSLukas Wunner if (ret) 15758c5475aSLukas Wunner dev_err(dev, "error %d assigning properties\n", ret); 15858c5475aSLukas Wunner 15958c5475aSLukas Wunner for (i = 0; entry[i].name; i++) 16058c5475aSLukas Wunner kfree(entry[i].name); 16158c5475aSLukas Wunner 16258c5475aSLukas Wunner skip_device: 16358c5475aSLukas Wunner kfree(entry); 16458c5475aSLukas Wunner put_device(dev); 16558c5475aSLukas Wunner offset += dev_header->len; 16658c5475aSLukas Wunner } 16758c5475aSLukas Wunner 16858c5475aSLukas Wunner return 0; 16958c5475aSLukas Wunner } 17058c5475aSLukas Wunner 17158c5475aSLukas Wunner static int __init map_properties(void) 17258c5475aSLukas Wunner { 17358c5475aSLukas Wunner struct properties_header *properties; 17458c5475aSLukas Wunner struct setup_data *data; 17558c5475aSLukas Wunner u32 data_len; 17658c5475aSLukas Wunner u64 pa_data; 17758c5475aSLukas Wunner int ret; 17858c5475aSLukas Wunner 179630b3affSLukas Wunner if (!x86_apple_machine) 18058c5475aSLukas Wunner return 0; 18158c5475aSLukas Wunner 18258c5475aSLukas Wunner pa_data = boot_params.hdr.setup_data; 18358c5475aSLukas Wunner while (pa_data) { 18444612d7eSAndy Shevchenko data = memremap(pa_data, sizeof(*data), MEMREMAP_WB); 18558c5475aSLukas Wunner if (!data) { 18658c5475aSLukas Wunner pr_err("cannot map setup_data header\n"); 18758c5475aSLukas Wunner return -ENOMEM; 18858c5475aSLukas Wunner } 18958c5475aSLukas Wunner 19058c5475aSLukas Wunner if (data->type != SETUP_APPLE_PROPERTIES) { 19158c5475aSLukas Wunner pa_data = data->next; 19244612d7eSAndy Shevchenko memunmap(data); 19358c5475aSLukas Wunner continue; 19458c5475aSLukas Wunner } 19558c5475aSLukas Wunner 19658c5475aSLukas Wunner data_len = data->len; 19744612d7eSAndy Shevchenko memunmap(data); 19858c5475aSLukas Wunner 19944612d7eSAndy Shevchenko data = memremap(pa_data, sizeof(*data) + data_len, MEMREMAP_WB); 20058c5475aSLukas Wunner if (!data) { 20158c5475aSLukas Wunner pr_err("cannot map setup_data payload\n"); 20258c5475aSLukas Wunner return -ENOMEM; 20358c5475aSLukas Wunner } 20458c5475aSLukas Wunner 20558c5475aSLukas Wunner properties = (struct properties_header *)data->data; 20658c5475aSLukas Wunner if (properties->version != 1) { 20758c5475aSLukas Wunner pr_err("unsupported version:\n"); 20858c5475aSLukas Wunner print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET, 20958c5475aSLukas Wunner 16, 1, properties, data_len, true); 21058c5475aSLukas Wunner ret = -ENOTSUPP; 21158c5475aSLukas Wunner } else if (properties->len != data_len) { 21258c5475aSLukas Wunner pr_err("length mismatch, expected %u\n", data_len); 21358c5475aSLukas Wunner print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET, 21458c5475aSLukas Wunner 16, 1, properties, data_len, true); 21558c5475aSLukas Wunner ret = -EINVAL; 21658c5475aSLukas Wunner } else 21758c5475aSLukas Wunner ret = unmarshal_devices(properties); 21858c5475aSLukas Wunner 21958c5475aSLukas Wunner /* 22058c5475aSLukas Wunner * Can only free the setup_data payload but not its header 22158c5475aSLukas Wunner * to avoid breaking the chain of ->next pointers. 22258c5475aSLukas Wunner */ 22358c5475aSLukas Wunner data->len = 0; 22444612d7eSAndy Shevchenko memunmap(data); 22553ab85ebSMike Rapoport memblock_free_late(pa_data + sizeof(*data), data_len); 22658c5475aSLukas Wunner 22758c5475aSLukas Wunner return ret; 22858c5475aSLukas Wunner } 22958c5475aSLukas Wunner return 0; 23058c5475aSLukas Wunner } 23158c5475aSLukas Wunner 23258c5475aSLukas Wunner fs_initcall(map_properties); 233