]> git.karo-electronics.de Git - karo-tx-linux.git/commit
cifs: track the enablement of signing in the TCP_Server_Info
authorJeff Layton <jlayton@redhat.com>
Sun, 26 May 2013 11:01:00 +0000 (07:01 -0400)
committerSteve French <smfrench@gmail.com>
Mon, 10 Jun 2013 22:24:21 +0000 (17:24 -0500)
commitaf35ede4f6ff92972ca40754dea5cefe962678ec
tree3c81d1f77470602abf889b7b6cbe446073188358
parent0c6add11965888c3d3b55026f4966dec03961d41
cifs: track the enablement of signing in the TCP_Server_Info

Currently, we determine this according to flags in the sec_mode, flags
in the global_secflags and via other methods. That makes the semantics
very hard to follow and there are corner cases where we don't handle
this correctly.

Add a new bool to the TCP_Server_Info that acts as a simple flag to tell
us whether signing is enabled on this connection or not, and fix up the
places that need to determine this to use that flag.

This is a bit weird for the SMB2 case, where signing is per-session.
SMB2 needs work in this area already though. The existing SMB2 code has
similar logic to what we're using here, so there should be no real
change in behavior. These changes should make it easier to implement
per-session signing in the future though.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Pavel Shilovsky <piastry@etersoft.ru>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/cifsglob.h
fs/cifs/cifsproto.h
fs/cifs/cifssmb.c
fs/cifs/connect.c
fs/cifs/misc.c
fs/cifs/sess.c
fs/cifs/smb1ops.c
fs/cifs/smb2pdu.c
fs/cifs/smb2transport.c
fs/cifs/transport.c