summaryrefslogtreecommitdiffstats
path: root/src/sss_client
Commit message (Collapse)AuthorAgeFilesLines
* AUTOFS: fix copy-and-paste bug in the autofs clientJakub Hrozek2012-04-201-1/+1
|
* Only free returned values on successJakub Hrozek2012-04-091-3/+3
| | | | https://fedorahosted.org/sssd/ticket/1237
* Fixed uninitialized pointer in SSH authorized keys clientJan Zeleny2012-04-091-1/+1
|
* Fixed uninitialized pointer in SSH known host proxyJan Zeleny2012-04-091-1/+1
|
* Autofs: operate on contents of double-pointer, not addressJakub Hrozek2012-04-091-3/+3
| | | | https://fedorahosted.org/sssd/ticket/1234
* SSH: Fix infinite loop in sss_ssh_knownhostsproxyJan Cholasta2012-03-201-6/+9
| | | | https://fedorahosted.org/sssd/ticket/1268
* SSH: Canonicalize host name and do reverse DNS lookupJan Cholasta2012-03-164-31/+62
| | | | | | | | | | | SSH: Allow clients to explicitly specify host alias This change removes the need to canonicalize host names on the responder side - the relevant code was removed. SSH: Canonicalize host name and do reverse DNS lookup in sss_ssh_knownhostsproxy https://fedorahosted.org/sssd/ticket/1245
* SSH: Remove unused --file option of sss_ssh_knownhostsproxyJan Cholasta2012-02-271-5/+0
|
* SSH: Add more debugging messagesJan Cholasta2012-02-272-4/+18
|
* SSH: Manage global known_hosts file in the responderJan Cholasta2012-02-271-78/+2
| | | | https://fedorahosted.org/sssd/ticket/1193
* SSH: Continue connecting to SSH server even when SSSD is not running in ↵Jan Cholasta2012-02-271-112/+85
| | | | | | | | | | sss_ssh_knownhostsproxy Additionally, don't drop the connection when the sss_ssh_knownhostsproxy process receives a signal. https://fedorahosted.org/sssd/ticket/1179 https://fedorahosted.org/sssd/ticket/1184
* SSH: Refactor responder and client common codeJan Cholasta2012-02-274-177/+72
|
* AUTOFS: speed up the client by requesting multiple entries at onceJakub Hrozek2012-02-271-44/+160
| | | | https://fedorahosted.org/sssd/ticket/1166
* pam_sss: keep selinux optionalSimo Sorce2012-02-231-0/+6
| | | | Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
* nss_group: Cache the result from sssd when the glibc provided buffer is too ↵Simo Sorce2012-02-231-8/+145
| | | | small.
* Refactor sss_result into sss_sudo_resultPavel Březina2012-02-145-36/+38
| | | | https://fedorahosted.org/sssd/ticket/1159
* Fix missing NULL check after mallocStephen Gallagher2012-02-131-0/+4
| | | | Coverity #12528
* SSH: Verify that names received from client are valid UTF-8 in responderJan Cholasta2012-02-131-0/+17
| | | | | | | Also added a comment describing the wire format of client requests and responses. https://fedorahosted.org/sssd/ticket/1177
* Fix SSH compilation on RHEL5Jakub Hrozek2012-02-071-1/+3
|
* Make sudo installation path configurable, install into libdir by defaultJakub Hrozek2012-02-071-1/+1
|
* SSH: OpenSSH known_hosts clientJan Cholasta2012-02-071-0/+401
|
* SSH: OpenSSH authorized_keys clientJan Cholasta2012-02-071-0/+130
|
* SSH: Common client codeJan Cholasta2012-02-074-0/+372
|
* SSH: ResponderJan Cholasta2012-02-071-0/+4
|
* SELinux support in PAM moduleJan Zeleny2012-02-061-1/+60
|
* SELinux support in PAM responderJan Zeleny2012-02-061-0/+4
|
* AUTOFS: a command-line test clientJakub Hrozek2012-02-051-0/+116
| | | | | | | | A very simply binary that can be used to test getting data from the library via SSSD in pretty much the same way SSSD would. A required positional parameter specifies the map name and the tool would print out all the key/value pairs using _sss_getautomntent_r(). You can also specify -n to query a specific key using _sss_getautomntbyname_r().
* AUTOFS: a client libraryJakub Hrozek2012-02-055-0/+451
| | | | | | | | | | | | | | | This is the library the autofs client is using. automounter dlopen()s the library so there is no header file, no pkgconfig file and the library is in the libsss_autofs package, not in -devel. The library provides the following interface: * _sss_setautomntent() - select the map for processing * _sss_getautomntent_r() - iterates through key/value pairs in the selected map. The key is usually the mount point, the value is mount information (server:/export) * _sss_getautomntbyname_r() - returns value for a specific key. * _sss_endautomntent() deselect a map, clean up
* SUDO: Provide documentation for the SUDO APIJakub Hrozek2012-01-302-0/+1658
|
* Fix sudo compilation on RHEL5Jakub Hrozek2012-01-302-0/+3
|
* SUDO Integration - test client changedPavel Březina2012-01-271-78/+13
| | | | | | | Without user name given it displays cn=defaults record. Client no longer display raw data. https://fedorahosted.org/sssd/ticket/1143
* SUDO Integration - SUDO API can request only cn=defaults recordPavel Březina2012-01-273-26/+44
| | | | https://fedorahosted.org/sssd/ticket/1143
* SUDO Integration - responder command for cn=defaultsPavel Březina2012-01-271-0/+1
| | | | https://fedorahosted.org/sssd/ticket/1143
* NSS: Add client support for [set|get|end]servent()Stephen Gallagher2012-01-271-4/+125
|
* NSS: Add client support for services (non-enumeration)Stephen Gallagher2012-01-273-5/+388
|
* NSS: Add sss_readrep_copy_stringStephen Gallagher2012-01-185-181/+131
| | | | | | | There were many places in the client code where we were duplicating a loop to copy data in from the response buffer. This patch turns those loops into a function for easier maintenance and easier-to-read *readrep() routines.
* Export libsss_sudo as a separate packageJakub Hrozek2012-01-172-0/+27
|
* SUDO Integration review issuesPavel Březina2012-01-174-7/+8
|
* NSS: Validate input string lengthsStephen Gallagher2012-01-144-9/+32
| | | | | | | Also fixes a return value bug where we were returning errno error codes instead of nss_status codes. Fixes https://fedorahosted.org/sssd/ticket/1135
* SUDO Integration - pseudo client for testingPavel Březina2011-12-161-0/+167
|
* SUDO Integration - API for sudoPavel Březina2011-12-164-0/+553
|
* SUDO Integration - responderPavel Březina2011-12-161-0/+3
|
* SUDO integration - client common interfacePavel Březina2011-12-162-0/+24
|
* Fixed incorrect return code in PAM clientJan Zeleny2011-12-081-1/+1
| | | | | | | The original return code when SSSD was not running was system_err, now it is authinfo_unavail. https://fedorahosted.org/sssd/ticket/1011
* sss_cli.h - fix: function declaration after the header guardPavel Březina2011-11-281-2/+2
|
* Cleanup: Remove unused parametersJakub Hrozek2011-11-221-8/+2
|
* Added quiet option to pam_sssPavel Březina2011-09-201-5/+25
| | | | https://fedorahosted.org/sssd/ticket/894
* Fixed implicit declaration of function 'time' in src/sss_client/common.c.Pavel Březina2011-08-081-0/+1
|
* sss_client: avoid leaking file descriptorsSimo Sorce2011-07-291-0/+3
| | | | | | | | | | If a pam or nss module is dlcolse()d and unloaded we were leaking the file descriptor used to communicate to sssd in the process. Make sure the fucntion used to close the socket file descriptor is called on dlclose() Silence autoconf 2.28 warnings (Patch by Jakub Hrozek)
* Import config.h earlierStephen Gallagher2011-05-231-1/+1
| | | | | | On RHEL 5 and other older platforms, failing to set _GNU_SOURCE early would cause some functions - such as strndup() - to be unavailable.