Nathan Chancellor
2523f245a4
ACPI: sysfs: Fix pm_profile_attr type
...
commit e6d701dca9893990d999fd145e3e07223c002b06 upstream.
When running a kernel with Clang's Control Flow Integrity implemented,
there is a violation that happens when accessing
/sys/firmware/acpi/pm_profile:
$ cat /sys/firmware/acpi/pm_profile
0
$ dmesg
...
[ 17.352564] ------------[ cut here ]------------
[ 17.352568] CFI failure (target: acpi_show_profile+0x0/0x8):
[ 17.352572] WARNING: CPU: 3 PID: 497 at kernel/cfi.c:29 __cfi_check_fail+0x33/0x40
[ 17.352573] Modules linked in:
[ 17.352575] CPU: 3 PID: 497 Comm: cat Tainted: G W 5.7.0-microsoft-standard+ #1
[ 17.352576] RIP: 0010:__cfi_check_fail+0x33/0x40
[ 17.352577] Code: 48 c7 c7 50 b3 85 84 48 c7 c6 50 0a 4e 84 e8 a4 d8 60 00 85 c0 75 02 5b c3 48 c7 c7 dc 5e 49 84 48 89 de 31 c0 e8 7d 06 eb ff <0f> 0b 5b c3 00 00 cc cc 00 00 cc cc 00 85 f6 74 25 41 b9 ea ff ff
[ 17.352577] RSP: 0018:ffffaa6dc3c53d30 EFLAGS: 00010246
[ 17.352578] RAX: 331267e0c06cee00 RBX: ffffffff83d85890 RCX: ffffffff8483a6f8
[ 17.352579] RDX: ffff9cceabbb37c0 RSI: 0000000000000082 RDI: ffffffff84bb9e1c
[ 17.352579] RBP: ffffffff845b2bc8 R08: 0000000000000001 R09: ffff9cceabbba200
[ 17.352579] R10: 000000000000019d R11: 0000000000000000 R12: ffff9cc947766f00
[ 17.352580] R13: ffffffff83d6bd50 R14: ffff9ccc6fa80000 R15: ffffffff845bd328
[ 17.352582] FS: 00007fdbc8d13580(0000) GS:ffff9cce91ac0000(0000) knlGS:0000000000000000
[ 17.352582] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 17.352583] CR2: 00007fdbc858e000 CR3: 00000005174d0000 CR4: 0000000000340ea0
[ 17.352584] Call Trace:
[ 17.352586] ? rev_id_show+0x8/0x8
[ 17.352587] ? __cfi_check+0x45bac/0x4b640
[ 17.352589] ? kobj_attr_show+0x73/0x80
[ 17.352590] ? sysfs_kf_seq_show+0xc1/0x140
[ 17.352592] ? ext4_seq_options_show.cfi_jt+0x8/0x8
[ 17.352593] ? seq_read+0x180/0x600
[ 17.352595] ? sysfs_create_file_ns.cfi_jt+0x10/0x10
[ 17.352596] ? tlbflush_read_file+0x8/0x8
[ 17.352597] ? __vfs_read+0x6b/0x220
[ 17.352598] ? handle_mm_fault+0xa23/0x11b0
[ 17.352599] ? vfs_read+0xa2/0x130
[ 17.352599] ? ksys_read+0x6a/0xd0
[ 17.352601] ? __do_sys_getpgrp+0x8/0x8
[ 17.352602] ? do_syscall_64+0x72/0x120
[ 17.352603] ? entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 17.352604] ---[ end trace 7b1fa81dc897e419 ]---
When /sys/firmware/acpi/pm_profile is read, sysfs_kf_seq_show is called,
which in turn calls kobj_attr_show, which gets the ->show callback
member by calling container_of on attr (casting it to struct
kobj_attribute) then calls it.
There is a CFI violation because pm_profile_attr is of type
struct device_attribute but kobj_attr_show calls ->show expecting it
to be from struct kobj_attribute. CFI checking ensures that function
pointer types match when doing indirect calls. Fix pm_profile_attr to
be defined in terms of kobj_attribute so there is no violation or
mismatch.
Fixes: 362b646062b2 ("ACPI: Export FADT pm_profile integer value to userspace")
Link: https://github.com/ClangBuiltLinux/linux/issues/1051
Reported-by: yuu ichii <byahu140@heisei.be>
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Cc: 3.10+ <stable@vger.kernel.org> # 3.10+
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-06-30 15:38:44 -04:00
..
2020-02-28 15:42:27 +01:00
2020-04-02 17:20:26 +02:00
2019-08-25 10:51:31 +02:00
2016-11-10 00:30:29 +01:00
2019-03-23 13:19:49 +01:00
2018-03-24 11:00:18 +01:00
2016-04-27 23:42:57 +02:00
2016-11-11 23:23:02 +01:00
2016-06-04 00:20:07 +02:00
2016-07-11 15:13:36 +02:00
2016-07-05 23:02:34 +02:00
2016-07-16 03:08:10 +02:00
2019-12-05 15:34:18 +01:00
2019-11-28 18:28:51 +01:00
2018-05-30 07:50:43 +02:00
2018-11-27 16:09:41 +01:00
2016-01-04 22:10:30 +01:00
2017-12-20 10:07:26 +01:00
2019-04-05 22:29:15 +02:00
2020-03-20 09:07:56 +01:00
2016-08-31 00:35:16 +02:00
2016-03-09 23:46:07 +01:00
2017-03-22 12:43:38 +01:00
2019-12-21 10:42:05 +01:00
2017-06-07 12:07:47 +02:00
2020-06-20 10:24:09 +02:00
2019-10-05 12:30:25 +02:00
2020-06-20 10:24:09 +02:00
2019-03-23 13:19:46 +01:00
2016-07-16 03:08:08 +02:00
2018-04-13 19:48:10 +02:00
2018-04-13 19:48:10 +02:00
2020-06-20 10:24:13 +02:00
2016-10-10 02:20:43 +02:00
2018-01-31 12:55:52 +01:00
2016-01-01 03:20:25 +01:00
2018-04-13 19:48:10 +02:00
2017-08-30 10:21:55 +02:00
2016-10-03 20:11:49 -07:00
2017-04-08 09:30:34 +02:00
2019-02-20 10:18:28 +01:00
2016-05-05 00:13:53 +02:00
2019-12-21 10:42:05 +01:00
2019-10-05 12:30:26 +02:00
2016-10-24 14:18:14 +02:00
2016-06-10 18:27:59 -05:00
2019-11-25 09:52:26 +01:00
2016-07-16 03:05:29 +02:00
2019-01-16 22:12:32 +01:00
2017-12-20 10:07:26 +01:00
2018-03-24 11:00:09 +01:00
2016-10-07 18:46:30 -07:00
2018-05-30 07:50:24 +02:00
2018-03-24 11:00:09 +01:00
2016-10-11 22:44:00 +02:00
2016-03-22 23:07:49 +01:00
2019-04-20 09:07:52 +02:00
2019-11-25 09:53:39 +01:00
2020-06-20 10:24:09 +02:00
2018-08-22 07:47:15 +02:00
2018-03-24 11:00:20 +01:00
2016-09-28 17:46:46 +02:00
2020-06-30 15:38:44 -04:00
2016-09-17 01:03:32 +02:00
2016-09-27 14:35:21 +08:00
2016-07-19 12:32:39 -07:00
2020-05-20 08:15:27 +02:00