summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add more debug information to getpwent processticket-1576-increase-debugging-in-nssPavel Březina2012-10-121-2/+41
|
* Add ipa_hbac_support_srchost option to IPA providerJan Zeleny2012-08-219-52/+412
| | | | | don't fetch all host groups if this option is false https://fedorahosted.org/sssd/ticket/1078
* SYSDB: Make sysdb_attrs_get_el_int() publicStephen Gallagher2012-08-212-7/+9
| | | | Also rename it to sysdb_attrs_get_el_ext()
* Process all groups from a single nesting levelJakub Hrozek2012-08-211-5/+18
| | | | | | | | https://bugzilla.redhat.com/show_bug.cgi?id=846664 If the first group was cached when processing the nested group membership, we would call tevent_req_done, effectivelly marking the whole nesting level as done.
* Converge accept_fd_handler and accept_priv_fd_handlerStephen Gallagher2012-06-221-96/+47
| | | | | | | | These two functions were almost identical. Better to maintain them as a single function. Conflicts: src/responder/common/responder_common.c
* RESPONDERS: Make the fd_limit setting configurableStephen Gallagher2012-06-228-4/+64
| | | | | | | | | | | | | | | This code will now attempt first to see if it has privilege to set the value as specified, and if not it will fall back to the previous behavior. So on systems with the CAP_SYS_RESOURCE capability granted to SSSD, it will be able to ignore the limits.conf hard limit. https://fedorahosted.org/sssd/ticket/1197 Conflicts: src/config/SSSDConfig.py src/config/SSSDConfigTest.py src/config/etc/sssd.api.conf
* RESPONDERS: Allow increasing the file-descriptor limitStephen Gallagher2012-06-224-0/+49
| | | | | | | This patch will increase the file descriptor limit to 8k or the limits.conf maximum, whichever is lesser. https://fedorahosted.org/sssd/ticket/1197
* HBAC: create empty groups with one NULL elementJakub Hrozek2012-06-221-16/+15
| | | | https://fedorahosted.org/sssd/ticket/1130
* Also expire connections on the privileged pipeStephen Gallagher2012-06-221-0/+9
|
* IPA: Check nsAccountLock during PAM_ACCT_MGMTStephen Gallagher2012-06-225-1/+70
| | | | | | | | https://fedorahosted.org/sssd/ticket/1227 Conflicts: src/providers/ipa/ipa_access.h src/providers/ipa/ipa_init.c
* LDAP: Make sdap_access_send/recv publicStephen Gallagher2012-06-222-12/+17
| | | | We want to consume this in the IPA provider.
* Make the client idle timeout configurableStephen Gallagher2012-06-187-5/+43
|
* Add support for terminating idle connectionsShantanu Goel2012-06-182-4/+73
|
* Do not send SIGPIPE on disconnectionShantanu Goel2012-06-181-6/+21
| | | | | | | | Note we set MSG_NOSIGNAL to avoid having to fiddle with signal masks but also do not want to die in case SIGPIPE gets raised and the application does not handle it.
* Log message if close() fails in destructor.Shantanu Goel2012-06-181-1/+12
|
* Set return errno to the value prior to calling close().Shantanu Goel2012-06-181-2/+2
|
* DP: Reorganize memory hierarchy of requestsStephen Gallagher2012-06-101-15/+100
| | | | | | | | | | | | | This function alters the memory hierarchy of the be_req to ensure memory safety during shutdown. It creates a spy on the be_cli object so that it will free the be_req if the client is freed. It is generally allocated atop the private data context for the appropriate back-end against which it is being filed. https://fedorahosted.org/sssd/ticket/1226
* Try all KDCs when getting TGT for LDAPJakub Hrozek2012-06-041-15/+16
| | | | | | | | When the ldap child process is killed after a timeout, try the next KDC. When none of the ldap child processes succeed, just abort the connection because we wouldn't be able to authenticate to the LDAP server anyway. https://fedorahosted.org/sssd/ticket/1324
* Detect cycle in the fail over on subsequent resolve requests onlyJakub Hrozek2012-06-045-23/+28
|
* Only do one cycle when resolving a serverJakub Hrozek2012-06-047-29/+93
| | | | https://fedorahosted.org/sssd/ticket/1214
* fo_get_server_name() getter for a server nameJakub Hrozek2012-06-046-4/+32
| | | | | Allows to be more concise in tests and more defensive in resolve callbacks
* Rename fo_get_server_name to fo_get_server_str_nameJakub Hrozek2012-06-047-11/+11
|
* IPA: Detect nsupdate support for the realm directiveStephen Gallagher2012-01-173-11/+46
| | | | | For older platforms, do not add the 'realm' line in the update message
* LDAP: Copy URI instead of pointing at failover service recordStephen Gallagher2012-01-141-2/+8
| | | | | | | | In a heavy load environment, sometimes the failover service record would be updated and free the URI value. We need to guarantee that this URI string remains valid throughout the entire request. https://fedorahosted.org/sssd/ticket/1139
* Log fixes for sdap_call_conn_cbStephen Gallagher2012-01-142-2/+4
|
* Fix potential resource leak in backup_file.cStephen Gallagher2011-12-091-1/+1
|
* Bumping version to 1.5.17Stephen Gallagher2011-12-091-1/+1
|
* Adding new translation filessssd-1_5_16Stephen Gallagher2011-12-094-0/+4671
|
* Translation updateStephen Gallagher2011-12-09109-487/+18545
|
* Fixed incorrect return code in PAM clientJan Zeleny2011-12-091-1/+1
| | | | | | | The original return code when SSSD was not running was system_err, now it is authinfo_unavail. https://fedorahosted.org/sssd/ticket/1011
* Use neutral name for functions used by both pam and nssSimo Sorce2011-12-093-49/+64
|
* Ignore NULL-terminator when checking UTF8-validity for netgroupsStephen Gallagher2011-12-081-1/+1
| | | | Glib fails if the NULL-terminator is included when a length is specified.
* DEBUG: fix bad backport containing new DEBUG representationStephen Gallagher2011-12-081-1/+1
|
* LDAP provider: Error while setting the nocanon option should not be fatalJakub Hrozek2011-12-081-3/+9
| | | | https://fedorahosted.org/sssd/ticket/1100
* Ignore NULL-terminator when checking UTF8-validityStephen Gallagher2011-12-052-4/+4
| | | | | Glib fails if the NULL-terminator is included when a length is specified.
* Fixed an error in macro for merging double linked listsJan Zeleny2011-12-051-1/+1
|
* Allow using Glib for UTF8 supportStephen Gallagher2011-12-058-54/+236
|
* LDAP: Try next failover server on any errorStephen Gallagher2011-11-291-9/+5
|
* Add -fno-strict-aliasingStephen Gallagher2011-11-281-1/+2
|
* Fix FTBFS related to -Werror=format-securityKrzysztof Klimonda2011-11-212-2/+2
|
* RESPONDER: Ensure that all input strings are valid UTF-8Stephen Gallagher2011-11-187-2/+52
|
* Bumping version to 1.5.16Stephen Gallagher2011-11-021-1/+1
|
* Updating translation files for releasesssd-1_5_15Stephen Gallagher2011-11-0263-88/+113
|
* SYSDB: Update sysdb version to latestStephen Gallagher2011-10-312-1/+350
| | | | | Includes several index updates necessary for major performance improvements.
* Steal result onto mem_ctx in sdap_initgr_nested_get_direct_parentsJakub Hrozek2011-10-311-2/+1
|
* RFC2307bis initgroups: fix nested groups processingJakub Hrozek2011-10-311-20/+33
| | | | | Due to incorrectly written loop, SSSD would go into infitite loop if it processed the same group on two different levels of membership.
* RESPONDER: Fix segfault in sss_packet_send()Stephen Gallagher2011-10-251-0/+5
| | | | | | | | | There are several places (all error-handling) where sss_cmd_done() is called with no response packet created. As a short-term solution, we need to check whether the packet is NULL and simply return EINVAL. client_send() (the consumer) will then forcibly disconnect the client (which will return PAM_SYSTEM_ERR to the client).
* Bumping version to sssd 1.5.15Stephen Gallagher2011-10-251-1/+1
|
* Plug memory leaks in LDAP providerJakub Hrozek2011-10-251-0/+3
|
* Updating translation filessssd-1_5_14Stephen Gallagher2011-10-18128-23678/+63612
|