Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-11-22 | Set more strict permissions on keyring | Simo Sorce | 1 | -1/+1 | |
We want to confine access to the keyring to the current process and not let root easily peek into the keyring contents. | |||||
2011-11-22 | Fixed unchecked value of setenv() in check_and_export_options() | Jan Zeleny | 1 | -2/+5 | |
https://fedorahosted.org/sssd/ticket/1080 | |||||
2011-11-22 | Cleanup: Remove unused parameters | Jakub Hrozek | 1 | -7/+2 | |
2011-11-02 | Add support to request canonicalization on krb AS requests | Jan Zeleny | 3 | -1/+25 | |
https://fedorahosted.org/sssd/ticket/957 | |||||
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-08 | DEBUG timestamps offer higher precision | Pavel Březina | 1 | -0/+2 | |
https://fedorahosted.org/sssd/ticket/956 Added: --debug-microseconds=0/1 Added: debug_microseconds to sssd.conf | |||||
2011-08-25 | New DEBUG facility - SSSDBG_UNRESOLVED changed from -1 to 0 | Pavel Březina | 1 | -1/+3 | |
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 | 1 | -0/+2 | |
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 | 1 | -4/+3 | |
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 | 3 | -13/+10 | |
The patch also updates code using modified functions. Tests have also been adjusted. | |||||
2011-07-21 | Rename fo_get_server_name to fo_get_server_str_name | Jakub Hrozek | 1 | -1/+1 | |
2011-07-13 | Remove unused krb5_service structure member | Jakub Hrozek | 2 | -5/+1 | |
2011-07-11 | Escape IP address in kdcinfo | Jakub Hrozek | 1 | -4/+26 | |
https://fedorahosted.org/sssd/ticket/909 | |||||
2011-06-15 | Switch resolver to using resolv_hostent and honor TTL | Jakub Hrozek | 1 | -1/+1 | |
2011-06-15 | Fix two typos | Sumit Bose | 1 | -2/+3 | |
2011-06-15 | Delete cached ccache file if password is expired | Sumit Bose | 1 | -8/+63 | |
2011-06-02 | Add utility function to return IP address as string | Jakub Hrozek | 1 | -9/+2 | |
2011-06-02 | Add online callback only once for TGT renewal | Sumit Bose | 1 | -25/+44 | |
2011-05-20 | Rename label in expand_ccname_template | Jakub Hrozek | 1 | -17/+17 | |
The label was named fail but used also in success cases. | |||||
2011-05-12 | Use a temporary memory context in expand_ccname_template | Jakub Hrozek | 1 | -20/+33 | |
2011-05-05 | Added some kerberos functions for building on RHEL5 | Jan Zeleny | 1 | -2/+2 | |
2011-05-04 | Do not leak pcre context | Jakub Hrozek | 1 | -0/+12 | |
2011-05-02 | Return pam data to the renewal item if renewal fails | Sumit Bose | 1 | -4/+9 | |
A previous patch changed a talloc_steal() into a talloc_move(). Now it is not enough to change the parent memory context with talloc_steal to give back the data, but it has to be assigned back too. Additionally this patch uses the missing pam data as an indication that a renewal request for this data is currently running. | |||||
2011-04-29 | Fix bad password caching when using automatic TGT renewal | Stephen Gallagher | 1 | -3/+12 | |
Fixes CVE-2011-1758, https://fedorahosted.org/sssd/ticket/856 | |||||
2011-04-25 | Allow new option to specify principal for FAST | Jan Zeleny | 3 | -4/+55 | |
https://fedorahosted.org/sssd/ticket/700 | |||||
2011-04-25 | Extend and move function for finding principal in keytab | Jan Zeleny | 1 | -80/+2 | |
The function now supports finding principal in keytab not only based on realm, but based on both realm and primary/instance parts. The function also supports * wildcard at the beginning or at the end of primary principal part. The function for finding principal has been moved to util/sss_krb5.c, so it can be used in other parts of the code. | |||||
2011-04-19 | Always generate kpasswdinfo file | Stephen Gallagher | 1 | -2/+1 | |
Previously, we only generated it when performing a password change, but this didn't play nicely with kpasswd. | |||||
2011-03-08 | Remove unused sysdb_attrs object | Jan Zeleny | 1 | -8/+0 | |
2011-02-22 | Check ccache file for renewable TGTs at startup | Sumit Bose | 3 | -0/+241 | |
2011-02-18 | Remove renewal item if it is not re-added | Sumit Bose | 1 | -1/+34 | |
2010-12-21 | Fix potential NULL-dereference in krb5_auth_done() | Sumit Bose | 1 | -3/+3 | |
https://fedorahosted.org/sssd/ticket/745 | |||||
2010-12-20 | Serialize requests of the same user in the krb5 provider | Sumit Bose | 4 | -0/+239 | |
2010-12-20 | Fixes for automatic ticket renewal | Sumit Bose | 4 | -44/+100 | |
- do not recreate the ccache file when renewing the TGT - use user principal name as hash key instead of ccfile name - let krb5_child return Kerberos error codes | |||||
2010-12-14 | Fix incorrect return value on failure in check_and_export_options() | Sumit Bose | 1 | -0/+1 | |
https://fedorahosted.org/sssd/ticket/722 | |||||
2010-12-08 | Fix build issue with older Kerberos library | Sumit Bose | 1 | -2/+2 | |
2010-12-07 | Replace krb5_kdcip by krb5_server in LDAP provider | Sumit Bose | 2 | -7/+10 | |
2010-12-07 | Add support for FAST in krb5 provider | Sumit Bose | 5 | -13/+344 | |
2010-12-07 | Refactor krb5_child to make helpers more flexible | Sumit Bose | 1 | -20/+36 | |
2010-12-03 | Allow krb5 lifetime values without a unit | Sumit Bose | 1 | -36/+65 | |
2010-12-03 | Add support for automatic Kerberos ticket renewal | Sumit Bose | 7 | -1/+420 | |
2010-12-03 | krb5_child returns TGT lifetime | Sumit Bose | 3 | -0/+57 | |
2010-12-03 | Add krb5_lifetime option | Sumit Bose | 3 | -2/+38 | |
2010-12-03 | Add krb5_renewable_lifetime option | Sumit Bose | 3 | -2/+42 | |
2010-12-03 | Check authtok type for krb5 auth and chpass | Sumit Bose | 1 | -0/+12 | |
2010-12-03 | Add a renew task to krb5_child | Sumit Bose | 1 | -0/+87 | |
2010-12-03 | Send authtok_type to krb5_child | Sumit Bose | 2 | -2/+6 | |
2010-12-01 | Allow protocol fallback for SRV queries | Jakub Hrozek | 1 | -1/+1 | |
https://fedorahosted.org/sssd/ticket/691 | |||||
2010-11-04 | Call krb5_child to check access permissions | Sumit Bose | 1 | -4/+121 | |
2010-11-04 | Make handle_child_* request public | Sumit Bose | 3 | -325/+429 | |
I took the opportunity to move everything related to the handling of the krb5_child into a separate file and cleaned the interfaces and related structures a bit. | |||||
2010-11-04 | Add krb5_kuserok() access check to krb5_child | Sumit Bose | 1 | -17/+73 | |