lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Wed, 22 May 2024 14:27:46 +0300
From: Adrian Hunter <adrian.hunter@...el.com>
To: Leo Yan <leo.yan@....com>, Arnaldo Carvalho de Melo <acme@...nel.org>,
 Ian Rogers <irogers@...gle.com>, Namhyung Kim <namhyung@...nel.org>,
 James Clark <james.clark@....com>,
 Athira Rajeev <atrajeev@...ux.vnet.ibm.com>,
 Mark Rutland <mark.rutland@....com>,
 Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
 Jiri Olsa <jolsa@...nel.org>, linux-perf-users@...r.kernel.org,
 linux-kernel@...r.kernel.org
Subject: Re: [PATCH v3 2/3] perf maps: Remove the kernel text map with
 maps__remove_maps()

On 20/05/24 12:06, Leo Yan wrote:
> maps__remove_maps() removes all kernel maps except the text map and eBPF
> maps. Afterwards, the kernel text map is removed from the list and
> added again with updated information to the maps list.
> 
> This commit refactors maps__remove_maps() for deleting the 'map'
> parameter, resulting in the removal of all kernel maps from the list.
> Thus, the dso__load_kcore() function no longer needs to remove the kernel
> text map.
> 
> Signed-off-by: Leo Yan <leo.yan@....com>
> ---
>  tools/perf/util/maps.c   | 4 ++--
>  tools/perf/util/maps.h   | 2 +-
>  tools/perf/util/symbol.c | 9 +++------
>  3 files changed, 6 insertions(+), 9 deletions(-)
> 
> diff --git a/tools/perf/util/maps.c b/tools/perf/util/maps.c
> index 16b39db594f4..4ddd0d50ac2c 100644
> --- a/tools/perf/util/maps.c
> +++ b/tools/perf/util/maps.c
> @@ -589,7 +589,7 @@ int maps__for_each_map(struct maps *maps, int (*cb)(struct map *map, void *data)
>  	return ret;
>  }
>  
> -void maps__remove_maps(struct maps *maps, bool (*cb)(struct map *map, void *data), void *data)
> +void maps__remove_maps(struct maps *maps, bool (*cb)(struct map *map))
>  {
>  	struct map **maps_by_address;
>  
> @@ -597,7 +597,7 @@ void maps__remove_maps(struct maps *maps, bool (*cb)(struct map *map, void *data
>  
>  	maps_by_address = maps__maps_by_address(maps);
>  	for (unsigned int i = 0; i < maps__nr_maps(maps);) {
> -		if (cb(maps_by_address[i], data))
> +		if (cb(maps_by_address[i]))
>  			__maps__remove(maps, maps_by_address[i]);
>  		else
>  			i++;
> diff --git a/tools/perf/util/maps.h b/tools/perf/util/maps.h
> index d9aa62ed968a..90a1ff8b39c5 100644
> --- a/tools/perf/util/maps.h
> +++ b/tools/perf/util/maps.h
> @@ -40,7 +40,7 @@ bool maps__equal(struct maps *a, struct maps *b);
>  /* Iterate over map calling cb for each entry. */
>  int maps__for_each_map(struct maps *maps, int (*cb)(struct map *map, void *data), void *data);
>  /* Iterate over map removing an entry if cb returns true. */
> -void maps__remove_maps(struct maps *maps, bool (*cb)(struct map *map, void *data), void *data);
> +void maps__remove_maps(struct maps *maps, bool (*cb)(struct map *map));
>  
>  struct machine *maps__machine(const struct maps *maps);
>  unsigned int maps__nr_maps(const struct maps *maps); /* Test only. */
> diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
> index c1513976ab6e..915435d55498 100644
> --- a/tools/perf/util/symbol.c
> +++ b/tools/perf/util/symbol.c
> @@ -1322,15 +1322,13 @@ static int kcore_mapfn(u64 start, u64 len, u64 pgoff, void *data)
>  	return 0;
>  }
>  
> -static bool remove_old_maps(struct map *map, void *data)
> +static bool remove_old_maps(struct map *map)
>  {
> -	const struct map *map_to_save = data;
> -
>  	/*
>  	 * We need to preserve eBPF maps even if they are covered by kcore,
>  	 * because we need to access eBPF dso for source data.
>  	 */
> -	return !RC_CHK_EQUAL(map, map_to_save) && !__map__is_bpf_prog(map);
> +	return !__map__is_bpf_prog(map);
>  }
>  
>  static int dso__load_kcore(struct dso *dso, struct map *map,
> @@ -1385,7 +1383,7 @@ static int dso__load_kcore(struct dso *dso, struct map *map,
>  	}
>  
>  	/* Remove old maps */
> -	maps__remove_maps(kmaps, remove_old_maps, map);
> +	maps__remove_maps(kmaps, remove_old_maps);
>  	machine->trampolines_mapped = false;
>  
>  	/* Find the kernel map using the '_stext' symbol */
> @@ -1422,7 +1420,6 @@ static int dso__load_kcore(struct dso *dso, struct map *map,
>  	 * remaining maps so vmlinux gets split if necessary.
>  	 */
>  	map_ref = map__get(map);

If the ref is needed, then it should be taken before
the call to maps__remove_maps().

> -	maps__remove(kmaps, map_ref);
>  
>  	map__set_start(map_ref, map__start(replacement_map));
>  	map__set_end(map_ref, map__end(replacement_map));


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