net/ark: add null pointer check
authorYong Wang <wang.yong19@zte.com.cn>
Thu, 14 Sep 2017 12:03:56 +0000 (08:03 -0400)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 6 Oct 2017 00:49:49 +0000 (02:49 +0200)
In function ark_config_device(), there are several malloc without null
point check. Fix it by adding null point check.

Signed-off-by: Yong Wang <wang.yong19@zte.com.cn>
Acked-by: Ed Czeck <ed.czeck@atomicrules.com>
drivers/net/ark/ark_ethdev.c
drivers/net/ark/ark_pktchkr.c
drivers/net/ark/ark_pktdir.c
drivers/net/ark/ark_pktgen.c

index 5069159..ba25a9d 100644 (file)
@@ -451,10 +451,16 @@ ark_config_device(struct rte_eth_dev *dev)
         */
        ark->start_pg = 0;
        ark->pg = ark_pktgen_init(ark->pktgen.v, 0, 1);
+       if (ark->pg == NULL)
+               return -1;
        ark_pktgen_reset(ark->pg);
        ark->pc = ark_pktchkr_init(ark->pktchkr.v, 0, 1);
+       if (ark->pc == NULL)
+               return -1;
        ark_pktchkr_stop(ark->pc);
        ark->pd = ark_pktdir_init(ark->pktdir.v);
+       if (ark->pd == NULL)
+               return -1;
 
        /* Verify HW */
        if (ark_udm_verify(ark->udm.v))
index c3040af..202a1d9 100644 (file)
@@ -112,6 +112,10 @@ ark_pktchkr_init(void *addr, int ord, int l2_mode)
        struct ark_pkt_chkr_inst *inst =
                rte_malloc("ark_pkt_chkr_inst",
                           sizeof(struct ark_pkt_chkr_inst), 0);
+       if (inst == NULL) {
+               PMD_DRV_LOG(ERR, "Failed to malloc ark_pkt_chkr_inst.\n");
+               return inst;
+       }
        inst->sregs = (struct ark_pkt_chkr_stat_regs *)addr;
        inst->cregs =
                (struct ark_pkt_chkr_ctl_regs *)(((uint8_t *)addr) + 0x100);
index 66e5ce2..eb47ded 100644 (file)
@@ -36,6 +36,7 @@
 
 #include "ark_pktdir.h"
 #include "ark_global.h"
+#include "ark_logs.h"
 
 
 ark_pkt_dir_t
@@ -45,6 +46,10 @@ ark_pktdir_init(void *base)
                rte_malloc("ark_pkt_dir_inst",
                           sizeof(struct ark_pkt_dir_inst),
                           0);
+       if (inst == NULL) {
+               PMD_DRV_LOG(ERR, "Failed to malloc ark_pkt_dir_inst.\n");
+               return inst;
+       }
        inst->regs = (struct ark_pkt_dir_regs *)base;
        inst->regs->ctrl = 0x00110110;  /* POR state */
        return inst;
index 8c7a8a2..018f37b 100644 (file)
@@ -110,6 +110,10 @@ ark_pktgen_init(void *adr, int ord, int l2_mode)
        struct ark_pkt_gen_inst *inst =
                rte_malloc("ark_pkt_gen_inst_pmd",
                           sizeof(struct ark_pkt_gen_inst), 0);
+       if (inst == NULL) {
+               PMD_DRV_LOG(ERR, "Failed to malloc ark_pkt_gen_inst.\n");
+               return inst;
+       }
        inst->regs = (struct ark_pkt_gen_regs *)adr;
        inst->ordinal = ord;
        inst->l2_mode = l2_mode;