r18931: * Fix the IDL for QueryInfoKey. teh Classname in an
[tprouty/samba.git] / source / rpc_client / cli_reg.c
index 0f0c642d21cc188dd2432e3c5572733487ed2532..42f0606ca6f712abfe97f64104145728c29c4ca3 100644 (file)
@@ -2,11 +2,7 @@
    Unix SMB/CIFS implementation.
    RPC Pipe client
  
-   Copyright (C) Andrew Tridgell              1992-2000,
-   Copyright (C) Jeremy Allison                    1999 - 2005
-   Copyright (C) Simo Sorce                        2001
-   Copyright (C) Jeremy Cooper                     2004
-   Copyright (C) Gerald (Jerry) Carter             2005
+   Copyright (C) Gerald (Jerry) Carter        2005-2006
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #include "includes.h"
 #include "rpc_client.h"
 
-/* Shutdown a server */
-
-/*******************************************************************
- internal connect to a registry hive root (open a registry policy)
-*******************************************************************/
-
-static WERROR rpccli_reg_open_hive_int(struct rpc_pipe_client *cli,
-                                      TALLOC_CTX *mem_ctx, uint16 op_code,
-                                      const char *op_name,
-                                      uint32 access_mask, POLICY_HND *hnd)
-{
-       REG_Q_OPEN_HIVE in;
-       REG_R_OPEN_HIVE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT(in);
-       ZERO_STRUCT(out);
-
-       init_reg_q_open_hive(&in, access_mask);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, op_code, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_open_hive,
-                   reg_io_r_open_hive, 
-                   WERR_GENERAL_FAILURE );
-
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-
-       memcpy( hnd, &out.pol, sizeof(POLICY_HND) );
-
-       return out.status;
-}
-
 /*******************************************************************
  connect to a registry hive root (open a registry policy)
 *******************************************************************/
 
