Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-23 | pam_sss: keep selinux optional | Simo Sorce | 1 | -3/+0 | |
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com> | |||||
2012-02-21 | Don't give memory context in confdb where not needed | Jan Zeleny | 1 | -3/+3 | |
2011-11-22 | Cleanup: Remove unused parameters | Jakub Hrozek | 7 | -39/+30 | |
2011-11-07 | Fixed possible resource leak in create_mail_spool() | Jan Zeleny | 1 | -9/+9 | |
https://fedorahosted.org/sssd/ticket/1071 | |||||
2011-10-14 | TOOLS: Do not leak pid_file handle on error | Stephen Gallagher | 1 | -1/+2 | |
Coverity 11032 | |||||
2011-10-13 | SysDB commands that save lastUpdate allows this value to be passed in | Pavel Březina | 1 | -2/+2 | |
https://fedorahosted.org/sssd/ticket/836 | |||||
2011-10-03 | Use explicit base 10 for converting strings to integers | Jakub Hrozek | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/1013 | |||||
2011-09-28 | Multiline macro cleanup | Jakub Hrozek | 1 | -1/+1 | |
This is mostly a cosmetic patch. The purpose of wrapping a multi-line macro in a do { } while(0) is to make the macro usable as a regular statement, not a compound statement. When the while(0) is terminated with a semicolon, the do { } while(0); block becomes a compound statement again. | |||||
2011-09-06 | sss_debuglevel - change the debug levels on the fly | Pavel Březina | 1 | -0/+393 | |
https://fedorahosted.org/sssd/ticket/950 | |||||
2011-08-25 | New DEBUG facility - SSSDBG_UNRESOLVED changed from -1 to 0 | Pavel Březina | 8 | -8/+8 | |
Removed: SSS_UNRESOLVED_DEBUG_LEVEL (completely replaced with SSSDBG_UNRESOLVED) Added new macro: CONVERT_AND_SET_DEBUG_LEVEL(new_value) Changes unresolved debug level value (SSSDBG_UNRESOLVED) from -1 to 0 so DEBUG macro could be reduced by one condition. Anyway, it has a minor effect, every time you want to load debug_level from command line parameters, you have to use following pattern: /* Set debug level to invalid value so we can deside if -d 0 was used. */ debug_level = SSSDBG_INVALID; pc = poptGetContext(argv[0], argc, argv, long_options, 0); while((opt = poptGetNextOpt(pc)) != -1) { ... } CONVERT_AND_SET_DEBUG_LEVEL(debug_level); | |||||
2011-08-25 | New DEBUG facility - conversion | Pavel Březina | 9 | -21/+9 | |
https://fedorahosted.org/sssd/ticket/925 Conversion of the old debug_level format to the new one. (only where it was necessary) Removed: SSS_DEFAULT_DEBUG_LEVEL (completely replaced with SSSDBG_DEFAULT) | |||||
2011-08-15 | sysdb refactoring: memory context deleted | Jan Zeleny | 2 | -13/+9 | |
This patch deletes memory context parameter in those places in sysdb where it is not necessary. The code using modified functions has been updated. Tests updated as well. | |||||
2011-08-15 | sysdb refactoring: deleted domain variables in sysdb API | Jan Zeleny | 10 | -45/+23 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-07-01 | Replace system() function with fork and execl call. | Matthew Ife | 1 | -22/+30 | |
This is much more selinux friendly as it allows policy makers to call nscd_domtrans to transition to nscd_t instead of giving more access to the system via the corcmd_exec_bin macro. Modified-by: Simo Sorce <ssorce@redhat.com> Signed-off-by: Simo Sorce <ssorce@redhat.com> | |||||
2011-05-23 | Set _GNU_SOURCE globally | Sumit Bose | 1 | -1/+0 | |
2011-05-16 | Fixed uninitialized value in sss_cache | Jan Zeleny | 1 | -0/+1 | |
https://fedorahosted.org/sssd/ticket/865 | |||||
2011-05-04 | Cache cleaning tool | Jan Zeleny | 1 | -0/+360 | |
2011-03-24 | sss_obfuscate: abort on ctrl+c | Stephen Gallagher | 1 | -0/+12 | |
There is a python bug (http://bugs.python.org/issue11236) where getpass.getpass() does not throw KeyboardInterrupt on ctrl+c. This workaround is the closest we can get: if we detect the control character in the string that we read, we'll cancel. | |||||
2011-03-24 | sss_obfuscate: Avoid traceback on ctrl+d | Stephen Gallagher | 1 | -5/+9 | |
2011-02-03 | removing password option functionality | Gowrishankar Rajaiyan | 1 | -5/+1 | |
2011-02-03 | Gracefully handle permission errors in sss_obfuscate | Stephen Gallagher | 1 | -3/+15 | |
2011-02-03 | Make the domain argument mandatory in sss_obfuscate | Stephen Gallagher | 1 | -2/+6 | |
It doesn't make sense to set a "default" domain. We should require that the domain always be specified. | |||||
2011-01-17 | Fix usability of sss_obfuscate command | Stephen Gallagher | 1 | -12/+21 | |
2011-01-05 | Fix boolean comparison against string | Stephen Gallagher | 1 | -2/+2 | |
Coverity 10082 and 100083 | |||||
2010-11-05 | Properly check the return value from semanage_commit | Stephen Gallagher | 1 | -2/+2 | |
semanage_commit() returns -1 on error, and can return a positive value on success. https://bugzilla.redhat.com/show_bug.cgi?id=649037 | |||||
2010-09-08 | Fix assorted minor bugs in sss_ tools | Jakub Hrozek | 9 | -47/+37 | |
Fixes: #585 | |||||
2010-09-08 | sss_obfuscate tool | Jakub Hrozek | 1 | -0/+81 | |
A tool to add obfuscated passwords into the SSSD config file | |||||
2010-06-17 | Fix potential resource leak in remove_tree_with_ctx() | Stephen Gallagher | 1 | -1/+10 | |
https://fedorahosted.org/sssd/ticket/515 | |||||
2010-06-14 | Fix potential resource leak in copy_tree_ctx() | Jakub Hrozek | 1 | -2/+10 | |
Ticket #515 | |||||
2010-06-14 | Remove the -g option from useradd | Jakub Hrozek | 1 | -57/+2 | |
The local domain has the magic private groups option set unconditionally. Therefore, it does not make any sense to let user configure the primary GID. As a side-effect, this fixes #522. | |||||
2010-06-10 | Make sure to close varargs before returning from a function | Stephen Gallagher | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/528 | |||||
2010-06-10 | Properly handle read() and write() throughout the SSSD | Stephen Gallagher | 1 | -19/+36 | |
We need to guarantee at all times that reads and writes complete successfully. This means that they must be checked for returning EINTR and EAGAIN, and all writes must be wrapped in a loop to ensure that they do not truncate their output. | |||||
2010-06-09 | Add missing break to switch statement | Jakub Hrozek | 1 | -0/+1 | |
Switch statement missing a break causes unintended implicit setting of 'm' options in sss_useradd. Fixes: #512 | |||||
2010-04-30 | Silence warnings with -O2 | Jakub Hrozek | 1 | -4/+4 | |
2010-04-12 | Fix merge error for sss_userdel.c | Stephen Gallagher | 1 | -21/+1 | |
2010-04-12 | tools: remove creation of event_context | Simo Sorce | 9 | -26/+3 | |
Since the sysdb is now synchronous and creates its own event context we don't need an explicit event context anymore in the tools. | |||||
2010-04-12 | Make groupshow synchronous. | Simo Sorce | 1 | -310/+105 | |
I tried to convert this code as mechanically as possible from the previously existing code. I am not sure it works right, and it will probably recurse infinetly as circular group memberships are admitted in sysdb. The original code had the same issues. This code should be probably discarded and redone from scratch. | |||||
2010-04-12 | sysydb: Finally stop using a common event context | Simo Sorce | 1 | -1/+1 | |
This commit completes the migration to a synchronous sysdb | |||||
2010-04-12 | sysdb: remove remaining traces of sysdb_handle | Simo Sorce | 3 | -6/+1 | |
2010-04-12 | sysdb: convert sysdb_getgrnam | Simo Sorce | 6 | -101/+45 | |
2010-04-12 | sysdb: convert sysdb_getpwnam | Simo Sorce | 5 | -103/+57 | |
2010-04-12 | Use the sysdb synchronous transaction functions | Simo Sorce | 6 | -389/+84 | |
2010-04-12 | sysdb: convert sysdb_search_groups | Simo Sorce | 1 | -175/+59 | |
2010-04-12 | sysdb: convert sysdb_mod/add/remove_group_member | Simo Sorce | 1 | -371/+58 | |
2010-04-12 | sysdb: convert sysdb_store/add(_basic)_group | Simo Sorce | 1 | -101/+5 | |
2010-04-12 | sysdb: convert sysdb_store/add(_basic)_user | Simo Sorce | 1 | -110/+25 | |
2010-04-12 | sysdb: convert sysdb_set_entry/user/group_attr | Simo Sorce | 1 | -101/+12 | |
2010-04-12 | sysdb: convert sysdb_search_group_by_name/gid | Simo Sorce | 1 | -124/+96 | |
2010-04-12 | sysdb: convert sysdb_search_user_by_name/uid | Simo Sorce | 1 | -96/+31 | |
2010-04-12 | sysdb: convert sysdb_delete_entry | Stephen Gallagher | 4 | -237/+18 | |