| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | util: Continue if setlocale fails | Michal Židek | 2015-11-04 | 1 | -1/+3 |
| | | | | | | | | | | | | | | setlocale needs some environment variables to be set in order to work. These variables are not present in some special cases. We should not fail completely in these cases but continue with the compatible C locale. Resolves: https://fedorahosted.org/sssd/ticket/2785 Reviewed-by: Michal Židek <mzidek@redhat.com> | ||||
| * | Remove trailing whitespace | Pavel Reichl | 2015-09-03 | 1 | -3/+3 |
| | | | | | | Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com> Reviewed-by: Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> | ||||
| * | sssd: incorrect checks on length values during packet decoding | Michal Židek | 2015-08-31 | 1 | -3/+3 |
| | | | | | | | | | | | https://fedorahosted.org/sssd/ticket/1697 It is safer to isolate the checked (unknown/untrusted) value on the left hand side in the conditions to avoid overflows/underflows. Reviewed-by: Petr Cech <pcech@redhat.com> | ||||
| * | Make DEBUG macro invocations variadic | Nikolai Kondrashov | 2014-02-12 | 2 | -27/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Use a script to update DEBUG macro invocations to use it as a variadic macro, supplying format string and its arguments directly, instead of wrapping them in parens. This script was used to update the code: grep -rwl --include '*.[hc]' DEBUG . | while read f; do mv "$f"{,.orig} perl -e \ 'use strict; use File::Slurp; my $text=read_file(\*STDIN); $text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs; print $text;' < "$f.orig" > "$f" rm "$f.orig" done Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> Reviewed-by: Stephen Gallagher <sgallagh@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com> | ||||
| * | Fix warnings: uninitialized variable | Lukas Slebodnik | 2013-07-22 | 1 | -1/+1 |
| | | |||||
| * | SSH: Use separate field for domain name in client requests | Jan Cholasta | 2013-05-07 | 4 | -37/+29 |
| | | | | | | Instead of appending @domain to names when the --domain option of sss_ssh_* is used, put domain name in a separate field in client requests. | ||||
| * | Include talloc log in our debug facility | Michal Zidek | 2012-10-29 | 2 | -2/+2 |
| | | | | | https://fedorahosted.org/sssd/ticket/1495 | ||||
| * | SSH: Simplify public key formatting function | Jan Cholasta | 2012-09-04 | 1 | -2/+1 |
| | | |||||
| * | SSH: Return error code in SSH utility functions | Jan Cholasta | 2012-09-04 | 1 | -6/+7 |
| | | |||||
| * | SSH: Don't abort connection in sss_ssh_knownhostsproxy when DNS records are ↵ | Jan Cholasta | 2012-05-31 | 1 | -36/+49 |
| | | | | | | | missing https://fedorahosted.org/sssd/ticket/1356 | ||||
| * | SSH: Supress error message output in sss_ssh_knownhostsproxy | Jan Cholasta | 2012-05-31 | 2 | -15/+8 |
| | | |||||
| * | SSH: Add support for hashed known_hosts | Jan Cholasta | 2012-04-24 | 1 | -1/+1 |
| | | | | | https://fedorahosted.org/sssd/ticket/1203 | ||||
| * | Convert read and write operations to sss_atomic_read | Jakub Hrozek | 2012-04-20 | 1 | -2/+2 |
| | | | | | https://fedorahosted.org/sssd/ticket/1209 | ||||
| * | SSH: Fix infinite loop in sss_ssh_knownhostsproxy | Jan Cholasta | 2012-03-20 | 1 | -6/+9 |
| | | | | | https://fedorahosted.org/sssd/ticket/1268 | ||||
| * | SSH: Canonicalize host name and do reverse DNS lookup in sss_ssh_knownhostsproxy | Jan Cholasta | 2012-03-15 | 1 | -26/+38 |
| | | | | | https://fedorahosted.org/sssd/ticket/1245 | ||||
| * | SSH: Allow clients to explicitly specify host alias | Jan Cholasta | 2012-03-15 | 4 | -6/+25 |
| | | | | | | This change removes the need to canonicalize host names on the responder side - the relevant code was removed. | ||||
| * | Fixed resource leak in ssh client code | Jan Zeleny | 2012-03-09 | 1 | -0/+1 |
| | | |||||
| * | Fixed uninitialized pointer in SSH authorized keys client | Jan Zeleny | 2012-03-09 | 1 | -1/+1 |
| | | |||||
| * | Fixed uninitialized pointer in SSH known host proxy | Jan Zeleny | 2012-03-09 | 1 | -1/+1 |
| | | |||||
| * | SSH: Remove unused --file option of sss_ssh_knownhostsproxy | Jan Cholasta | 2012-02-27 | 1 | -5/+0 |
| | | |||||
| * | SSH: Add more debugging messages | Jan Cholasta | 2012-02-27 | 2 | -4/+18 |
| | | |||||
| * | SSH: Manage global known_hosts file in the responder | Jan Cholasta | 2012-02-26 | 1 | -78/+2 |
| | | | | | https://fedorahosted.org/sssd/ticket/1193 | ||||
| * | SSH: Continue connecting to SSH server even when SSSD is not running in ↵ | Jan Cholasta | 2012-02-26 | 1 | -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 code | Jan Cholasta | 2012-02-26 | 4 | -177/+72 |
| | | |||||
| * | SSH: Verify that names received from client are valid UTF-8 in responder | Jan Cholasta | 2012-02-13 | 1 | -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 RHEL5 | Jakub Hrozek | 2012-02-07 | 1 | -1/+3 |
| | | |||||
| * | SSH: OpenSSH known_hosts client | Jan Cholasta | 2012-02-07 | 1 | -0/+401 |
| | | |||||
| * | SSH: OpenSSH authorized_keys client | Jan Cholasta | 2012-02-07 | 1 | -0/+130 |
| | | |||||
| * | SSH: Common client code | Jan Cholasta | 2012-02-07 | 2 | -0/+347 |
