Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | AD: Don't mark domain as enumerated twice | Jakub Hrozek | 2013-12-18 | 1 | -12/+0 | |
| | | | | | The domain was already marked as enumerated using sysdb_set_enumerated in the enumeration request itself. | |||||
* | ad: use tokengroups even when id mapping is disabled | Pavel Březina | 2013-12-18 | 3 | -26/+524 | |
| | | | | https://fedorahosted.org/sssd/ticket/1568 | |||||
* | ad: refactor tokengroups initgroups | Pavel Březina | 2013-12-18 | 3 | -229/+355 | |
| | | | | | sdap_get_ad_tokengroups_initgroups is split into more parts so it can be reused later. | |||||
* | AD: use LDAP for group lookups | Sumit Bose | 2013-12-13 | 3 | -3/+152 | |
| | | | | | | | | | | | | | | | | The group memberships cannot be reliable retrieved from the Global Catalog. By default the memberOf attribute is not replicated to the GC at all and the member attribute is copied from the local LDAP instance to the GC running on the same host, but is only replicated to other GC instances for groups with universal scope. Additionally the tokenGroups attribute contains invalid SIDs when used with the GC for users from a different domains than the GC belongs to. As a result the requests which tries to resolve group-memberships of a AD user have to go to a LDAP server from the domain of the user. Fixes https://fedorahosted.org/sssd/ticket/2161 and https://fedorahosted.org/sssd/ticket/2148 as a side-effect. | |||||
* | SUBDOMAINS: Reuse cached results if DP is offline | Jakub Hrozek | 2013-12-09 | 2 | -2/+13 | |
| | | | | | | | | | | If Data Provider was unable to refresh the subdomain list, the sss_domain_info->subdomains list was NULL. Which meant that no DP request matched any known domain and hence offline authentication was not working correctly. Resolves: https://fedorahosted.org/sssd/ticket/2168 | |||||
* | LDAP: Fix a debug message | Jakub Hrozek | 2013-12-09 | 1 | -2/+1 | |
| | ||||||
* | failover: check dns_domain if primary servers lookup failed | Pavel Březina | 2013-12-09 | 1 | -3/+7 | |
| | | | | | | | If primary servers lookup failed, dns_domain is not set. Resolves: https://fedorahosted.org/sssd/ticket/2173 | |||||
* | rfc2307bis_nested_groups_send: reuse search base | Sumit Bose | 2013-12-09 | 1 | -2/+7 | |
| | | | | | If there are multiple members in the sdom list, always the search base of the first entry were used. | |||||
* | SSSD: Improved domain detection | Pavel Reichl | 2013-11-29 | 1 | -11/+28 | |
| | | | | | | | A bit more elegant way of detection of what domain the group member belongs to Resolves: https://fedorahosted.org/sssd/ticket/2132 | |||||
* | KRB5: Go offline in case of clock skew | Jakub Hrozek | 2013-11-29 | 1 | -0/+1 | |
| | | | | | | | | https://fedorahosted.org/sssd/ticket/1096 In case the KDC has skewed time, we can retry with the next one and eventually go offline if no KDC has time in sync with the client. Previously, authentication with wrong time resulted in System Error. | |||||
* | Remove unused parameter from ipa_save_netgroup | Lukas Slebodnik | 2013-11-27 | 1 | -2/+1 | |
| | ||||||
* | Remove unused memory context in proxy | Lukas Slebodnik | 2013-11-27 | 1 | -9/+6 | |
| | ||||||
* | Remove unused parameter from save_netgroup | Lukas Slebodnik | 2013-11-27 | 3 | -6/+3 | |
| | ||||||
* | Remove unused parameter from save_user | Lukas Slebodnik | 2013-11-27 | 1 | -10/+8 | |
| | ||||||
* | Remove unused parameter from delete_user | Lukas Slebodnik | 2013-11-27 | 1 | -9/+7 | |
| | ||||||
* | Remove unused parameter from krb5_auth_store_creds | Lukas Slebodnik | 2013-11-27 | 1 | -3/+2 | |
| | ||||||
* | Remove unused parameter from krb5_auth_cache_creds | Lukas Slebodnik | 2013-11-27 | 1 | -3/+0 | |
| | ||||||
* | Remove unused parameter from sdap_save_netgroup | Lukas Slebodnik | 2013-11-27 | 1 | -4/+1 | |
| | ||||||
* | Remove unused parameter from sdap_process_missing_member_2307 | Lukas Slebodnik | 2013-11-27 | 1 | -4/+2 | |
| | ||||||
* | Remove unused parameter from sdap_add_group_member_2307 | Lukas Slebodnik | 2013-11-27 | 1 | -4/+3 | |
| | ||||||
* | Remove unused parameter from sdap_store_group_with_gid | Lukas Slebodnik | 2013-11-27 | 1 | -7/+3 | |
| | ||||||
* | Remove unused parameter from sdap_get_members_with_primary_gid | Lukas Slebodnik | 2013-11-27 | 1 | -4/+4 | |
| | ||||||
* | Remove unused parameter from sdap_save_user | Lukas Slebodnik | 2013-11-27 | 4 | -9/+3 | |
| | ||||||
* | Remove unused parameter from get_user_dn | Lukas Slebodnik | 2013-11-27 | 1 | -2/+1 | |
| | ||||||
* | Remove unused parameter from sss_selinux_extract_user | Lukas Slebodnik | 2013-11-27 | 1 | -1/+1 | |
| | ||||||
* | LDAP: Search for original DN during auth if it's missing | Jakub Hrozek | 2013-11-20 | 1 | -16/+194 | |
| | | | | | | | | | Resolves: https://fedorahosted.org/sssd/ticket/2077 If during the LDAP authentication we find out that the originalDN to bind as is missing (because the ID module is not LDAP based), we can try to look up the user from LDAP without saving him just in order to receive the originalDN. | |||||
* | LDAP: Split out a request to search for a user w/o saving | Jakub Hrozek | 2013-11-20 | 2 | -33/+147 | |
| | | | | | | | | | | Related: https://fedorahosted.org/sssd/ticket/2077 Certain situations require that a user entry is downloaded for further inpection, but not saved to the sysdb right away. This patch splits the previously monolithic request into one that just downloads the data and one that uses the new one to download and save the user. | |||||
* | LDAP: Initialize user count for AD matching rule | Jakub Hrozek | 2013-11-18 | 1 | -1/+1 | |
| | | | | | | | https://fedorahosted.org/sssd/ticket/2157 If AD matching rule was selected, but the group was empty, the SSSD accessed random data. Initializing count to zero prevents that. | |||||
* | krb5: Alignment warning reported by clang | Michal Zidek | 2013-11-15 | 1 | -7/+7 | |
| | | | | | | | Do not store address from byte buffer into pointer of diffrent type! https://fedorahosted.org/sssd/ticket/1359 | |||||
* | SYSDB: Drop redundant sysdb_ctx parameter from sysdb.c | Michal Zidek | 2013-11-15 | 12 | -22/+14 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter - module sysdb_ops (part 2) | Michal Zidek | 2013-11-15 | 25 | -82/+68 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the sysdb_sudo.c module | Jakub Hrozek | 2013-11-15 | 4 | -25/+15 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the sysdb_idmap module | Jakub Hrozek | 2013-11-15 | 1 | -4/+2 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter - module sysdb_ops (part 1) | Michal Zidek | 2013-11-15 | 9 | -25/+22 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the sysdb_ssh module | Michal Zidek | 2013-11-15 | 1 | -4/+2 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the sysdb_services module | Michal Zidek | 2013-11-15 | 6 | -33/+26 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the sysdb_search module | Michal Zidek | 2013-11-15 | 9 | -23/+17 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from SELinux functions | Jakub Hrozek | 2013-11-15 | 1 | -7/+6 | |
| | ||||||
* | SYSDB: Drop the sysdb_ctx parameter from the autofs API | Jakub Hrozek | 2013-11-15 | 2 | -29/+16 | |
| | ||||||
* | Merge ipa_selinux_common.c and ipa_selinux.c | Jakub Hrozek | 2013-11-15 | 3 | -110/+46 | |
| | | | | | Moved unused functions and merged ipa_selinux_common.c into ipa_selinux.c | |||||
* | LDAP: Prevent from using uninitialized sdap_options | Lukas Slebodnik | 2013-11-14 | 1 | -1/+1 | |
| | | | | | | | | ldap_get_options can fail in time of ldap back end initialisation and then sssd try to release uninitialised sdap_options. Resolves: https://fedorahosted.org/sssd/ticket/2147 | |||||
* | Remove unused variable | Jakub Hrozek | 2013-11-12 | 1 | -1/+0 | |
| | ||||||
* | Signals: Refactor termination of processes | Simo Sorce | 2013-11-12 | 2 | -2/+2 | |
| | | | | | | | | sig_term() was never used as a real signal handler, but only called by tevent signal handlers in the kerberos and ldap children. Also the same code was duplicated with separate local guard variables in other functions. Unify orderly termination handling, between all these functions. | |||||
* | Add ldap_autofs_map_master_name option | Cove Schneider | 2013-11-12 | 7 | -7/+17 | |
| | ||||||
* | Initialize sid_str to NULL to avoid freeing random data | Jakub Hrozek | 2013-11-08 | 2 | -2/+2 | |
| | | | | | If any function before failed, sss_idmap_free_sid() might have been called with random data. | |||||
* | confdb: Make offline timeout configurable | Michal Zidek | 2013-11-07 | 1 | -2/+13 | |
| | | | | | | | Added and documented option offline_timeout. Resolves: https://fedorahosted.org/sssd/ticket/1718 | |||||
* | free idmapped SIDs correctly | Pavel Březina | 2013-11-07 | 4 | -4/+7 | |
| | | | | | Resolves: https://fedorahosted.org/sssd/ticket/2133 | |||||
* | Include ext headers with #include <foo.h> - cont | Pavel Reichl | 2013-11-04 | 1 | -1/+1 | |
| | | | | Changing style of including header files from outside of sssd tree - from "header.h" to <header.h> | |||||
* | AD: Fix ad_access_filter parsing with empty filter | Jakub Hrozek | 2013-10-30 | 1 | -0/+8 | |
| | ||||||
* | LDAP: Check all search bases during nested group processing | Jakub Hrozek | 2013-10-30 | 1 | -13/+42 | |
| |