-WERROR rpccli_reg_connect(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
+NTSTATUS rpccli_winreg_connect(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
                          uint32 reg_type, uint32 access_mask,
                          POLICY_HND *reg_hnd)
-{      uint16 op_code;
-       const char *op_name;
-
+{
        ZERO_STRUCTP(reg_hnd);
 
        switch (reg_type)
        {
        case HKEY_CLASSES_ROOT:
-               op_code = REG_OPEN_HKCR;
-               op_name = "REG_OPEN_HKCR";
-               break;
+               return rpccli_winreg_OpenHKCR( cli, mem_ctx, NULL, 
+                       access_mask, reg_hnd );
+
        case HKEY_LOCAL_MACHINE:
-               op_code = REG_OPEN_HKLM;
-               op_name = "REG_OPEN_HKLM";
-               break;
+               return rpccli_winreg_OpenHKLM( cli, mem_ctx, NULL, 
+                       access_mask, reg_hnd );
+
        case HKEY_USERS:
-               op_code = REG_OPEN_HKU;
-               op_name = "REG_OPEN_HKU";
-               break;
+               return rpccli_winreg_OpenHKU( cli, mem_ctx, NULL, 
+                       access_mask, reg_hnd );
+
        case HKEY_PERFORMANCE_DATA:
-               op_code = REG_OPEN_HKPD;
-               op_name = "REG_OPEN_HKPD";
-               break;
+               return rpccli_winreg_OpenHKPD( cli, mem_ctx, NULL, 
+                       access_mask, reg_hnd );
+
        default:
-               return WERR_INVALID_PARAM;
+               /* fall through to end of function */
+               break;
        }
 
-       return rpccli_reg_open_hive_int(cli, mem_ctx, op_code, op_name,
-                                     access_mask, reg_hnd);
-}
-
-
-/*******************************************************************
-*******************************************************************/
-
-WERROR rpccli_reg_shutdown(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                          const char *msg, uint32 timeout, BOOL do_reboot,
-                         BOOL force)
-{
-       REG_Q_SHUTDOWN in;
-       REG_R_SHUTDOWN out;
-       prs_struct qbuf, rbuf;
-
-       if (msg == NULL) 
-               return WERR_INVALID_PARAM;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-
-       /* Marshall data and send request */
-
-       init_reg_q_shutdown(&in, msg, timeout, do_reboot, force);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_SHUTDOWN, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_shutdown,
-                   reg_io_r_shutdown, 
-                   WERR_GENERAL_FAILURE );
-
-       return out.status;
+       return NT_STATUS_INVALID_PARAMETER;
 }
 
 /****************************************************************************
-do a REG Query Key
 ****************************************************************************/
 
-WERROR rpccli_reg_query_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
+NTSTATUS rpccli_winreg_query_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
                            POLICY_HND *hnd,
                            char *key_class, uint32 *class_len,
                            uint32 *num_subkeys, uint32 *max_subkeylen,
-                           uint32 *max_classlen, uint32 *num_values,
+                           uint32 *max_subkeysize, uint32 *num_values,
                            uint32 *max_valnamelen, uint32 *max_valbufsize,
-                           uint32 *sec_desc, NTTIME *mod_time)
-{
-       REG_Q_QUERY_KEY in;
-       REG_R_QUERY_KEY out;
-       prs_struct qbuf, rbuf;
-       uint32 saved_class_len = *class_len;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-
-       init_reg_q_query_key( &in, hnd, key_class );
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_QUERY_KEY, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_query_key,
-                   reg_io_r_query_key, 
-                   WERR_GENERAL_FAILURE );
-
-       if ( W_ERROR_EQUAL( out.status, WERR_MORE_DATA ) ) {
-               ZERO_STRUCT (in);
-
-               *class_len = out.key_class.string->uni_max_len;
-               if ( *class_len > saved_class_len )
-                       return out.status;
-                       
-               /* set a string of spaces and NULL terminate */
-
-               memset( key_class, (int)' ', *class_len );
-               key_class[*class_len] = '\0';
-               
-               init_reg_q_query_key( &in, hnd, key_class );
-
-               ZERO_STRUCT (out);
-
-               CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_QUERY_KEY, 
-                           in, out, 
-                           qbuf, rbuf,
-                           reg_io_q_query_key,
-                           reg_io_r_query_key, 
-                           WERR_GENERAL_FAILURE );
-       }
-       
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-
-       *class_len      = out.key_class.string->uni_max_len;
-       unistr2_to_ascii(key_class, out.key_class.string, saved_class_len-1);
-       *num_subkeys    = out.num_subkeys   ;
-       *max_subkeylen  = out.max_subkeylen ;
-       *num_values     = out.num_values    ;
-       *max_valnamelen = out.max_valnamelen;
-       *max_valbufsize = out.max_valbufsize;
-       *sec_desc       = out.sec_desc      ;
-       *mod_time       = out.mod_time      ;
-       /* Maybe: *max_classlen = out.reserved; */
-
-       return out.status;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-WERROR rpccli_reg_getversion(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, uint32 *version)
-{
-       REG_Q_GETVERSION in;
-       REG_R_GETVERSION out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_getversion(&in, hnd);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_GETVERSION, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_getversion,
-                   reg_io_r_getversion, 
-                   WERR_GENERAL_FAILURE );
-                   
-
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-               
-       *version = out.win_version;
-
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Query Info
-****************************************************************************/
-
-WERROR rpccli_reg_query_value(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                           POLICY_HND *hnd, const char *val_name,
-                           uint32 *type, REGVAL_BUFFER *buffer)
-{
-       REG_Q_QUERY_VALUE in;
-       REG_R_QUERY_VALUE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_query_value(&in, hnd, val_name, buffer);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_QUERY_VALUE, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_query_value,
-                   reg_io_r_query_value, 
-                   WERR_GENERAL_FAILURE );
-                   
-
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-               
-       *type   = *out.type;
-       *buffer = *out.value;
-
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Set Key Security 
-****************************************************************************/
-
-WERROR rpccli_reg_set_key_sec(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                             POLICY_HND *hnd, uint32 sec_info,
-                             size_t secdesc_size, SEC_DESC *sec_desc)
+                           uint32 *secdescsize, NTTIME *mod_time)
 {
-       REG_Q_SET_KEY_SEC in;
-       REG_R_SET_KEY_SEC out;
-       prs_struct qbuf, rbuf;
-       SEC_DESC_BUF *sec_desc_buf;
+       NTSTATUS status;
+       struct winreg_String classname;
 
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       /* Flatten the security descriptor */
-       
-       if ( !(sec_desc_buf = make_sec_desc_buf(mem_ctx, secdesc_size, sec_desc)) )
-               return WERR_GENERAL_FAILURE;
-               
-       init_reg_q_set_key_sec(&in, hnd, sec_info, sec_desc_buf);
+       classname.name = key_class;
+       status = rpccli_winreg_QueryInfoKey( cli, mem_ctx, hnd, 
+                       &classname, num_subkeys,
+                       max_subkeylen, max_subkeysize, num_values,
+                       max_valnamelen, max_valbufsize, secdescsize,
+                       mod_time );
 
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_SET_KEY_SEC, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_set_key_sec,
-                   reg_io_r_set_key_sec, 
-                   WERR_GENERAL_FAILURE );
-                   
+       /* The old code would check for INSUFFICIENT_BUFFER.  
+          Will have to work this out. */
 
