summaryrefslogtreecommitdiff
path: root/server/nss
AgeCommit message (Collapse)AuthorFilesLines
2008-11-19Move definition into the header fileSimo Sorce3-2/+3
2008-11-17The default message handler will now pass both the method_ctx and theStephen Gallagher1-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.
2008-11-07Store all domains served by the SSSD to a binary-tree map for fast NSS lookup.Stephen Gallagher3-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.
2008-11-04Add the ping funtion to the nss service Make the monitor task ping ↵Simo Sorce2-1/+18
connecting services Make it possible to configure timeouts and service ping times.
2008-11-03Add support for dbus comunication in the nss serviceSimo Sorce2-31/+143
Add utility function in confdb Make all component fetch the dbus socket from the confdb
2008-10-21Make return the pid when new process are started.Simo Sorce1-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.
2008-10-20Add configuration database functions.Simo Sorce6-131/+355
Convert nss responder to use the confdb
2008-10-14 add code for initgroups callsSimo Sorce4-0/+206
2008-10-14Fix error in parsing multiple groupsSimo Sorce4-29/+346
Revert to use 'cn' for group names Implement getgrent()
2008-10-13Implement getgrgid()Simo Sorce4-2/+62
2008-10-12Implement getgrnam()Simo Sorce4-14/+354
2008-10-09Implement getpwent() supportSimo Sorce5-77/+335
2008-10-09Fix memory handling problem, stuff was allocated on the wrong memory context,Simo Sorce1-7/+7
causing it to be freed ahead of time
2008-10-09Use classic errno instead of inventing our own, it's broad enough fro atm.Simo Sorce4-48/+54
2008-10-08Add getpwuid supportSimo Sorce3-8/+93
2008-10-08Use a utility function (to be shared with getpwent)Simo Sorce1-60/+75
2008-10-08First retrieval of a user (getpwnam only) from an actual ldb fileSimo Sorce6-28/+348
2008-10-07Add primitive debugging capabilities.Simo Sorce1-2/+5
So far debug goes to stderr so sssd need to be run int interactive mode (-i option)
2008-10-06First working daemon that responds only to a getpwnam() request with fake dataSimo Sorce4-61/+214
2008-10-04Add initial nss responder skeletonSimo Sorce3-0/+485