Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-11-14 | s3: Tiny logic simplification | Volker Lendecke | 1 | -10/+11 | |
2009-11-14 | s3:fix a comment typo | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-11-14 | s3:is_trusted_domain: shortcut if domain name == global_sam_name | Michael Adam | 1 | -0/+4 | |
A domain can't have a trust with itself. This saves some roundtrips to the ldap server for ldapsam. Michael | |||||
2009-11-14 | s3:is_trusted_domain: shortcut if domain name is NULL or empty | Michael Adam | 1 | -0/+4 | |
This saves some roundtrips to LDAP in an ldapsm setup. Michael | |||||
2009-11-14 | s3:passdb: bump interface VERSION 18->19 (removed uid_to_rid) | Michael Adam | 1 | -1/+2 | |
Michael | |||||
2009-11-14 | s3:passdb: remove the uid_to_rid method - we only need uid_to_sid | Michael Adam | 5 | -42/+1 | |
Michael | |||||
2009-11-14 | s3:pdb_default_uid_to_sid: fix some debug statements. | Michael Adam | 1 | -3/+3 | |
Michael | |||||
2009-11-13 | s3/pam: move variable declaration into belonging ifdef section | Björn Jacke | 1 | -1/+1 | |
This fixes a unused variable 'addr' warning on some platforms | |||||
2009-11-13 | s3:smbd: also fill the memcache with sid<->id mappings in ldapsam_sid_to_id() | Michael Adam | 1 | -0/+2 | |
not only the persistent idmap cache. Michael | |||||
2009-11-13 | s3:smbd: make idmap cache persistent for "ldapsam:trusted". | Michael Adam | 1 | -0/+4 | |
This stores the mappings found in the idmap cache (which lives inside gencache). This cache is already read in sid_to_Xid() and Xid_to_sid() for ldapsam:trusted, this fills the opposite direction, massively reducing the number of ldap roundtrips across smbd restarts. Michael | |||||
2009-11-13 | Fix large paged search | Volker Lendecke | 1 | -0/+1 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2009-11-13 | fix bogus "out of memory" winbind msg | Volker Lendecke | 1 | -1/+2 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2009-11-13 | s3: Convert cli_unix_extensions_version to async | Volker Lendecke | 5 | -55/+159 | |
2009-11-13 | s3-rpcclient: use the parsed binding string flags for auth choice. | Günther Deschner | 1 | -0/+18 | |
This allows rpcclient to be called like this: rpcclient ncacn_ip_tcp:w2k8r2[sign,seal] -U administrator%secret -c "dscracknames gd" Guenther | |||||
2009-11-12 | Remove unused variable warning. | Jeremy Allison | 1 | -1/+0 | |
Jeremy. | |||||
2009-11-12 | Remove erroneous 'presult = NULL' changes. Now presult only gets set | Jeremy Allison | 1 | -9/+2 | |
if NTSTATUS == OK. Jeremy. | |||||
2009-11-12 | Revert "Ensure every return path initializes presult as NULL." | Jeremy Allison | 1 | -40/+0 | |
Vl is correct, this is the wrong way to fix this. This reverts commit 83c2c177a5e86d04da37384f1f04230c8274e1e6. | |||||
2009-11-12 | Ensure all callers to the rpc_client/cli_pipe functions correctly | Jeremy Allison | 13 | -34/+21 | |
initialize return variables. Jeremy. | |||||
2009-11-12 | Fix bug 6891 - using windows explorer to change ownership on a folder fails ↵ | Jeremy Allison | 1 | -1/+11 | |
with Bad File Descriptor. Jeremy. | |||||
2009-11-12 | Ensure every return path initializes presult as NULL. | Jeremy Allison | 1 | -0/+40 | |
Ensures no crashes in calling code that forgets to init return as null. Jeremy. | |||||
2009-11-12 | s3-kerberos: remove smb_krb5_get_tkt_from_creds(). | Günther Deschner | 1 | -60/+4 | |
Now that cli_krb5_get_ticket() already handles S4U2SELF impersonation, remove smb_krb5_get_tkt_from_creds() which is not required anymore. Guenther | |||||
2009-11-12 | s3-kerberos: avoid using ERROR_TABLE_BASE_krb5 without checking. | Günther Deschner | 1 | -0/+4 | |
Guenther | |||||
2009-11-12 | s3: Fix debug messages in check_reduced_name | Volker Lendecke | 1 | -13/+24 | |
2009-11-12 | s3-kerberos: add smb_krb5_principal_get_realm(). | Günther Deschner | 2 | -0/+27 | |
Guenther | |||||
2009-11-11 | Second part of bugfix for 6865 - acl_xattr module: Has dependency that ↵ | Jeremy Allison | 4 | -15/+10 | |
inherit acls = yes or xattrs are removed. We also need dos filemode = true set as well. Jeremy. | |||||
2009-11-11 | Fix bug 6878 - Cannot change ACL's inherit flag. | Jeremy Allison | 1 | -44/+108 | |
Based on a patch submitted by Tsukasa Hamano <hamano@osstech.co.jp>, this is a change in the POSIX ACL mapping to deal with the lossy mapping for directory ACE entries: We have a lossy mapping: directory ACE entries CREATOR_OWNER ------\ (map to) +---> SMB_ACL_USER_OBJ owning sid ------/ CREATOR_GROUP ------\ (map to) +---> SMB_ACL_GROUP_OBJ primary group sid --/ on set. And on read of a directory ACL SMB_ACL_USER_OBJ ----> CREATOR_OWNER SMB_ACL_GROUP_OBJ ---> CREATOR_GROUP. Deal with this on set by duplicating owning sid and primary group sid ACE entries into the directory ACL. Jeremy. | |||||
2009-11-11 | s3:vfs_fs_capabilities: fix a debug message | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-11-10 | s3: Convert libsmb/cli_message to the async API | Volker Lendecke | 3 | -142/+372 | |
2009-11-10 | s3-rpc_client: make sure cli_rpc_pipe_open_schannel() does not always return ↵ | Günther Deschner | 1 | -1/+3 | |
NT_STATUS_OK. Guenther | |||||
2009-11-10 | s3-samr: implement _samr_ValidatePassword(). | Günther Deschner | 1 | -10/+118 | |
Guenther | |||||
2009-11-10 | s3-chgpasswd: split out a check_password_complexity() function. | Günther Deschner | 2 | -22/+45 | |
Guenther | |||||
2009-11-09 | Fix bug 6880 - cannot list workgroup servers | Jeremy Allison | 1 | -5/+14 | |
reported by Alban Browaeys <prahal@yahoo.com> with fix. Revert 2e989bab0764c298a2530a2d4c8690258eba210c with extra comments - this broke workgroup enumeration. Jeremy. | |||||
2009-11-09 | s3-netlogon: enable RPC-NETLOGON-ADMIN test against s3. | Günther Deschner | 2 | -5/+25 | |
Guenther | |||||
2009-11-09 | s3: Try to avoid dns searches with an empty site | Volker Lendecke | 1 | -1/+1 | |
2009-11-09 | s3-param: fix set_inherit_acls(). | Günther Deschner | 1 | -0/+2 | |
Jeremy, please check. Guenther | |||||
2009-11-08 | Revert "s3: Do not directly reference the ndr_table_* in rpcclient" | Volker Lendecke | 19 | -662/+203 | |
This reverts commit 70c698fd547c4bc19cf77693608bbb34acac40b5. | |||||
2009-11-08 | Revert "s3: Do not reference ndr_table_<pipe> in the cli_ routines directly" | Volker Lendecke | 8 | -88/+63 | |
This reverts commit daa964013bc5d036f4da571ce22c0052ef40943a. | |||||
2009-11-08 | Revert "s3: Consolidate getting the name out of a pipes_struct" | Volker Lendecke | 4 | -39/+60 | |
This reverts commit 9621306351cdb469ef393a6d8cbeea456bc4bd9f. | |||||
2009-11-08 | Revert "s3: Do not reference the ndr_tables in the server calls directly" | Volker Lendecke | 5 | -38/+29 | |
This reverts commit 98fb71782e05ae72cd6abeb38b6e0b96a50c1761. | |||||
2009-11-08 | Revert "s3: Do not reference ndr_table when calling rpc_srv_register" | Volker Lendecke | 4 | -11/+7 | |
This reverts commit 494b2aff8826947e3bd556aecb175746163da485. | |||||
2009-11-08 | Revert "s3: Make run_rpc_command take strings instead of a ndr_interface_table" | Volker Lendecke | 11 | -261/+176 | |
This reverts commit 53f2a1595e76db9fe1b42db65b51895b73365993. | |||||
2009-11-08 | Revert "s3: Make libnetapi_open_pipe take strings instead of a ↵ | Volker Lendecke | 12 | -61/+54 | |
ndr_interface_table" This reverts commit 5fc9d93408effe75abcd231c45cbc14656692ebe. | |||||
2009-11-08 | s3: Make libnetapi_open_pipe take strings instead of a ndr_interface_table | Volker Lendecke | 12 | -54/+61 | |
2009-11-08 | s3: Make run_rpc_command take strings instead of a ndr_interface_table | Volker Lendecke | 11 | -176/+261 | |
2009-11-08 | s3: Do not reference ndr_table when calling rpc_srv_register | Volker Lendecke | 4 | -7/+11 | |
2009-11-08 | s3: Do not reference the ndr_tables in the server calls directly | Volker Lendecke | 5 | -29/+38 | |
This involves storing the interface table in the pipes_struct | |||||
2009-11-08 | s3: Consolidate getting the name out of a pipes_struct | Volker Lendecke | 4 | -60/+39 | |
2009-11-08 | s3: Do not reference ndr_table_<pipe> in the cli_ routines directly | Volker Lendecke | 8 | -63/+88 | |
2009-11-08 | s3: Do not directly reference the ndr_table_* in rpcclient | Volker Lendecke | 19 | -203/+662 | |
2009-11-07 | s3: Do the printing for DEBUGLEVEL>=10 centrally | Volker Lendecke | 2 | -369/+12 | |
12 insertions(+), 10651 deletions(-) I think that says it all :-) |