* [PATCH] app/testpmd: fix devargs format in port attach
@ 2025-10-30  9:20 Gregory Etelson
  2025-10-30 15:53 ` Stephen Hemminger
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Gregory Etelson @ 2025-10-30  9:20 UTC (permalink / raw)
  To: dev
  Cc: getelson, mkashani, rasland, Dariusz Sosnowski, Aman Singh, Shani Peretz
The port attach procedure discarded PCI port devargs provided
by application.
The patch restores PCI port devargs.
Fixes: 12c2405989f6 ("app/testpmd: canonicalize short PCI name format")
Signed-off-by: Gregory Etelson <getelson@nvidia.com>
Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
---
 app/test-pmd/testpmd.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index 2360da3a48..cc384f0b14 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -3413,7 +3413,7 @@ reset_port(portid_t pid)
 }
 
 static char *
-convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_size)
+convert_pci_address_format(const char *identifier, char *pci_buffer)
 {
 	struct rte_devargs da;
 	struct rte_pci_addr pci_addr;
@@ -3430,7 +3430,8 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
 	if (rte_pci_addr_parse(da.name, &pci_addr) != 0)
 		return NULL;
 
-	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
+	rte_pci_device_name(&pci_addr, pci_buffer, PCI_PRI_STR_SIZE);
+	sprintf(pci_buffer + strlen(pci_buffer), ",%s", da.args);
 	return pci_buffer;
 }
 
@@ -3439,8 +3440,7 @@ attach_port(char *identifier)
 {
 	portid_t pi;
 	struct rte_dev_iterator iterator;
-	char *long_identifier;
-	char long_format[PCI_PRI_STR_SIZE];
+	char *long_format, *long_identifier;
 
 	printf("Attaching a new port...\n");
 
@@ -3448,9 +3448,14 @@ attach_port(char *identifier)
 		fprintf(stderr, "Invalid parameters are specified\n");
 		return;
 	}
+	long_format = alloca(strlen(identifier) + PCI_PRI_STR_SIZE);
+	if (long_format == NULL) {
+		TESTPMD_LOG(ERR, "Failed to attach port %s - allocation failure\n", identifier);
+		return;
+	}
 
 	/* For PCI device convert to canonical format */
-	long_identifier = convert_pci_address_format(identifier, long_format, sizeof(long_format));
+	long_identifier = convert_pci_address_format(identifier, long_format);
 	if (long_identifier != NULL)
 		identifier = long_identifier;
 
-- 
2.51.0
^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: [PATCH] app/testpmd: fix devargs format in port attach
  2025-10-30  9:20 [PATCH] app/testpmd: fix devargs format in port attach Gregory Etelson
@ 2025-10-30 15:53 ` Stephen Hemminger
  2025-10-30 17:17 ` [PATCH v2] " Gregory Etelson
  2025-10-31  6:18 ` [PATCH v3] " Gregory Etelson
  2 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2025-10-30 15:53 UTC (permalink / raw)
  To: Gregory Etelson
  Cc: dev, mkashani, rasland, Dariusz Sosnowski, Aman Singh, Shani Peretz
On Thu, 30 Oct 2025 11:20:15 +0200
Gregory Etelson <getelson@nvidia.com> wrote:
>  static char *
> -convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_size)
> +convert_pci_address_format(const char *identifier, char *pci_buffer)
>  {
>  	struct rte_devargs da;
>  	struct rte_pci_addr pci_addr;
> @@ -3430,7 +3430,8 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
>  	if (rte_pci_addr_parse(da.name, &pci_addr) != 0)
>  		return NULL;
>  
> -	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
> +	rte_pci_device_name(&pci_addr, pci_buffer, PCI_PRI_STR_SIZE);
> +	sprintf(pci_buffer + strlen(pci_buffer), ",%s", da.args);
>  	return pci_buffer;
>  }
It would be safer to keep the buf_size argument. It avoids any overflow issues.
Many tools flag any direct sprintf usage as an error.
^ permalink raw reply	[flat|nested] 5+ messages in thread
* [PATCH v2] app/testpmd: fix devargs format in port attach
  2025-10-30  9:20 [PATCH] app/testpmd: fix devargs format in port attach Gregory Etelson
  2025-10-30 15:53 ` Stephen Hemminger
@ 2025-10-30 17:17 ` Gregory Etelson
  2025-10-30 17:47   ` Stephen Hemminger
  2025-10-31  6:18 ` [PATCH v3] " Gregory Etelson
  2 siblings, 1 reply; 5+ messages in thread
From: Gregory Etelson @ 2025-10-30 17:17 UTC (permalink / raw)
  To: dev
  Cc: getelson, mkashani, rasland, stephen, Dariusz Sosnowski,
	Aman Singh, Shani Peretz
The port attach procedure discarded PCI port devargs provided
by application.
The patch restores PCI port devargs.
Fixes: 12c2405989f6 ("app/testpmd: canonicalize short PCI name format")
Signed-off-by: Gregory Etelson <getelson@nvidia.com>
Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
---
v2: add buf_size parameter to convert_pci_address_format()
---
 app/test-pmd/testpmd.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index 2360da3a48..a2280d38d3 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -3431,6 +3431,7 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
 		return NULL;
 
 	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
+	sprintf(pci_buffer + strlen(pci_buffer), ",%s", da.args);
 	return pci_buffer;
 }
 