-       return out.status;
+       return status;
 }
 
 
 /****************************************************************************
-do a REG Query Key Security 
 ****************************************************************************/
 
-WERROR rpccli_reg_get_key_sec(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                             POLICY_HND *hnd, uint32 sec_info,
-                             uint32 *sec_buf_size, SEC_DESC_BUF *sec_buf)
+NTSTATUS rpccli_winreg_enum_val(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
+                          POLICY_HND *hnd, int idx,
+                          fstring val_name, uint32 *type, REGVAL_BUFFER *value)
 {
-       REG_Q_GET_KEY_SEC in;
-       REG_R_GET_KEY_SEC out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_get_key_sec(&in, hnd, sec_info, *sec_buf_size, sec_buf);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_GET_KEY_SEC, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_get_key_sec,
-                   reg_io_r_get_key_sec, 
-                   WERR_GENERAL_FAILURE );
-                   
-
-       /* this might be able to return WERR_MORE_DATA, I'm not sure */
+       NTSTATUS status = NT_STATUS_INVALID_PARAMETER;
        
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
+       /* do rpc */
        
-       sec_buf       = out.data;
-       *sec_buf_size = out.data->sd_size;
                
-       return out.status;      
-}
-
-/****************************************************************************
-do a REG Delete Value
-****************************************************************************/
-
-WERROR rpccli_reg_delete_val(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, char *val_name)
-{
-       REG_Q_DELETE_VALUE in;
-       REG_R_DELETE_VALUE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_delete_val(&in, hnd, val_name);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_DELETE_VALUE, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_delete_value,
-                   reg_io_r_delete_value, 
-                   WERR_GENERAL_FAILURE );
-       
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Delete Key
-****************************************************************************/
-
-WERROR rpccli_reg_delete_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, char *key_name)
-{
-       REG_Q_DELETE_KEY in;
-       REG_R_DELETE_KEY out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_delete_key(&in, hnd, key_name);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_DELETE_KEY, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_delete_key,
-                   reg_io_r_delete_key, 
-                   WERR_GENERAL_FAILURE );
-       
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Create Key
-****************************************************************************/
-
-WERROR rpccli_reg_create_key_ex(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, char *key_name, char *key_class,
-                            uint32 access_desired, POLICY_HND *key)
-{
-       REG_Q_CREATE_KEY_EX in;
-       REG_R_CREATE_KEY_EX out;
-       prs_struct qbuf, rbuf;
-       SEC_DESC *sec;
-       SEC_DESC_BUF *sec_buf;
-       size_t sec_len;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       if ( !(sec = make_sec_desc(mem_ctx, 1, SEC_DESC_SELF_RELATIVE,
-               NULL, NULL, NULL, NULL, &sec_len)) ) {
-               return WERR_GENERAL_FAILURE;
-       }
-                                
-       if ( !(sec_buf = make_sec_desc_buf(mem_ctx, sec_len, sec)) )
-               return WERR_GENERAL_FAILURE;
-
-       init_reg_q_create_key_ex(&in, hnd, key_name, key_class, access_desired, sec_buf);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_CREATE_KEY_EX, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_create_key_ex,
-                   reg_io_r_create_key_ex, 
-                   WERR_GENERAL_FAILURE );
-                   
-
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-       
-       memcpy( key, &out.handle, sizeof(POLICY_HND) );
-       
-       return out.status;
+       return status;
 }
 
 /****************************************************************************
-do a REG Enum Key
 ****************************************************************************/
 
