summaryrefslogtreecommitdiff
path: root/src/providers/proxy/proxy.h
AgeCommit message (Collapse)AuthorFilesLines
2012-04-20proxy: new option proxy_fast_aliasJakub Hrozek1-0/+1
2012-02-04NSS: Add individual timeouts for entry typesStephen Gallagher1-1/+0
https://fedorahosted.org/sssd/ticket/1016
2012-01-27PROXY: add support for enumerating servicesStephen Gallagher1-0/+9
2012-01-27PROXY: add support for service lookups (non-enumeration)Stephen Gallagher1-0/+24
2011-12-16Use the case sensitivity flag in the proxy providerJakub Hrozek1-1/+1
2011-11-22Cleanup: Remove unused parametersJakub Hrozek1-1/+0
2010-12-15Fix memory leak of library handle in proxySumit Bose1-0/+1
https://fedorahosted.org/sssd/ticket/733
2010-10-25Implement netgroups for proxy providerSumit Bose1-0/+7
2010-10-25Add netgroups infrastructure to proxy providerSumit Bose1-0/+6
2010-06-30Split proxy.c into smaller filesStephen Gallagher1-0/+105
proxy.c was growing too large to manage (and some graphical development tools could no longer open it because of memory limitations). This patch splits proxy.c into the following files: proxy_init.c: Setup routines for the plugin proxy_id.c: Functions to handle user and group lookups proxy_auth.c: Functions to handle PAM interactions proxy_common.c: Common utility routines
2010-05-27Proxy provider PAM handling in child processStephen Gallagher1-0/+30
This patch adds a new tevent_req to the proxy provider, which will spawn short-lived child processes to handle PAM requests. These processes then call the proxied PAM stack and return the results via SBUS method reply. Once it is returned, the parent process kills the child. There is a maximum of ten child processes running simultaneously, after which requests will be queued for sending once a child slot frees up. The maximum processes will be made configurable at a later date (as this would violate string freeze).