summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix user enumeration bugSimo Sorce2009-05-281-4/+0
| | | | | | The previous patch to fix an enumeration bug found with group enumeration inadvertently introduced a bug with user enumeration. Yeah, almost funny!
* Standardize style and fix potential lenght checkSimo Sorce2009-05-281-28/+47
| | | | | | We were not subtracting the initial 8 bytes from slen. This could cause us to run past the source buffer in case we received a bad packet.
* Fix potential integer oveflowSimo Sorce2009-05-281-11/+10
| | | | | | | If mem_num is big enough then ptmem can be big enough that dlen - ptmem actually gives back a postive integer. Also tidy up the termination condition at the end of the buffer so that it is less confusing.
* Enable enumeration in sysdb testsStephen Gallagher2009-05-281-0/+8
|
* Suppress "rootdse" error messages.Stephen Gallagher2009-05-284-0/+41
| | | | | | | We will trap all LDB debug messages and pipe them into our internal DEBUG() function. LDB FATAL messages will still be printed by default, WARNING and TRACE functions will be at debug level 3 and 9, respectively.
* Make Data Provider a mandatory serviceJakub Hrozek2009-05-281-0/+32
|
* Build non-versioned sss_pam.so, libnss_sss.so and memberof.soStephen Gallagher2009-05-283-8/+7
|
* gettext cleanupsSumit Bose2009-05-289-1137/+13
| | | | | | | This patch removes a couple of files which can be created by autopoint automatically. The pot file now contains no changes compared to the output of xgettext. This should help to avoid unnecesary changes to the pot or po files during a 'make dist' or similar calls.
* special-case NSS calls in PAM codeJakub Hrozek2009-05-281-2/+2
|
* Use PTR_2_INT for alignment calculationsSimo Sorce2009-05-281-4/+5
| | | | | This version should be pointer size agnostic. Should make this code safe on both 32bit and 64bit.
* Fix enumerations (bug #42)Simo Sorce2009-05-271-12/+76
| | | | | | | | | | If a backend had all its results filtered in fill_pwent or fill_grent then we would return an empty result, which means "end of results" to the client. Now we return ENOENT and let callers decide what to do. Also make sure we do not grow packets unless we are going to fill them as that's a recipe for killing the client as the size passed to sss_packet_grow is used to determine the size of the final packet.
* Initial gettext framework for sss_clientsStephen Gallagher2009-05-2615-6/+1233
|
* fix a wrong timeoutSumit Bose2009-05-261-3/+4
| | | | | The timeout of the data provider call (in ms) got overwritten by a cache timeout (in s).
* Adjust sysdb tests to the new confdb interface and improve sysdb test coverageJakub Hrozek2009-05-261-39/+771
|
* Silence warningsSimo Sorce2009-05-2610-22/+29
|
* Do not fire up backend search when the data provider is localJakub Hrozek2009-05-263-17/+21
|
* Fix release.shJakub Hrozek2009-05-261-3/+24
| | | | | Fix version extraction in release script Use make dist-gzip inside of git-archived directory
* Stop overwriting the stackSimo Sorce2009-05-261-2/+2
| | | | Actually use the buffer not it's location on the stack.
* Link proxy backend against internal crypto libraryStephen Gallagher2009-05-261-2/+4
|
* Move useradd defaults to confdbJakub Hrozek2009-05-261-3/+25
| | | | | | Previously, sss_useradd defaults were hardcoded with no way to change user's default shell or base for home directory. This patch moves them into config/user_defaults
* Clean up automake build to work on older versions of libtoolStephen Gallagher2009-05-2613-57/+53
| | | | | | | | | | | | | | LT_INIT is supported only on Libtool >= 2.0, so I reverted it to using AC_PROG_LIBTOOL. Also reorganized how the common libraries were being built. Now they are treated as libtool convenience libraries instead of installable libraries (the --with-singlelib configure flag can still be used to generate a combined, installable DSO) I cleaned up the set of files being installed by automake, so the list of things we need to remove before packaging the RPM is now only the .la files associated with our own plugins.
* Fix manual UID assignment in sysdbJakub Hrozek2009-05-261-11/+15
| | | | | If it's an MPG domain, set them equal. If it's a non-MPG domain, get the next available GID and use that.
* Fix infopipe packagingJakub Hrozek2009-05-261-0/+4
|
* Add some more InfoPipe testsJakub Hrozek2009-05-262-1/+627
|
* Fix typos in the Introspection XML fileJakub Hrozek2009-05-261-3/+5
|
* more autotools cleanupSumit Bose2009-05-267-14/+15
|
* Fix initscript return codesJakub Hrozek2009-05-261-6/+6
|
* Read the config before startup, fail if cannot be readJakub Hrozek2009-05-261-0/+26
|
* Fix spec fileSimo Sorce2009-05-191-2/+11
| | | | | | Dist must be optional Make sure to mark sssd.conf config_noreplace Set appropriate permissions on database and pipes directories
* Fix RPM generation issues with sssdStephen Gallagher2009-05-197-28/+16
| | | | | | | | | | | Ensures that the common libraries build statically. Also ensures that the sssd.spec creates the SYSV init script with the appropriate permissions. Cleans up the useless rpmdist target that was obsolete. Adds the *.so.N.0.0 files to the RPM, as the .so and .so.N files were dangling symlinks.
* Use freeipa-devel@redhat.com for bug reportsStephen Gallagher2009-05-196-7/+7
|
* Convert top-level of SSSD to automake.Stephen Gallagher2009-05-195-94/+119
| | | | Also update RPM spec and build procedures.
* Enable automake builds for sss_clientStephen Gallagher2009-05-194-98/+58
|
* Enable automake builds for sssd serverStephen Gallagher2009-05-1913-3791/+467
|
* Enable automake builds for libreplaceStephen Gallagher2009-05-194-73/+57
|
* Enable parallel builds for the common librariesStephen Gallagher2009-05-195-8/+103
|
* call tevent_add_fd only onceSumit Bose2009-05-191-27/+11
|
* added prototype for sysdb_set_cached_passwordSumit Bose2009-05-191-0/+6
|
* Implement approximate offline detection in proxySimo Sorce2009-05-181-5/+98
| | | | | This will blackout any request to the backend for 15 seconds, then will allow again to retry.
* Move actual password caching into sysdbSimo Sorce2009-05-1812-156/+286
| | | | Convert auth modules to do the caching themselves
* Split ldap backend into auth and identity filesSimo Sorce2009-05-183-20/+800
|
* Move ldap_be.c into ldap/ldap_auth.cSimo Sorce2009-05-181-0/+0
|
* Prevent accepting blank passwordsSimo Sorce2009-05-181-0/+7
|
* Fix crypt functions to not use static buffers.Simo Sorce2009-05-184-338/+334
| | | | Also fix style, clarify, and simplify some logic.
* Build fixesSimo Sorce2009-05-172-0/+22
| | | | | Comment out unused function in pam_sss Add missing configure.ac to common/ini
* Treat the local provider as a special caseStephen Gallagher2009-05-152-1/+17
| | | | | | | The local provider needs no backend, so we'll create a special provider entry for it called "local" that will not attempt to retrieve provider configuration but will remain in the service list so it can be updated when the config file changes.
* added new pam client protocolSumit Bose2009-05-153-4/+282
|
* added more flexible handling of client protocolSumit Bose2009-05-156-7/+83
| | | | | - allow different protocol versions for PAM and NSS - support more than one protocol version in the responder
* Manpage generationJakub Hrozek2009-05-148-3/+243
| | | | | | | | | Provides a set of make rules for generating UNIX manual pages from DocBook 4.5 source as well as sample manpage for sss_useradd. Automatic generation of manual pages during "make" process is tunable with config parameter "--with-manpages". To rebuild the man pages separately, use the "make doc" target. Before building, the manpages are validated using a DTD schema.
* Enable building a single libsssd_utils.so from commonStephen Gallagher2009-05-143-6/+38
|