summaryrefslogtreecommitdiff
path: root/server/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2009-12-10Add missing SSSDConfig file for IPA for make installStephen Gallagher1-0/+1
Update tests to include IPA options
2009-12-10Add rebuild task to memberof pluginSimo Sorce1-1/+1
This task allows us to rebuild memberuid and memberof attributes throughout the database. This way we can upgrade from version 0.4 databases that didn't generate and store memberuid. The task can be invoked by adding a speaicl named entry to the ldb file. The entry dn to use is: @MEMBEROF-REBUILD, the entry has no attributes and any attribute is ignored at present. The entry will not be stored in the database but will just trigger the task to execute a rebuild of the memberof and memberuid attributes
2009-12-09Don't build the SRV and TXT parsing code except for testsJakub Hrozek1-8/+12
2009-12-09Import ares 1.7.0 helpersJakub Hrozek1-5/+6
2009-12-07Allow nesting to fix #310Simo Sorce1-0/+1
2009-12-07Add basic OS detectionSumit Bose1-2/+10
Detect if the OS is Fedora, RHEL or SUSE and install the SUSE start-script on SUSE systems.
2009-11-25Get TGT in a child process.Jakub Hrozek1-0/+19
To avoid blocking in a synchronous call, the TGT is saved in a separate process Fixes: #277
2009-11-25Split helpers for child processesJakub Hrozek1-0/+6
Moves several functions out of providers/krb5 hierarchy into a separate module so it can be shared by the ldap child.
2009-11-25Make ldb lib dir configurableSumit Bose1-1/+1
2009-11-25Use ldb modules from build root for testsSumit Bose1-0/+1
2009-11-23Read KDC info from file instead from environmentSumit Bose1-1/+6
Then name or IP adress of the KDC is written into the pubconf directory into a file named kdcinfo.REALM. The locator plugin will then read this file and pass the data to the kerberos libraries.
2009-11-20Add initial failover support for ldap and ipaSimo Sorce1-1/+4
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-11-20Add ipa_authSumit Bose1-0/+2
To support IPA DS to Kerberos password migration a seperate authentication target is added. It calls the Kerberos authentication target and in the case of a 'Preauthentication Error' the LDAP authentication target. On success the Kerberos target is called again to request the TGT.
2009-11-20Improve handling of ccache filesSumit Bose1-4/+26
- save current ccache file to sysdb - use the saved ccache file if the user has running processes - create an empty ccache if offline - return enviroment variables if offline
2009-11-20Validate Kerberos credentials with local keytabSumit Bose1-0/+3
2009-11-20Change the upgrade script to use ipachangeconfJakub Hrozek1-1/+1
With this patch, the upgrade script we use for changing the config files is able to keep ordering and comments. Fixes: #249
2009-11-20Add Simo's ipachangeconfJakub Hrozek1-0/+1
2009-11-10Add cleanup taskSimo Sorce1-0/+2
2009-11-10Add check for access-time rules to ipa_access.Sumit Bose1-0/+1
2009-11-09IPA time rules parsing routinesJakub Hrozek1-0/+20
2009-11-07Fix ldap driverSimo Sorce1-0/+3
2009-11-07added access module of IPA providerSumit Bose1-2/+4
2009-11-06Add fail over utility functionsMartin Nagy1-1/+19
These functions should be used by providers to centrally manage lists of servers. Servers are grouped into services and each service has it's own list of servers. If, however, you will try to add a same server into two different services, they will share a common structure. This means that a host will only be resolved once.
2009-11-06Add simple reference counting wrappers for tallocMartin Nagy1-1/+15
2009-11-06Clean up unused dependenciesStephen Gallagher1-6/+15
2009-11-06Split async helpers in multiple filesSimo Sorce1-0/+3
The size of sdap_async.c was unmanageable. This patch splits it into a generic file with common infrastructure calls, a file that handles connection calls and a file for id related calls.
2009-11-06Reorganize ldap id provider filesSimo Sorce1-0/+1
Split enum task in a separate file.
2009-11-05Build files.c only for toolsStephen Gallagher1-3/+3
Move files.c into tools directory
2009-11-05add replacements for missing Kerberos callsSumit Bose1-2/+6
2009-10-30Add AM_CFLAGS to unit testsSumit Bose1-8/+12
2009-10-22User home directories managementJakub Hrozek1-8/+34
Create and populate user directories on useradd, delete them on userdel Fixes: #212
2009-10-22update ipa auth options to new option schemeSumit Bose1-0/+1
2009-10-22update krb5 option handling to new option schemeSumit Bose1-4/+7
2009-10-22Delete sssd-i18n.h and put it's old contents into util.hMartin Nagy1-1/+0
Also include talloc.h, tevent.h and ldb.h as system headers in util.h.
2009-10-22Various improvements to the resolv test suiteMartin Nagy1-0/+1
* The resolv test case can now test for TXT and SRV resolving by specifying -t host and -s host respectively. The -n flag must still be passed in to enable network tests. * Added test for the little complicated resolv_copy_hostent() function. * Leak checking using the new tests common functions. * Fix indentation for test_internet, since the whole function was modified to be able to handle SRV and TXT replies. * Initialize the debug variable in main(). Also removed one unused variable in krb5_utils-tests.c
2009-10-22Add a new set of helpful common functions for testsMartin Nagy1-1/+2
The leak_check_setup() and leak_check_teardown() functions can be added to a test case with tcase_add_checked_fixture(). They will make sure that all tests are checked for memory leaks. However, since talloc is hierarchical and automatically frees the children, this will not catch all cases, but might still be helpful. The check_leaks(ctx, bytes) function takes a talloc context as an argument and the number of bytes it should be using up (children included). The total byte size used up by the context is determined by the talloc_total_size() function. If the size doesn't agree, check_leaks() will print out a talloc report on the context and makes the current test fail. The check_leaks_push() and check_leaks_pop() both take a talloc context as an argument. Every time push is called, the context is "pushed" onto an internal stack and it's current size is noted. When the context is later "poped", the pop function will make sure that the size is the same as when it was pushed. It will also check that it's not called out-of-order or if the stack isn't empty.
2009-10-20Start implementing ipa specific options.Simo Sorce1-1/+3
First step generate ldap options from ipa options. Add sssd-ipa man page too.
2009-10-16Add krb5_common.h to the list of headers to 'make dist'Stephen Gallagher1-0/+1
With this missing, RPM builds were broken.
2009-10-16Add first basic IPA providerSimo Sorce1-1/+23
2009-10-16Move all krb5 provider init functionsSimo Sorce1-1/+2
Put all init functions in their own file so that the other files can be reused in other providers w/o having them in the way.
2009-10-16Move all ldap provider init functionsSimo Sorce1-0/+1
Put all init functions in their own file so that the other files can be reused in other providers w/o having them in the way.
2009-10-15enable debugging of krb5_childSumit Bose1-0/+2
2009-10-14Move ldap provider configuration into its own fileSimo Sorce1-0/+2
2009-10-14Make options parser available to all providersSimo Sorce1-0/+1
2009-10-14use PYTHON_PREFIX to install SSSDConfig python APISumit Bose1-2/+2
2009-10-13add a replacement if ldap_control_create is missingSumit Bose1-1/+3
2009-10-13add -Werror-implicit-function-declaration to default gcc flagsSumit Bose1-1/+2
2009-10-13Package SSSDConfig APIStephen Gallagher1-0/+21
2009-10-12LDAP provider needs to link against krb librariesRalf Haferkamp1-2/+4
2009-10-09Remove DP processSimo Sorce1-8/+0
Turn the backend process into data provider servers Make Frontends (pam, nss) directly attach to the backends