summaryrefslogtreecommitdiff
path: root/source4/lib/registry/common/reg_util.c
blob: 2941c38cf4360925488e29e8e477a1b8113379b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* 
   Unix SMB/CIFS implementation.
   Transparent registry backend handling
   Copyright (C) Jelmer Vernooij			2003-2004.

   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
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"

#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY

/* Return string description of registry value type */
const char *str_regtype(int type)
{
	switch(type) {
	case REG_SZ: return "STRING";
	case REG_DWORD: return "DWORD";
	case REG_BINARY: return "BINARY";
	}
	return "Unknown";
}

char *reg_val_data_string(REG_VAL *v)
{ 
  char *asciip;
  char *ret = NULL;
  int i;

  if(reg_val_size(v) == 0) return strdup("");

  switch (reg_val_type(v)) {
  case REG_SZ:
	  /* FIXME: Convert to ascii */
	  return strdup(reg_val_data_blk(v));

  case REG_EXPAND_SZ:
	  return strdup(reg_val_data_blk(v));

  case REG_BINARY:
	  ret = malloc(reg_val_size(v) * 3 + 2);
	  asciip = ret;
	  for (i=0; i<reg_val_size(v); i++) { 
		  int str_rem = reg_val_size(v) * 3 - (asciip - ret);
		  asciip += snprintf(asciip, str_rem, "%02x", *(unsigned char *)(reg_val_data_blk(v)+i));
		  if (i < reg_val_size(v) && str_rem > 0)
			  *asciip = ' '; asciip++;	
	  }
	  *asciip = '\0';
	  return ret;
	  break;

  case REG_DWORD:
	  if (*(int *)reg_val_data_blk(v) == 0)
		  ret = strdup("0");
	  else
		  asprintf(&ret, "0x%x", *(int *)reg_val_data_blk(v));
	  break;

  case REG_MULTI_SZ:
	/* FIXME */
    break;

  default:
    return 0;
    break;
  } 

  return ret;
}

const char *reg_val_description(REG_VAL *val) 
{
	char *ret, *ds = reg_val_data_string(val);
	asprintf(&ret, "%s = %s : %s", reg_val_name(val)?reg_val_name(val):"<No Name>", str_regtype(reg_val_type(val)), ds);
	free(ds);
	return ret;
}

BOOL reg_val_set_string(REG_VAL *val, char *str)
{
	/* FIXME */
	return False;
}

REG_VAL *reg_key_get_subkey_val(REG_KEY *key, const char *subname, const char *valname)
{
	REG_KEY *k = reg_key_get_subkey_by_name(key, subname);
	if(!k) return NULL;
	
	return reg_key_get_value_by_name(k, valname);
}

BOOL reg_key_set_subkey_val(REG_KEY *key, const char *subname, const char *valname, uint32 type, uint8 *data, int real_len)
{
	REG_KEY *k = reg_key_get_subkey_by_name(key, subname);
	REG_VAL *v;
	if(!k) return False;

	v = reg_key_get_value_by_name(k, valname);
	if(!v) return False;
	
	return reg_val_update(v, type, data, real_len);
}

/***********************************************************************
 Utility function for splitting the base path of a registry path off
 by setting base and new_path to the apprapriate offsets withing the
 path.
 
 WARNING!!  Does modify the original string!
 ***********************************************************************/

BOOL reg_split_path( char *path, char **base, char **new_path )
{
	char *p;
	
	*new_path = *base = NULL;
	
	if ( !path)
		return False;
	
	*base = path;
	
	p = strchr( path, '\\' );
	
	if ( p ) {
		*p = '\0';
		*new_path = p+1;
	}
	
	return True;
}

char *reg_path_win2unix(char *path) 
{
	int i;
	for(i = 0; path[i]; i++) {
		if(path[i] == '\\') path[i] = '/';
	}
	return path;
}

char *reg_path_unix2win(char *path) 
{
	int i;
	for(i = 0; path[i]; i++) {
		if(path[i] == '/') path[i] = '\\';
	}
	return path;
}