From patchwork Thu Jul 1 22:53:06 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve French X-Patchwork-Id: 1499752 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=linux-cifs-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.a=rsa-sha256 header.s=20161025 header.b=K8dpYTFr; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4GGD5c0SqWz9sV8 for ; Fri, 2 Jul 2021 08:53:24 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234053AbhGAWzx (ORCPT ); Thu, 1 Jul 2021 18:55:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232807AbhGAWzu (ORCPT ); Thu, 1 Jul 2021 18:55:50 -0400 Received: from mail-lj1-x22d.google.com (mail-lj1-x22d.google.com [IPv6:2a00:1450:4864:20::22d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A3DE0C061762 for ; Thu, 1 Jul 2021 15:53:19 -0700 (PDT) Received: by mail-lj1-x22d.google.com with SMTP id h6so10681287ljl.8 for ; Thu, 01 Jul 2021 15:53:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=0OOPFhTOrkLzDvdmQCeMlEth2/nPkgBqar5N15NOnZg=; b=K8dpYTFrYly8ENqFh0Uo+corPs29013CCteecULT4hW4gEA548hN+xLdP6Bu1T9ECu iiqbX4i0QAHx2iGwgJeIswHyEZWM5/WVm5VCzNzHZU6l+9IcpACHnKylrVzpXF+y7g62 Yhy8GizHF3W64i3RJ0ks7nS6b1LD2UZnGO0eDb3MMO5Kvew/f7hOtjnMXuPE/Mt1lMuC Gc84Jds8yPBGm/NDbWXumFZXB/K10T5G2RWoXrPukE8xux4lYdgTps0yEHzOwx/SKlUY xdeUcPJmATMMFsna9DMGnPJsx5IyvwA4+sBRilp//XRfMfclC2p7hZFxdN/Q7OVWOzdw Gaew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=0OOPFhTOrkLzDvdmQCeMlEth2/nPkgBqar5N15NOnZg=; b=UwqY27sATVBr0B5C2ar+XUQ72blwZ4OCzK2RPn7K7lawB7eSeRHa1bs5EVdTuOCgx9 lEmdUevjYQtgBmNKAuIRLvm41v4Lhg5PfVrr9Q41Iu6qsZL4s+giPxvvJD90Mmrs9HS+ p+Mo8wrURfmuywYtjujAMhUcMF81zRYPoL4y6IgOTM8UYXeUCxvGgW63Gv/7sQxviVI2 piQW5AgFw2GgCl9h20dgjjojNP00U6RXENQ4fI7U0BUC55nac4nntumMcd8MRLTBLI7C BXUrliBy1FMJobqafn5jsRCJ2IwjDtHigwFO9FbvI9SJdGoQhs1hsN7QmMkMw8MoCjC4 Bm+w== X-Gm-Message-State: AOAM530ge1jPV9E3VZ1DFnUVVj5uqSTN2TtcDAV4fu+072PRvjRRIXLj kOBD1TganLHNzEWFg5WaoAKZuDhBXtpIIVW8re7Xg3Ipv1ihBg== X-Google-Smtp-Source: ABdhPJxGW5MkIloVOuRZ6aHfAuTgG0maV0Q8LxHPnLNkEunljFFyKoKCNJUFkBJ7awJvRBb1Ok+/zUbLowxpJzK5Vuw= X-Received: by 2002:a05:651c:a07:: with SMTP id k7mr1419169ljq.477.1625179997761; Thu, 01 Jul 2021 15:53:17 -0700 (PDT) MIME-Version: 1.0 From: Steve French Date: Thu, 1 Jul 2021 17:53:06 -0500 Message-ID: Subject: [PATCH] cifs: clarify SMB1 code for UnixCreateHardLink To: CIFS Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org Coverity complains about the way we calculate the offset (starting from the address of a 4 byte array within the header structure rather than from the beginning of the struct plus 4 bytes). This doesn't change the address but makes it slightly clearer. Addresses-Coverity: 711529 ("Out of bounds read") Signed-off-by: Steve French Reviewed-by: Ronnie Sahlberg --- fs/cifs/cifspdu.h | 1 + fs/cifs/cifssmb.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) name_len_target = cifsConvertToUTF16((__le16 *) data_offset, fromName, From 16e790b35255c1e70964fd6ee9272bc603614aa1 Mon Sep 17 00:00:00 2001 From: Steve French Date: Thu, 1 Jul 2021 17:46:23 -0500 Subject: [PATCH] cifs: clarify SMB1 code for UnixCreateHardLink Coverity complains about the way we calculate the offset (starting from the address of a 4 byte array within the header structure rather than from the beginning of the struct plus 4 bytes). This doesn't change the address but makes it slightly clearer. Addresses-Coverity: 711529 ("Out of bounds read") Signed-off-by: Steve French --- fs/cifs/cifspdu.h | 1 + fs/cifs/cifssmb.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h index 0923f72d27e9..f6e235001358 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h @@ -1785,6 +1785,7 @@ struct smb_com_transaction2_sfi_req { __u16 Fid; __le16 InformationLevel; __u16 Reserved4; + __u8 payload[]; } __attribute__((packed)); struct smb_com_transaction2_sfi_rsp { diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 58ebec4d4413..ea12fa6eacb6 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -3009,7 +3009,8 @@ CIFSUnixCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon, InformationLevel) - 4; offset = param_offset + params; - data_offset = (char *) (&pSMB->hdr.Protocol) + offset; + /* SMB offsets are from the beginning of SMB which is 4 bytes in, after RFC1001 field */ + data_offset = (char *)pSMB + offset + 4; if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) { name_len_target = cifsConvertToUTF16((__le16 *) data_offset, fromName, -- 2.30.2