mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
SMB3: GUIDs should be constructed as random but valid uuids
commit fa70b87cc6 upstream.
GUIDs although random, and 16 bytes, need to be generated as
proper uuids.
Signed-off-by: Steve French <steve.french@primarydata.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Reported-by: David Goebels <davidgoe@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b2120e0b91
commit
a8c240c8d2
@@ -268,7 +268,7 @@ cifs_alloc_inode(struct super_block *sb)
|
|||||||
cifs_inode->createtime = 0;
|
cifs_inode->createtime = 0;
|
||||||
cifs_inode->epoch = 0;
|
cifs_inode->epoch = 0;
|
||||||
#ifdef CONFIG_CIFS_SMB2
|
#ifdef CONFIG_CIFS_SMB2
|
||||||
get_random_bytes(cifs_inode->lease_key, SMB2_LEASE_KEY_SIZE);
|
generate_random_uuid(cifs_inode->lease_key);
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
* Can not set i_flags here - they get immediately overwritten to zero
|
* Can not set i_flags here - they get immediately overwritten to zero
|
||||||
|
|||||||
@@ -2200,7 +2200,7 @@ cifs_get_tcp_session(struct smb_vol *volume_info)
|
|||||||
memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
|
memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr,
|
||||||
sizeof(tcp_ses->dstaddr));
|
sizeof(tcp_ses->dstaddr));
|
||||||
#ifdef CONFIG_CIFS_SMB2
|
#ifdef CONFIG_CIFS_SMB2
|
||||||
get_random_bytes(tcp_ses->client_guid, SMB2_CLIENT_GUID_SIZE);
|
generate_random_uuid(tcp_ses->client_guid);
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
* at this point we are the only ones with the pointer
|
* at this point we are the only ones with the pointer
|
||||||
|
|||||||
@@ -1037,7 +1037,7 @@ smb2_set_lease_key(struct inode *inode, struct cifs_fid *fid)
|
|||||||
static void
|
static void
|
||||||
smb2_new_lease_key(struct cifs_fid *fid)
|
smb2_new_lease_key(struct cifs_fid *fid)
|
||||||
{
|
{
|
||||||
get_random_bytes(fid->lease_key, SMB2_LEASE_KEY_SIZE);
|
generate_random_uuid(fid->lease_key);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SMB2_SYMLINK_STRUCT_SIZE \
|
#define SMB2_SYMLINK_STRUCT_SIZE \
|
||||||
|
|||||||
@@ -1186,7 +1186,7 @@ create_durable_v2_buf(struct cifs_fid *pfid)
|
|||||||
|
|
||||||
buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
|
buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
|
||||||
buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
|
buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
|
||||||
get_random_bytes(buf->dcontext.CreateGuid, 16);
|
generate_random_uuid(buf->dcontext.CreateGuid);
|
||||||
memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
|
memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
|
||||||
|
|
||||||
/* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
|
/* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
|
||||||
|
|||||||
Reference in New Issue
Block a user