public inbox for dwarves@vger.kernel.org
 help / color / mirror / Atom feed
From: Jiri Olsa <olsajiri@gmail.com>
To: Alan Maguire <alan.maguire@oracle.com>
Cc: acme@redhat.com, dwarves@vger.kernel.org, bpf@vger.kernel.org,
	John Hubbard <jhubbard@nvidia.com>,
	Jiri Olsa <olsajiri@gmail.com>
Subject: Re: [PATCH dwarves] btf_encoder: dynamically allocate the vars array for percpu variables
Date: Fri, 1 Mar 2024 16:24:27 +0100	[thread overview]
Message-ID: <ZeHzK52IeDx2aZfP@krava> (raw)
In-Reply-To: <20240301124106.735693-1-alan.maguire@oracle.com>

On Fri, Mar 01, 2024 at 12:41:06PM +0000, Alan Maguire wrote:
> Use consistent method across allocating function and per-cpu variable
> representations, based around (re)allocating the arrays based on demand.
> This avoids issues where the number of per-CPU variables exceeds the
> hardcoded limit.
> 
> Reported-by: John Hubbard <jhubbard@nvidia.com>
> Suggested-by: Jiri Olsa <olsajiri@gmail.com>
> Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
> Tested-by: John Hubbard <jhubbard@nvidia.com>

Acked/Tested-by: Jiri Olsa <jolsa@kernel.org>

thanks,
jirka

> ---
>  btf_encoder.c | 38 +++++++++++++++++++++++++++++---------
>  1 file changed, 29 insertions(+), 9 deletions(-)
> 
> diff --git a/btf_encoder.c b/btf_encoder.c
> index fd04008..a43d702 100644
> --- a/btf_encoder.c
> +++ b/btf_encoder.c
> @@ -50,8 +50,6 @@ struct elf_function {
>  	struct btf_encoder_state state;
>  };
>  
> -#define MAX_PERCPU_VAR_CNT 4096
> -
>  struct var_info {
>  	uint64_t    addr;
>  	const char *name;
> @@ -80,8 +78,9 @@ struct btf_encoder {
>  			  is_rel;
>  	uint32_t	  array_index_id;
>  	struct {
> -		struct var_info vars[MAX_PERCPU_VAR_CNT];
> +		struct var_info *vars;
>  		int		var_cnt;
> +		int		allocated;
>  		uint32_t	shndx;
>  		uint64_t	base_addr;
>  		uint64_t	sec_sz;
> @@ -983,6 +982,16 @@ static int functions_cmp(const void *_a, const void *_b)
>  #define max(x, y) ((x) < (y) ? (y) : (x))
>  #endif
>  
> +static void *reallocarray_grow(void *ptr, int *nmemb, size_t size)
> +{
> +	int new_nmemb = max(1000, *nmemb * 3 / 2);
> +	void *new = realloc(ptr, new_nmemb * size);
> +
> +	if (new)
> +		*nmemb = new_nmemb;
> +	return new;
> +}
> +
>  static int btf_encoder__collect_function(struct btf_encoder *encoder, GElf_Sym *sym)
>  {
>  	struct elf_function *new;
> @@ -995,8 +1004,9 @@ static int btf_encoder__collect_function(struct btf_encoder *encoder, GElf_Sym *
>  		return 0;
>  
>  	if (encoder->functions.cnt == encoder->functions.allocated) {
> -		encoder->functions.allocated = max(1000, encoder->functions.allocated * 3 / 2);
> -		new = realloc(encoder->functions.entries, encoder->functions.allocated * sizeof(*encoder->functions.entries));
> +		new = reallocarray_grow(encoder->functions.entries,
> +					&encoder->functions.allocated,
> +					sizeof(*encoder->functions.entries));
>  		if (!new) {
>  			/*
>  			 * The cleanup - delete_functions is called
> @@ -1439,10 +1449,17 @@ static int btf_encoder__collect_percpu_var(struct btf_encoder *encoder, GElf_Sym
>  	if (!encoder->is_rel)
>  		addr -= encoder->percpu.base_addr;
>  
> -	if (encoder->percpu.var_cnt == MAX_PERCPU_VAR_CNT) {
> -		fprintf(stderr, "Reached the limit of per-CPU variables: %d\n",
> -			MAX_PERCPU_VAR_CNT);
> -		return -1;
> +	if (encoder->percpu.var_cnt == encoder->percpu.allocated) {
> +		struct var_info *new;
> +
> +		new = reallocarray_grow(encoder->percpu.vars,
> +					&encoder->percpu.allocated,
> +					sizeof(*encoder->percpu.vars));
> +		if (!new) {
> +			fprintf(stderr, "Failed to allocate memory for variables\n");
> +			return -1;
> +		}
> +		encoder->percpu.vars = new;
>  	}
>  	encoder->percpu.vars[encoder->percpu.var_cnt].addr = addr;
>  	encoder->percpu.vars[encoder->percpu.var_cnt].sz = size;
> @@ -1720,6 +1737,9 @@ void btf_encoder__delete(struct btf_encoder *encoder)
>  	encoder->functions.allocated = encoder->functions.cnt = 0;
>  	free(encoder->functions.entries);
>  	encoder->functions.entries = NULL;
> +	encoder->percpu.allocated = encoder->percpu.var_cnt = 0;
> +	free(encoder->percpu.vars);
> +	encoder->percpu.vars = NULL;
>  
>  	free(encoder);
>  }
> -- 
> 2.39.3
> 

  reply	other threads:[~2024-03-01 15:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-01 12:41 [PATCH dwarves] btf_encoder: dynamically allocate the vars array for percpu variables Alan Maguire
2024-03-01 15:24 ` Jiri Olsa [this message]
2024-03-01 21:46   ` Arnaldo Carvalho de Melo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZeHzK52IeDx2aZfP@krava \
    --to=olsajiri@gmail.com \
    --cc=acme@redhat.com \
    --cc=alan.maguire@oracle.com \
    --cc=bpf@vger.kernel.org \
    --cc=dwarves@vger.kernel.org \
    --cc=jhubbard@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox