summaryrefslogtreecommitdiffstats
path: root/sss_client
Commit message (Collapse)AuthorAgeFilesLines
* Enable quiet build for automake >= 1.11Stephen Gallagher2009-06-021-0/+3
| | | | | | | | | If automake 1.11 or higher is available, use of the configure option '--enable-silent-rules' will suppress most build messages and replace them with lines such as CC sysdb.o This affects libtool as well.
* Fix nasty bug in rendering the password fieldSimo Sorce2009-06-021-2/+1
| | | | | An error introduced with the last tidyup patches would skip the first char of the password field.
* Don't mix strdup and static stringsSimo Sorce2009-06-021-1/+1
|
* 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.
* Build non-versioned sss_pam.so, libnss_sss.so and memberof.soStephen Gallagher2009-05-281-2/+5
|
* 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.
* Initial gettext framework for sss_clientsStephen Gallagher2009-05-2613-3/+1231
|
* Clean up automake build to work on older versions of libtoolStephen Gallagher2009-05-262-1/+3
| | | | | | | | | | | | | | 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 RPM generation issues with sssdStephen Gallagher2009-05-191-1/+1
| | | | | | | | | | | 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-191-1/+1
|
* Enable automake builds for sss_clientStephen Gallagher2009-05-194-98/+58
|
* Build fixesSimo Sorce2009-05-171-0/+2
| | | | | Comment out unused function in pam_sss Add missing configure.ac to common/ini
* added new pam client protocolSumit Bose2009-05-152-3/+150
|
* added more flexible handling of client protocolSumit Bose2009-05-152-5/+20
| | | | | - allow different protocol versions for PAM and NSS - support more than one protocol version in the responder
* added syslog support to pam_sssSumit Bose2009-05-081-5/+40
|
* cleanup and fixes for pam_sssSumit Bose2009-05-081-190/+352
| | | | | | | | | | | - if PAM_USER==root return PAM_USER_UNKNOWN - pam_sss now can handle to following options: - use_first_pass: forces the module to use a previous stacked modules password and will never prompt the user - use_authtok: when password changing enforce the module to set the new password to the one provided by a previously stacked password module - forward_pass: store the passwords collected by the module as pam items for modules called later in the stack
* Fix IndentationSimo Sorce2009-04-291-88/+89
|
* reuse authtok which is already in the pam stackSumit Bose2009-04-291-2/+22
|
* Update sss_client configure.ac tooSimo Sorce2009-04-271-1/+1
|
* allow to forward the authtok to other pam modulesSumit Bose2009-04-231-0/+16
| | | | | | | | Other pam modules which are called after pam_sss might want to reuse the given password so that the user is not bothered with multiple password prompt. When pam_sss is configured with the option 'forward_pass' it will use pam_set_item to safe the password for other pam modules.
* sssd 0.3.2sssd-0_3_2Jakub Hrozek2009-04-201-1/+1
|
* Bump up to 0.3.1sssd-0_3_1Simo Sorce2009-04-131-1/+1
|
* Fix compilation error due to implicit castStephen Gallagher2009-03-251-2/+2
|
* added response type PAM_ENV_ITEM and integrated response data into dbus messagesSumit Bose2009-03-202-0/+35
|
* append CFLAGS environment variable to Makefiles CFLAGSSumit Bose2009-03-131-2/+2
|
* Remove unexisting left over headersssd-0_2_1Simo Sorce2009-03-102-2/+1
| | | | Also bump up the version as this error prevented a successful build of 0.2.0
* Bump up to version 0.2.0sssd-0_2_0Simo Sorce2009-03-101-1/+1
| | | | Change version after changes in protocol and MPG behavior.
* added generic PAM return messages and a false login delaySumit Bose2009-03-102-15/+64
|
* Treat uids and gids as 32 bit numbers not 64Simo Sorce2009-03-103-28/+28
| | | | | | In the nss communication protocol we were treating uids and gids as 64 bit values, but uids and gids are really u32 values, change the protocol to reflect the real size.
* Fix bugs in functions dealing with groupsSimo Sorce2009-03-101-1/+1
| | | | | | Fix infinite loop within initgr functions. Fix min length check copy&paste error, was filtering valid groups if the name was short enough and the group had no members.
* NSS libs do not use versioned shared objectsSimo Sorce2009-03-091-1/+1
| | | | | Afaik glibc uses just .so/.so.2, and all other nss libs I can see in the system are the same.
* added sss_client to spec fileSumit Bose2009-03-051-3/+5
|
* added password reset by rootSumit Bose2009-03-051-9/+33
|
* Fix sss_client install targetSimo Sorce2009-03-051-4/+5
| | | | | | | With this fix configure must be passed the right libdir argument depending on the platform you are building on. For example on Linux x86_64: ./configure --libdir=/lib64
* added a privileged pipeSumit Bose2009-03-052-7/+24
|
* first version of LOCAL pam backendSumit Bose2009-03-021-0/+6
|
* Add PAM clientSumit Bose2009-02-2415-0/+5588
Also rename nss_client to sss_client and reuse the same pipe protocol for both the NSS and PAM client libraries. Signed-off-by: Simo Sorce <ssorce@redhat.com>