search for: talloc_stackframe

Displaying 10 results from an estimated 10 matches for "talloc_stackframe".

2023 Oct 15
1
Compiling within Samba Source-Tree
...st add crypto to your list of deps. > >> no talloc stackframe at >> ../../source3/passdb/machine_account_secrets.c:60, leaking memory >> >> So here's my second question: How do I avoid this warning? > > I guess you're missing a > > TALLOC_CTX *frame = talloc_stackframe(); > > in your initialisation. > > -slow > > -- > Ralph Boehme, Samba Team???????? https://samba.org/ > SerNet Samba Team Lead??????? https://sernet.de/en/ > Worldwide Samba Support, Consulting and Development > SAMBA+ Samba packages?????????? https://samba.plus/ >
2023 Oct 15
1
Compiling within Samba Source-Tree
...dependency, you should be able to just add crypto to your list of deps. > no talloc stackframe at > ../../source3/passdb/machine_account_secrets.c:60, leaking memory > > So here's my second question: How do I avoid this warning? I guess you're missing a TALLOC_CTX *frame = talloc_stackframe(); in your initialisation. -slow -- Ralph Boehme, Samba Team https://samba.org/ SerNet Samba Team Lead https://sernet.de/en/ Worldwide Samba Support, Consulting and Development SAMBA+ Samba packages https://samba.plus/ -------------- next part -------------- A non-text...
2012 Aug 14
0
[ANNOUNCE] Samba 4.0 beta6
...upgrading classic domains that may not have all the default domain policies set. Less visible, but important changes under the hood include: - Continued work to support SMB2 and SMB3 - Continued work to use async IO to improve file server performance. - Patches to ensure that talloc_tos() and talloc_stackframe() are always used correctly. - Preparation for correctly setting POSIX ACLs during provision. KNOWN ISSUES ============ - This release makes the s3fs file server the default, as this is the file server combination we will use for the Samba 4.0 release. - Modifying of group policies by membe...
2012 Aug 28
0
[ANNOUNCE] Samba 4.0 beta7
...l' commands: - samba-tool ntacl sysvolreset - samba-tool ntacl sysvolcheck Less visible, but important changes under the hood include: - Continued work to support SMB2 and SMB3 - Continued work to use async IO to improve file server performance. - Patches to ensure that talloc_tos() and talloc_stackframe() are always used correctly. - We can now test the implementation of NT -> POSIX ACL mapping in a unit test with VFS bindings exposing both to python. We also store the posix ACL in a tdb during make test, allowing testing of this feature on all platforms, regardless of local FS settin...
2012 Aug 01
0
[ANNOUNCE] Samba 4.0 beta5
...adcast sockets explicitly, rather than just relying on the socket address above. Less visible, but important changes under the hood include: - Continued work to support SMB2 and SMB3 - Continued work to use async IO to improve file server performance. - Patches to ensure that talloc_tos() and talloc_stackframe() are always used correctly. KNOWN ISSUES ============ - This release makes the s3fs file server the default, as this is the file server combination we will use for the Samba 4.0 release. - Modifying of group policies by members of the Domain Administrators group is not possible with the s...
2023 Oct 14
3
Compiling within Samba Source-Tree
Dear Samba-experts: we migrated from Samba 3.6 to 4.18 and everything works well. But there are two problems where I need some expert-help: We are using a daemon that is running on our AD-server. It accepts connections from remote machines and changes the passwords of certain users. Calling system("smbpasswd") from within that daemon would be too slow so the daemon calls
2016 Aug 26
2
Issue with acl_xattr:ignore system acls in 4.5rc2
...uct security_descriptor *psd_fs = NULL; > const struct smb_filename *smb_fname = NULL; > @@ -495,7 +496,9 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct *handle, > ACL_MODULE_NAME, > "ignore system acls", > false); > - TALLOC_CTX *frame = talloc_stackframe(); > + char *sys_acl_blob_description = NULL; > + DATA_BLOB sys_acl_blob = { 0 }; > + bool psd_is_from_fs = false; > > if (fsp && smb_fname_in == NULL) { > smb_fname = fsp->fsp_name; > @@ -505,11 +508,10 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct...
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 >
2016 Aug 29
1
Issue with acl_xattr:ignore system acls in 4.5rc2
...uct security_descriptor *psd_fs = NULL; > const struct smb_filename *smb_fname = NULL; > @@ -495,7 +496,9 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct *handle, > ACL_MODULE_NAME, > "ignore system acls", > false); > - TALLOC_CTX *frame = talloc_stackframe(); > + char *sys_acl_blob_description = NULL; > + DATA_BLOB sys_acl_blob = { 0 }; > + bool psd_is_from_fs = false; > > if (fsp && smb_fname_in == NULL) { > smb_fname = fsp->fsp_name; > @@ -505,11 +508,10 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct...
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