Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-28 | Fixed bad logic in processing netgroups in LDAP provider | Jan Zeleny | 1 | -1/+3 | |
2011-09-28 | IPA access: hostname comparison should be case-insensitive | Jakub Hrozek | 1 | -1/+1 | |
2011-09-28 | Multiline macro cleanup | Jakub Hrozek | 8 | -10/+11 | |
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-20 | Fix uninitialized pointer read in sdap_gssapi_get_default_realm() | Jakub Hrozek | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/1003 | |||||
2011-09-08 | DEBUG timestamps offer higher precision | Pavel Březina | 4 | -6/+24 | |
https://fedorahosted.org/sssd/ticket/956 Added: --debug-microseconds=0/1 Added: debug_microseconds to sssd.conf | |||||
2011-09-08 | Improve documentation of libipa_hbac | Stephen Gallagher | 2 | -21/+1697 | |
2011-09-07 | Do not access memory out of bounds | Sumit Bose | 1 | -2/+2 | |
2011-09-06 | Keep deref controls until the whole request is finished | Jakub Hrozek | 1 | -8/+45 | |
https://fedorahosted.org/sssd/ticket/989 John Hodrien found out that when paging is used while dereferencing an entry, sssd_be may segfault on the second page. This was because paging returned the control to sdap_generic_search multiple times but sssd was freeing dereference control after the first search invocation. The subsequend sdap searched accessed memory that was already freed. | |||||
2011-09-06 | Improve error message for LDAP password constraint violation | Jakub Hrozek | 3 | -16/+29 | |
https://fedorahosted.org/sssd/ticket/985 | |||||
2011-09-06 | Allow turning dereference off by setting the threshold to 0 | Jakub Hrozek | 3 | -3/+9 | |
2011-09-06 | sss_ldap_err2string() - ldap_err2string() to sss_ldap_err2string() | Pavel Březina | 3 | -35/+35 | |
https://fedorahosted.org/sssd/ticket/986 | |||||
2011-09-06 | sss_ldap_err2string() - function created | Pavel Březina | 1 | -2/+0 | |
https://fedorahosted.org/sssd/ticket/986 | |||||
2011-08-29 | HBAC: Properly skip all non-group memberOf entries | Stephen Gallagher | 1 | -1/+2 | |
2011-08-29 | Fix moving to next entry in deref code | Jakub Hrozek | 1 | -1/+6 | |
https://fedorahosted.org/sssd/ticket/973 | |||||
2011-08-26 | HBAC: Use of hostgroups for targethost or sourcehost was broken | Stephen Gallagher | 1 | -4/+4 | |
We were trying to look up the wrong attribute for the name of the hostgroup. | |||||
2011-08-26 | HBAC: Handle saving groups that have no members | Stephen Gallagher | 1 | -7/+21 | |
2011-08-26 | Use the default Kerberos realm for LDAP with GSSAPI auth | Jakub Hrozek | 1 | -3/+55 | |
https://fedorahosted.org/sssd/ticket/970 | |||||
2011-08-26 | Add LDAP provider option to set LDAP_OPT_X_SASL_NOCANON | Jakub Hrozek | 5 | -3/+17 | |
https://fedorahosted.org/sssd/ticket/978 | |||||
2011-08-25 | --debug-timestamps=1 is not passed to providers | Pavel Březina | 2 | -11/+8 | |
https://fedorahosted.org/sssd/ticket/972 --debug-timestamps=1 is now passed to providers | |||||
2011-08-25 | New DEBUG facility - SSSDBG_UNRESOLVED changed from -1 to 0 | Pavel Březina | 4 | -4/+15 | |
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 | 11 | -9/+16 | |
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-25 | Improve password policy error code and message | Sumit Bose | 1 | -4/+9 | |
Instead of returning PAM_SYSTEM_ERR if they necessary attributes for the requested password policy cannot be found we return PAM_PERM_DENIED. Additionally the log message says that the access is denied. | |||||
2011-08-25 | IPA dyndns: do not segfault if the server cannot be resolved | Jakub Hrozek | 1 | -4/+2 | |
https://fedorahosted.org/sssd/ticket/963 | |||||
2011-08-15 | Handle timeout during sss_ldap_init_send | Jakub Hrozek | 1 | -1/+5 | |
In some cases, where there would be no response from the LDAP server, there would be no R/W events on the LDAP fd, so sdap_async_sys_connect_done would never be called. This patch adds a tevent timer that cancels the connection after SDAP_NETWORK_TIMEOUT seconds. | |||||
2011-08-15 | Moved some functions in sdap_async_initgroups | Jan Zeleny | 1 | -345/+349 | |
2011-08-15 | Moved some functions in sdap_async_groups | Jan Zeleny | 1 | -122/+112 | |
2011-08-15 | Confusing part of code cleared out | Jan Zeleny | 1 | -34/+32 | |
2011-08-15 | sdap_async_accounts.c split | Jan Zeleny | 4 | -2514/+2588 | |
The file has been split in three: sdap_async_users.c sdap_async_groups.c sdap_async_initgroups.c https://fedorahosted.org/sssd/ticket/864 | |||||
2011-08-15 | sysdb refactoring: memory context deleted | Jan Zeleny | 10 | -43/+31 | |
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 | 22 | -101/+69 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-08-11 | Use sysdb attribute name for GID, not LDAP attribute | Stephen Gallagher | 1 | -3/+3 | |
2011-08-04 | Fix returning groups when gidNumber attribute is not ordered | Jakub Hrozek | 3 | -4/+10 | |
https://fedorahosted.org/sssd/ticket/951 | |||||
2011-08-01 | Request password control unconditionally during bind | Jakub Hrozek | 1 | -6/+6 | |
https://fedorahosted.org/sssd/ticket/940 | |||||
2011-08-01 | Change the default value of ldap_tls_cacert in IPA provider | Jakub Hrozek | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/944 | |||||
2011-08-01 | Add rule validator to libipa_hbac | Stephen Gallagher | 2 | -0/+74 | |
https://fedorahosted.org/sssd/ticket/943 | |||||
2011-08-01 | Remove incorrect private variable | Stephen Gallagher | 1 | -1/+1 | |
This caused no ill effects, since it wasn't used in the callback. However, it is a layering violation (especially since req is freed in the callback) | |||||
2011-08-01 | Wrong paramater to sysdb_attrs_add_uint32 | Jakub Hrozek | 1 | -1/+1 | |
2011-07-29 | Fix incorrect NULL check in ipa_hbac_common.c | Stephen Gallagher | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/936 | |||||
2011-07-29 | Fix memory leak in ipa_hbac_evaluate_rules | Stephen Gallagher | 1 | -0/+1 | |
https://fedorahosted.org/sssd/ticket/933 | |||||
2011-07-29 | libipa_hbac: Support case-insensitive comparisons with UTF8 | Stephen Gallagher | 1 | -16/+98 | |
2011-07-27 | Explicitly ignore groups with gidNumber=0 | Jakub Hrozek | 2 | -11/+18 | |
https://fedorahosted.org/sssd/ticket/916 | |||||
2011-07-27 | Set gidNumber of non-posix groups to 0 even on updates | Jakub Hrozek | 1 | -8/+44 | |
2011-07-21 | fo_get_server_name() getter for a server name | Jakub Hrozek | 5 | -3/+31 | |
Allows to be more concise in tests and more defensive in resolve callbacks | |||||
2011-07-21 | Rename fo_get_server_name to fo_get_server_str_name | Jakub Hrozek | 6 | -10/+10 | |
2011-07-21 | Only print server address if one is available | Jakub Hrozek | 1 | -0/+7 | |
2011-07-21 | Do not add a NULL host parsed from LDAP URI | Jakub Hrozek | 1 | -1/+8 | |
https://fedorahosted.org/sssd/ticket/911 | |||||
2011-07-13 | Remove unused krb5_service structure member | Jakub Hrozek | 3 | -7/+1 | |
2011-07-11 | Check DNS records before updating | Jakub Hrozek | 4 | -25/+470 | |
https://fedorahosted.org/sssd/ticket/802 | |||||
2011-07-11 | Split reading resolver family order into a separate function | Jakub Hrozek | 1 | -23/+3 | |
2011-07-11 | Do not hardcode default resolver timeout | Jakub Hrozek | 1 | -1/+1 | |