Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-06-07 | New utility function sss_get_domain_name | Jakub Hrozek | 1 | -14/+4 | |
Instead of copying a block of code that checks whether domain is a subdomain and uses only name of FQDN as appropriate, wrap the logic into a function. | |||||
2013-05-30 | Add utility functions for formatting fully-qualified names | Jakub Hrozek | 1 | -4/+2 | |
Instead of using printf-like functions directly, provide two wrappers that would encapsulate formatting the fully-qualified names. No functional change is present in this patch. | |||||
2013-03-13 | Fix initialization of multiple variables | Ondrej Kos | 1 | -1/+1 | |
2013-02-10 | Introduce IS_SUBDOMAIN() macro | Simo Sorce | 1 | -2/+2 | |
Fixes https://fedorahosted.org/sssd/ticket/1766 | |||||
2013-01-15 | Move mpg flag to the domain where it belongs | Simo Sorce | 1 | -3/+3 | |
A sysdb contains now multiple domains, but the mpg property is a property of a specific domain not of the underlying database. | |||||
2013-01-15 | Add domain argument to sysdb_get_user_attr() | Simo Sorce | 1 | -1/+2 | |
2013-01-15 | Add domain argument to sysdb_initgroups() | Simo Sorce | 1 | -1/+2 | |
2013-01-15 | Add domain option to sysdb_get/netgr/attrs() fns | Simo Sorce | 1 | -3/+5 | |
2013-01-15 | Pass domain to sysdb_enum<pw/gr>ebt() functions | Simo Sorce | 1 | -3/+5 | |
2013-01-15 | Pass domain to sysdb_get<pwu/grg><id() functions | Simo Sorce | 1 | -3/+5 | |
2013-01-15 | Pass domain to sysdb_get<pw/gr>nam() functions | Simo Sorce | 1 | -8/+38 | |
Also allows us to remove sysdb_subdom_get<pw/gr>nam() wrappers and restore fqnames proper value in subdomains, by testing for a parent domain being present or not. | |||||
2012-11-19 | Refactor the way subdomain accounts are saved | Simo Sorce | 1 | -1/+3 | |
The original sysdb code had a strong assumption that only users from one domain are saved in the databse, with the subdomain feature, we have changed reality, but have not adjusted all the code arund the sysdb calls to not rely on the original assumption. One of the side effects of this incongrunece is that currently group memberships do not return fully qualified names for subdomain users as they should. In oreder to fix this and other potential issues surrounding the violation of the original assumption, we need to fully qualify subdomain user names. By savin them fully qualified we do not risk aliasing local users and have group memberhips or other name based matching code mistake a domain user with subdomain usr or vice versa. | |||||
2012-03-06 | Search netgroups by alias, too | Jakub Hrozek | 1 | -1/+3 | |
https://fedorahosted.org/sssd/ticket/1228 | |||||
2011-11-21 | Fix FTBFS related to -Werror=format-security | Krzysztof Klimonda | 1 | -1/+1 | |
2011-10-17 | Sanitize DN in sysdb_get_direct_parents | Jakub Hrozek | 1 | -1/+7 | |
2011-10-06 | Fix typo in sysdb_get_direct_parents | Jakub Hrozek | 1 | -1/+1 | |
2011-09-28 | Return users and groups based on alias | Jakub Hrozek | 1 | -3/+4 | |
https://fedorahosted.org/sssd/ticket/926 | |||||
2011-09-28 | Add a sysdb_get_direct_parents function | Jakub Hrozek | 1 | -0/+101 | |
2011-08-15 | Remaining memory context variables renamed | Jan Zeleny | 1 | -62/+62 | |
memctx to mem_ctx tmpctx to tmp_ctx | |||||
2011-08-15 | sysdb refactoring: memory context deleted | Jan Zeleny | 1 | -9/+9 | |
This patch deletes memory context parameter in those places in sysdb where it is not necessary. The code using modified functions has been updated. Tests updated as well. | |||||
2011-08-15 | sysdb refactoring: deleted domain variables in sysdb API | Jan Zeleny | 1 | -60/+14 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-08-15 | sysdb refactoring: renamed ctx variable to sysdb | Jan Zeleny | 1 | -37/+37 | |
2010-11-15 | Sanitize search filters for the sysdb | Stephen Gallagher | 1 | -6/+39 | |
2010-10-13 | Also return member groups to the client | Sumit Bose | 1 | -55/+71 | |
2010-10-13 | Netgroups sysdb API | Stephen Gallagher | 1 | -0/+336 | |
2010-09-22 | Initgroups on a non-cached user should go to the data provider | Stephen Gallagher | 1 | -1/+11 | |
We were accidentally returning an error when sysdb_getpwnam() returned zero results internally in sysdb_initgroups(). The correct behavior here is to return EOK and a result object with zero entries. | |||||
2010-04-12 | sysdb: remove obsolete helpers from sysdb | Simo Sorce | 1 | -150/+0 | |
2010-04-12 | sysdb: convert sysdb_initgroups | Simo Sorce | 1 | -95/+48 | |
2010-04-12 | sysdb: convert sysdb_enumgrent | Simo Sorce | 1 | -55/+33 | |
2010-04-12 | sysdb: convert sysdb_enumpwent | Simo Sorce | 1 | -53/+22 | |
2010-04-12 | sysdb: convert sysdb_get_user_attr | Simo Sorce | 1 | -17/+22 | |
2010-04-12 | sysdb: convert sysdb_getgrgid | Simo Sorce | 1 | -21/+33 | |
2010-04-12 | sysdb: convert sysdb_getgrnam | Simo Sorce | 1 | -17/+46 | |
2010-04-12 | sysdb: convert sysdb_getpwuid | Simo Sorce | 1 | -18/+22 | |
2010-04-12 | sysdb: convert sysdb_getpwnam | Simo Sorce | 1 | -17/+21 | |
2010-02-18 | Rename server/ directory to src/ | Stephen Gallagher | 1 | -0/+691 | |
Also update BUILD.txt |