Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-11-19 | s3:pdb_ldap: fix a comment typo | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-11-19 | s3: shortcut uid_to_sid when "ldapsam:trusted = yes" | Michael Adam | 1 | -0/+75 | |
The normal uid_to_sid behaviour is to call sys_getpwuid() to get the name for the given uid and then call the getsampwnam passdb method for the resulting name. In the ldapsam:trusted case we can reduce the uid_to_sid operation to one simple search for the uidNumber attribute and only get the sambaSID attribute from the correspoinding LDAP object. This reduces the number of ldap roundtrips for this operation. Michael | |||||
2009-11-14 | s3:passdb: remove the uid_to_rid method - we only need uid_to_sid | Michael Adam | 3 | -39/+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: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-03 | s3: Remove debug_ctx() | Volker Lendecke | 1 | -28/+28 | |
smbd just crashed on me: In a debug message I called a routine preparing a string that itself used debug_ctx. The outer routine also used it after the inner routine had returned. It was still referencing the talloc context that the outer debug_ctx() had given us, which the inner DEBUG had already freed. | |||||
2009-11-02 | s3:ldap: don't search when no values where found | Björn Jacke | 1 | -1/+1 | |
2009-10-31 | ѕ3:ldap: search for account policies in objectclass sambaDomain, not * | Björn Jacke | 1 | -1/+6 | |
2009-10-29 | s3-secrets: use autogenerated code for TRUSTED_DOM_PASS struct parsing from ↵ | Günther Deschner | 1 | -220/+36 | |
a tdb. Guenther | |||||
2009-10-28 | s3-passdb: move open_schannel_session_store() to passdb/secrets_schannel.c. | Günther Deschner | 2 | -63/+63 | |
Guenther | |||||
2009-10-28 | s3-passdb: add secrets_delete_generic(). | Günther Deschner | 1 | -0/+16 | |
Guenther | |||||
2009-10-20 | s3-pdb_ldap: fix crash bug in ldapsam_set_trusteddom_pw(). | Günther Deschner | 1 | -2/+2 | |
Thanks Volker for the hint. Guenther | |||||
2009-10-20 | s3-lsa: Allow to lookup 'NT AUTHORITY\Anonymous Logon' as well. | Günther Deschner | 1 | -0/+1 | |
This is to finally pass RPC-LSA-LOOKUPNAMES test. Guenther | |||||
2009-10-20 | s3-lsa: allow to lookup BUILTIN\ in lsa_LookupNames. | Günther Deschner | 1 | -0/+8 | |
Found by RPC-LSA-LOOKUPNAMES torture test. Guenther | |||||
2009-10-15 | Fix valgrind memory leak in bug #6814 - Fixes for problems reported by valgrind | Jeremy Allison | 1 | -0/+1 | |
Jeremy. | |||||
2009-10-13 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -5/+5 | |
2009-10-13 | s3: use enum netr_SchannelType all over the place. | Günther Deschner | 2 | -7/+10 | |
Guenther | |||||
2009-09-21 | s3:secrets_schannel: revert to using version 1 | Stefan Metzmacher | 1 | -3/+9 | |
It doesn't really matter if the entries have invalid context in it. Older versions of samba refuse to open the file if the version doesn't match. If we can't parse individual records, we'll fail schannel binds, but the clients are supposed to reestablish the netlogon secure channel by doing ServerReqChallenge/ServerAuthenticate* again. This will just overwrite the old record. metze | |||||
2009-09-02 | s3-pdb_ldap: Fix bug #4296: Clean up group membership while deleting a user. | Günther Deschner | 1 | -0/+46 | |
Note that this only is tried with editposix=yes. Guenther | |||||
2009-08-27 | s3-schannel: remove remaining code that was using "struct dcinfo". | Günther Deschner | 1 | -167/+0 | |
Guenther | |||||
2009-08-27 | s3-schannel: upgrade old format schannel_store.tdb. | Günther Deschner | 1 | -4/+9 | |
Guenther | |||||
2009-08-27 | s3-schannel: add simple wrappers to fetch and store schannel auth info. | Günther Deschner | 2 | -0/+69 | |
Guenther | |||||
2009-08-27 | s3-schannel: make open_schannel_session_store() public. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2009-08-03 | s3-pdb_ldap: Make ldapsam_alias_memberships behave like the tdbsam equivalent. | Günther Deschner | 1 | -0/+7 | |
This lets samr_GetAliasMembership return with NT_STATUS_OK when called with 0 sids (just what w2k3 does). Guenther | |||||
2009-07-31 | Rename LOOKUP_NAME_EXPLICIT to LOOKUP_NAME_NO_NSS | Volker Lendecke | 1 | -4/+8 | |
It took me a bit to understand what this flag does. I hope this is a bit clearer, at least it is to me. | |||||
2009-07-29 | s3:passdb: use transaction_wrapped write in tdbsam_new_rid() | Michael Adam | 1 | -1/+2 | |
Now all tdb writes in passdb use transactions. Michael | |||||
2009-07-29 | s3:secrets: use transaction wrapped store in get rand seed. | Michael Adam | 1 | -2/+2 | |
Now secrets.tdb is only writen with transactions. Michael | |||||
2009-07-29 | s3:dbwrap: change dbwrap_change_uint32_atomic() to return NTSTATUS not uint32_t. | Michael Adam | 1 | -3/+5 | |
Michael | |||||
2009-07-17 | Fix Coverity CIDs 887, 888. Don't pass NULL's to functions | Jeremy Allison | 1 | -4/+3 | |
that deref them. Jeremy. | |||||
2009-07-14 | s3-passdb: fix wbc build warning. | Günther Deschner | 1 | -2/+2 | |
Guenther | |||||
2009-07-14 | Fix bug 5886 | Volker Lendecke | 1 | -8/+26 | |
Ok, that's a very long-standing one. I finally got around to install a recent OpenLDAP and test the different variants of setting a NULL password etc. Thanks all for your patience! Volker | |||||
2009-07-14 | s3-account_policy: add pdb_policy_type enum. | Günther Deschner | 5 | -42/+46 | |
Guenther | |||||
2009-07-13 | s3-pdb_ads: set correct pdb field with the value from 'accountExpires' ↵ | Günther Deschner | 1 | -1/+1 | |
attribute. Guenther | |||||
2009-07-13 | libds: merge the UF<->ACB flag mapping functions. | Günther Deschner | 1 | -3/+3 | |
Guenther | |||||
2009-07-10 | Return 0 domains from enum_trusteddoms | Volker Lendecke | 1 | -1/+3 | |
2009-07-10 | Quieten events and tldap debug messages | Volker Lendecke | 1 | -1/+1 | |
2009-07-09 | Make escape_ldap_string take a talloc context | Volker Lendecke | 1 | -23/+22 | |
2009-07-04 | pdb_ads: For cached samu entries, priv is NULL | Volker Lendecke | 1 | -75/+81 | |
We have to recreate the priv entry on demand. This needs fixing in passdb... :-) | |||||
2009-07-04 | Add pdb_ads_get_domain_info | Volker Lendecke | 1 | -0/+53 | |
2009-07-04 | pdb_ads: Use tldap_fetch_rootdse in pdb_ads_connect | Volker Lendecke | 1 | -13/+12 | |
2009-07-04 | pdb_ads: Fetch the domain GUID | Volker Lendecke | 1 | -1/+7 | |
2009-07-04 | Add pdb_get_domain_info | Volker Lendecke | 2 | -0/+20 | |
2009-07-04 | Make pdb_ads return an additional flag | Volker Lendecke | 1 | -1/+1 | |
2009-06-30 | Fix bug #6431 - local groups from 3.0 setups no longer found. | Volker Lendecke | 1 | -8/+8 | |
Search for groups without group suffix, group suffix is only used for new entries. | |||||
2009-06-29 | s3-pdb_tdb: give 'unknown_str' the proper name 'comment' and set comment in ↵ | Günther Deschner | 1 | -10/+15 | |
passdb. pdb_{get,set}_comment were already existing in the API but were never used. Guenther | |||||
2009-06-29 | s3:pdb_ads: we need to make the fd for tldap/tsocket non-blocking | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-06-28 | Turn the pdb_rid_algorithm into a capabilities call that returns flags | Volker Lendecke | 6 | -19/+19 | |
2009-06-28 | Make pdb_ads survive a restart of Samba4 | Volker Lendecke | 1 | -106/+225 | |
The search function retries once, the modifying call that hits a dead smbd returns an error. The next try will reconnect. This was simple to implement and provides a good compromise against Samba4 idling our connection. Most of the modifying calls are quickly after a search (like OpenUser) anyway. |