summaryrefslogtreecommitdiff
path: root/server/providers/dp_backend.h
AgeCommit message (Collapse)AuthorFilesLines
2010-02-18Rename server/ directory to src/Stephen Gallagher1-142/+0
Also update BUILD.txt
2009-11-20Add initial failover support for ldap and ipaSimo Sorce1-0/+21
The retun values are still not directly used with ldap libraries that still do their own name resolution, but this patch introduces a very basic framework to have a multiple providers in one domain use and share a single failover service if they want to.
2009-10-15set chpass_provider implicit if not set explicitSumit Bose1-0/+1
- if chpass_provider is not given in the configuration file but an auth_provider and the auth_provider can also handle change password requests it is used as chpass_provider.
2009-10-15Return the dp error from the providersSimo Sorce1-1/+1
2009-10-09Remove DP processSimo Sorce1-1/+12
Turn the backend process into data provider servers Make Frontends (pam, nss) directly attach to the backends
2009-09-14Make the offline status backend-globalSimo Sorce1-3/+8
Add helpers functions to query/set the offline status per backend. Now all providers share the same offline status.
2009-09-02remove the concept of a backend nameSumit Bose1-1/+0
The data provider backends stored a name value besides the domain name to identify themselves to the data provider. This was the name of the id provider. Currently the backends can have different providers for id, authentication etc. So the name may be missleading. Also when there are more domains with the same id provider the name is not enough to identify the backend but the domain name is. As a consequence the backend name is removed completely and only the domain name is used for identification.
2009-08-10Simplify interfaces initializationSimo Sorce1-3/+0
Make as much as possible static, and remove use of talloc_reference and allocation/deallocation of memory when not necessary. Fix also responder use of rctx->conn, was mistakenly used for both monitor and dp connections.
2009-08-10Cosmetic changesSimo Sorce1-2/+2
Rationalize and rename connection names in preparatoin for merging of server and connection structures.
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).