Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-06-27 | fix typos | Simo Sorce | 1 | -5/+5 | |
2011-06-02 | Non-posix group processing - ldap provider and nss responder | Jan Zeleny | 1 | -3/+11 | |
2011-05-31 | Fix typo in initgroups negative cache check | Stephen Gallagher | 1 | -1/+1 | |
2011-05-23 | Set _GNU_SOURCE globally | Sumit Bose | 1 | -3/+1 | |
2011-05-20 | Add new options to override shell value | Jakub Hrozek | 3 | -1/+123 | |
https://fedorahosted.org/sssd/ticket/742 | |||||
2011-05-20 | Add a new option to override home directory value | Jakub Hrozek | 3 | -1/+140 | |
https://fedorahosted.org/sssd/ticket/551 | |||||
2011-05-20 | Add a new option to override primary GID number | Jakub Hrozek | 2 | -2/+10 | |
https://fedorahosted.org/sssd/ticket/742 | |||||
2011-05-06 | Allow changing the log level without restart | Stephen Gallagher | 4 | -2/+17 | |
We will now re-read the confdb debug_level value when processing the monitor_common_logrotate() function, which occurs when the monitor receives a SIGHUP. | |||||
2011-05-06 | Create common sss_monitor_init() | Stephen Gallagher | 1 | -34/+3 | |
This was implemented almost identically for both the responders and the providers. It is easier to maintain as a single routine. This patch also adds the ability to provide a private context to attach to the sbus_connection for later use. | |||||
2011-05-06 | Do not leak netgroups hash table | Jakub Hrozek | 1 | -0/+12 | |
2011-04-25 | Don't use negative cache in netgroup lookup | Jan Zeleny | 2 | -20/+20 | |
In responder a negative cache is used to indicate that the record has not been found by previous lookup. This approach is however not applicable for netgroup lookup because the design of their lookup is a little different. This patch removes some pieces of code working with negative cache, because they didn't fuction well. Instead a new flag has been added to the positive cache. This flag indicates if the record in the cache is a record of existing netgroup or it's just a placeholder. https://fedorahosted.org/sssd/ticket/820 | |||||
2011-04-15 | Fix regression where nonexistent entries were never added to the negative cache | Stephen Gallagher | 1 | -21/+21 | |
2011-04-15 | Fix a regression with the negative cache in multi-domain configurations | Stephen Gallagher | 1 | -3/+18 | |
2011-04-15 | Add debug logging to the negative cache | Stephen Gallagher | 1 | -0/+5 | |
2011-04-08 | Fix unchecked return values of pam_add_response | Jakub Hrozek | 1 | -4/+12 | |
https://fedorahosted.org/sssd/ticket/798 | |||||
2011-03-09 | Change state of hash entry if netgroup cannot be parsed | Sumit Bose | 1 | -0/+2 | |
2011-03-07 | Refactor set_netgroup_entry() | Sumit Bose | 1 | -4/+7 | |
To avoid wrong or missing netgroup names in the getent_ctx destructor set_netgroup_entry() now takes the name out of the getent_ctx struct instead of using a separate argument. | |||||
2011-03-07 | Add missing name to struct getent_ctx for missing netgroup | Sumit Bose | 1 | -0/+6 | |
https://fedorahosted.org/sssd/ticket/817 | |||||
2011-02-21 | Perform initgroups lookups for all domains | Stephen Gallagher | 1 | -3/+5 | |
Previously, we were setting the client context PAM lookup timeout after the first domain replied. However, if the user wasn't a member of the first domain, their information wasn't being updated. This patch ensures that we only set this timeout after the user has been found or all domains were searched. | |||||
2011-01-21 | Perform initgroups lookup for PAM | Stephen Gallagher | 1 | -1/+3 | |
Previously we were only looking up the user, but we need to make sure that all groups are available for use by access providers. | |||||
2011-01-19 | Use DEFAULT_PAM_VERBOSITY if config value cannot be retrieved | Sumit Bose | 1 | -1/+1 | |
2011-01-19 | Add pam_pwd_expiration_warning config option | Sumit Bose | 1 | -12/+47 | |
2011-01-14 | Fix missing hash table bug | Stephen Gallagher | 1 | -0/+1 | |
When the automatic cleanup happened, if the netgroup had been created with no contents (to indicate an unknown netgroup), we weren't saving the hash table address and the talloc_free() was failing. | |||||
2011-01-11 | Validate user supplied size of data items | Sumit Bose | 1 | -76/+75 | |
Specially crafted packages might lead to an integer overflow and the parsing of the input buffer might not continue as expected. This issue was identified by Sebastian Krahmer <krahmer@suse.de>. | |||||
2011-01-06 | Remove unused enumeration cache timeout checks | Sumit Bose | 3 | -33/+2 | |
The existence of the getent_ctx is used to track the enumeration cache timeout. | |||||
2011-01-06 | Post enumeration tevent request if needed | Sumit Bose | 2 | -8/+43 | |
2011-01-06 | Return groups and users from all domains during enumeration | Sumit Bose | 1 | -3/+5 | |
2010-12-22 | Update the ID cache for any PAM request | Stephen Gallagher | 4 | -8/+23 | |
Also adds an option to limit how often we check the ID provider, so that conversations with multiple PAM requests won't update the cache multiple times. https://fedorahosted.org/sssd/ticket/749 | |||||
2010-12-22 | Ensure ID is checked in all domains for PAM | Stephen Gallagher | 1 | -0/+2 | |
Previously, this was initialized to zero, so the first domain in the list wouldn't be checked for ID updates in pam_check_user_search. This initializes the first domain to check the provider. | |||||
2010-12-17 | Fix possible NULL-dereference in lookup_netgr_step() | Sumit Bose | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/735 | |||||
2010-12-17 | Fix unchecked return value in set_nonblocking | Stephen Gallagher | 1 | -10/+53 | |
Also fixes the same problem with set_close_on_exec https://fedorahosted.org/sssd/ticket/713 | |||||
2010-12-15 | Fix uninitialized value error in lookup_netgr_step() | Sumit Bose | 1 | -146/+181 | |
2010-12-14 | Remove unused newauthtok variable in LOCAL_pam_handler | Sumit Bose | 1 | -3/+0 | |
https://fedorahosted.org/sssd/ticket/716 | |||||
2010-12-14 | Eliminate possible NULL-dereference in pam_check_user_search | Stephen Gallagher | 1 | -0/+7 | |
https://fedorahosted.org/sssd/ticket/719 | |||||
2010-12-03 | Add support for server-side pam response messages | Sumit Bose | 1 | -0/+2 | |
2010-12-02 | Add a special filter type to handle enumerations | Sumit Bose | 1 | -1/+1 | |
2010-11-15 | Introduce pam_verbosity config option | Sumit Bose | 1 | -11/+90 | |
Currently we display all PAM messages generated by sssd to the user. But only some of them are important and others are just some useful information. This patch introduces a new option to the PAM responder which controls what kind of messages are displayed. As an example the 'Authenticated with cached credentials' message is used. This message is only displayed if pam_verbosity=1 or if there is an expire date. | |||||
2010-11-15 | Avoid long long in messages to PAM client use int64_t | Sumit Bose | 1 | -7/+7 | |
2010-10-26 | Fix double free issue | Sumit Bose | 1 | -2/+2 | |
2010-10-26 | Always use talloc_zero() to allocate cmdctx | Sumit Bose | 2 | -3/+3 | |
2010-10-26 | Remove all nss requests after a reconnect | Sumit Bose | 3 | -1/+26 | |
Currently we do not handle the open nss request after a reconnect and wait until they timeout (which is a couple of minutes!). This patch adds a handler that terminates all requests after a reconnect. Then responder will return matching cache entries or nothing. | |||||
2010-10-15 | sysdb interface for adding fake users | Jakub Hrozek | 1 | -1/+1 | |
2010-10-15 | sysdb interface for adding incomplete groups | Jakub Hrozek | 1 | -1/+1 | |
Useful for optimizing the initgroups operation. | |||||
2010-10-13 | Also return member groups to the client | Sumit Bose | 2 | -55/+85 | |
2010-10-13 | Add handling of nested netgroups to nss client | Sumit Bose | 1 | -1/+4 | |
2010-10-13 | Add missing tevent_req_done() | Sumit Bose | 1 | -0/+1 | |
2010-10-13 | Add netgroup support to the NSS responder | Stephen Gallagher | 7 | -2/+922 | |
2010-10-13 | Split out some helper functions for the NSS responder | Stephen Gallagher | 2 | -83/+147 | |
Create a new private header and make some functions available for other object files. | |||||
2010-10-13 | Add negative cache features for netgroups | Stephen Gallagher | 2 | -0/+39 | |
2010-10-13 | Require explicit setting of callback context for check_cache | Stephen Gallagher | 1 | -7/+13 | |
Previously, it was implicitly using the nss_dom_ctx, but there are situations where we would want to send a different private context |