158c5475aSLukas Wunner /*
258c5475aSLukas Wunner  * apple-properties.c - EFI device properties on Macs
358c5475aSLukas Wunner  * Copyright (C) 2016 Lukas Wunner <lukas@wunner.de>
458c5475aSLukas Wunner  *
558c5475aSLukas Wunner  * This program is free software; you can redistribute it and/or modify
658c5475aSLukas Wunner  * it under the terms of the GNU General Public License (version 2) as
758c5475aSLukas Wunner  * published by the Free Software Foundation.
858c5475aSLukas Wunner  *
958c5475aSLukas Wunner  * This program is distributed in the hope that it will be useful,
1058c5475aSLukas Wunner  * but WITHOUT ANY WARRANTY; without even the implied warranty of
1158c5475aSLukas Wunner  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1258c5475aSLukas Wunner  * GNU General Public License for more details.
1358c5475aSLukas Wunner  *
1458c5475aSLukas Wunner  * You should have received a copy of the GNU General Public License
1558c5475aSLukas Wunner  * along with this program; if not, see <http://www.gnu.org/licenses/>.
1663dcc709SAndy Shevchenko  *
1763dcc709SAndy Shevchenko  * Note, all properties are considered as u8 arrays.
1863dcc709SAndy Shevchenko  * To get a value of any of them the caller must use device_property_read_u8_array().
1958c5475aSLukas Wunner  */
2058c5475aSLukas Wunner 
2158c5475aSLukas Wunner #define pr_fmt(fmt) "apple-properties: " fmt
2258c5475aSLukas Wunner 
2358c5475aSLukas Wunner #include <linux/bootmem.h>
2458c5475aSLukas Wunner #include <linux/efi.h>
2544612d7eSAndy Shevchenko #include <linux/io.h>
26630b3affSLukas Wunner #include <linux/platform_data/x86/apple.h>
2758c5475aSLukas Wunner #include <linux/property.h>
2858c5475aSLukas Wunner #include <linux/slab.h>
2958c5475aSLukas Wunner #include <linux/ucs2_string.h>
3058c5475aSLukas Wunner #include <asm/setup.h>
3158c5475aSLukas Wunner 
3258c5475aSLukas Wunner static bool dump_properties __initdata;
3358c5475aSLukas Wunner 
3458c5475aSLukas Wunner static int __init dump_properties_enable(char *arg)
3558c5475aSLukas Wunner {
3658c5475aSLukas Wunner 	dump_properties = true;
3758c5475aSLukas Wunner 	return 0;
3858c5475aSLukas Wunner }
3958c5475aSLukas Wunner 
4058c5475aSLukas Wunner __setup("dump_apple_properties", dump_properties_enable);
4158c5475aSLukas Wunner 
4258c5475aSLukas Wunner struct dev_header {
4358c5475aSLukas Wunner 	u32 len;
4458c5475aSLukas Wunner 	u32 prop_count;
4558c5475aSLukas Wunner 	struct efi_dev_path path[0];
4658c5475aSLukas Wunner 	/*
4758c5475aSLukas Wunner 	 * followed by key/value pairs, each key and value preceded by u32 len,
4858c5475aSLukas Wunner 	 * len includes itself, value may be empty (in which case its len is 4)
4958c5475aSLukas Wunner 	 */
5058c5475aSLukas Wunner };
5158c5475aSLukas Wunner 
5258c5475aSLukas Wunner struct properties_header {
5358c5475aSLukas Wunner 	u32 len;
5458c5475aSLukas Wunner 	u32 version;
5558c5475aSLukas Wunner 	u32 dev_count;
5658c5475aSLukas Wunner 	struct dev_header dev_header[0];
5758c5475aSLukas Wunner };
5858c5475aSLukas Wunner 
5958c5475aSLukas Wunner static void __init unmarshal_key_value_pairs(struct dev_header *dev_header,
6058c5475aSLukas Wunner 					     struct device *dev, void *ptr,
6158c5475aSLukas Wunner 					     struct property_entry entry[])
6258c5475aSLukas Wunner {
6358c5475aSLukas Wunner 	int i;
6458c5475aSLukas Wunner 
6558c5475aSLukas Wunner 	for (i = 0; i < dev_header->prop_count; i++) {
6658c5475aSLukas Wunner 		int remaining = dev_header->len - (ptr - (void *)dev_header);
6758c5475aSLukas Wunner 		u32 key_len, val_len;
6858c5475aSLukas Wunner 		char *key;
6958c5475aSLukas Wunner 
7058c5475aSLukas Wunner 		if (sizeof(key_len) > remaining)
7158c5475aSLukas Wunner 			break;
7258c5475aSLukas Wunner 
7358c5475aSLukas Wunner 		key_len = *(typeof(key_len) *)ptr;
7458c5475aSLukas Wunner 		if (key_len + sizeof(val_len) > remaining ||
7558c5475aSLukas Wunner 		    key_len < sizeof(key_len) + sizeof(efi_char16_t) ||
7658c5475aSLukas Wunner 		    *(efi_char16_t *)(ptr + sizeof(key_len)) == 0) {
7758c5475aSLukas Wunner 			dev_err(dev, "invalid property name len at %#zx\n",
7858c5475aSLukas Wunner 				ptr - (void *)dev_header);
7958c5475aSLukas Wunner 			break;
8058c5475aSLukas Wunner 		}
8158c5475aSLukas Wunner 
8258c5475aSLukas Wunner 		val_len = *(typeof(val_len) *)(ptr + key_len);
8358c5475aSLukas Wunner 		if (key_len + val_len > remaining ||
8458c5475aSLukas Wunner 		    val_len < sizeof(val_len)) {
8558c5475aSLukas Wunner 			dev_err(dev, "invalid property val len at %#zx\n",
8658c5475aSLukas Wunner 				ptr - (void *)dev_header + key_len);
8758c5475aSLukas Wunner 			break;
8858c5475aSLukas Wunner 		}
8958c5475aSLukas Wunner 
9058c5475aSLukas Wunner 		/* 4 bytes to accommodate UTF-8 code points + null byte */
9158c5475aSLukas Wunner 		key = kzalloc((key_len - sizeof(key_len)) * 4 + 1, GFP_KERNEL);
9258c5475aSLukas Wunner 		if (!key) {
9358c5475aSLukas Wunner 			dev_err(dev, "cannot allocate property name\n");
9458c5475aSLukas Wunner 			break;
9558c5475aSLukas Wunner 		}
9658c5475aSLukas Wunner 		ucs2_as_utf8(key, ptr + sizeof(key_len),
9758c5475aSLukas Wunner 			     key_len - sizeof(key_len));
9858c5475aSLukas Wunner 
9958c5475aSLukas Wunner 		entry[i].name = key;
10058c5475aSLukas Wunner 		entry[i].length = val_len - sizeof(val_len);
1016e98503dSAndy Shevchenko 		entry[i].is_array = !!entry[i].length;
10263dcc709SAndy Shevchenko 		entry[i].type = DEV_PROP_U8;
10363dcc709SAndy Shevchenko 		entry[i].pointer.u8_data = ptr + key_len + sizeof(val_len);
10458c5475aSLukas Wunner 
10558c5475aSLukas Wunner 		if (dump_properties) {
10658c5475aSLukas Wunner 			dev_info(dev, "property: %s\n", entry[i].name);
10758c5475aSLukas Wunner 			print_hex_dump(KERN_INFO, pr_fmt(), DUMP_PREFIX_OFFSET,
10863dcc709SAndy Shevchenko 				16, 1, entry[i].pointer.u8_data,
10958c5475aSLukas Wunner 				entry[i].length, true);
11058c5475aSLukas Wunner 		}
11158c5475aSLukas Wunner 
11258c5475aSLukas Wunner 		ptr += key_len + val_len;
11358c5475aSLukas Wunner 	}
11458c5475aSLukas Wunner 
11558c5475aSLukas Wunner 	if (i != dev_header->prop_count) {
11658c5475aSLukas Wunner 		dev_err(dev, "got %d device properties, expected %u\n", i,
11758c5475aSLukas Wunner 			dev_header->prop_count);
11858c5475aSLukas Wunner 		print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
11958c5475aSLukas Wunner 			16, 1, dev_header, dev_header->len, true);
12058c5475aSLukas Wunner 		return;
12158c5475aSLukas Wunner 	}
12258c5475aSLukas Wunner 
12358c5475aSLukas Wunner 	dev_info(dev, "assigning %d device properties\n", i);
12458c5475aSLukas Wunner }
12558c5475aSLukas Wunner 
12658c5475aSLukas Wunner static int __init unmarshal_devices(struct properties_header *properties)
12758c5475aSLukas Wunner {
12858c5475aSLukas Wunner 	size_t offset = offsetof(struct properties_header, dev_header[0]);
12958c5475aSLukas Wunner 
13058c5475aSLukas Wunner 	while (offset + sizeof(struct dev_header) < properties->len) {
13158c5475aSLukas Wunner 		struct dev_header *dev_header = (void *)properties + offset;
13258c5475aSLukas Wunner 		struct property_entry *entry = NULL;
13358c5475aSLukas Wunner 		struct device *dev;
13458c5475aSLukas Wunner 		size_t len;
13558c5475aSLukas Wunner 		int ret, i;
13658c5475aSLukas Wunner 		void *ptr;
13758c5475aSLukas Wunner 
13858c5475aSLukas Wunner 		if (offset + dev_header->len > properties->len ||
13958c5475aSLukas Wunner 		    dev_header->len <= sizeof(*dev_header)) {
14058c5475aSLukas Wunner 			pr_err("invalid len in dev_header at %#zx\n", offset);
14158c5475aSLukas Wunner 			return -EINVAL;
14258c5475aSLukas Wunner 		}
14358c5475aSLukas Wunner 
14458c5475aSLukas Wunner 		ptr = dev_header->path;
14558c5475aSLukas Wunner 		len = dev_header->len - sizeof(*dev_header);
14658c5475aSLukas Wunner 
14758c5475aSLukas Wunner 		dev = efi_get_device_by_path((struct efi_dev_path **)&ptr, &len);
14858c5475aSLukas Wunner 		if (IS_ERR(dev)) {
14958c5475aSLukas Wunner 			pr_err("device path parse error %ld at %#zx:\n",
15058c5475aSLukas Wunner 			       PTR_ERR(dev), ptr - (void *)dev_header);
15158c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
15258c5475aSLukas Wunner 			       16, 1, dev_header, dev_header->len, true);
15358c5475aSLukas Wunner 			dev = NULL;
15458c5475aSLukas Wunner 			goto skip_device;
15558c5475aSLukas Wunner 		}
15658c5475aSLukas Wunner 
15758c5475aSLukas Wunner 		entry = kcalloc(dev_header->prop_count + 1, sizeof(*entry),
15858c5475aSLukas Wunner 				GFP_KERNEL);
15958c5475aSLukas Wunner 		if (!entry) {
16058c5475aSLukas Wunner 			dev_err(dev, "cannot allocate properties\n");
16158c5475aSLukas Wunner 			goto skip_device;
16258c5475aSLukas Wunner 		}
16358c5475aSLukas Wunner 
16458c5475aSLukas Wunner 		unmarshal_key_value_pairs(dev_header, dev, ptr, entry);
16558c5475aSLukas Wunner 		if (!entry[0].name)
16658c5475aSLukas Wunner 			goto skip_device;
16758c5475aSLukas Wunner 
16858c5475aSLukas Wunner 		ret = device_add_properties(dev, entry); /* makes deep copy */
16958c5475aSLukas Wunner 		if (ret)
17058c5475aSLukas Wunner 			dev_err(dev, "error %d assigning properties\n", ret);
17158c5475aSLukas Wunner 
17258c5475aSLukas Wunner 		for (i = 0; entry[i].name; i++)
17358c5475aSLukas Wunner 			kfree(entry[i].name);
17458c5475aSLukas Wunner 
17558c5475aSLukas Wunner skip_device:
17658c5475aSLukas Wunner 		kfree(entry);
17758c5475aSLukas Wunner 		put_device(dev);
17858c5475aSLukas Wunner 		offset += dev_header->len;
17958c5475aSLukas Wunner 	}
18058c5475aSLukas Wunner 
18158c5475aSLukas Wunner 	return 0;
18258c5475aSLukas Wunner }
18358c5475aSLukas Wunner 
18458c5475aSLukas Wunner static int __init map_properties(void)
18558c5475aSLukas Wunner {
18658c5475aSLukas Wunner 	struct properties_header *properties;
18758c5475aSLukas Wunner 	struct setup_data *data;
18858c5475aSLukas Wunner 	u32 data_len;
18958c5475aSLukas Wunner 	u64 pa_data;
19058c5475aSLukas Wunner 	int ret;
19158c5475aSLukas Wunner 
192630b3affSLukas Wunner 	if (!x86_apple_machine)
19358c5475aSLukas Wunner 		return 0;
19458c5475aSLukas Wunner 
19558c5475aSLukas Wunner 	pa_data = boot_params.hdr.setup_data;
19658c5475aSLukas Wunner 	while (pa_data) {
19744612d7eSAndy Shevchenko 		data = memremap(pa_data, sizeof(*data), MEMREMAP_WB);
19858c5475aSLukas Wunner 		if (!data) {
19958c5475aSLukas Wunner 			pr_err("cannot map setup_data header\n");
20058c5475aSLukas Wunner 			return -ENOMEM;
20158c5475aSLukas Wunner 		}
20258c5475aSLukas Wunner 
20358c5475aSLukas Wunner 		if (data->type != SETUP_APPLE_PROPERTIES) {
20458c5475aSLukas Wunner 			pa_data = data->next;
20544612d7eSAndy Shevchenko 			memunmap(data);
20658c5475aSLukas Wunner 			continue;
20758c5475aSLukas Wunner 		}
20858c5475aSLukas Wunner 
20958c5475aSLukas Wunner 		data_len = data->len;
21044612d7eSAndy Shevchenko 		memunmap(data);
21158c5475aSLukas Wunner 
21244612d7eSAndy Shevchenko 		data = memremap(pa_data, sizeof(*data) + data_len, MEMREMAP_WB);
21358c5475aSLukas Wunner 		if (!data) {
21458c5475aSLukas Wunner 			pr_err("cannot map setup_data payload\n");
21558c5475aSLukas Wunner 			return -ENOMEM;
21658c5475aSLukas Wunner 		}
21758c5475aSLukas Wunner 
21858c5475aSLukas Wunner 		properties = (struct properties_header *)data->data;
21958c5475aSLukas Wunner 		if (properties->version != 1) {
22058c5475aSLukas Wunner 			pr_err("unsupported version:\n");
22158c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
22258c5475aSLukas Wunner 			       16, 1, properties, data_len, true);
22358c5475aSLukas Wunner 			ret = -ENOTSUPP;
22458c5475aSLukas Wunner 		} else if (properties->len != data_len) {
22558c5475aSLukas Wunner 			pr_err("length mismatch, expected %u\n", data_len);
22658c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
22758c5475aSLukas Wunner 			       16, 1, properties, data_len, true);
22858c5475aSLukas Wunner 			ret = -EINVAL;
22958c5475aSLukas Wunner 		} else
23058c5475aSLukas Wunner 			ret = unmarshal_devices(properties);
23158c5475aSLukas Wunner 
23258c5475aSLukas Wunner 		/*
23358c5475aSLukas Wunner 		 * Can only free the setup_data payload but not its header
23458c5475aSLukas Wunner 		 * to avoid breaking the chain of ->next pointers.
23558c5475aSLukas Wunner 		 */
23658c5475aSLukas Wunner 		data->len = 0;
23744612d7eSAndy Shevchenko 		memunmap(data);
23858c5475aSLukas Wunner 		free_bootmem_late(pa_data + sizeof(*data), data_len);
23958c5475aSLukas Wunner 
24058c5475aSLukas Wunner 		return ret;
24158c5475aSLukas Wunner 	}
24258c5475aSLukas Wunner 	return 0;
24358c5475aSLukas Wunner }
24458c5475aSLukas Wunner 
24558c5475aSLukas Wunner fs_initcall(map_properties);
246