7959831b4d
The destination string may not have a null termination if the source string's length is equal to the sizeof. Fix by replacing strncpy with strlcpy that guarantees NULL-termination. [merged several commits] Coverty issue: 272606 Fixes:d75c371e9b
("examples/ip_pipeline: add pipeline object") Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Coverty issue: 272594 Fixes:133c2c6565
("examples/ip_pipeline: add link object") Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com> Coverty issue: 272603 Fixes:2f74ae28e2
("examples/ip_pipeline: add tap object") Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Coverity issue: 272588 Fixes:6bfe74f8c9
("examples/ip_pipeline: add mempool object") Signed-off-by: Kevin Laatz <kevin.laatz@intel.com> Reviewed-by: Jasvinder Singh <jasvinder.singh@intel.com> Coverity issue: 272592 Fixes:25961ff3bc
("examples/ip_pipeline: add traffic manager object") Signed-off-by: Kevin Laatz <kevin.laatz@intel.com> Reviewed-by: Jasvinder Singh <jasvinder.singh@intel.com> Coverity issue: 272562 Fixes:9a408cc8ac
("examples/ip_pipeline: add KNI object") Signed-off-by: Reshma Pattan <reshma.pattan@intel.com> Reviewed-by: Jasvinder Singh <jasvinder.singh@intel.com> Coverity issue: 272580 Fixes:719374345c
("examples/ip_pipeline: add action profile objects") Signed-off-by: Reshma Pattan <reshma.pattan@intel.com> Reviewed-by: Jasvinder Singh <jasvinder.singh@intel.com> Coverity issue: 272572 Fixes:719374345c
("examples/ip_pipeline: add action profile objects") Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Coverity issue: 272563 Fixes:8245472c58
("examples/ip_pipeline: add sw queue object") Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
77 lines
1.2 KiB
C
77 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2010-2018 Intel Corporation
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <rte_string_fns.h>
|
|
|
|
#include "swq.h"
|
|
|
|
static struct swq_list swq_list;
|
|
|
|
int
|
|
swq_init(void)
|
|
{
|
|
TAILQ_INIT(&swq_list);
|
|
|
|
return 0;
|
|
}
|
|
|
|
struct swq *
|
|
swq_find(const char *name)
|
|
{
|
|
struct swq *swq;
|
|
|
|
if (name == NULL)
|
|
return NULL;
|
|
|
|
TAILQ_FOREACH(swq, &swq_list, node)
|
|
if (strcmp(swq->name, name) == 0)
|
|
return swq;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
struct swq *
|
|
swq_create(const char *name, struct swq_params *params)
|
|
{
|
|
struct swq *swq;
|
|
struct rte_ring *r;
|
|
unsigned int flags = RING_F_SP_ENQ | RING_F_SC_DEQ;
|
|
|
|
/* Check input params */
|
|
if ((name == NULL) ||
|
|
swq_find(name) ||
|
|
(params == NULL) ||
|
|
(params->size == 0))
|
|
return NULL;
|
|
|
|
/* Resource create */
|
|
r = rte_ring_create(
|
|
name,
|
|
params->size,
|
|
params->cpu_id,
|
|
flags);
|
|
|
|
if (r == NULL)
|
|
return NULL;
|
|
|
|
/* Node allocation */
|
|
swq = calloc(1, sizeof(struct swq));
|
|
if (swq == NULL) {
|
|
rte_ring_free(r);
|
|
return NULL;
|
|
}
|
|
|
|
/* Node fill in */
|
|
strlcpy(swq->name, name, sizeof(swq->name));
|
|
swq->r = r;
|
|
|
|
/* Node add to list */
|
|
TAILQ_INSERT_TAIL(&swq_list, swq, node);
|
|
|
|
return swq;
|
|
}
|