patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Luca Boccassi <bluca@debian.org>
To: "Tahhan, Maryam" <maryam.tahhan@intel.com>,
	"Power, Ciara" <ciara.power@intel.com>,
	"stable@dpdk.org" <stable@dpdk.org>
Cc: "Pattan, Reshma" <reshma.pattan@intel.com>,
	"romanx.korynkevych@intel.com" <romanx.korynkevych@intel.com>
Subject: Re: [dpdk-stable] [PATCH 17.11] app/proc_info: fix string copying to use strlcpy
Date: Tue, 07 Jan 2020 11:29:39 +0000	[thread overview]
Message-ID: <42d6003a11887ad96314d36e8ab0c01c2155dc27.camel@debian.org> (raw)
In-Reply-To: <MN2PR11MB3806519E01FF901261B4D995F03C0@MN2PR11MB3806.namprd11.prod.outlook.com>

On Mon, 2020-01-06 at 12:53 +0000, Tahhan, Maryam wrote:
> > [ upstream commit 7edbf7ddfd7d2453afaad3b72666491d30b616af ]
> > 
> > Replaced strncpy and strcpy with strlcpy.
> > Using strlcpy is safe practice when copying strings, as it will
> > include a null
> > terminator.
> > 
> > Cc: romanx.korynkevych@intel.com
> > 
> > Fixes: 2deb6b5246d7 ("app/procinfo: add collectd format and host
> > id")
> > Reported-by: Reshma Pattan <reshma.pattan@intel.com>
> > 
> > Signed-off-by: Ciara Power <ciara.power@intel.com>
> > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> >  app/proc_info/main.c | 36 ++++++++++++++++++------------------
> >  1 file changed, 18 insertions(+), 18 deletions(-)
> > 
> > diff --git a/app/proc_info/main.c b/app/proc_info/main.c index
> > 2893bec69..caf4e48c0 100644
> > --- a/app/proc_info/main.c
> > +++ b/app/proc_info/main.c
> > @@ -196,7 +196,7 @@ proc_info_preparse_args(int argc, char **argv)
> >  		int err = gethostname(host_id, MAX_LONG_OPT_SZ-1);
> > 
> >  		if (err)
> > -			strcpy(host_id, "unknown");
> > +			strlcpy(host_id, "unknown", sizeof(host_id));
> >  	}
> > 
> >  	return 0;
> > @@ -363,50 +363,50 @@ static void collectd_resolve_cnt_type(char
> > *cnt_type, size_t cnt_type_len,
> >  	if ((type_end != NULL) &&
> >  	    (strncmp(cnt_name, "rx_", strlen("rx_")) == 0)) {
> >  		if (strncmp(type_end, "_errors", strlen("_errors")) ==
> > 0)
> > -			strncpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_dropped",
> > strlen("_dropped"))
> > == 0)
> > -			strncpy(cnt_type, "if_rx_dropped",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_dropped",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_bytes", strlen("_bytes"))
> > == 0)
> > -			strncpy(cnt_type, "if_rx_octets",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_octets",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_packets",
> > strlen("_packets"))
> > == 0)
> > -			strncpy(cnt_type, "if_rx_packets",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_packets",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_placement",
> >  				 strlen("_placement")) == 0)
> > -			strncpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_buff", strlen("_buff")) ==
> > 0)
> > -			strncpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_rx_errors",
> > cnt_type_len);
> >  		else
> >  			/* Does not fit obvious type: use a more
> > generic one
> > */
> > -			strncpy(cnt_type, "derive", cnt_type_len);
> > +			strlcpy(cnt_type, "derive", cnt_type_len);
> >  	} else if ((type_end != NULL) &&
> >  		(strncmp(cnt_name, "tx_", strlen("tx_"))) == 0) {
> >  		if (strncmp(type_end, "_errors", strlen("_errors")) ==
> > 0)
> > -			strncpy(cnt_type, "if_tx_errors",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_tx_errors",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_dropped",
> > strlen("_dropped"))
> > == 0)
> > -			strncpy(cnt_type, "if_tx_dropped",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_tx_dropped",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_bytes", strlen("_bytes"))
> > == 0)
> > -			strncpy(cnt_type, "if_tx_octets",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_tx_octets",
> > cnt_type_len);
> >  		else if (strncmp(type_end, "_packets",
> > strlen("_packets"))
> > == 0)
> > -			strncpy(cnt_type, "if_tx_packets",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "if_tx_packets",
> > cnt_type_len);
> >  		else
> >  			/* Does not fit obvious type: use a more
> > generic one
> > */
> > -			strncpy(cnt_type, "derive", cnt_type_len);
> > +			strlcpy(cnt_type, "derive", cnt_type_len);
> >  	} else if ((type_end != NULL) &&
> >  		   (strncmp(cnt_name, "flow_", strlen("flow_"))) == 0)
> > {
> >  		if (strncmp(type_end, "_filters", strlen("_filters"))
> > == 0)
> > -			strncpy(cnt_type, "operations", cnt_type_len);
> > +			strlcpy(cnt_type, "operations", cnt_type_len);
> >  		else if (strncmp(type_end, "_errors",
> > strlen("_errors")) == 0)
> > -			strncpy(cnt_type, "errors", cnt_type_len);
> > +			strlcpy(cnt_type, "errors", cnt_type_len);
> >  		else if (strncmp(type_end, "_filters",
> > strlen("_filters")) == 0)
> > -			strncpy(cnt_type, "filter_result",
> > cnt_type_len);
> > +			strlcpy(cnt_type, "filter_result",
> > cnt_type_len);
> >  	} else if ((type_end != NULL) &&
> >  		   (strncmp(cnt_name, "mac_", strlen("mac_"))) == 0) {
> >  		if (strncmp(type_end, "_errors", strlen("_errors")) ==
> > 0)
> > -			strncpy(cnt_type, "errors", cnt_type_len);
> > +			strlcpy(cnt_type, "errors", cnt_type_len);
> >  	} else {
> >  		/* Does not fit obvious type, or strrchr error: */
> >  		/* use a more generic type */
> > -		strncpy(cnt_type, "derive", cnt_type_len);
> > +		strlcpy(cnt_type, "derive", cnt_type_len);
> >  	}
> >  }
> > 
> > --
> > 2.17.1
> 
> Acked-by: Maryam Tahhan <maryam.tahhan@intel.com> 

Thanks, applied

-- 
Kind regards,
Luca Boccassi

      reply	other threads:[~2020-01-07 11:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-06 11:42 Ciara Power
2020-01-06 12:53 ` Tahhan, Maryam
2020-01-07 11:29   ` Luca Boccassi [this message]

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=42d6003a11887ad96314d36e8ab0c01c2155dc27.camel@debian.org \
    --to=bluca@debian.org \
    --cc=ciara.power@intel.com \
    --cc=maryam.tahhan@intel.com \
    --cc=reshma.pattan@intel.com \
    --cc=romanx.korynkevych@intel.com \
    --cc=stable@dpdk.org \
    /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;
as well as URLs for NNTP newsgroup(s).