-WERROR rpccli_reg_enum_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
+NTSTATUS rpccli_winreg_enum_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
                           POLICY_HND *hnd, int key_index, fstring key_name,
                           fstring class_name, time_t *mod_time)
 {
-       REG_Q_ENUM_KEY in;
-       REG_R_ENUM_KEY out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_enum_key(&in, hnd, key_index);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_ENUM_KEY, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_enum_key,
-                   reg_io_r_enum_key, 
-                   WERR_GENERAL_FAILURE );
-
-       if ( !W_ERROR_IS_OK(out.status) )
-               return out.status;
-
-       if ( out.keyname.string )
-               rpcstr_pull( key_name, out.keyname.string->buffer, sizeof(fstring), -1, STR_TERMINATE );
-       else
-               fstrcpy( key_name, "(Default)" );
-
-       if ( out.classname && out.classname->string )
-               rpcstr_pull( class_name, out.classname->string->buffer, sizeof(fstring), -1, STR_TERMINATE );
-       else
-               fstrcpy( class_name, "" );
-
-       *mod_time   = nt_time_to_unix(*out.time);
-
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Create Value
-****************************************************************************/
-
-WERROR rpccli_reg_set_val(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, char *val_name, uint32 type,
-                            RPC_DATA_BLOB *data)
-{
-       REG_Q_SET_VALUE in;
-       REG_R_SET_VALUE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_set_val(&in, hnd, val_name, type, data);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_SET_VALUE, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_set_value,
-                   reg_io_r_set_value, 
-                   WERR_GENERAL_FAILURE );
-
-       return out.status;
-}
-
-/****************************************************************************
-do a REG Enum Value
-****************************************************************************/
-
-WERROR rpccli_reg_enum_val(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                          POLICY_HND *hnd, int idx,
-                          fstring val_name, uint32 *type, REGVAL_BUFFER *value)
-{
-       REG_Q_ENUM_VALUE in;
-       REG_R_ENUM_VALUE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_enum_val(&in, hnd, idx, 0x0100, 0x1000);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_ENUM_VALUE, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_enum_val,
-                   reg_io_r_enum_val, 
-                   WERR_GENERAL_FAILURE );
-
-       if ( W_ERROR_EQUAL(out.status, WERR_MORE_DATA) ) {
-
-               ZERO_STRUCT (in);
-
-               init_reg_q_enum_val(&in, hnd, idx, 0x0100, *out.buffer_len1);
-
-               ZERO_STRUCT (out);
-
-               CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_ENUM_VALUE, 
-                           in, out, 
-                           qbuf, rbuf,
-                           reg_io_q_enum_val,
-                           reg_io_r_enum_val, 
-                           WERR_GENERAL_FAILURE );
-       }
-
-       if ( !W_ERROR_IS_OK(out.status) )
-               return out.status;
-
-       unistr2_to_ascii(val_name, out.name.string, sizeof(fstring)-1);
-       *type      = *out.type;
-       *value     = *out.value;
-       
-       return out.status;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-WERROR rpccli_reg_open_entry(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                            POLICY_HND *hnd, char *key_name,
-                            uint32 access_desired, POLICY_HND *key_hnd)
-{
-       REG_Q_OPEN_ENTRY in;
-       REG_R_OPEN_ENTRY out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_open_entry(&in, hnd, key_name, access_desired);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_OPEN_ENTRY, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_open_entry,
-                   reg_io_r_open_entry, 
-                   WERR_GENERAL_FAILURE );
-
-       if ( !W_ERROR_IS_OK( out.status ) )
-               return out.status;
-
-       memcpy( key_hnd, &out.handle, sizeof(POLICY_HND) );
-       
-       return out.status;
-}
-
-/****************************************************************************
-****************************************************************************/
-
-WERROR rpccli_reg_close(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                       POLICY_HND *hnd)
-{
-       REG_Q_CLOSE in;
-       REG_R_CLOSE out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_reg_q_close(&in, hnd);
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_CLOSE, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_close,
-                   reg_io_r_close, 
-                   WERR_GENERAL_FAILURE );
+       NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
        
-       return out.status;
+       return status;
 }
 
-/****************************************************************************
-do a REG Query Info
-****************************************************************************/
-
-WERROR rpccli_reg_save_key(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
-                         POLICY_HND *hnd, const char *filename )
-{
-       REG_Q_SAVE_KEY in;
-       REG_R_SAVE_KEY out;
-       prs_struct qbuf, rbuf;
-
-       ZERO_STRUCT (in);
-       ZERO_STRUCT (out);
-       
-       init_q_reg_save_key( &in, hnd, filename );
-
-       CLI_DO_RPC_WERR( cli, mem_ctx, PI_WINREG, REG_SAVE_KEY, 
-                   in, out, 
-                   qbuf, rbuf,
-                   reg_io_q_save_key,
-                   reg_io_r_save_key,
-                   WERR_GENERAL_FAILURE );
-
-       return out.status;
-}
-
-
-/* 
- #################################################################
-  Utility functions
- #################################################################
+/*
+ *
+ * Utility functions
+ * 
  */
 
 /*****************************************************************
@@ -678,3 +156,23 @@ BOOL reg_split_hive(const char *full_keyname, uint32 *reg_type, pstring key_name
 
        return True;
 }
+
+/*******************************************************************
+ Fill in a REGVAL_BUFFER for the data given a REGISTRY_VALUE
+ *******************************************************************/
+
+uint32 reg_init_regval_buffer( REGVAL_BUFFER *buf2, REGISTRY_VALUE *val )
+{
+       uint32          real_size = 0;
+       
+       if ( !buf2 || !val )
+               return 0;
+               
+       real_size = regval_size(val);
+       init_regval_buffer( buf2, (unsigned char*)regval_data_p(val), real_size );
+
+       return real_size;
+}
+
+
+