summaryrefslogtreecommitdiffstats
path: root/server/nss
Commit message (Collapse)AuthorAgeFilesLines
* Change cli_ctx to include nss_ctx, not just select members of it.Simo Sorce2009-01-063-16/+17
|
* libevents renamed upstream to libteventSimo Sorce2008-12-221-1/+1
| | | | events.h -> tevent.h
* 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.
* Change data provider into a hub, where backends (ldap, nis, ipa providers)Simo Sorce2008-12-081-8/+7
| | | | and frontends (pam, nss, ... modules) can connect to.
* Make a binary out of each major sssd component instead ofSimo Sorce2008-11-251-0/+43
| | | | using the same binary to fork off all services.
* Remove the service stuff that we stopped using when we moved toSimo Sorce2008-11-251-1/+0
| | | | the forl/exec model
* point PIPE_PATH at /var/lib/sss/pipes, not just the private path so that theSimo Sorce2008-11-241-1/+11
| | | | same config option can be used for the nss service
* Replacing hard-coded paths with configure script substitutions.Stephen Gallagher2008-11-242-2/+10
| | | | Changing the default SBUS locations to be configure script parameters
* Fix indentationSimo Sorce2008-11-241-9/+9
|
* Created a helper function sssd_service_sbus_init() to simplify creating the ↵Stephen Gallagher2008-11-202-51/+14
| | | | initial connection to the monitor service within the child services. It will create the D-BUS connection to the monitor and configure the service to handle the mandatory getIdentity and ping methods.
* Remove unused code and fix message handlers in dpSimo Sorce2008-11-201-25/+10
|
* Start conversion from a fork() and live to a fork()/exec() model.Simo Sorce2008-11-202-25/+20
| | | | | To start the dameon now you need to pass the option -s monitor Still have some problems communicating with children.
* Move definition into the header fileSimo Sorce2008-11-193-2/+3
|
* The default message handler will now pass both the method_ctx and theStephen Gallagher2008-11-171-0/+1
| | | | | | | sbus_conn_ctx to all message handling functions. This will allow connection-specific data to be passed in by taking advantage of the sbus_conn_set_private_data() function on the sbus_conn_ctx struct. Presently this private data is global to all methods of the connection context.
* Store all domains served by the SSSD to a binary-tree map for fast NSS lookup.Stephen Gallagher2008-11-073-3/+58
| | | | | | Changed the "section" feature of confdb.c to use '/' as a delimiter instead of '.', because this conflicted with the ability to use dots in domain names.
* Add the ping funtion to the nss service Make the monitor task ping ↵Simo Sorce2008-11-042-1/+18
| | | | connecting services Make it possible to configure timeouts and service ping times.
* Add support for dbus comunication in the nss serviceSimo Sorce2008-11-032-31/+143
| | | | | Add utility function in confdb Make all component fetch the dbus socket from the confdb
* Make return the pid when new process are started.Simo Sorce2008-10-211-6/+32
| | | | | | | | Monitor each service and restart it conditionally if it fails. These monitoring is extremely simple at this moment and just uses waitpid() to check if the client is alive, there is no active probing, that will require dbus. Make nsssrv.c read the sss pipe config option for the config db.
* Add configuration database functions.Simo Sorce2008-10-206-131/+355
| | | | Convert nss responder to use the confdb
* add code for initgroups callsSimo Sorce2008-10-144-0/+206
|
* Fix error in parsing multiple groupsSimo Sorce2008-10-144-29/+346
| | | | | Revert to use 'cn' for group names Implement getgrent()
* Implement getgrgid()Simo Sorce2008-10-134-2/+62
|
* Implement getgrnam()Simo Sorce2008-10-124-14/+354
|
* Implement getpwent() supportSimo Sorce2008-10-095-77/+335
|
* Fix memory handling problem, stuff was allocated on the wrong memory context,Simo Sorce2008-10-091-7/+7
| | | | causing it to be freed ahead of time
* Use classic errno instead of inventing our own, it's broad enough fro atm.Simo Sorce2008-10-094-48/+54
|
* Add getpwuid supportSimo Sorce2008-10-083-8/+93
|
* Use a utility function (to be shared with getpwent)Simo Sorce2008-10-081-60/+75
|
* First retrieval of a user (getpwnam only) from an actual ldb fileSimo Sorce2008-10-086-28/+348
|
* Add primitive debugging capabilities.Simo Sorce2008-10-071-2/+5
| | | | | So far debug goes to stderr so sssd need to be run int interactive mode (-i option)
* First working daemon that responds only to a getpwnam() request with fake dataSimo Sorce2008-10-064-61/+214
|
* Add initial nss responder skeletonSimo Sorce2008-10-043-0/+485