Casey Chen
99bdfbb868
perf tool: fix dereferencing NULL al->maps
...
[ Upstream commit 4c17736689ccfc44ec7dcc472577f25c34cf8724 ]
With 0dd5041c9a0e ("perf addr_location: Add init/exit/copy functions"),
when cpumode is 3 (macro PERF_RECORD_MISC_HYPERVISOR),
thread__find_map() could return with al->maps being NULL.
The path below could add a callchain_cursor_node with NULL ms.maps.
add_callchain_ip()
thread__find_symbol(.., &al)
thread__find_map(.., &al) // al->maps becomes NULL
ms.maps = maps__get(al.maps)
callchain_cursor_append(..., &ms, ...)
node->ms.maps = maps__get(ms->maps)
Then the path below would dereference NULL maps and get segfault.
fill_callchain_info()
maps__machine(node->ms.maps);
Fix it by checking if maps is NULL in fill_callchain_info().
Fixes: 0dd5041c9a0e ("perf addr_location: Add init/exit/copy functions")
Signed-off-by: Casey Chen <cachen@purestorage.com>
Reviewed-by: Ian Rogers <irogers@google.com>
Reviewed-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: yzhong@purestorage.com
Link: https://lore.kernel.org/r/20240722211548.61455-1-cachen@purestorage.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-08-11 12:57:48 +02:00
..
2023-06-21 08:53:31 -06:00
2024-04-22 13:35:18 -03:00
2023-06-12 18:18:13 -03:00
2022-10-15 10:13:16 -03:00
2024-01-30 11:31:15 -03:00
2024-04-26 22:13:10 -03:00
2023-08-16 08:48:06 -03:00
2024-02-15 13:48:20 -08:00
2024-05-07 18:06:44 -03:00
2023-06-12 15:57:53 -03:00
2023-06-12 15:57:53 -03:00
2022-12-05 09:29:06 -03:00
2023-08-23 08:41:52 -03:00
2024-05-11 13:03:13 -03:00
2024-04-12 12:02:06 -03:00
2024-05-11 13:03:13 -03:00
2024-04-08 17:43:20 -03:00
2022-04-09 12:34:29 -03:00
2022-10-27 16:37:26 -03:00
2023-06-12 15:57:53 -03:00
2023-10-17 12:40:50 -07:00
2024-05-07 12:44:02 -03:00
2024-05-07 12:44:02 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2023-11-09 13:49:33 -03:00
2024-05-10 10:52:46 -03:00
2023-12-12 14:55:13 -03:00
2023-01-10 10:51:39 -03:00
2022-04-01 16:19:35 -03:00
2024-03-21 10:41:28 -03:00
2024-03-21 10:41:28 -03:00
2024-03-03 22:51:44 -08:00
2022-01-12 17:01:38 -08:00
2022-10-27 16:37:26 -03:00
2023-10-25 13:38:33 -07:00
2024-05-06 15:28:49 -03:00
2024-01-03 17:54:54 -03:00
2023-08-15 16:41:48 -03:00
2023-03-15 11:08:36 -03:00
2023-03-15 11:08:36 -03:00
2023-09-12 17:50:36 -03:00
2022-10-31 11:05:41 -03:00
2022-06-28 12:05:25 -03:00
2021-11-01 18:16:40 -03:00
2023-10-25 13:38:50 -07:00
2023-10-25 13:38:50 -07:00
2024-05-07 18:06:44 -03:00
2024-05-06 15:28:49 -03:00
2024-04-12 12:04:13 -03:00
2023-05-28 10:24:14 -03:00
2023-02-16 09:33:45 -03:00
2021-03-23 17:13:43 -03:00
2024-08-11 12:57:48 +02:00
2023-10-25 13:39:32 -07:00
2024-05-10 10:52:46 -03:00
2023-09-12 17:32:00 -03:00
2020-08-06 09:33:57 -03:00
2020-08-06 09:33:57 -03:00
2023-03-14 08:29:46 -03:00
2024-07-07 22:26:27 -07:00
2023-11-28 14:25:06 -03:00
2023-08-15 16:41:48 -03:00
2022-10-04 08:55:21 -03:00
2022-10-27 16:37:25 -03:00
2022-10-27 16:37:25 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2023-12-12 14:55:13 -03:00
2023-02-19 08:03:12 -03:00
2023-04-04 09:39:56 -03:00
2024-08-03 09:00:05 +02:00
2023-10-17 12:40:50 -07:00
2023-01-19 13:26:28 -03:00
2024-05-06 15:28:49 -03:00
2021-04-29 10:30:58 -03:00
2024-01-22 12:08:21 -08:00
2024-01-22 12:08:21 -08:00
2024-05-06 15:28:49 -03:00
2021-05-25 10:07:17 -03:00
2024-03-21 10:41:28 -03:00
2024-03-21 10:41:28 -03:00
2023-11-10 09:03:54 -03:00
2023-11-10 09:03:54 -03:00
2023-03-20 12:49:58 -03:00
2023-03-14 08:29:46 -03:00
2021-03-23 17:13:43 -03:00
2021-03-30 12:45:59 -03:00
2021-02-17 15:15:06 -03:00
2024-08-03 09:00:05 +02:00
2024-04-03 11:48:57 -03:00
2024-05-06 15:28:49 -03:00
2021-08-11 09:35:44 -03:00
2024-08-03 09:01:09 +02:00
2024-08-03 09:01:09 +02:00
2024-07-07 22:26:29 -07:00
2024-05-06 09:33:37 -03:00
2024-04-05 10:43:07 -03:00
2024-05-09 18:19:27 -03:00
2024-05-02 10:45:30 -03:00
2023-12-23 10:56:05 -03:00
2024-01-03 17:54:54 -03:00
2024-02-09 14:59:53 -08:00
2024-05-06 15:28:49 -03:00
2023-07-28 19:01:16 -03:00
2022-10-04 08:55:20 -03:00
2024-05-10 10:49:26 -03:00
2023-12-14 19:13:10 -03:00
2020-05-28 10:03:24 -03:00
2023-06-12 15:57:54 -03:00
2023-05-12 15:21:49 -03:00
2024-05-10 10:49:26 -03:00
2024-05-10 10:49:26 -03:00
2020-11-30 09:48:07 -03:00
2023-01-23 10:00:47 -03:00
2024-02-13 13:48:06 -08:00
2023-08-17 14:12:14 -03:00
2024-02-13 13:47:08 -08:00
2023-09-12 17:46:50 -03:00
2023-03-13 14:52:14 -03:00
2023-06-20 22:18:58 -07:00
2023-12-14 18:56:34 -03:00
2024-04-18 22:22:51 -03:00
2023-01-02 11:51:53 -03:00
2021-08-30 10:06:16 -03:00
2022-11-09 20:45:14 -08:00
2023-09-11 10:31:02 -03:00
2024-05-06 15:28:49 -03:00
2023-05-23 12:20:14 -03:00
2024-03-21 13:54:40 -03:00
2023-12-13 13:56:09 -03:00
2022-10-15 10:13:16 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2023-06-12 15:57:53 -03:00
2024-05-06 15:28:49 -03:00
2023-10-17 12:40:50 -07:00
2021-02-08 17:02:00 -03:00
2021-02-08 17:02:00 -03:00
2022-11-24 09:40:37 -03:00
2022-11-24 09:40:37 -03:00
2021-02-03 13:10:44 -03:00
2023-10-12 10:01:56 -07:00
2020-05-28 10:03:27 -03:00
2023-03-21 10:06:05 -03:00
2023-09-12 17:31:59 -03:00
2021-03-23 17:13:43 -03:00
2023-09-12 17:32:00 -03:00
2023-08-22 16:53:32 -03:00
2024-05-07 18:06:44 -03:00
2024-04-12 12:04:13 -03:00
2023-10-25 13:39:58 -07:00
2023-10-25 13:39:58 -07:00
2024-05-06 15:36:51 -03:00
2024-03-21 10:41:28 -03:00
2024-08-03 08:59:54 +02:00
2024-02-12 12:35:41 -08:00
2020-11-04 09:42:40 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2024-05-07 18:06:44 -03:00
2024-05-10 10:49:26 -03:00
2024-04-18 22:22:51 -03:00
2023-11-28 14:25:06 -03:00
2023-11-28 14:25:06 -03:00
2022-10-04 08:55:20 -03:00
2022-10-04 08:55:20 -03:00
2023-04-17 22:22:24 -03:00
2023-04-17 18:51:57 -03:00
2022-06-28 11:45:45 -03:00
2023-04-06 21:41:00 -03:00
2022-07-20 11:07:30 -03:00
2023-11-09 13:47:50 -03:00
2024-05-26 08:41:34 -03:00
2024-05-26 08:41:34 -03:00
2024-05-26 08:41:34 -03:00
2024-05-26 08:41:34 -03:00
2024-02-15 13:48:36 -08:00
2020-08-14 09:15:47 -03:00
2021-08-24 15:01:31 -03:00
2023-05-28 10:24:14 -03:00
2022-04-11 16:39:49 -03:00
2023-12-12 14:55:13 -03:00
2021-06-01 10:32:00 -03:00
2024-03-21 13:53:45 -03:00
2024-02-15 13:48:36 -08:00
2024-02-15 13:48:36 -08:00
2023-01-02 12:34:06 -03:00
2023-09-12 17:32:00 -03:00
2022-11-24 10:04:52 -03:00
2024-05-11 13:03:13 -03:00
2024-05-11 13:03:13 -03:00
2023-04-06 21:40:28 -03:00
2023-09-12 17:47:00 -03:00
2024-08-03 09:00:01 +02:00
2024-05-03 17:08:20 -03:00
2020-10-01 12:10:56 -03:00
2024-05-06 15:28:49 -03:00
2024-04-08 17:42:27 -03:00
2024-03-21 10:41:29 -03:00
2023-08-29 14:16:14 -03:00
2024-05-06 15:28:49 -03:00
2023-08-07 16:40:29 -03:00
2021-07-18 09:27:37 -03:00
2024-04-01 10:49:27 +01:00
2023-11-10 09:03:54 -03:00
2020-05-28 10:03:27 -03:00
2024-02-01 22:10:27 -08:00
2024-03-21 13:53:45 -03:00
2024-03-03 22:51:18 -08:00
2024-03-21 10:41:28 -03:00
2023-03-13 14:52:14 -03:00
2023-10-25 10:02:11 -07:00
2023-10-25 10:02:11 -07:00
2023-10-25 13:35:35 -07:00
2023-10-25 13:35:35 -07:00
2023-11-15 12:51:53 -05:00
2022-10-31 11:06:41 -03:00
2023-11-27 15:38:37 -03:00
2021-09-10 18:15:21 -03:00
2021-09-10 18:15:21 -03:00
2023-11-09 13:47:50 -03:00
2024-04-12 12:04:13 -03:00
2024-04-12 12:04:13 -03:00
2024-02-01 22:10:27 -08:00
2023-06-20 17:03:43 -07:00
2023-06-20 17:03:43 -07:00
2022-04-01 16:19:35 -03:00
2023-02-19 08:03:12 -03:00
2023-02-19 08:03:12 -03:00
2024-08-03 09:00:01 +02:00
2024-04-17 12:21:39 -03:00
2021-06-08 09:36:36 -03:00
2024-08-03 09:00:05 +02:00
2023-06-14 18:19:06 -03:00
2024-08-03 09:00:02 +02:00
2024-08-03 09:00:52 +02:00
2024-03-21 10:41:28 -03:00
2024-04-18 22:22:51 -03:00
2021-03-23 17:13:43 -03:00
2021-07-09 14:04:28 -03:00
2020-10-14 13:34:26 -03:00
2023-04-06 21:41:00 -03:00
2021-03-23 17:13:43 -03:00
2023-09-12 17:32:00 -03:00
2023-09-12 17:32:00 -03:00
2024-03-21 10:41:28 -03:00
2023-12-23 22:39:43 -03:00
2024-05-06 15:28:49 -03:00
2024-05-06 16:07:30 -03:00
2024-05-06 15:28:49 -03:00
2024-08-03 09:00:05 +02:00
2024-05-07 18:06:44 -03:00
2023-02-01 21:51:51 -03:00
2024-05-06 15:28:49 -03:00
2022-08-19 12:26:58 -03:00
2023-06-05 11:36:17 -03:00
2020-05-29 16:50:26 -03:00
2021-01-20 14:25:28 -03:00
2023-05-27 09:38:59 -03:00
2024-02-22 09:11:03 -08:00
2022-11-16 12:17:15 -03:00
2023-08-14 11:46:51 +02:00
2021-03-25 08:59:10 -03:00
2024-05-09 18:15:25 -03:00
2024-03-03 22:51:44 -08:00
2024-03-03 22:52:04 -08:00
2024-03-03 22:52:13 -08:00
2022-06-23 11:54:22 -03:00
2023-12-18 21:34:39 -03:00
2023-12-07 16:47:55 -03:00
2023-02-19 08:07:24 -03:00
2023-02-19 08:07:24 -03:00
2023-10-12 10:01:57 -07:00
2024-02-01 22:10:27 -08:00
2022-12-14 11:16:12 -03:00
2023-03-15 10:27:07 -03:00
2022-12-14 11:16:12 -03:00
2024-02-01 22:10:27 -08:00
2024-05-09 18:46:43 -03:00
2024-05-09 18:46:43 -03:00
2021-04-29 10:31:00 -03:00
2022-07-25 12:28:00 -03:00
2021-03-15 11:36:54 -03:00
2021-03-15 11:36:54 -03:00
2024-08-03 09:00:05 +02:00
2022-04-09 12:34:29 -03:00
2024-08-03 09:01:09 +02:00
2024-05-06 15:28:49 -03:00
2023-08-16 08:48:06 -03:00
2023-04-10 19:20:53 -03:00
2024-02-22 09:11:41 -08:00
2024-02-22 09:11:41 -08:00
2024-04-17 12:21:39 -03:00
2024-05-06 15:28:49 -03:00
2023-11-28 14:25:06 -03:00