573e86dc3156e481ce53d39ac901da2e99cfa0ca |
|
07-Jul-2016 |
Jakub Hrozek <jhrozek@redhat.com> |
SUDO: Add more low-level tracing messages
Just adds more debugging messages that are handy in seeing what gets
passed between sudo responder and client.
Reviewed-by: Sumit Bose <sbose@redhat.com> |
15d41c8f28259061e39715acdbbbaea778b6ecc8 |
|
19-Apr-2016 |
Pavel Březina <pbrezina@redhat.com> |
sudo: do not use tevent when parsing query
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com> |
52300e30a0ec0bbfa1b0918ee0b495f06f5d142a |
|
19-Apr-2016 |
Pavel Březina <pbrezina@redhat.com> |
sudo: use cache_req for initgroups
This is just blind code change, the next patch will improve it so
for example we don't do initgroups during query-parsing phase.
Resolves:
https://fedorahosted.org/sssd/ticket/1126
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com> |
87f8bee53ee1b4ca87b602ff8536bc5fd5b5b595 |
|
17-Mar-2015 |
Lukas Slebodnik <lslebodn@redhat.com> |
Add missing new lines to debug messages
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
979f969abe7a75a2f41f6fddabec94674ca3c722 |
|
27-Jun-2014 |
Pavel Reichl <preichl@redhat.com> |
sudo: return after tevent_req_error
Don't call tevent_req_done after tevent_req_error (for the same request).
Reviewed-by: Sumit Bose <sbose@redhat.com> |
a3c8390d19593b1e5277d95bfb4ab206d4785150 |
|
12-Feb-2014 |
Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> |
Make DEBUG macro invocations variadic
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> |
1b3144586978c47506eaa39db505e6231e3b0c0a |
|
22-Jul-2013 |
Jakub Hrozek <jhrozek@redhat.com> |
SUDO: realloc with sizeof(uint32_t) when adding uint32_t |
4668b4765530cf37289235e483f301100cc1ae21 |
|
02-May-2013 |
Sumit Bose <sbose@redhat.com> |
Remove unused TALLOC_CTX from responder_get_domain()
Recent refactoring removed the need to copy the domain info data of
sub-domains because the related objects will not be removed from memory
anymore. |
5ff1c3c5a12930692cb6284d14f7fda3a974af8e |
|
22-Jan-2013 |
Pavel Březina <pbrezina@redhat.com> |
sudo responder: change num_rules type from size_t to uint32_t
https://fedorahosted.org/sssd/ticket/1779
2^32 should be enough to store sudo rules. size_t type was causing
troubles on big endian architectures, because it wasn't used
correctly in combination with D-Bus. |
c475ce7bfa230a0a0167a294317c1120211cbb4c |
|
19-Nov-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
SUDO: Fix wrong variable check
https://fedorahosted.org/sssd/ticket/1650 |
7379170a0860790f2739e07fffe3d6ec85264566 |
|
14-Nov-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo: do not send domain name with username
This caused troubles with subdomain users and it is not really
necessary. This patch does not change the protocol itself, that
should be done on the earliest possible occasion.
Part of https://fedorahosted.org/sssd/ticket/1616 |
d38ffc9c92daeb62de7d28c409bdaeff98f82775 |
|
14-Nov-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo: support users from subdomains
https://fedorahosted.org/sssd/ticket/1616 |
1542b85f13d72329685bdd97aa879c36d11f81be |
|
01-Oct-2012 |
Sumit Bose <sbose@redhat.com> |
Add new option default_domain_suffix |
46d3d2c731e8c7e138462e5b60a39a279dc77d81 |
|
29-Jun-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo api: send uid, username and domainname
https://fedorahosted.org/sssd/ticket/1239
Test client was changed accordingly. The new usage is:
sss_sudo_cli username [uid]
If uid is not set, getpwnam(username) is called. It will retrieve
both default options and rules. |
710472d946f6c337a095699dfd79134fa8b9eab9 |
|
29-Jun-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo responder: remove code duplication in commands |
2827b0d03f7b6bafa504d22a5d7ca39cbda048b3 |
|
16-Dec-2011 |
Pavel Březina <pbrezina@redhat.com> |
SUDO Integration - responder |