cifs: fix name parsing in CIFSSMBQAllEAs
commit91d065c47317cd5f6577fa077cca3383c8d9243d
authorJeff Layton <jlayton@redhat.com>
Tue, 26 Jul 2011 22:23:47 +0000 (26 18:23 -0400)
committerSteve French <sfrench@us.ibm.com>
Sun, 31 Jul 2011 21:21:09 +0000 (31 21:21 +0000)
treeb233806b287b9b97f9c085f2e0dc280d031961ed
parent998d6fcb24d25b7889ec39118cf98d5089ac4c11
cifs: fix name parsing in CIFSSMBQAllEAs

The code that matches EA names in CIFSSMBQAllEAs is incorrect. It
uses strncmp to do the comparison with the length limited to the
name_len sent in the response.

Problem: Suppose we're looking for an attribute named "foobar" and
have an attribute before it in the EA list named "foo". The
comparison will succeed since we're only looking at the first 3
characters. Fix this by also comparing the length of the provided
ea_name with the name_len in the response. If they're not equal then
it shouldn't match.

Reported-by: Jian Li <jiali@redhat.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Pavel Shilovsky <piastryyy@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/cifssmb.c