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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
|
/*
Unix SMB/CIFS implementation.
SMB parameters and setup
Copyright (C) Andrew Tridgell 1992-1997.
Copyright (C) Luke Kenneth Casson Leighton 1996-1997.
Copyright (C) Paul Ashton 1997.
Copyright (C) Jeremy Cooper 2004.
Copyright (C) Gerald Carter 2002-2005.
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.
*/
#ifndef _RPC_REG_H /* _RPC_REG_H */
#define _RPC_REG_H
/* RPC opnum */
#define REG_OPEN_HKCR 0x00
#define REG_OPEN_HKLM 0x02
#define REG_OPEN_HKPD 0x03
#define REG_OPEN_HKU 0x04
#define REG_CLOSE 0x05
#define REG_CREATE_KEY_EX 0x06
#define REG_DELETE_KEY 0x07
#define REG_DELETE_VALUE 0x08
#define REG_ENUM_KEY 0x09
#define REG_ENUM_VALUE 0x0a
#define REG_FLUSH_KEY 0x0b
#define REG_GET_KEY_SEC 0x0c
#define REG_OPEN_ENTRY 0x0f
#define REG_QUERY_KEY 0x10
#define REG_QUERY_VALUE 0x11
#define REG_RESTORE_KEY 0x13
#define REG_SAVE_KEY 0x14
#define REG_SET_KEY_SEC 0x15
#define REG_SET_VALUE 0x16
#define REG_SHUTDOWN 0x18
#define REG_ABORT_SHUTDOWN 0x19
#define REG_OPEN_HKPT 0x20
#define REG_GETVERSION 0x1a
#define REG_SHUTDOWN_EX 0x1e
#define HKEY_CLASSES_ROOT 0x80000000
#define HKEY_CURRENT_USER 0x80000001
#define HKEY_LOCAL_MACHINE 0x80000002
#define HKEY_USERS 0x80000003
#define HKEY_PERFORMANCE_DATA 0x80000004
#define KEY_HKLM "HKLM"
#define KEY_HKU "HKU"
#define KEY_HKCR "HKCR"
#define KEY_HKPD "HKPD"
#define KEY_HKPT "HKPT"
#define KEY_SERVICES "HKLM\\SYSTEM\\CurrentControlSet\\Services"
#define KEY_PRINTING "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print"
#define KEY_PRINTING_2K "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Print\\Printers"
#define KEY_PRINTING_PORTS "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Ports"
#define KEY_EVENTLOG "HKLM\\SYSTEM\\CurrentControlSet\\Services\\Eventlog"
#define KEY_SHARES "HKLM\\SYSTEM\\CurrentControlSet\\Services\\LanmanServer\\Shares"
#define KEY_TREE_ROOT ""
/* Registry data types */
#define REG_NONE 0
#define REG_SZ 1
#define REG_EXPAND_SZ 2
#define REG_BINARY 3
#define REG_DWORD 4
#define REG_DWORD_LE 4 /* DWORD, little endian */
#define REG_DWORD_BE 5 /* DWORD, big endian */
#define REG_LINK 6
#define REG_MULTI_SZ 7
#define REG_RESOURCE_LIST 8
#define REG_FULL_RESOURCE_DESCRIPTOR 9
#define REG_RESOURCE_REQUIREMENTS_LIST 10
/*
* Registry key types
* Most keys are going to be GENERIC -- may need a better name?
* HKPD and HKPT are used by reg_perfcount.c
* they are special keys that contain performance data
*/
#define REG_KEY_GENERIC 0
#define REG_KEY_HKPD 1
#define REG_KEY_HKPT 2
/*
* container for function pointers to enumeration routines
* for virtual registry view
*/
typedef struct {
/* functions for enumerating subkeys and values */
int (*fetch_subkeys)( const char *key, REGSUBKEY_CTR *subkeys);
int (*fetch_values) ( const char *key, REGVAL_CTR *val );
BOOL (*store_subkeys)( const char *key, REGSUBKEY_CTR *subkeys );
BOOL (*store_values)( const char *key, REGVAL_CTR *val );
BOOL (*reg_access_check)( const char *keyname, uint32 requested, uint32 *granted, NT_USER_TOKEN *token );
} REGISTRY_OPS;
typedef struct {
const char *keyname; /* full path to name of key */
REGISTRY_OPS *ops; /* registry function hooks */
} REGISTRY_HOOK;
/* structure to store the registry handles */
typedef struct _RegistryKey {
uint32 type;
char *name; /* full name of registry key */
uint32 access_granted;
REGISTRY_HOOK *hook;
} REGISTRY_KEY;
/*
* RPC REGISTRY STRUCTURES
*/
/***********************************************/
typedef struct {
uint16 *server;
uint32 access;
} REG_Q_OPEN_HIVE;
typedef struct {
POLICY_HND pol;
WERROR status;
} REG_R_OPEN_HIVE;
/***********************************************/
typedef struct {
POLICY_HND pol;
} REG_Q_FLUSH_KEY;
typedef struct {
WERROR status;
} REG_R_FLUSH_KEY;
/***********************************************/
typedef struct {
POLICY_HND handle;
uint32 sec_info;
uint32 ptr;
BUFHDR hdr_sec;
SEC_DESC_BUF *data;
} REG_Q_SET_KEY_SEC;
typedef struct {
WERROR status;
} REG_R_SET_KEY_SEC;
/***********************************************/
typedef struct {
POLICY_HND handle;
uint32 sec_info;
uint32 ptr;
BUFHDR hdr_sec;
SEC_DESC_BUF *data;
} REG_Q_GET_KEY_SEC;
typedef struct {
uint32 sec_info;
uint32 ptr;
BUFHDR hdr_sec;
SEC_DESC_BUF *data;
WERROR status;
} REG_R_GET_KEY_SEC;
/***********************************************/
typedef struct {
POLICY_HND handle;
UNISTR4 name;
uint32 type;
RPC_DATA_BLOB value;
uint32 size;
} REG_Q_SET_VALUE;
typedef struct {
WERROR status;
} REG_R_SET_VALUE;
/***********************************************/
typedef struct {
POLICY_HND pol;
uint32 val_index;
UNISTR4 name;
uint32 *type;
REGVAL_BUFFER *value; /* value, in byte buffer */
uint32 *buffer_len;
uint32 *name_len;
} REG_Q_ENUM_VALUE;
typedef struct {
UNISTR4 name;
uint32 *type;
REGVAL_BUFFER *value;
uint32 *buffer_len1;
uint32 *buffer_len2;
WERROR status;
} REG_R_ENUM_VALUE;
/***********************************************/
typedef struct {
POLICY_HND handle;
UNISTR4 name;
UNISTR4 key_class;
uint32 options;
uint32 access;
/* FIXME! collapse all this into one structure */
uint32 *sec_info;
uint32 ptr2;
BUFHDR hdr_sec;
uint32 ptr3;
SEC_DESC_BUF *data;
uint32 *disposition;
} REG_Q_CREATE_KEY_EX;
typedef struct {
POLICY_HND handle;
uint32 disposition;
WERROR status;
} REG_R_CREATE_KEY_EX;
/***********************************************/
typedef struct {
POLICY_HND handle;
UNISTR4 name;
} REG_Q_DELETE_KEY;
typedef struct {
WERROR status;
} REG_R_DELETE_KEY;
/***********************************************/
typedef struct {
POLICY_HND handle;
UNISTR4 name;
} REG_Q_DELETE_VALUE;
typedef struct {
WERROR status;
} REG_R_DELETE_VALUE;
/***********************************************/
typedef struct {
POLICY_HND pol;
UNISTR4 key_class;
} REG_Q_QUERY_KEY;
typedef struct {
UNISTR4 key_class;
uint32 num_subkeys;
uint32 max_subkeylen;
uint32 reserved; /* 0x0000 0000 - according to MSDN (max_subkeysize?) */
uint32 num_values;
uint32 max_valnamelen;
uint32 max_valbufsize;
uint32 sec_desc; /* 0x0000 0078 */
NTTIME mod_time; /* modified time */
WERROR status;
} REG_R_QUERY_KEY;
/***********************************************/
typedef struct {
POLICY_HND pol;
} REG_Q_GETVERSION;
typedef struct {
uint32 win_version;
WERROR status;
} REG_R_GETVERSION;
/***********************************************/
typedef struct {
POLICY_HND pol;
UNISTR4 filename;
uint32 flags;
} REG_Q_RESTORE_KEY;
typedef struct {
WERROR status; /* return status */
} REG_R_RESTORE_KEY;
/***********************************************/
/* I have no idea if this is correct since I
have not seen the full structure on the wire
as of yet */
typedef struct {
uint32 max_len;
uint32 len;
SEC_DESC *secdesc;
} REG_SEC_DESC_BUF;
typedef struct {
uint32 size; /* size in bytes of security descriptor */
REG_SEC_DESC_BUF secdesc;
uint8 inherit; /* see MSDN for a description */
} SECURITY_ATTRIBUTE;
typedef struct {
POLICY_HND pol;
UNISTR4 filename;
SECURITY_ATTRIBUTE *sec_attr;
} REG_Q_SAVE_KEY;
typedef struct {
WERROR status; /* return status */
} REG_R_SAVE_KEY;
/***********************************************/
typedef struct {
POLICY_HND pol; /* policy handle */
} REG_Q_CLOSE;
typedef struct {
POLICY_HND pol;
WERROR status;
} REG_R_CLOSE;
/***********************************************/
typedef struct {
POLICY_HND pol;
uint32 key_index;
uint16 key_name_len;
uint16 unknown_1; /* 0x0414 */
uint32 ptr1;
uint32 unknown_2; /* 0x0000 020A */
uint8 pad1[8];
uint32 ptr2;
uint8 pad2[8];
uint32 ptr3;
NTTIME time;
} REG_Q_ENUM_KEY;
typedef struct {
UNISTR4 keyname;
UNISTR4 *classname;
NTTIME *time;
WERROR status; /* return status */
} REG_R_ENUM_KEY;
/***********************************************/
typedef struct {
POLICY_HND pol; /* policy handle */
UNISTR4 name;
uint32 ptr_reserved; /* pointer */
uint32 ptr_buf; /* the next three fields follow if ptr_buf != 0 */
uint32 ptr_bufsize;
uint32 bufsize;
uint32 buf_unk;
uint32 unk1;
uint32 ptr_buflen;
uint32 buflen;
uint32 ptr_buflen2;
uint32 buflen2;
} REG_Q_QUERY_VALUE;
typedef struct {
uint32 *type;
REGVAL_BUFFER *value; /* key value */
uint32 *buf_max_len;
uint32 *buf_len;
WERROR status; /* return status */
} REG_R_QUERY_VALUE;
/***********************************************/
typedef struct {
POLICY_HND pol;
UNISTR4 name;
uint32 unknown_0; /* 32 bit unknown - 0x0000 0000 */
uint32 access;
} REG_Q_OPEN_ENTRY;
typedef struct {
POLICY_HND handle;
WERROR status;
} REG_R_OPEN_ENTRY;
/***********************************************/
typedef struct {
uint16 *server;
UNISTR4 *message;
uint32 timeout; /* in seconds */
uint8 force; /* boolean: force shutdown */
uint8 reboot; /* boolean: reboot on shutdown */
} REG_Q_SHUTDOWN;
typedef struct {
WERROR status; /* return status */
} REG_R_SHUTDOWN;
/***********************************************/
typedef struct {
uint16 *server;
UNISTR4 *message;
uint32 timeout; /* in seconds */
uint8 force; /* boolean: force shutdown */
uint8 reboot; /* boolean: reboot on shutdown */
uint32 reason; /* reason - must be defined code */
} REG_Q_SHUTDOWN_EX;
typedef struct {
WERROR status;
} REG_R_SHUTDOWN_EX;
/***********************************************/
typedef struct {
uint16 *server;
} REG_Q_ABORT_SHUTDOWN;
typedef struct {
WERROR status;
} REG_R_ABORT_SHUTDOWN;
#endif /* _RPC_REG_H */
|