[SCSI] bfa: Fixes for 0-terminated strncpy and possible null pointer dereference
authorJakob Normark <jakobnormark@gmail.com>
Wed, 15 May 2013 19:41:51 +0000 (21:41 +0200)
committerJames Bottomley <JBottomley@Parallels.com>
Wed, 26 Jun 2013 14:59:37 +0000 (07:59 -0700)
This patch fixes two cppcheck errors in drivers/scsi/bfa/bfad_im.c

[jejb: correct strlcpy fix]
Signed-off-by: Jakob Normark <jakobnormark@gmail.com>
Acked-by: Vijay Mohan Guvva <vmohan@brocade.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/bfa/bfad_im.c

index 5864f98..9796284 100644 (file)
@@ -944,13 +944,15 @@ static int
 bfad_im_slave_alloc(struct scsi_device *sdev)
 {
        struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
-       struct bfad_itnim_data_s *itnim_data =
-                               (struct bfad_itnim_data_s *) rport->dd_data;
-       struct bfa_s *bfa = itnim_data->itnim->bfa_itnim->bfa;
+       struct bfad_itnim_data_s *itnim_data;
+       struct bfa_s *bfa;
 
        if (!rport || fc_remote_port_chkready(rport))
                return -ENXIO;
 
+       itnim_data = (struct bfad_itnim_data_s *) rport->dd_data;
+       bfa = itnim_data->itnim->bfa_itnim->bfa;
+
        if (bfa_get_lun_mask_status(bfa) == BFA_LUNMASK_ENABLED) {
                /*
                 * We should not mask LUN 0 - since this will translate
@@ -1035,7 +1037,7 @@ bfad_fc_host_init(struct bfad_im_port_s *im_port)
        /* For fibre channel services type 0x20 */
        fc_host_supported_fc4s(host)[7] = 1;
 
-       strncpy(symname, bfad->bfa_fcs.fabric.bport.port_cfg.sym_name.symname,
+       strlcpy(symname, bfad->bfa_fcs.fabric.bport.port_cfg.sym_name.symname,
                BFA_SYMNAME_MAXLEN);
        sprintf(fc_host_symbolic_name(host), "%s", symname);