summaryrefslogtreecommitdiffstats
path: root/src/providers/proxy/proxy.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused parameter from save_netgroupLukas Slebodnik2013-11-271-1/+0
|
* SYSDB: Drop the sysdb_ctx parameter from the sysdb_services moduleMichal Zidek2013-11-151-2/+0
|
* Remove include recursionLukas Slebodnik2013-08-191-1/+0
| | | | Header file proxy.h included itself.
* Making the authtok structure really opaque.Lukas Slebodnik2013-04-021-2/+2
| | | | | | | | | | | | | | | | | | | | Definition of structure sss_auth_token was removed from header file authtok.h and there left only declaration of this structure. Therefore only way how to use this structure is to use accessory function from same header file. To creating new empty authotok can only be used newly created function sss_authtok_new(). TALLOC context was removed from copy and setter functions, because pointer to stuct sss_auth_token is used as a memory context. All declaration of struct sss_auth_token variables was replaced with pointer to this structure and related changes was made in source code. Function copy_pam_data can copy from argument src which was dynamically allocated with function create_pam_data() or zero initialized struct pam_data allocated on stack. https://fedorahosted.org/sssd/ticket/1830
* Introduce be_req_terminate() helperSimo Sorce2013-01-211-4/+0
| | | | | Call it everywhere instead of directly dereferencing be_req->fn This is in preparation of making be_req opaque.
* Change pam data auth tokens.Simo Sorce2013-01-101-5/+2
| | | | Use the new authtok abstraction and interfaces throught the code.
* proxy: new option proxy_fast_aliasJakub Hrozek2012-04-201-0/+1
|
* NSS: Add individual timeouts for entry typesStephen Gallagher2012-02-041-1/+0
| | | | https://fedorahosted.org/sssd/ticket/1016
* PROXY: add support for enumerating servicesStephen Gallagher2012-01-271-0/+9
|
* PROXY: add support for service lookups (non-enumeration)Stephen Gallagher2012-01-271-0/+24
|
* Use the case sensitivity flag in the proxy providerJakub Hrozek2011-12-161-1/+1
|
* Cleanup: Remove unused parametersJakub Hrozek2011-11-221-1/+0
|
* Fix memory leak of library handle in proxySumit Bose2010-12-151-0/+1
| | | | https://fedorahosted.org/sssd/ticket/733
* Implement netgroups for proxy providerSumit Bose2010-10-251-0/+7
|
* Add netgroups infrastructure to proxy providerSumit Bose2010-10-251-0/+6
|
* Split proxy.c into smaller filesStephen Gallagher2010-06-301-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
* Proxy provider PAM handling in child processStephen Gallagher2010-05-271-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).