summaryrefslogtreecommitdiff
path: root/server/providers/dp_backend.h
AgeCommit message (Collapse)AuthorFilesLines
2009-08-10Remove redundant memory contextsSimo Sorce1-2/+6
Simplify code by removing stuff that is never used or redundant.
2009-07-20add infrastructure to handle new backend targetsSumit Bose1-16/+33
2009-04-13Implement credentials caching in pam responder.Simo Sorce1-1/+0
Implement credentials caching in pam responder. Currently works only for the proxy backend. Also cleanup pam responder code and mode common code in data provider. (the data provider should never include responder private headers)
2009-04-13Always pass full domain infoSimo Sorce1-1/+1
Change sysdb to always passwd sss_domain_info, not just the domain name. This way domain specific options can always be honored at the db level.
2009-04-07Split modules types in Identity and AuthenticatorSimo Sorce1-22/+22
The same module may implement both types, but initializatrion will be nonetheless performed separately, once for the identity module and once for the authenticator module. Also change the proxy module to retireve the pam target name from the domain configuration so that it is possibile to create per-domain pam stacks. With this modification it is actually possibile to use normal nss and pam modules to perform a successful authentication (tested only with sudo so far) Update exmples.
2009-03-20Enable autoreconnection of Data Provider Backends to the Data ProviderStephen Gallagher1-0/+12
2009-03-19use pam_data as main data structure for dbus communicationSumit Bose1-6/+0
2009-02-26Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce1-1/+1
dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
2009-02-24Add PAM responderSumit Bose1-0/+8
Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>
2009-02-13Make backend requests asyncSimo Sorce1-4/+27
2009-01-12Regroup database rleated functions under db andSimo Sorce1-10/+2
rename everything with the sysdb suffix.
2009-01-11Add support for getpwuid in proxy backendSimo Sorce1-0/+1
2009-01-11Turn ldap_provider.c into proxy.c and make it possible to load just anySimo Sorce1-0/+1
libnss library through config directives on the domain object
2009-01-06Add more infrastructure to data provider to dispatch requests (still untested).Simo Sorce1-0/+57
Add helper functions to connect to the data provider. Add some plumbing to the ldap provider (still untested).