search for: parse_acl_blob

Displaying 6 results from an estimated 6 matches for "parse_acl_blob".

2016 Sep 28
0
samba-tool ntacl sysvolreset - NT_STATUS_BUFFER_TOO_SMALL
..._FSET_NT_ACL smb_vfs_call_fset_nt_acl - source3/smbd/vfs.c:NTSTATUS smb_vfs_call_fset_nt_acl [which calls fset_nt_acl_fn] - source3/modules/vfs_acl_xattr.c: .fset_nt_acl_fn = fset_nt_acl_common - source3/modules/vfs_acl_common.c:static NTSTATUS fset_nt_acl_common - source3/modules/vfs_acl_common.c: parse_acl_blob() [which seems to be where the error occurs] However it appears that I'm now trying to debug the VFS modules in Samba, which isn't quite where I thought I would end up when I started looking into this error :) I've found a couple of Python debugger tools, which got me out of the pytho...
2016 Sep 11
4
samba-tool ntacl sysvolreset - NT_STATUS_BUFFER_TOO_SMALL
...ausing this.. I have a '-d10' trace, and the last section before the exception is as follows: et_nt_acl_internal: name=/usr/local/samba/var/locks/sysvol/ mydomain.org.uk/Policies/{11111111-2222-3333-4444-555555555555}/Machine ndr_pull_error(11): Pull bytes 2 (../librpc/ndr/ndr_basic.c:107) parse_acl_blob: ndr_pull_xattr_NTACL failed: Buffer Size Error validate_nt_acl_blob: parse_acl_blob returned NT_STATUS_BUFFER_TOO_SMALL get_nt_acl_internal: ACL validation for [/usr/local/samba/var/locks/sysvol/ n-client.ninja.org.uk/Policies/{11111111-2222-3333-4444-555555555555}/Machine] failed set_nt_acl_no_sn...
2016 Aug 29
1
Issue with acl_xattr:ignore system acls in 4.5rc2
...TSTATUS get_nt_acl_internal(vfs_handle_struct *handle, > if (!NT_STATUS_IS_OK(status)) { > DEBUG(10, ("get_nt_acl_internal: get_acl_blob returned %s\n", > nt_errstr(status))); > - psd = NULL; > + psd_blob = NULL; > goto out; > } else { > - status = parse_acl_blob(&blob, mem_ctx, &psd, > + status = parse_acl_blob(&blob, mem_ctx, &psd_blob, > &hash_type, &xattr_version, &hash[0], &sys_acl_hash[0]); > if (!NT_STATUS_IS_OK(status)) { > DEBUG(10, ("parse_acl_blob returned %s\n", > nt_...
2016 Aug 27
2
Issue with acl_xattr:ignore system acls in 4.5rc2
On Fri, Aug 26, 2016 at 04:03:49PM -0700, Jeremy Allison wrote: > On Fri, Aug 26, 2016 at 02:46:19PM -0700, Jeremy Allison via samba wrote: > > On Fri, Aug 26, 2016 at 06:44:05PM +0200, Ralph Böhme wrote: > > > > > > Cheerio! > > > -slow > > > > Still reviewing this - but a few things that will need changing: > > > > When adding the
2016 Aug 26
2
Issue with acl_xattr:ignore system acls in 4.5rc2
...TSTATUS get_nt_acl_internal(vfs_handle_struct *handle, > if (!NT_STATUS_IS_OK(status)) { > DEBUG(10, ("get_nt_acl_internal: get_acl_blob returned %s\n", > nt_errstr(status))); > - psd = NULL; > + psd_blob = NULL; > goto out; > } else { > - status = parse_acl_blob(&blob, mem_ctx, &psd, > + status = parse_acl_blob(&blob, mem_ctx, &psd_blob, > &hash_type, &xattr_version, &hash[0], &sys_acl_hash[0]); > if (!NT_STATUS_IS_OK(status)) { > DEBUG(10, ("parse_acl_blob returned %s\n", > nt_...
2016 Aug 26
2
Issue with acl_xattr:ignore system acls in 4.5rc2
On Fri, Aug 26, 2016 at 06:33:26PM +0200, Ralph Böhme via samba wrote: > On Thu, Aug 25, 2016 at 12:14:00PM -0700, Jeremy Allison wrote: > > On Wed, Aug 24, 2016 at 04:06:42PM +0200, Ralph Böhme via samba wrote: > > > > > > Yeah, as much as I'd like to avoid adding a new option, I guess we > > > have to do something about it, my latest take on this is >