Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-04-26 | Fix a potential memory violation | Sumit Bose | 1 | -2/+4 | |
If read() returns with errno set to EINTR -1 is added to total_len. | |||||
2010-04-26 | Set LDAP_OPT_RESTART for all LDAP connections | Sumit Bose | 1 | -7/+7 | |
2010-04-16 | Avoid accessing half-deallocated memory when using talloc_zfree macro. | eindenbom | 1 | -1/+5 | |
The correct memory deallocation sequence is: - clear pointer to memory first - then deallocate memory | |||||
2010-04-16 | Make ID provider init functions clearer | Stephen Gallagher | 4 | -11/+11 | |
Using sssm_*_init() as the name of the initialization function for identity providers was a holdover from earlier development when we thought we would only have a single "provider" entry in the config file. As we have now separated out the initialization functions for auth, chpass and access, we should rename sssm_*_init() to sssm_*_id_init() for a cleaner interface. | |||||
2010-04-16 | Give information about ldap_schema in the sample config | Stephen Gallagher | 1 | -0/+7 | |
Resolves: https://fedorahosted.org/sssd/ticket/438 | |||||
2010-04-16 | Use SO_PEERCRED on the PAM socket | Sumit Bose | 6 | -3/+162 | |
This is the second attempt to let the PAM client and the PAM responder exchange their credentials, i.e. uid, gid and pid. Because this approach does not require any message interchange between the client and the server the protocol version number is not changed. On the client side the connection is terminated it the responder is not run by root. On the server side the effective uid and gid and the pid of the client are available for future use. The following additional changes are made by this patch: - the checks of the ownership and the permissions on the PAM sockets are enhanced - internal error codes are introduced on the client side to generate more specific log messages if an error occurs | |||||
2010-04-16 | Revert "Add better checks on PAM socket" | Sumit Bose | 4 | -274/+5 | |
This reverts commit 5a88e963744e5da453e88b5c36499f04712df097. | |||||
2010-04-15 | Updating ES translation | Héctor Daniel Cabrera | 1 | -144/+129 | |
2010-04-14 | Fix warning in sysdb-tests.c | Stephen Gallagher | 1 | -8/+0 | |
When we converted to the synchronous sysdb interface, the synchronous-simulating function test_loop() became unnecessary, but we forgot to remove it. | |||||
2010-04-14 | Remove unused configure macro | Stephen Gallagher | 1 | -1/+0 | |
2010-04-12 | Update Polish translation | Piotr Drąg | 1 | -20/+16 | |
2010-04-12 | Update Ukrainian translation | Yuri Chornoivan | 1 | -18/+19 | |
2010-04-12 | Fix merge error for sss_userdel.c | Stephen Gallagher | 1 | -21/+1 | |
2010-04-12 | Update translations for master branch | Stephen Gallagher | 14 | -1996/+2694 | |
2010-04-12 | tools: remove creation of event_context | Simo Sorce | 10 | -47/+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 | 10 | -30/+14 | |
This commit completes the migration to a synchronous sysdb | |||||
2010-04-12 | sysdb: remove remaining traces of sysdb_handle | Simo Sorce | 11 | -237/+1 | |
2010-04-12 | sysdb: remove obsolete helpers from sysdb | Simo Sorce | 2 | -158/+0 | |
2010-04-12 | sysdb: convert sysdb_initgroups | Simo Sorce | 3 | -318/+166 | |
2010-04-12 | Adjust fill_pwent and fill_grent | Simo Sorce | 1 | -13/+13 | |
fill_pwent should return the number of users actually processed. Otherwise in case of a recoverable error we may end up skipping a large chunk of users. fill_grent doesn't need to distinguish between number of entries and number of groups to process since we started adding memberuid. Remove remnants that are not useful anymore. | |||||
2010-04-12 | sysdb: convert sysdb_enumgrent | Simo Sorce | 4 | -249/+147 | |
2010-04-12 | sysdb: convert sysdb_enumpwent | Simo Sorce | 4 | -259/+144 | |
2010-04-12 | sysdb: convert sysdb_get_user_attr | Simo Sorce | 6 | -293/+160 | |
2010-04-12 | sysdb: convert sysdb_getgrgid | Simo Sorce | 4 | -263/+160 | |
2010-04-12 | sysdb: convert sysdb_getgrnam | Simo Sorce | 10 | -394/+253 | |
2010-04-12 | sysdb: convert sysdb_getpwuid | Simo Sorce | 4 | -265/+146 | |
2010-04-12 | sysdb: convert sysdb_getpwnam | Simo Sorce | 12 | -623/+415 | |
2010-04-12 | sysdb: add automatic transactions where needed | Simo Sorce | 1 | -7/+47 | |
Only functions that do multiple operations need explicit transactions as ldb_add/ldb_modify/ldb_delete already start transactions automatically intenrally. | |||||
2010-04-12 | sysdb: remove async transactions | Simo Sorce | 2 | -157/+0 | |
not used anymore | |||||
2010-04-12 | Remove remaining use of sysdb_transaction_send | Simo Sorce | 5 | -723/+205 | |
2010-04-12 | Use the sysdb synchronous transaction functions | Simo Sorce | 7 | -424/+104 | |
2010-04-12 | proxy: complete conversion to synchronous sysdb | Simo Sorce | 1 | -1113/+428 | |
This makes proxy use only synchronous functions again. | |||||
2010-04-12 | sysdb: add synchronous transaction functions | Simo Sorce | 2 | -14/+37 | |
2010-04-12 | tests: remove use of asynchronus transactions | Simo Sorce | 1 | -502/+86 | |
now all calls are synchronous | |||||
2010-04-12 | sysdb: remove sysdb_check_handle | Simo Sorce | 1 | -90/+0 | |
not used anymore | |||||
2010-04-12 | sysdb: convert sysdb_cache_auth | Simo Sorce | 4 | -264/+136 | |
2010-04-12 | sysdb: convert sysdb_search_groups | Simo Sorce | 4 | -410/+151 | |
2010-04-12 | sysdb: delete sysdb_delete_group | Simo Sorce | 6 | -321/+109 | |
2010-04-12 | sysdb: convert sysdb_delete_user | Simo Sorce | 6 | -356/+115 | |
2010-04-12 | sysdb: convert sysdb_search_users | Simo Sorce | 3 | -169/+72 | |
2010-04-12 | sysdb remove sldb_request_send, not used anymore | Simo Sorce | 1 | -125/+0 | |
2010-04-12 | sysdb: convert sysdb_asq_search | Simo Sorce | 4 | -358/+140 | |
2010-04-12 | sysdb: convert sysdb_store_custom | Simo Sorce | 4 | -258/+93 | |
2010-04-12 | sysdb: convert sysdb_search_custom | Simo Sorce | 4 | -371/+229 | |
2010-04-12 | sysdb: convert sysdb_cache_password | Simo Sorce | 6 | -209/+62 | |
2010-04-12 | sysdb: convert sysdb_mod/add/remove_group_member | Simo Sorce | 4 | -628/+117 | |
2010-04-12 | sysdb: convert sysdb_store/add(_basic)_group | Simo Sorce | 6 | -850/+294 | |
2010-04-12 | sysdb: convert sysdb_store/add(_basic)_user | Simo Sorce | 6 | -891/+430 | |
2010-04-12 | sysdb: convert sysdb_get_new_id | Simo Sorce | 2 | -397/+136 | |