diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-20 09:47:43 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-20 21:57:46 +1000 |
commit | 0769d67682de756557c02256b8c854dc5fca9c23 (patch) | |
tree | 2a6fa80b3a522f8d2ad5abd666f2d30ea7e7bc2b /source4/ntvfs | |
parent | 9699c335fd65aa916466e20716b5b0b8fcc9c2ef (diff) | |
download | samba-0769d67682de756557c02256b8c854dc5fca9c23.tar.gz |
s4-ntvfs: Ensure we do not attempt to write EAs on streams
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/posix/pvfs_xattr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_xattr.c b/source4/ntvfs/posix/pvfs_xattr.c index 82ce579676a..ab88d89d10b 100644 --- a/source4/ntvfs/posix/pvfs_xattr.c +++ b/source4/ntvfs/posix/pvfs_xattr.c @@ -284,6 +284,12 @@ NTSTATUS pvfs_doseas_load(struct pvfs_state *pvfs, struct pvfs_filename *name, i { NTSTATUS status; ZERO_STRUCTP(eas); + + if (name->stream_name) { + /* We don't support EAs on streams */ + return NT_STATUS_INVALID_PARAMETER; + } + if (!(pvfs->flags & PVFS_FLAG_XATTR_ENABLE)) { return NT_STATUS_OK; } |