summaryrefslogtreecommitdiffstats
path: root/source3/registry
Commit message (Collapse)AuthorAgeFilesLines
...
* s3-registry: Convert registry key delimiter from slash to backslash.Andreas Schneider2010-06-254-45/+24
| | | | | | | This is needed to support keynames containing a '/' like TCP/IP. Which is used in serveral standard paths. Signed-off-by: Michael Adam <obnox@samba.org>
* s3-registry: Added a db upgrade function to normalize the key delimiter.Andreas Schneider2010-06-251-6/+106
| | | | | | | This converts the key delimiter from a slash to a blackslash. We need to support keynames with a backslash. Signed-off-by: Michael Adam <obnox@samba.org>
* s3:registry: remove unused function normalize_dbkey()Michael Adam2010-06-242-11/+0
|
* s3:registry: use normalize_reg_path() in regdb_set_secdesc()Michael Adam2010-06-241-1/+6
| | | | instead of normalize_dbkey
* s3:registry: use normalize_reg_path() in regdb_get_secdesc()Michael Adam2010-06-241-1/+6
| | | | instead of normalize_dbkey.
* s3-build: only include generated spoolss headers (not ndr headers).Günther Deschner2010-06-031-0/+1
| | | | Guenther
* s3-build: only use ndr_security.h where needed.Günther Deschner2010-05-312-0/+2
| | | | Guenther
* s3:registry: add C for substantial changes to reg_objectsMichael Adam2010-05-252-0/+2
|
* s3:registry:reg_objects: Remove use of uint{8,16,32} in favour of C99 typesMichael Adam2010-05-252-35/+35
|
* s3:registry: move reg_objects.h to registry/ and use it only where neededMichael Adam2010-05-2513-0/+87
| | | | | Every place outside of registry/ where this is used, should probably be changed to use pure reg_api.c code.
* s3:registry: hide definition of regval_ctr and regval_blob in reg_objects.cMichael Adam2010-05-251-0/+18
|
* s3:registry: use regval_ctr/blob accessor functoin in reg_eventlog.cMichael Adam2010-05-251-7/+13
|
* s3:registry: user regval_ctr/blob accessor functions in reg_backend_db.cMichael Adam2010-05-251-10/+10
|
* s3:registry: use regval_ctr/blob accessor functions in reg_api.cMichael Adam2010-05-251-33/+38
|
* s3:registry:reg_objects: add regval_ctr_set_seqnum()Michael Adam2010-05-251-0/+11
|
* s3:registry:reg_objects: add regval_ctr_get_seqnum()Michael Adam2010-05-251-0/+9
|
* s3:registry:reg_objects: add regval_ctr_init()Michael Adam2010-05-251-0/+17
|
* s3:registry: move definition of registry_hook to reg_init_full.c - it's only ↵Michael Adam2010-05-251-0/+5
| | | | user
* s3:registry: extract registry_pull/push_value prototypes into own headerMichael Adam2010-05-253-0/+34
| | | | reg_util_marshalling.h and use them only where needed.
* s3:registry: rename lib/util_reg_api.c to registry/reg_util_marshalling.cMichael Adam2010-05-251-0/+215
|
* s3:registry: rename reg_util.{c,h} to reg_util_internal.{c,h}Michael Adam2010-05-257-6/+6
|
* s3:registry: move prototype registry_create_admin_token() to new header ↵Michael Adam2010-05-252-0/+27
| | | | | | reg_util_token.h and use it only where necessary.
* s3:registry: move registry_create_admin_token() to new reg_util_token.cMichael Adam2010-05-252-38/+58
|
* s3:registry: extract reg_eventlog prototypes to header of their ownMichael Adam2010-05-253-0/+31
| | | | and use them only where needed.
* s3:registry: extract reg_perfcount prototypes into header of their own.Michael Adam2010-05-255-0/+37
| | | | And use them only when necessary.
* s3:registry: extraxt the reg_dispatcher prototypes into their own header.Michael Adam2010-05-253-0/+46
| | | | And use them only where needed.
* s3:registry: extract the reg_backend_db prototypes into their own header.Michael Adam2010-05-258-0/+48
| | | | And use them only where needed.
* s3:registry: adapt callers of regval_ctr_addvalue to uint8 * instead of char *Michael Adam2010-05-257-38/+38
|
* s3:registry: fix regval_ctr_addvalue() to take data as uint8 *, not char *.Michael Adam2010-05-251-4/+4
|
* s3:registry: fix data_p arg of regval_compose to be uint8 * instead of char *Michael Adam2010-05-251-1/+1
|
* s3:registry: extract the reg_util prototypes into their own header.Michael Adam2010-05-257-0/+35
| | | | And use them only where needed.
* s3:registry: extract the reg_util_legacy prototypes into their own header.Michael Adam2010-05-252-0/+46
| | | | And use them only where necessary.
* s3:registry: extract the reg_cachehook prototypes into their own header.Michael Adam2010-05-256-0/+34
| | | | And use them only where necessary.
* s3:registry: add C to reg_cachehook, confessing considerable changes in 2008Michael Adam2010-05-251-0/+1
|
* s3: registry: fix query empty valuenamesGregor Beck2010-05-211-1/+1
| | | | | | | | Remove a check introduced with commit 80c2446321c519797a57b8006942a983f8481d79 wich causes queries for values with empty name to fail. Empty valuenames are used for the so called default value of a key. Signed-off-by: Michael Adam <obnox@samba.org>
* s3-secdesc: use SD_REVISION from security.idl.Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3-secdesc: remove "typedef struct security_descriptor SEC_DESC".Günther Deschner2010-05-183-7/+7
| | | | Guenther
* s3-secdesc: remove "typedef struct security_acl SEC_ACL".Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3-secdesc: remove "typedef struct security_ace SEC_ACE".Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3: Remove use of iconv_convenience.Jelmer Vernooij2010-05-186-16/+16
|
* s3-registry: only include registry headers when really needed.Günther Deschner2010-05-1822-0/+23
| | | | Guenther
* s3-libgpo: move group policy protos to where they belong.Günther Deschner2010-05-171-1/+1
| | | | Guenther
* s3: only include gen_ndr headers where needed.Günther Deschner2010-05-061-0/+1
| | | | | | | | | | | | | | | | | This shrinks include/includes.h.gch by the size of 7 MB and reduces build time as follows: ccache build w/o patch real 4m21.529s ccache build with patch real 3m6.402s pch build w/o patch real 4m26.318s pch build with patch real 3m6.932s Guenther
* s3-spoolss: publish "Monitor" in winreg for drivers.Günther Deschner2010-04-271-0/+1
| | | | | | Found by torture test. Guenther
* s3-spoolss: fix winreg attribute for storing datatype.Günther Deschner2010-04-271-1/+1
| | | | | | Found by torture test (and checked with w2k, w2k3 and w2k8). Guenther
* s3: add iconv_convenience handle to pull/push sz helpers.Günther Deschner2010-04-094-12/+12
| | | | Guenther
* s3-registry: fix fill_in_printer_values() for datatype and printprocessor.Günther Deschner2010-04-081-2/+2
| | | | | | | | | It is wise and good to enforce RAW and winprint, but we need to be consistent with spoolss (and enforce it there). Found by torture test. Guenther
* s3-registry: make sure root has full registry access (in particular for make ↵Günther Deschner2010-03-161-0/+6
| | | | | | test). Guenther
* s3:registry-legacy: use talloc_stackframe() instead of NULL in ↵Michael Adam2010-03-161-2/+3
| | | | | | regkey_open_internal() Michael
* s3: convert registry and printing code to TYPESAFE_QSORT()Andrew Tridgell2010-02-142-5/+4
|