Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-06-27 | Handle too many results from getnetgr. | Lukas Slebodnik | 1 | -1/+13 | |
2013-05-02 | Remove unused TALLOC_CTX from responder_get_domain() | Sumit Bose | 1 | -1/+1 | |
Recent refactoring removed the need to copy the domain info data of sub-domains because the related objects will not be removed from memory anymore. | |||||
2013-04-26 | DB: Switch to new libini_config API | Ondrej Kos | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/1786 Since we need to support the old interface as well, the configure scritp is modified and correct ini interface is chosen. | |||||
2013-02-10 | Add function get_next_domain() | Simo Sorce | 1 | -5/+5 | |
Use this function instead of explicitly calling domain->next This function allows to get the next primary domain or to descend into the subdomains and replaces also get_next_dom_or_subdom() | |||||
2013-01-15 | Add domain option to sysdb_get/netgr/attrs() fns | Simo Sorce | 1 | -1/+1 | |
2012-12-04 | NSS: Fix netgroup midpoint cache refresh | Jakub Hrozek | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/1683 The result of the percent calculation was always 0 as it used plain ints. The patch switches to using explicit floats to avoid reintroducing the bug again even with brackets. | |||||
2012-10-01 | Add new option default_domain_suffix | Sumit Bose | 1 | -1/+2 | |
2012-06-12 | Make re_expression and full_name_format per domain options | Stef Walter | 1 | -2/+2 | |
* Allows different user/domain qualified names for different domains. For example Domain\User or user@domain. * The global re_expression and full_name_format options remain as defaults for the domains. * Subdomains get the re_expression and full_name_format of their parent domain. https://bugzilla.redhat.com/show_bug.cgi?id=811663 | |||||
2012-05-16 | NSS: Expire in-memory netgroup cache before the nowait timeout | Stephen Gallagher | 1 | -1/+9 | |
The fact that we were keeping it in memory for the full duration of the cache timeout meant that we would never reap the benefits of the midpoint cache refresh. https://fedorahosted.org/sssd/ticket/1340 | |||||
2012-04-24 | Retrieve subdomains if there is a request for fully qualified user | Jan Zeleny | 1 | -28/+57 | |
2012-04-24 | Modified responder_get_domain() | Jan Zeleny | 1 | -1/+1 | |
Now it checks for subdomains as well as for the domain itself | |||||
2012-04-18 | Prevent printing NULL from DEBUG messages | Jakub Hrozek | 1 | -1/+2 | |
2012-03-08 | Handle errors from lookup_netgr_step gracefully | Jakub Hrozek | 1 | -3/+10 | |
2012-03-08 | Save original name into the in-memory cache | Jakub Hrozek | 1 | -1/+1 | |
2012-02-29 | Remove sysdb_get_ctx_from_list() | Sumit Bose | 1 | -2/+2 | |
2012-02-13 | Allocate setent structure on state, not on the client context | Jakub Hrozek | 1 | -2/+2 | |
https://fedorahosted.org/sssd/ticket/1189 | |||||
2012-02-05 | RESPONDERS: Refactor setent_req_list | Jakub Hrozek | 1 | -11/+3 | |
Makes the setent_add_ref() and setent_notify_*() functions more generic to be reusable by the autofs responder. | |||||
2012-02-04 | NSS: Add individual timeouts for entry types | Stephen Gallagher | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/1016 | |||||
2012-02-04 | NSS: Use sss_hash_create instead of destructor | Jakub Hrozek | 1 | -0/+1 | |
2012-01-31 | Refactor nss_cmd_send_empty | Jakub Hrozek | 1 | -2/+2 | |
2012-01-17 | NSS: Improve DEBUG messages for netgroup cache | Stephen Gallagher | 1 | -2/+2 | |
2011-12-21 | sss_get_cased_name utility function | Jakub Hrozek | 1 | -3/+6 | |
2011-12-16 | Use the case sensitivity flag in responders | Jakub Hrozek | 1 | -8/+13 | |
2011-12-16 | Responders: Split getting domain by name into separate function | Jakub Hrozek | 1 | -1/+1 | |
2011-12-08 | Ignore NULL-terminator when checking UTF8-validity for netgroups | Stephen Gallagher | 1 | -1/+1 | |
Glib fails if the NULL-terminator is included when a length is specified. | |||||
2011-11-18 | RESPONDER: Ensure that all input strings are valid UTF-8 | Stephen Gallagher | 1 | -0/+7 | |
2011-08-15 | sysdb refactoring: deleted domain variables in sysdb API | Jan Zeleny | 1 | -2/+1 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-04-25 | Don't use negative cache in netgroup lookup | Jan Zeleny | 1 | -20/+19 | |
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-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-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. | |||||
2010-12-17 | Fix possible NULL-dereference in lookup_netgr_step() | Sumit Bose | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/735 | |||||
2010-12-15 | Fix uninitialized value error in lookup_netgr_step() | Sumit Bose | 1 | -146/+181 | |
2010-10-26 | Always use talloc_zero() to allocate cmdctx | Sumit Bose | 1 | -1/+1 | |
2010-10-13 | Also return member groups to the client | Sumit Bose | 1 | -54/+84 | |
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 | 1 | -0/+863 | |