summaryrefslogtreecommitdiffstats
path: root/server/providers/data_provider_be.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix reconnection codeSimo Sorce2009-08-171-2/+0
| | | | | | | Remove redundant reconnection code that was interfeering with the sbus reconnection code. Consolidate include files for sbus relates operations. Make pamsrv code similar to nsssrv code.
* Make "files" a reserved word for legacy local domainJakub Hrozek2009-08-131-0/+43
| | | | | | | | This patch introduces provider=files as a valid provider. Upon loading the backend, its properties in confdb are overwritten to those that represent legacy local domain. Also document this in sssd.conf(5) and example config
* Change the why DP clients identifySimo Sorce2009-08-111-43/+22
| | | | Mirrors what we have done with the monitor.
* Change services identification mechanismSimo Sorce2009-08-111-81/+11
| | | | | | | Let services identify themselves voiluntarily as the first operation instead of polling from the monitor. Also consolidate some common functions and make them available as monitor helpers.
* Make child processes exit when parent diesJakub Hrozek2009-08-111-0/+6
| | | | | | | | The child processes call prctl() and when their parent process is killed, they are sent SIGTERM using prctl. This is currently Linux-specific, for non-Linuxes, a similar effect is achieved by catching a set of common termination signals and sending SIGTERM to the process group.
* Make socket paths a compile-time optionStephen Gallagher2009-08-111-1/+0
| | | | | | Previously, we had hardcoded the paths for the NSS, PAM and private PAM sockets to /var/lib/sss/pipes. With this patch, we will specify the sockets with --with-pipe-path.
* Simplify interfaces initializationSimo Sorce2009-08-101-37/+22
| | | | | | | 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.
* merge server and connection structuresSimo Sorce2009-08-101-10/+4
| | | | | | This reduce code duplication as it allows to use one set of watch and timeout functions, and at the same time also allow not to use a secondary structure just to unify these functions.
* Cosmetic changesSimo Sorce2009-08-101-41/+41
| | | | | Rationalize and rename connection names in preparatoin for merging of server and connection structures.
* Remove redundant memory contextsSimo Sorce2009-08-101-21/+27
| | | | Simplify code by removing stuff that is never used or redundant.
* added LDAP change password backend targetSumit Bose2009-07-211-2/+6
|
* Implement resInit for monitor, NSS, PAM, DP and the backendsStephen Gallagher2009-07-201-0/+19
|
* add infrastructure to handle new backend targetsSumit Bose2009-07-201-110/+168
|
* Make reconnection to the Data Provider a global settingStephen Gallagher2009-04-141-2/+2
| | | | | | | Previously, every DP client was allowed to set its own "retries" option. This option was ambiguous, and useless. All DP clients will now use a global option set in the services config called "reconnection_retries"
* Fix a couple of segfaults and timeout checksSimo Sorce2009-04-131-18/+17
|
* Always pass full domain infoSimo Sorce2009-04-131-6/+11
| | | | | 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-20/+135
| | | | | | | | | | | | | | 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.
* Do not file a sure segfault.Simo Sorce2009-04-011-0/+2
|
* Enhance server_setupSimo Sorce2009-03-201-1/+7
| | | | | | | Now it can load from scratch default configuration that is valid for all daemons. First thing, make it possible for each daemon/provider to set its own debug level in its configuration entry.
* Enable autoreconnection of Data Provider Backends to the Data ProviderStephen Gallagher2009-03-201-3/+94
|
* use pam_data as main data structure for dbus communicationSumit Bose2009-03-191-38/+8
|
* Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce2009-02-261-5/+6
| | | | | | 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-1/+137
| | | | | | | Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>
* Proper fix for memory handling problem.Simo Sorce2009-02-241-36/+46
| | | | | | | | | | sbus_message_handler is not responsible anymore for sending back data in any case. Transfer this responsibility to the handler function called. This way both synchronous and asynchronous funstions use the interface the same way and can properly free memory referenced by the reply after the send buffer has been filled in and all copies are done in sbus_conn_send_reply()
* Revert "Fixing serious memory allocation bug in sbus_message_handler."Simo Sorce2009-02-241-30/+41
| | | | | | | | | | | | | | | This reverts commit 13421cbe0af4343f9d110600755ffa756690b282. Conflicts: server/infopipe/infopipe.c server/infopipe/infopipe.h While this solution fixed the contingent memory problem it introduced other problems in handling asynchronous replies. Reverting in preparation for a different way to solve it. Conflicts have been taken care of.
* Fixing serious memory allocation bug in sbus_message_handler.Stephen Gallagher2009-02-231-41/+30
| | | | | | | | | | | | dbus_message_append_args() adds a reference to memory that is not copied to the outgoing message until dbus_connection_send() is called. Since we compile our reply messages in functions and then return the reply, we need a mechanism for deleting allocated memory after invoking dbus_connection_send. I have changed the arguments to sbus_msg_handler_fn so that it takes a talloc ctx containing the sbus_message_handler_ctx and a pointer to a reply object. We can now allocate memory as a child of the reply context and free it after calling dbus_connection_send.
* Make backend requests asyncSimo Sorce2009-02-131-14/+223
|
* Always pass teh database path explicitly, so that test cases can useSimo Sorce2009-02-131-1/+1
| | | | | throw away databases Check version and init main db if empty
* Remove dp_cli_sbus_initSimo Sorce2009-02-121-12/+5
|
* Refactoring the monitor code and SBUS utility functions.Stephen Gallagher2009-01-271-11/+59
|
* Add code to make it easier to reconnect in case the serverSimo Sorce2009-01-141-15/+3
| | | | | is not available immediately or drops the dbus connection. First step is the nss connection to the data provider.
* Regroup database rleated functions under db andSimo Sorce2009-01-121-3/+2
| | | | rename everything with the sysdb suffix.
* Turn ldap_provider.c into proxy.c and make it possible to load just anySimo Sorce2009-01-111-1/+2
| | | | libnss library through config directives on the domain object
* The code now successfully sends a getpwnam request to a remote LDAP server,Simo Sorce2009-01-081-18/+53
| | | | | | and caches the result in LDAP. Still chasing a bug that does not let NSS known that the BE was successful. This makes NSS timeout the client and not return any results yet.
* Add more infrastructure to data provider to dispatch requests (still untested).Simo Sorce2009-01-061-153/+87
| | | | | Add helper functions to connect to the data provider. Add some plumbing to the ldap provider (still untested).
* Fix dp client to connect to the right dbus pipeSimo Sorce2009-01-051-11/+16
|
* Adding a parameter to the sbus_service_sbus_init function to allow passing ↵Stephen Gallagher2008-12-151-1/+1
| | | | in an sbus_conn_destructor_fn to the sbus_new_connection() function. Fixing minor warning about the usage of talloc_reference.
* Initial work on a test provider using the gross hack of dlopen()ing nss_ldapSimo Sorce2008-12-101-8/+9
| | | | :-)
* Change data provider into a hub, where backends (ldap, nis, ipa providers)Simo Sorce2008-12-081-0/+515
and frontends (pam, nss, ... modules) can connect to.