summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-03-21Save alias of the primary name, tooJakub Hrozek2-11/+23
2012-03-21Make the string_equal() function publicJakub Hrozek3-13/+14
2012-03-20SSH: Fix infinite loop in sss_ssh_knownhostsproxyJan Cholasta1-6/+9
https://fedorahosted.org/sssd/ticket/1268
2012-03-20NSS: Fix debug messageStephen Gallagher1-0/+2
2012-03-19sss_client: shared memory cache group map supportSimo Sorce4-0/+269
2012-03-19nsssrv: add handling of memory cache group mapSimo Sorce6-4/+108
2012-03-19sss_client: shared memory cache passwd map supportSimo Sorce4-0/+263
2012-03-19sss_client: Add common shared memory cache utilsSimo Sorce3-1/+338
2012-03-19nsssrv: add handling of memory cache passwd mapSimo Sorce3-3/+101
2012-03-19nsssrv: Add memory cache record handling utilsSimo Sorce1-0/+279
2012-03-19nsssrv: shared memory cache server initializationSimo Sorce8-0/+376
2012-03-19util: Helper headers for shared memory cacheSimo Sorce2-0/+118
2012-03-16Free entry found in negative cacheJakub Hrozek1-0/+3
2012-03-16LDAP: Errors retrieving the RootDSE should not be fatalStephen Gallagher1-15/+8
If we can't reach the RootDSE, let's just proceed as if it's unavailable with reasonable defaults. If we fail later on, that's fine. Fixes https://fedorahosted.org/sssd/ticket/1257
2012-03-16Fix uninitialized variableJakub Hrozek1-1/+1
2012-03-16SYSDB: Save only lowercased aliases in case-insensitive domainsStephen Gallagher1-19/+28
https://fedorahosted.org/sssd/ticket/1253
2012-03-16IPA: Allow service lookupsStephen Gallagher1-0/+1
2012-03-15SSH: Canonicalize host name and do reverse DNS lookup in sss_ssh_knownhostsproxyJan Cholasta1-26/+38
https://fedorahosted.org/sssd/ticket/1245
2012-03-15SSH: Allow clients to explicitly specify host aliasJan Cholasta8-76/+64
This change removes the need to canonicalize host names on the responder side - the relevant code was removed.
2012-03-14LDAP: Add AD 2008r2 schemaStephen Gallagher2-3/+53
https://fedorahosted.org/sssd/ticket/1031
2012-03-12i18n: Remove empty translationsStephen Gallagher75-207670/+16989
2012-03-12IPA: Initialize hbac_ctx to NULLStephen Gallagher1-1/+1
2012-03-09Handle empty elements in proxy netgroups:Jakub Hrozek1-3/+6
2012-03-09Fix netgroup error handlingJakub Hrozek1-17/+59
https://fedorahosted.org/sssd/ticket/1242
2012-03-09SSH: Fix missing semicolonStephen Gallagher1-1/+1
2012-03-09Fixed resource leak in ssh client codeJan Zeleny1-0/+1
2012-03-09Add umask before mkstemp() call in SSH responderJan Zeleny1-0/+3
2012-03-09Fixed uninitialized pointer in SSH authorized keys clientJan Zeleny1-1/+1
2012-03-09Fixed uninitialized pointer in SSH known host proxyJan Zeleny1-1/+1
2012-03-09PROXY: Create fake user entries for group lookupsStephen Gallagher1-3/+85
2012-03-09Potential NULL-dereference in sudosrv_cmd_get_sudorulesPavel Březina1-14/+12
https://fedorahosted.org/sssd/ticket/1236
2012-03-09Use of unininitialized value in sss_sudo_parse_responsePavel Březina1-0/+2
https://fedorahosted.org/sssd/ticket/1231
2012-03-09Use of unininitialized value in sudosrv_cache_set_entry and ↵Pavel Březina1-0/+2
sudosrv_cache_lookup_internal https://fedorahosted.org/sssd/ticket/1232
2012-03-09Missing debug message if sdap_sudo_refresh_set_timer failsPavel Březina1-1/+5
https://fedorahosted.org/sssd/ticket/1238
2012-03-09Two memory leaks in sss_sudo_get_valuesPavel Březina1-1/+4
https://fedorahosted.org/sssd/ticket/1235
2012-03-09IPA: Check nsAccountLock during PAM_ACCT_MGMTStephen Gallagher5-1/+70
https://fedorahosted.org/sssd/ticket/1227
2012-03-09LDAP: Make sdap_access_send/recv publicStephen Gallagher2-12/+17
We want to consume this in the IPA provider.
2012-03-08Fix nested groups processingJakub Hrozek1-26/+60
Instead of keeping the number of parent groups in "state" and having to reset the count when moving to another group on the same level, keep track of the all groups on a particular level along with their parents and parent count.
2012-03-08Handle errors from lookup_netgr_step gracefullyJakub Hrozek1-3/+10
2012-03-08Save original name into the in-memory cacheJakub Hrozek1-1/+1
2012-03-08Properly terminate GIT_CHECKOUTStephen Gallagher1-0/+1
Accidentally removed the endif in the patch removing 'make experimental-rpms'
2012-03-08Build experimental features by default in RPMsStephen Gallagher2-13/+2
2012-03-08Make RPM spec more explicitStephen Gallagher1-2/+20
It will be easier to catch errors at build-time
2012-03-08Prune python provides correctlyStephen Gallagher1-5/+8
2012-03-08Use the correct hash table for pending requestsSimo Sorce7-10/+14
The function that handled pending requests on reconnect was checking an orphaned global variable that was never used, redenring the whole function uselsess. This fixes a very nasty bug that was causing requests for which we never received an answer for (for example because the backend failed and was restarted) to be never removed and therefore causing a black hole effect for any other request of the same type. Fixes: https://fedorahosted.org/sssd/ticket/1229
2012-03-08Only free returned values on successJakub Hrozek1-3/+3
https://fedorahosted.org/sssd/ticket/1237
2012-03-08Autofs: operate on contents of double-pointer, not addressJakub Hrozek1-3/+3
https://fedorahosted.org/sssd/ticket/1234
2012-03-08Detect cycle in the fail over on subsequent resolve requests onlyJakub Hrozek5-23/+28
2012-03-06Search netgroups by alias, tooJakub Hrozek2-3/+5
https://fedorahosted.org/sssd/ticket/1228
2012-03-06krb5_child: set debugging soonerJakub Hrozek2-23/+35