@@ -3439,8 +3440,8 @@ attach_port(char *identifier)
 {
 	portid_t pi;
 	struct rte_dev_iterator iterator;
-	char *long_identifier;
-	char long_format[PCI_PRI_STR_SIZE];
+	char *long_format, *long_identifier;
+	size_t long_format_size;
 
 	printf("Attaching a new port...\n");
 
@@ -3448,9 +3449,15 @@ attach_port(char *identifier)
 		fprintf(stderr, "Invalid parameters are specified\n");
 		return;
 	}
+	long_format_size = strlen(identifier) + PCI_PRI_STR_SIZE;
+	long_format = alloca(long_format_size);
+	if (long_format == NULL) {
+		TESTPMD_LOG(ERR, "Failed to attach port %s - allocation failure\n", identifier);
+		return;
+	}
 
 	/* For PCI device convert to canonical format */
-	long_identifier = convert_pci_address_format(identifier, long_format, sizeof(long_format));
+	long_identifier = convert_pci_address_format(identifier, long_format, long_format_size);
 	if (long_identifier != NULL)
 		identifier = long_identifier;
 
-- 
2.51.0
^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: [PATCH v2] app/testpmd: fix devargs format in port attach
  2025-10-30 17:17 ` [PATCH v2] " Gregory Etelson
@ 2025-10-30 17:47   ` Stephen Hemminger
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2025-10-30 17:47 UTC (permalink / raw)
  To: Gregory Etelson
  Cc: dev, mkashani, rasland, Dariusz Sosnowski, Aman Singh, Shani Peretz
On Thu, 30 Oct 2025 19:17:34 +0200
Gregory Etelson <getelson@nvidia.com> wrote:
> diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
> index 2360da3a48..a2280d38d3 100644
> --- a/app/test-pmd/testpmd.c
> +++ b/app/test-pmd/testpmd.c
> @@ -3431,6 +3431,7 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
>  		return NULL;
>  
>  	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
> +	sprintf(pci_buffer + strlen(pci_buffer), ",%s", da.args);
>  	return pci_buffer;
>  }
>  
To avoid any possiblity of overflow, please us snprintf and adjust.
Something like:
	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
	size_t pci_len = strlen(pci_buffer);
	snprintf(pci_buffer + pci_len, buf_size - pci_len, "%,%s", da.args);
^ permalink raw reply	[flat|nested] 5+ messages in thread
* [PATCH v3] app/testpmd: fix devargs format in port attach
  2025-10-30  9:20 [PATCH] app/testpmd: fix devargs format in port attach Gregory Etelson
  2025-10-30 15:53 ` Stephen Hemminger
  2025-10-30 17:17 ` [PATCH v2] " Gregory Etelson
@ 2025-10-31  6:18 ` Gregory Etelson
  2 siblings, 0 replies; 5+ messages in thread
From: Gregory Etelson @ 2025-10-31  6:18 UTC (permalink / raw)
  To: dev
  Cc: getelson, mkashani, rasland, stephen, Dariusz Sosnowski,
	Aman Singh, Shani Peretz
The port attach procedure discarded PCI port devargs provided
by application.
The patch restores PCI port devargs.
Fixes: 12c2405989f6 ("app/testpmd: canonicalize short PCI name format")
Signed-off-by: Gregory Etelson <getelson@nvidia.com>
Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>
---
v2: add buf_size parameter to convert_pci_address_format()
v3: use snprintf()
---
 app/test-pmd/testpmd.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index 2360da3a48..b10f6baee2 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -3417,6 +3417,7 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
 {
 	struct rte_devargs da;
 	struct rte_pci_addr pci_addr;
+	size_t pci_len;
 
 	if (rte_devargs_parse(&da, identifier) != 0)
 		return NULL;
@@ -3431,6 +3432,8 @@ convert_pci_address_format(const char *identifier, char *pci_buffer, size_t buf_
 		return NULL;
 
 	rte_pci_device_name(&pci_addr, pci_buffer, buf_size);
+	pci_len = strlen(pci_buffer);
+	snprintf(pci_buffer + pci_len, buf_size - pci_len, ",%s", da.args);
 	return pci_buffer;
 }
 
@@ -3439,8 +3442,8 @@ attach_port(char *identifier)
 {
 	portid_t pi;
 	struct rte_dev_iterator iterator;
-	char *long_identifier;
-	char long_format[PCI_PRI_STR_SIZE];
+	char *long_format, *long_identifier;
+	size_t long_format_size;
 
 	printf("Attaching a new port...\n");
 
@@ -3448,9 +3451,15 @@ attach_port(char *identifier)
 		fprintf(stderr, "Invalid parameters are specified\n");
 		return;
 	}
+	long_format_size = strlen(identifier) + PCI_PRI_STR_SIZE;
+	long_format = alloca(long_format_size);
+	if (long_format == NULL) {
+		TESTPMD_LOG(ERR, "Failed to attach port %s - allocation failure\n", identifier);
+		return;
+	}
 
 	/* For PCI device convert to canonical format */
-	long_identifier = convert_pci_address_format(identifier, long_format, sizeof(long_format));
+	long_identifier = convert_pci_address_format(identifier, long_format, long_format_size);
 	if (long_identifier != NULL)
 		identifier = long_identifier;
 
-- 
2.51.0
^ permalink raw reply	[flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-10-31  6:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-30  9:20 [PATCH] app/testpmd: fix devargs format in port attach Gregory Etelson
2025-10-30 15:53 ` Stephen Hemminger
2025-10-30 17:17 ` [PATCH v2] " Gregory Etelson
2025-10-30 17:47   ` Stephen Hemminger
2025-10-31  6:18 ` [PATCH v3] " Gregory Etelson
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).