📄 srv_reg.c
字号:
/* * Unix SMB/CIFS implementation. * RPC Pipe client / server routines * Copyright (C) Andrew Tridgell 1992-1997, * Copyright (C) Luke Kenneth Casson Leighton 1996-1997, * Copyright (C) Paul Ashton 1997, * Copyright (C) Marc Jacobsen 2000, * Copyright (C) Jeremy Allison 2001, * Copyright (C) Gerald Carter 2002, * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003. * * 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. *//* This is the interface for the registry functions. */#include "includes.h"#undef DBGC_CLASS#define DBGC_CLASS DBGC_RPC_SRV/******************************************************************* api_reg_close ********************************************************************/static BOOL api_reg_close(pipes_struct *p){ REG_Q_CLOSE q_u; REG_R_CLOSE r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg unknown 1 */ if(!reg_io_q_close("", &q_u, data, 0)) return False; r_u.status = _reg_close(p, &q_u, &r_u); if(!reg_io_r_close("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_open_khlm ********************************************************************/static BOOL api_reg_open_hklm(pipes_struct *p){ REG_Q_OPEN_HIVE q_u; REG_R_OPEN_HIVE r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg open */ if(!reg_io_q_open_hive("", &q_u, data, 0)) return False; r_u.status = _reg_open_hklm(p, &q_u, &r_u); if(!reg_io_r_open_hive("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_open_khu ********************************************************************/static BOOL api_reg_open_hku(pipes_struct *p){ REG_Q_OPEN_HIVE q_u; REG_R_OPEN_HIVE r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg open */ if(!reg_io_q_open_hive("", &q_u, data, 0)) return False; r_u.status = _reg_open_hku(p, &q_u, &r_u); if(!reg_io_r_open_hive("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_open_khcr ********************************************************************/static BOOL api_reg_open_hkcr(pipes_struct *p){ REG_Q_OPEN_HIVE q_u; REG_R_OPEN_HIVE r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg open */ if(!reg_io_q_open_hive("", &q_u, data, 0)) return False; r_u.status = _reg_open_hkcr(p, &q_u, &r_u); if(!reg_io_r_open_hive("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_open_entry ********************************************************************/static BOOL api_reg_open_entry(pipes_struct *p){ REG_Q_OPEN_ENTRY q_u; REG_R_OPEN_ENTRY r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg open entry */ if(!reg_io_q_open_entry("", &q_u, data, 0)) return False; /* construct reply. */ r_u.status = _reg_open_entry(p, &q_u, &r_u); if(!reg_io_r_open_entry("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_query_value ********************************************************************/static BOOL api_reg_query_value(pipes_struct *p){ REG_Q_QUERY_VALUE q_u; REG_R_QUERY_VALUE r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg unknown 0x11*/ if(!reg_io_q_query_value("", &q_u, data, 0)) return False; r_u.status = _reg_query_value(p, &q_u, &r_u); if(!reg_io_r_query_value("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_shutdown ********************************************************************/static BOOL api_reg_shutdown(pipes_struct *p){ REG_Q_SHUTDOWN q_u; REG_R_SHUTDOWN r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg shutdown */ if(!reg_io_q_shutdown("", &q_u, data, 0)) return False; r_u.status = _reg_shutdown(p, &q_u, &r_u); if(!reg_io_r_shutdown("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_shutdown_ex ********************************************************************/static BOOL api_reg_shutdown_ex(pipes_struct *p){ REG_Q_SHUTDOWN_EX q_u; REG_R_SHUTDOWN_EX r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg shutdown ex */ if(!reg_io_q_shutdown_ex("", &q_u, data, 0)) return False; r_u.status = _reg_shutdown_ex(p, &q_u, &r_u); if(!reg_io_r_shutdown_ex("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_abort_shutdown ********************************************************************/static BOOL api_reg_abort_shutdown(pipes_struct *p){ REG_Q_ABORT_SHUTDOWN q_u; REG_R_ABORT_SHUTDOWN r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); /* grab the reg shutdown */ if(!reg_io_q_abort_shutdown("", &q_u, data, 0)) return False; r_u.status = _reg_abort_shutdown(p, &q_u, &r_u); if(!reg_io_r_abort_shutdown("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_query_key ********************************************************************/static BOOL api_reg_query_key(pipes_struct *p){ REG_Q_QUERY_KEY q_u; REG_R_QUERY_KEY r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); if(!reg_io_q_query_key("", &q_u, data, 0)) return False; r_u.status = _reg_query_key(p, &q_u, &r_u); if(!reg_io_r_query_key("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_getversion ********************************************************************/static BOOL api_reg_getversion(pipes_struct *p){ REG_Q_GETVERSION q_u; REG_R_GETVERSION r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata; ZERO_STRUCT(q_u); ZERO_STRUCT(r_u); if(!reg_io_q_getversion("", &q_u, data, 0)) return False; r_u.status = _reg_getversion(p, &q_u, &r_u); if(!reg_io_r_getversion("", &r_u, rdata, 0)) return False; return True;}/******************************************************************* api_reg_enum_key ********************************************************************/static BOOL api_reg_enum_key(pipes_struct *p){ REG_Q_ENUM_KEY q_u; REG_R_ENUM_KEY r_u; prs_struct *data = &p->in_data.data; prs_struct *rdata = &p->out_data.rdata;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -