summaryrefslogtreecommitdiffstats
path: root/source3/registry
Commit message (Collapse)AuthorAgeFilesLines
...
* regdb: use dbwrap_trans_store_int32Stefan Metzmacher2008-03-271-1/+1
| | | | | | | metze Signed-off-by: Stefan Metzmacher <metze@samba.org> (This used to be commit 9620696083473e3a98b46dd90b3b4aa287580940)
* Fix Coverity ID 471Volker Lendecke2008-03-231-1/+1
| | | | (This used to be commit d3b6df67fea0da5ffa962837400ebe07b34a5384)
* Fix Coverity ID 477Volker Lendecke2008-03-231-2/+1
| | | | (This used to be commit f17b1b0fc6340d21f1a2f43aa7eb2e87f851c51f)
* Fix Coverity ID 478Volker Lendecke2008-03-231-2/+1
| | | | (This used to be commit 5f77938dc4a280b654b8d08656f19a7d04cea8c7)
* registry: add reg_init_basic() - init registry with only the db backend.Michael Adam2008-03-221-0/+45
| | | | | Michael (This used to be commit 1831042bdcbfe569ae39177058dfe1d914416513)
* registry: close registry in exit path in registry_init_smbconf().Michael Adam2008-03-221-2/+1
| | | | | Michael (This used to be commit 5aa3141bff35a85dd97e9fd339e19b0fe3a73afc)
* registry: some whitespace cleanup in init_registry().Michael Adam2008-03-221-9/+10
| | | | | Michael (This used to be commit f33095e44ba22f4451a5deeffdd4f9ed3f99ed85)
* registry: remove unneeded talloc stackframe variable.Michael Adam2008-03-221-2/+0
| | | | | Michael (This used to be commit 81993db828bf11b13d7ee1f43483968dc6241bcc)
* registry: close regdb in error path (and use it) in init_registry().Michael Adam2008-03-221-4/+3
| | | | | Michael (This used to be commit 73b325fe7a9d7fd67ac9b99144a3776f5a1a9e15)
* registry: fix registry_init_smbconf() to close the registry at the end.Michael Adam2008-03-211-0/+2
| | | | | Michael (This used to be commit f4d87fdbf266a36fbb50dae863ee0784165c2fe1)
* Fix Coverity ID 506Volker Lendecke2008-03-211-1/+4
| | | | (This used to be commit c9add4d59a1615aabc565e323cb19cf7ef4b6b64)
* registry: use available string constant in debug statement.Michael Adam2008-03-201-1/+1
| | | | | Michael (This used to be commit 6bac03a2ec6351ab9db457d904b8925c828086e8)
* registry: in regdb_init, not only complain about INFO/version, store it...Michael Adam2008-03-201-0/+8
| | | | | Michael (This used to be commit 27d67365ad03f0a0cd86011758a122a97513b82e)
* registry: reformat regdb_init() slightly, breaking long lines.Michael Adam2008-03-201-6/+9
| | | | | Michael (This used to be commit 11da885f1e82e7a08fac2bc0ec1515694caa6340)
* registry: untangle assignment and if-statement in regdb_init().Michael Adam2008-03-201-2/+2
| | | | | Michael (This used to be commit 504058df9706ee4e4c2e7fb1b1e41710bce2f87d)
* registry: separate initialization of registry data from regdb_init().Michael Adam2008-03-203-9/+14
| | | | | | | | | Leave this to the users (currently registry_init_smbconf() and init_registry()) to initialize as much of preliminary registry data as needed. Michael (This used to be commit 59fdd30c789ccfd5cff356e459f1653b065b985c)
* registry: add a transaction wrapper to init_registry_key_internal().Michael Adam2008-03-201-0/+31
| | | | | Michael (This used to be commit 8b9cff84d5c39e6d7c315d87ac2fdf7fc0d4e4c4)
* registry: refactor creation of subkeys out of init_registry_data().Michael Adam2008-03-201-79/+92
| | | | | Michael (This used to be commit 55233f875ebe1d515c65d9322cda69eb52d4c7d5)
* Bind Group Policy processing closer to the samba registry.Günther Deschner2008-03-181-0/+8
| | | | | Guenther (This used to be commit e9c56250eb7a2dc4e69962c5b48875834941ccfc)
* Coverity fixesMarc VanHeyningen2008-03-172-2/+6
| | | | (This used to be commit 3fc85d22590550f0539215d020e4411bf5b14363)
* registry: untangle assignment and if-clause in init_registry_data().Michael Adam2008-03-171-1/+2
| | | | | Michael (This used to be commit 64664d25cf84e5e0f4a4876b2c38c127b310dbc5)
* registry: convert regdb REGISTRY_OPS to named struct initializers.Michael Adam2008-03-171-9/+8
| | | | | Michael (This used to be commit 3ea0a0beb47bf91b71d949de5abb797177721dcc)
* registry: use talloc instead of malloc and provide common exit pointMichael Adam2008-03-171-13/+13
| | | | | | | in regdb_get_secdesc(). Michael (This used to be commit df848d8eeeb102288a3acb9a0f8a7015e0c6ca6b)
* registry: remove an unused variable from regdb_set_secdesc().Michael Adam2008-03-171-6/+0
| | | | | Michael (This used to be commit 76dad05e4ce4b4cb26557bc151359ed9d58d6317)
* registry: untangle assignments and if statements in regdb_set_secdesc().Michael Adam2008-03-171-6/+7
| | | | | Michael (This used to be commit d553b5d72569c1496bfa3de703c9bf15a9a6cb60)
* registry: use talloc_stackframe instead of hand crafted temporary context.Michael Adam2008-03-171-5/+1
| | | | | Michael (This used to be commit e4f2c856ec716697af4815491b5ae8ddb263cd51)
* registry: use talloc instead of malloc for tdb data in regdb_store_values().Michael Adam2008-03-171-2/+1
| | | | | Michael (This used to be commit 860316cbe70836882bff16b39f0deb5c12cbd1f3)
* registry: don't use talloc_stackframe() instead of talloc_tos() als temp ctxMichael Adam2008-03-171-14/+14
| | | | | | | | in regdb_store_values(). Also provide common exit path for freeing memory. Michael (This used to be commit 7454e426f2ea9aa42620ed5bcb34c85797b9e21b)
* registry: don't leak to talloc stack in regdb_fetch_keys().Michael Adam2008-03-171-1/+2
| | | | | Michael (This used to be commit 3a1d79116b693bc25af1106c9a43ffd275ac3d1e)
* registry: explicitly use talloc context instead of talloc_tos()Michael Adam2008-03-171-2/+2
| | | | | | | in regdb_fetch_keys(). Michael (This used to be commit 93ea27a3e23e489a2af3c778684f8a8a4594b567)
* registry: don't leak on success path in regdb_store_keys().Michael Adam2008-03-171-0/+1
| | | | | Michael (This used to be commit 331d7fd2ea6d8aeb029478a6ab8d4051fa2c03fd)
* registry: allocate tempory data in talloc stack in regdb_store_keys().Michael Adam2008-03-171-6/+4
| | | | | Michael (This used to be commit a99b51159a7db5f249ff136cf9ba758d14380a35)
* registry: separate cancel and failur exit paths in regdb_store_keys().Michael Adam2008-03-171-19/+20
| | | | | Michael (This used to be commit e1d4a2fa5b5b0f21d1ea4a9dffc326878c9f54b7)
* registry: don't leak memory on transaction fail in regdb_store_keys().Michael Adam2008-03-171-2/+2
| | | | | Michael (This used to be commit 9315de404812d89dddcec6ac4ae17c34f5012746)
* registry: don't leak (to talloc_tos()) in regdb_store_keys().Michael Adam2008-03-171-1/+2
| | | | | | | use talloc_stackframe() and free on error path. Michael (This used to be commit 95525772f2791f0fb999fe9f271da5b0fbdc62d8)
* registry: reformat regdb_store_keys_internal(), killing long lines.Michael Adam2008-03-171-9/+13
| | | | | Michael (This used to be commit 966b2414cb6efdfe5acb412ed9bdfd7589ee694c)
* registry: don't leak (to talloc_tos()) in regdb_store_keys_internal().Michael Adam2008-03-171-1/+2
| | | | | Michael (This used to be commit 76e4cdc25fc9a7e47fd9a356dc54533b62c5db08)
* registry: reformat init_registry_data() some, killing long lines.Michael Adam2008-03-171-29/+39
| | | | | Michael (This used to be commit f357b1ddd3ea552163151f27b4ec70fe0488a0ba)
* registry: explicitly use talloc context instead of talloc_tos()Michael Adam2008-03-171-10/+10
| | | | | | | in init_registry_data(). Michael (This used to be commit 8b0dd1e7582eef71275eea2da2b444588412c517)
* registry: don't leak (to talloc_tos()) in init_registry_data().Michael Adam2008-03-171-0/+2
| | | | | Michael (This used to be commit 7fd0ae3edce8a6ae913344cc0974181c19179b23)
* registry: rename tdb_refcount to regdb_refcount after change to dbwrap.Michael Adam2008-03-171-13/+13
| | | | | Michael (This used to be commit d39957e2c9216ef01b2ef53863c0ef5d3a9b5fee)
* registry: rename tdb_reg to regdb after change to dbwrap.Michael Adam2008-03-171-27/+27
| | | | | Michael (This used to be commit 79f37d47655ec26176a8da5f47e1c7400888a2ef)
* registry: migrate tdb registry backend to dbwrap.Michael Adam2008-03-171-49/+52
| | | | | Michael (This used to be commit 3c42d8ee16a4b143c6658fe26030569658eaef66)
* Fix return of reg values below HKLM/SOFTWARE/MICROSOFT/WINDOWSNT/CURRENTVERSION.Günther Deschner2008-03-111-1/+1
| | | | | | | Michael, please check. Guenther (This used to be commit 29ccc0e233bae160f7a6e1b0ff6b6cdda4d0f4ee)
* Fix init_registry_data for subkeyless top-level keys.Günther Deschner2008-03-011-1/+18
| | | | | | | | | | On a fresh install with no existing registry.tdb, make sure we are able to create our initial top-level entries. Michael, Volker, please check. Guenther (This used to be commit 956bc602062825493e1c357e2388fee1e5514b50)
* Fix double free bugs after calling regfio_close()Tim Potter2008-02-201-4/+0
| | | | (This used to be commit 737bb950d50ac6c5d4f99279bf535ae3a9963b2f)
* Make regdb_init() behave like regdb_open() when registry is already opened.Michael Adam2008-02-191-1/+4
| | | | | | | I.e. increment the refcounter. Michael (This used to be commit 951d3fae2cbea09cc4e1806cbf0a94ecdfcee8d5)
* Remove (now) unused function make_default_reg_sd().Michael Adam2008-02-181-48/+0
| | | | | Michael (This used to be commit 2c66413de284fb4cb9dc7def0ee4eb07b986c9ca)
* Grab secdesc for key from registry for reg_savekey()Michael Adam2008-02-181-10/+9
| | | | | | | instead of construction another default secdesc. Michael (This used to be commit 194e00822c349aa0c11641672b35b0e0c021da08)
* Add NT Authority\System as group sid to default registry key security ↵Michael Adam2008-02-181-1/+2
| | | | | | | descriptor. Michael (This used to be commit 9f0448ca323a6645ad662c97d92a7e30320e0c11)