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/>.
1658c5475aSLukas Wunner  */
1758c5475aSLukas Wunner 
1858c5475aSLukas Wunner #define pr_fmt(fmt) "apple-properties: " fmt
1958c5475aSLukas Wunner 
2058c5475aSLukas Wunner #include <linux/bootmem.h>
2158c5475aSLukas Wunner #include <linux/efi.h>
22630b3affSLukas Wunner #include <linux/platform_data/x86/apple.h>
2358c5475aSLukas Wunner #include <linux/property.h>
2458c5475aSLukas Wunner #include <linux/slab.h>
2558c5475aSLukas Wunner #include <linux/ucs2_string.h>
2658c5475aSLukas Wunner #include <asm/setup.h>
2758c5475aSLukas Wunner 
2858c5475aSLukas Wunner static bool dump_properties __initdata;
2958c5475aSLukas Wunner 
3058c5475aSLukas Wunner static int __init dump_properties_enable(char *arg)
3158c5475aSLukas Wunner {
3258c5475aSLukas Wunner 	dump_properties = true;
3358c5475aSLukas Wunner 	return 0;
3458c5475aSLukas Wunner }
3558c5475aSLukas Wunner 
3658c5475aSLukas Wunner __setup("dump_apple_properties", dump_properties_enable);
3758c5475aSLukas Wunner 
3858c5475aSLukas Wunner struct dev_header {
3958c5475aSLukas Wunner 	u32 len;
4058c5475aSLukas Wunner 	u32 prop_count;
4158c5475aSLukas Wunner 	struct efi_dev_path path[0];
4258c5475aSLukas Wunner 	/*
4358c5475aSLukas Wunner 	 * followed by key/value pairs, each key and value preceded by u32 len,
4458c5475aSLukas Wunner 	 * len includes itself, value may be empty (in which case its len is 4)
4558c5475aSLukas Wunner 	 */
4658c5475aSLukas Wunner };
4758c5475aSLukas Wunner 
4858c5475aSLukas Wunner struct properties_header {
4958c5475aSLukas Wunner 	u32 len;
5058c5475aSLukas Wunner 	u32 version;
5158c5475aSLukas Wunner 	u32 dev_count;
5258c5475aSLukas Wunner 	struct dev_header dev_header[0];
5358c5475aSLukas Wunner };
5458c5475aSLukas Wunner 
5558c5475aSLukas Wunner static void __init unmarshal_key_value_pairs(struct dev_header *dev_header,
5658c5475aSLukas Wunner 					     struct device *dev, void *ptr,
5758c5475aSLukas Wunner 					     struct property_entry entry[])
5858c5475aSLukas Wunner {
5958c5475aSLukas Wunner 	int i;
6058c5475aSLukas Wunner 
6158c5475aSLukas Wunner 	for (i = 0; i < dev_header->prop_count; i++) {
6258c5475aSLukas Wunner 		int remaining = dev_header->len - (ptr - (void *)dev_header);
6358c5475aSLukas Wunner 		u32 key_len, val_len;
6458c5475aSLukas Wunner 		char *key;
6558c5475aSLukas Wunner 
6658c5475aSLukas Wunner 		if (sizeof(key_len) > remaining)
6758c5475aSLukas Wunner 			break;
6858c5475aSLukas Wunner 
6958c5475aSLukas Wunner 		key_len = *(typeof(key_len) *)ptr;
7058c5475aSLukas Wunner 		if (key_len + sizeof(val_len) > remaining ||
7158c5475aSLukas Wunner 		    key_len < sizeof(key_len) + sizeof(efi_char16_t) ||
7258c5475aSLukas Wunner 		    *(efi_char16_t *)(ptr + sizeof(key_len)) == 0) {
7358c5475aSLukas Wunner 			dev_err(dev, "invalid property name len at %#zx\n",
7458c5475aSLukas Wunner 				ptr - (void *)dev_header);
7558c5475aSLukas Wunner 			break;
7658c5475aSLukas Wunner 		}
7758c5475aSLukas Wunner 
7858c5475aSLukas Wunner 		val_len = *(typeof(val_len) *)(ptr + key_len);
7958c5475aSLukas Wunner 		if (key_len + val_len > remaining ||
8058c5475aSLukas Wunner 		    val_len < sizeof(val_len)) {
8158c5475aSLukas Wunner 			dev_err(dev, "invalid property val len at %#zx\n",
8258c5475aSLukas Wunner 				ptr - (void *)dev_header + key_len);
8358c5475aSLukas Wunner 			break;
8458c5475aSLukas Wunner 		}
8558c5475aSLukas Wunner 
8658c5475aSLukas Wunner 		/* 4 bytes to accommodate UTF-8 code points + null byte */
8758c5475aSLukas Wunner 		key = kzalloc((key_len - sizeof(key_len)) * 4 + 1, GFP_KERNEL);
8858c5475aSLukas Wunner 		if (!key) {
8958c5475aSLukas Wunner 			dev_err(dev, "cannot allocate property name\n");
9058c5475aSLukas Wunner 			break;
9158c5475aSLukas Wunner 		}
9258c5475aSLukas Wunner 		ucs2_as_utf8(key, ptr + sizeof(key_len),
9358c5475aSLukas Wunner 			     key_len - sizeof(key_len));
9458c5475aSLukas Wunner 
9558c5475aSLukas Wunner 		entry[i].name = key;
9658c5475aSLukas Wunner 		entry[i].length = val_len - sizeof(val_len);
976e98503dSAndy Shevchenko 		entry[i].is_array = !!entry[i].length;
9858c5475aSLukas Wunner 		entry[i].pointer.raw_data = ptr + key_len + sizeof(val_len);
9958c5475aSLukas Wunner 
10058c5475aSLukas Wunner 		if (dump_properties) {
10158c5475aSLukas Wunner 			dev_info(dev, "property: %s\n", entry[i].name);
10258c5475aSLukas Wunner 			print_hex_dump(KERN_INFO, pr_fmt(), DUMP_PREFIX_OFFSET,
10358c5475aSLukas Wunner 				16, 1, entry[i].pointer.raw_data,
10458c5475aSLukas Wunner 				entry[i].length, true);
10558c5475aSLukas Wunner 		}
10658c5475aSLukas Wunner 
10758c5475aSLukas Wunner 		ptr += key_len + val_len;
10858c5475aSLukas Wunner 	}
10958c5475aSLukas Wunner 
11058c5475aSLukas Wunner 	if (i != dev_header->prop_count) {
11158c5475aSLukas Wunner 		dev_err(dev, "got %d device properties, expected %u\n", i,
11258c5475aSLukas Wunner 			dev_header->prop_count);
11358c5475aSLukas Wunner 		print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
11458c5475aSLukas Wunner 			16, 1, dev_header, dev_header->len, true);
11558c5475aSLukas Wunner 		return;
11658c5475aSLukas Wunner 	}
11758c5475aSLukas Wunner 
11858c5475aSLukas Wunner 	dev_info(dev, "assigning %d device properties\n", i);
11958c5475aSLukas Wunner }
12058c5475aSLukas Wunner 
12158c5475aSLukas Wunner static int __init unmarshal_devices(struct properties_header *properties)
12258c5475aSLukas Wunner {
12358c5475aSLukas Wunner 	size_t offset = offsetof(struct properties_header, dev_header[0]);
12458c5475aSLukas Wunner 
12558c5475aSLukas Wunner 	while (offset + sizeof(struct dev_header) < properties->len) {
12658c5475aSLukas Wunner 		struct dev_header *dev_header = (void *)properties + offset;
12758c5475aSLukas Wunner 		struct property_entry *entry = NULL;
12858c5475aSLukas Wunner 		struct device *dev;
12958c5475aSLukas Wunner 		size_t len;
13058c5475aSLukas Wunner 		int ret, i;
13158c5475aSLukas Wunner 		void *ptr;
13258c5475aSLukas Wunner 
13358c5475aSLukas Wunner 		if (offset + dev_header->len > properties->len ||
13458c5475aSLukas Wunner 		    dev_header->len <= sizeof(*dev_header)) {
13558c5475aSLukas Wunner 			pr_err("invalid len in dev_header at %#zx\n", offset);
13658c5475aSLukas Wunner 			return -EINVAL;
13758c5475aSLukas Wunner 		}
13858c5475aSLukas Wunner 
13958c5475aSLukas Wunner 		ptr = dev_header->path;
14058c5475aSLukas Wunner 		len = dev_header->len - sizeof(*dev_header);
14158c5475aSLukas Wunner 
14258c5475aSLukas Wunner 		dev = efi_get_device_by_path((struct efi_dev_path **)&ptr, &len);
14358c5475aSLukas Wunner 		if (IS_ERR(dev)) {
14458c5475aSLukas Wunner 			pr_err("device path parse error %ld at %#zx:\n",
14558c5475aSLukas Wunner 			       PTR_ERR(dev), ptr - (void *)dev_header);
14658c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
14758c5475aSLukas Wunner 			       16, 1, dev_header, dev_header->len, true);
14858c5475aSLukas Wunner 			dev = NULL;
14958c5475aSLukas Wunner 			goto skip_device;
15058c5475aSLukas Wunner 		}
15158c5475aSLukas Wunner 
15258c5475aSLukas Wunner 		entry = kcalloc(dev_header->prop_count + 1, sizeof(*entry),
15358c5475aSLukas Wunner 				GFP_KERNEL);
15458c5475aSLukas Wunner 		if (!entry) {
15558c5475aSLukas Wunner 			dev_err(dev, "cannot allocate properties\n");
15658c5475aSLukas Wunner 			goto skip_device;
15758c5475aSLukas Wunner 		}
15858c5475aSLukas Wunner 
15958c5475aSLukas Wunner 		unmarshal_key_value_pairs(dev_header, dev, ptr, entry);
16058c5475aSLukas Wunner 		if (!entry[0].name)
16158c5475aSLukas Wunner 			goto skip_device;
16258c5475aSLukas Wunner 
16358c5475aSLukas Wunner 		ret = device_add_properties(dev, entry); /* makes deep copy */
16458c5475aSLukas Wunner 		if (ret)
16558c5475aSLukas Wunner 			dev_err(dev, "error %d assigning properties\n", ret);
16658c5475aSLukas Wunner 
16758c5475aSLukas Wunner 		for (i = 0; entry[i].name; i++)
16858c5475aSLukas Wunner 			kfree(entry[i].name);
16958c5475aSLukas Wunner 
17058c5475aSLukas Wunner skip_device:
17158c5475aSLukas Wunner 		kfree(entry);
17258c5475aSLukas Wunner 		put_device(dev);
17358c5475aSLukas Wunner 		offset += dev_header->len;
17458c5475aSLukas Wunner 	}
17558c5475aSLukas Wunner 
17658c5475aSLukas Wunner 	return 0;
17758c5475aSLukas Wunner }
17858c5475aSLukas Wunner 
17958c5475aSLukas Wunner static int __init map_properties(void)
18058c5475aSLukas Wunner {
18158c5475aSLukas Wunner 	struct properties_header *properties;
18258c5475aSLukas Wunner 	struct setup_data *data;
18358c5475aSLukas Wunner 	u32 data_len;
18458c5475aSLukas Wunner 	u64 pa_data;
18558c5475aSLukas Wunner 	int ret;
18658c5475aSLukas Wunner 
187630b3affSLukas Wunner 	if (!x86_apple_machine)
18858c5475aSLukas Wunner 		return 0;
18958c5475aSLukas Wunner 
19058c5475aSLukas Wunner 	pa_data = boot_params.hdr.setup_data;
19158c5475aSLukas Wunner 	while (pa_data) {
19258c5475aSLukas Wunner 		data = ioremap(pa_data, sizeof(*data));
19358c5475aSLukas Wunner 		if (!data) {
19458c5475aSLukas Wunner 			pr_err("cannot map setup_data header\n");
19558c5475aSLukas Wunner 			return -ENOMEM;
19658c5475aSLukas Wunner 		}
19758c5475aSLukas Wunner 
19858c5475aSLukas Wunner 		if (data->type != SETUP_APPLE_PROPERTIES) {
19958c5475aSLukas Wunner 			pa_data = data->next;
20058c5475aSLukas Wunner 			iounmap(data);
20158c5475aSLukas Wunner 			continue;
20258c5475aSLukas Wunner 		}
20358c5475aSLukas Wunner 
20458c5475aSLukas Wunner 		data_len = data->len;
20558c5475aSLukas Wunner 		iounmap(data);
20658c5475aSLukas Wunner 
20758c5475aSLukas Wunner 		data = ioremap(pa_data, sizeof(*data) + data_len);
20858c5475aSLukas Wunner 		if (!data) {
20958c5475aSLukas Wunner 			pr_err("cannot map setup_data payload\n");
21058c5475aSLukas Wunner 			return -ENOMEM;
21158c5475aSLukas Wunner 		}
21258c5475aSLukas Wunner 
21358c5475aSLukas Wunner 		properties = (struct properties_header *)data->data;
21458c5475aSLukas Wunner 		if (properties->version != 1) {
21558c5475aSLukas Wunner 			pr_err("unsupported version:\n");
21658c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
21758c5475aSLukas Wunner 			       16, 1, properties, data_len, true);
21858c5475aSLukas Wunner 			ret = -ENOTSUPP;
21958c5475aSLukas Wunner 		} else if (properties->len != data_len) {
22058c5475aSLukas Wunner 			pr_err("length mismatch, expected %u\n", data_len);
22158c5475aSLukas Wunner 			print_hex_dump(KERN_ERR, pr_fmt(), DUMP_PREFIX_OFFSET,
22258c5475aSLukas Wunner 			       16, 1, properties, data_len, true);
22358c5475aSLukas Wunner 			ret = -EINVAL;
22458c5475aSLukas Wunner 		} else
22558c5475aSLukas Wunner 			ret = unmarshal_devices(properties);
22658c5475aSLukas Wunner 
22758c5475aSLukas Wunner 		/*
22858c5475aSLukas Wunner 		 * Can only free the setup_data payload but not its header
22958c5475aSLukas Wunner 		 * to avoid breaking the chain of ->next pointers.
23058c5475aSLukas Wunner 		 */
23158c5475aSLukas Wunner 		data->len = 0;
23258c5475aSLukas Wunner 		iounmap(data);
23358c5475aSLukas Wunner 		free_bootmem_late(pa_data + sizeof(*data), data_len);
23458c5475aSLukas Wunner 
23558c5475aSLukas Wunner 		return ret;
23658c5475aSLukas Wunner 	}
23758c5475aSLukas Wunner 	return 0;
23858c5475aSLukas Wunner }
23958c5475aSLukas Wunner 
24058c5475aSLukas Wunner fs_initcall(map_properties);
241