summaryrefslogtreecommitdiffstats
path: root/src/providers
Commit message (Collapse)AuthorAgeFilesLines
* HBAC: Prevent NULL dereference in hbac_evaluateJakub Hrozek2012-05-021-2/+4
| | | | 'info' is optional parameter and can be set to NULL
* ipa_get_config_send: remove unused assignmentJakub Hrozek2012-05-021-1/+0
|
* IPA netgroups: return EOK when there are no netgroups to processJakub Hrozek2012-05-021-0/+1
| | | | If the code fell through the loop, ret would have been random value.
* LDAP: check return value of sysdb_attrs_get_elJakub Hrozek2012-05-021-0/+7
|
* execv, excvp and exec_child never return EOKStef Walter2012-05-012-10/+6
| | | | * So don't need to handle that case
* Utilize sysdb context within be_req in HBACJan Zeleny2012-04-241-2/+2
|
* Detect subdomain request in IPA access providerJan Zeleny2012-04-241-0/+10
|
* Accept be_req instead if be_ctx in LDAP access providerJan Zeleny2012-04-243-15/+16
|
* Carry sysdb context and domain info in be_req structureJan Zeleny2012-04-242-0/+5
|
* Basic support for subdomains in auth providerJan Zeleny2012-04-243-3/+13
|
* Add ID operations in subdomainsJan Zeleny2012-04-243-0/+276
|
* Add s2n extended operationSumit Bose2012-04-242-0/+667
|
* Add domain name to get_account_info requestSumit Bose2012-04-242-0/+10
|
* IPA: Add get-domains targetSumit Bose2012-04-246-0/+425
|
* data provider: added subdomainsSumit Bose2012-04-243-2/+167
|
* Responder part of the subdomain retrieval workJan Zeleny2012-04-241-0/+1
|
* Get the RootDSE after binding if not successfull beforeJakub Hrozek2012-04-201-26/+104
| | | | https://fedorahosted.org/sssd/ticket/1258
* Convert read and write operations to sss_atomic_readJakub Hrozek2012-04-203-78/+52
| | | | https://fedorahosted.org/sssd/ticket/1209
* sdap_check_aliases must not error when detects the same userJakub Hrozek2012-04-201-13/+31
| | | | https://fedorahosted.org/sssd/ticket/1307
* Free controls in sdap_rebind_procJakub Hrozek2012-04-201-4/+6
|
* proxy: new option proxy_fast_aliasJakub Hrozek2012-04-203-43/+123
|
* proxy: Canonicalize user and group namesJakub Hrozek2012-04-201-312/+354
| | | | https://fedorahosted.org/sssd/ticket/1249
* Fixed minor memory leak in ldap providerJan Zeleny2012-04-181-0/+1
|
* Fixed memory context in sdap_fill_memberships()Jan Zeleny2012-04-181-1/+1
|
* Removed unused block of code is sdap_fill_memberships()Jan Zeleny2012-04-181-57/+29
|
* Removed a block of dead code in sdap_async_groups.cJan Zeleny2012-04-181-20/+1
|
* Do not call sdap_auth if not neededJakub Hrozek2012-04-181-7/+11
|
* Prevent printing NULL from DEBUG messagesJakub Hrozek2012-04-187-50/+67
|
* autofs: load the correct optionJakub Hrozek2012-04-161-1/+1
|
* Remove forgotten DEBUG messageJakub Hrozek2012-04-131-2/+0
|
* Clean up log messages about keytab_nameStephen Gallagher2012-04-052-9/+16
| | | | | | | | | There were many places where we were printing (null) to the logs because a NULL keytab name tells libkrb5 to use its configured default instead of a particular path. This patch should clean up all uses of this to print "default" in the logs. https://fedorahosted.org/sssd/ticket/1288
* Use HTML_TIMESTAMP instead of HTML_FOOTER_DESCRIPTIONJakub Hrozek2012-04-051-3/+4
| | | | https://fedorahosted.org/sssd/ticket/1271
* Catch cases where D-Bus connection is NULLJakub Hrozek2012-04-051-0/+20
| | | | https://fedorahosted.org/sssd/ticket/1270
* Proxy services: Save lowercased protocol names and aliases in ↵Jakub Hrozek2012-03-291-57/+17
| | | | case-insensitive domains
* LDAP services: Save lowercased protocol names in case-insensitive domainsJakub Hrozek2012-03-291-1/+17
| | | | https://fedorahosted.org/sssd/ticket/1260
* Return correct resolv_status on resolver timeoutJakub Hrozek2012-03-292-12/+17
| | | | https://fedorahosted.org/sssd/ticket/1274
* Remove old compatibility testsStephen Gallagher2012-03-282-31/+0
| | | | | | | These are now replaced by the more accurate tests. This patch also drops the runtime option-count check, since we are always performing the more complete check at build-time.
* Add terminator for sdap_attr_mapStephen Gallagher2012-03-283-22/+49
|
* Add terminator for dp_optionStephen Gallagher2012-03-284-5/+12
|
* Put dp_option maps in their own fileStephen Gallagher2012-03-286-512/+610
| | | | There is no functional change due to this patch.
* LDAP: Fix memory leaks in synchronous_tls_setupStephen Gallagher2012-03-261-8/+10
| | | | | | | | | | We were never freeing "result" if it was allocated by ldap_result(). We were also not freeing "errmsg" if it was allocated but ldap_parse_result() returned an error. Also disambiguate error messages from ldap_parse_result() and error messages from sss_ldap_get_diagnostic_msg() since they use differing memory-management functions.
* LDAP services: Keep the protocol aroundJakub Hrozek2012-03-261-0/+1
|
* LDAP: Add better error logging when ldap_result() failsStephen Gallagher2012-03-211-1/+3
|
* Make the string_equal() function publicJakub Hrozek2012-03-211-13/+4
|
* LDAP: Errors retrieving the RootDSE should not be fatalStephen Gallagher2012-03-161-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
* Fix uninitialized variableJakub Hrozek2012-03-161-1/+1
|
* IPA: Allow service lookupsStephen Gallagher2012-03-161-0/+1
|
* LDAP: Add AD 2008r2 schemaStephen Gallagher2012-03-141-2/+49
| | | | https://fedorahosted.org/sssd/ticket/1031
* IPA: Initialize hbac_ctx to NULLStephen Gallagher2012-03-121-1/+1
|
* Handle empty elements in proxy netgroups:Jakub Hrozek2012-03-091-3/+6
|