summaryrefslogtreecommitdiffstats
path: root/server/providers/dp_backend.h
Commit message (Collapse)AuthorAgeFilesLines
* remove the concept of a backend nameSumit Bose2009-09-021-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.
* Simplify interfaces initializationSimo Sorce2009-08-101-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.
* Cosmetic changesSimo Sorce2009-08-101-2/+2
| | | | | Rationalize and rename connection names in preparatoin for merging of server and connection structures.
* Remove redundant memory contextsSimo Sorce2009-08-101-2/+6
| | | | Simplify code by removing stuff that is never used or redundant.
* add infrastructure to handle new backend targetsSumit Bose2009-07-201-16/+33
|
* Implement credentials caching in pam responder.Simo Sorce2009-04-131-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)
* Always pass full domain infoSimo Sorce2009-04-131-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.
* Split modules types in Identity and AuthenticatorSimo Sorce2009-04-071-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.
* Enable autoreconnection of Data Provider Backends to the Data ProviderStephen Gallagher2009-03-201-0/+12
|
* use pam_data as main data structure for dbus communicationSumit Bose2009-03-191-6/+0
|
* Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce2009-02-261-1/+1
| | | | | | dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
* Add PAM responderSumit Bose2009-02-241-0/+8
| | | | | | | Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>
* Make backend requests asyncSimo Sorce2009-02-131-4/+27
|
* Regroup database rleated functions under db andSimo Sorce2009-01-121-10/+2
| | | | rename everything with the sysdb suffix.
* Add support for getpwuid in proxy backendSimo Sorce2009-01-111-0/+1
|
* Turn ldap_provider.c into proxy.c and make it possible to load just anySimo Sorce2009-01-111-0/+1
| | | | libnss library through config directives on the domain object
* Add more infrastructure to data provider to dispatch requests (still untested).Simo Sorce2009-01-061-0/+57
Add helper functions to connect to the data provider. Add some plumbing to the ldap provider (still untested).