Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-22 | Sanitize DN when searching the original DN in the cache | Sumit Bose | 1 | -1/+9 | |
2011-03-17 | Fix incorrect return value check | Stephen Gallagher | 1 | -1/+1 | |
2011-03-15 | Fix LDAP search filter for nested initgroups | Jakub Hrozek | 1 | -1/+1 | |
2011-03-14 | Fix one unlikely case of failure in sdap_id_op module | Jan Zeleny | 1 | -1/+3 | |
There can be an unlikely scenario when the first part of sdap_id_op_connect_done works fine and there is no need to mark backend offline. But right after the check, the memory allocation can fail in which case the backend needs to be marked offline along with disabled reconnecting. | |||||
2011-03-14 | Require existence of username, uid and gid for user enumeration | Stephen Gallagher | 1 | -12/+18 | |
We will ignore users that do not have these three values. | |||||
2011-03-14 | Require existence of GID number and name in group searches | Stephen Gallagher | 3 | -25/+42 | |
https://fedorahosted.org/sssd/ticket/824 | |||||
2011-03-09 | Release handle if not connected | Sumit Bose | 1 | -0/+1 | |
2011-02-21 | IPA provider: remove deleted groups during initgroups() | Stephen Gallagher | 1 | -3/+112 | |
The IPA provider was not properly removing groups in the cache that the user was no longer a member of. https://fedorahosted.org/sssd/ticket/803 | |||||
2011-02-18 | Remove cached user entry if initgroups returns ENOENT | Stephen Gallagher | 1 | -0/+11 | |
This behavior was present for getpwnam() but was lacking for initgroups. | |||||
2011-02-16 | Do not attempt to use START_TLS on SSL connections | Stephen Gallagher | 4 | -11/+43 | |
Not all LDAP servers are capable of handling dual-encryption with both TLS and SSL. https://fedorahosted.org/sssd/ticket/795 | |||||
2011-02-14 | Verify LDAP file descriptor validity | Stephen Gallagher | 1 | -1/+1 | |
2011-02-11 | Fix cleanup transaction | Stephen Gallagher | 1 | -0/+1 | |
Without setting in_transaction=true, if the sysdb operations threw an error, we wouldn't cancel the transaction. | |||||
2011-02-04 | Only print "no matching service rule" when appropriate | Stephen Gallagher | 1 | -6/+6 | |
2011-02-03 | Wrap cleanup task in a sysdb transaction | Stephen Gallagher | 1 | -0/+20 | |
2011-02-01 | Sanitize search filters for nested group lookups | Stephen Gallagher | 1 | -3/+17 | |
2011-01-31 | Remove LDAP_DEPRECATED | Sumit Bose | 1 | -1/+0 | |
2011-01-27 | Add option to disable TLS for LDAP auth | Stephen Gallagher | 3 | -2/+19 | |
Option is named to discourage use in production environments and is intentionally not listed in the SSSDConfig API. | |||||
2011-01-27 | Do not fail if attributes are empty | Sumit Bose | 1 | -16/+29 | |
Currently we fail if attributes are empty. But there are some use cases where requested attributes are empty. E.g Active Directory uses an empty member attribute to indicate that a subset of the members are in a range sub-attribute. | |||||
2011-01-21 | Delete attributes that are removed from LDAP | Stephen Gallagher | 3 | -8/+163 | |
Sometimes, a value in LDAP will cease to exist (the classic example being shadowExpire). We need to make sure we purge that value from SSSD's sysdb as well. https://fedorahosted.org/sssd/ticket/750 | |||||
2011-01-21 | Fix nested group handling during enumeration | Sumit Bose | 1 | -0/+14 | |
Nested groups where not unrolled completely during the first enumeration run because not all where present in the cache. | |||||
2011-01-21 | Add missing include file to sdap_async_accounts.c | Stephen Gallagher | 1 | -0/+1 | |
2011-01-21 | Add the user's primary group to the initgroups lookup | Stephen Gallagher | 3 | -14/+56 | |
The user may not be a direct member of their primary group, but we still want to make sure that group is cached on the system. | |||||
2011-01-20 | Add ldap_tls_{cert,key,cipher_suite} config options | Tyson Whitehead | 3 | -0/+33 | |
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com> | |||||
2011-01-19 | Fix return value check | Sumit Bose | 1 | -2/+2 | |
2011-01-19 | Don't double-sanitize member DNs | Stephen Gallagher | 1 | -12/+4 | |
After asking the cache for the list of member DNs for groups during an initgroups request, we were passing it through the sanitization function. Since this had already been done before they were saved to the cache, this meant that it was corrupting the results. It is safe to pass the returned DN directly into the sysdb_group_dn_name() function. | |||||
2011-01-19 | Add LDAP expire policy base RHDS/IPA attribute | Sumit Bose | 5 | -3/+52 | |
The attribute nsAccountLock is used by RHDS, IPA and other directory servers to indicate that the account is locked. | |||||
2011-01-19 | Add LDAP expire policy based on AD attributes | Sumit Bose | 5 | -3/+99 | |
The second bit of userAccountControl is used to determine if the account is enabled or disabled. accountExpires is checked to see if the account is expired. | |||||
2011-01-17 | Add ldap_search_enumeration_timeout config option | Sumit Bose | 3 | -4/+6 | |
2011-01-17 | Add timeout parameter to sdap_get_generic_send() | Sumit Bose | 8 | -32/+77 | |
2011-01-14 | Do not throw a DP error when a netgroup is not found | Stephen Gallagher | 1 | -5/+1 | |
https://fedorahosted.org/sssd/ticket/775 | |||||
2011-01-14 | Add missing sysdb transaction to group enumerations | Stephen Gallagher | 1 | -12/+45 | |
We were not enclosing group processing in a transaction, which was resulting in extremely high numbers of disk-writes. This patch adds a transaction around the sdap_process_group code to ensure that these actions take place within a transaction. This patch also adds a check around the missing member code for RFC2307bis so we don't go back to the LDAP server to look up entries that don't exist (since the enumeration first pass would already have guaranteed that we have all real users cached) | |||||
2011-01-06 | Add syslog messages to authorized service access check | Sumit Bose | 1 | -1/+31 | |
2011-01-06 | Add syslog message to shadow access check | Sumit Bose | 1 | -6/+14 | |
2011-01-06 | Convert obfuscated password once at startup | Sumit Bose | 2 | -14/+41 | |
2010-12-21 | Add authorizedService support | Stephen Gallagher | 5 | -2/+144 | |
https://fedorahosted.org/sssd/ticket/670 | |||||
2010-12-21 | Pass all PAM data to the LDAP access provider | Stephen Gallagher | 1 | -9/+12 | |
Previously we were only passing the username. | |||||
2010-12-21 | Remove unused member of a struct | Sumit Bose | 1 | -1/+0 | |
2010-12-21 | Add all values of a multi-valued user attribute | Sumit Bose | 1 | -12/+15 | |
2010-12-20 | Avoid multiple initializations in LDAP provider | Sumit Bose | 1 | -39/+30 | |
Currently in a domain where LDAP was used for id and auth the LDAP UIR was added multiple times to the failover code which may cause unwanted delays. | |||||
2010-12-17 | Start first enumeration immediately | Stephen Gallagher | 2 | -3/+42 | |
Previously, we would wait for ten seconds before starting an enumeration. However, this meant that on the first startup (before we had run our first enumeration) there was a ten-second window where clients would immediately get back a response with no entries instead of blocking until the enumeration completed. With this patch, SSSD will now run an enumeration immediately upon startup. Further startups will retain the ten-second delay so as not to slow down system bootups. https://fedorahosted.org/sssd/ticket/616 | |||||
2010-12-14 | Fix uninitialized value error in sdap_account_expired_shadow() | Sumit Bose | 1 | -2/+2 | |
https://fedorahosted.org/sssd/ticket/726 | |||||
2010-12-14 | Fix unchecked return value in sdap_parse_entry() | Sumit Bose | 1 | -1/+5 | |
https://fedorahosted.org/sssd/ticket/712 | |||||
2010-12-14 | Fix unchecked return value in sdap_get_msg_dn() | Sumit Bose | 1 | -1/+6 | |
https://fedorahosted.org/sssd/ticket/712 | |||||
2010-12-07 | Replace krb5_kdcip by krb5_server in LDAP provider | Sumit Bose | 2 | -4/+12 | |
2010-12-07 | Mark unavailable Kerberos server as PORT_NOT_WORKING | Sumit Bose | 1 | -0/+1 | |
2010-12-07 | ldap: Use USN entries if available. | Simo Sorce | 7 | -88/+186 | |
Otherwise fallback to the default modifyTimestamp indicator | |||||
2010-12-07 | ldap: add checks to determine if USN features are available. | Simo Sorce | 8 | -24/+133 | |
2010-12-07 | ldap: remove variable that was never assigned nor used | Simo Sorce | 2 | -10/+0 | |
2010-12-07 | Pass sdap_id_ctx in sdap_id_op functions. | Simo Sorce | 3 | -47/+51 | |
2010-12-06 | Add ldap_chpass_uri config option | Sumit Bose | 5 | -6/+47 | |