Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-04-14 | Add ability to trace 64bit numbers | Dmitri Pal | 2 | -2/+58 | |
[TRACE] Adding macros for signed numbers | |||||
2010-04-14 | Acess control and config change checks | Dmitri Pal | 4 | -38/+684 | |
1) Fixed the issue that metadata was saved as numbers. Was supposed to be saved as strings. 2) Added two functions. One is to check permissions on the config file. Another to check if the file has changed and thus the cinfiguration needs to be reread. 3) Added unit test will sample code and comments how to use the functions. 4) Added doxygen description in the comments. 5) Fixed couple typos and ommisions here and there. [INI] Fixing crash detected on 64-bit system This patch corrects original code to be more on the safe side and check parameters before using. Instead of dereferencing metadata it is now passed as reference to the next level. It is not used there yet so no other new changes needed so far. [INI] Addressing review comments [INI] Addressing comments. | |||||
2010-04-14 | Resolve paths for reporting purposes | Dmitri Pal | 2 | -4/+21 | |
2010-04-14 | Adding content to the metadata | Dmitri Pal | 4 | -13/+140 | |
This patch implements function that collects stats and saves them in the ACCESS section inside metadata. | |||||
2010-04-14 | Adding metadata interface | Dmitri Pal | 7 | -277/+915 | |
This patch: 1) Adds the definition of the metadata interface to the header file. The functions that were exposed for no good reason are now hidden. 2) Previously exposed functions and their descriptions are removed from the public header and placed into the source code for now. 3) The function that reads the config file no longer tries to close file in case of error. 4) Lines collection is still passed in into the reading function but as a collection itself not as a pointer to it. 5) All the parts related to processing lines are currently ifdefed using HAVE_VALIDATION that is currently is not defined. This is done to disable creation of the lines collection utill it is actually needed. I did not want to blindly remove it though and loose already done work that will be useful in future. 6) Version of the library and interface is updated 7) New header and source modules are introduced to hold functions related to the meta data. They are mostly stubbed out. This is incomplete patch. It builds and make check runs. It is created just to simplify the review a bit. | |||||
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 | Bumping version on master to 1.2.90 | Stephen Gallagher | 1 | -1/+1 | |
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 | |
2010-04-12 | sysdb: convert sysdb_set_entry/user/group_attr | Simo Sorce | 7 | -589/+144 | |
2010-04-12 | sysdb: convert sysdb_search_group_by_name/gid | Simo Sorce | 4 | -596/+277 | |
2010-04-12 | sysdb: convert sysdb_search_user_by_name/uid | Simo Sorce | 4 | -616/+219 | |
2010-04-12 | sysdb: convert sysdb_search_entry and sysdb_delete_recursive | Simo Sorce | 5 | -456/+121 | |