updated the 3.0 branch from the head branch - ready for alpha18
[jra/samba/.git] / source3 / rpc_server / srv_reg.c
index 22314d9c5ea198438e60be23602178bf166203d5..a09632586036239e863b67111072de3976fa0f27 100644 (file)
@@ -1,12 +1,13 @@
-
-/* 
- *  Unix SMB/Netbios implementation.
- *  Version 1.9.
+/*
+ *  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.
+ *
  *  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
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
+/* This is the interface for the registry functions. */
 
 #include "includes.h"
-#include "nterr.h"
-
-extern int DEBUGLEVEL;
 
+#undef DBGC_CLASS
+#define DBGC_CLASS DBGC_RPC_SRV
 
 /*******************************************************************
- reg_reply_unknown_1
+ api_reg_close
  ********************************************************************/
-static void reg_reply_close(REG_Q_CLOSE *q_r,
-                               prs_struct *rdata)
+
+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;
 
-       /* set up the REG unknown_1 response */
-       bzero(r_u.pol.data, POL_HND_SIZE);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       /* close the policy handle */
-       if (close_policy_hnd(&(q_r->pol)))
-       {
-               r_u.status = 0;
-       }
-       else
-       {
-               r_u.status = 0xC0000000 | NT_STATUS_OBJECT_NAME_INVALID;
-       }
+       /* grab the reg unknown 1 */
+       if(!reg_io_q_close("", &q_u, data, 0))
+               return False;
 
-       DEBUG(5,("reg_unknown_1: %d\n", __LINE__));
+       r_u.status = _reg_close(p, &q_u, &r_u);
 
-       /* store the response in the SMB stream */
-       reg_io_r_close("", &r_u, rdata, 0);
+       if(!reg_io_r_close("", &r_u, rdata, 0))
+               return False;
 
-       DEBUG(5,("reg_unknown_1: %d\n", __LINE__));
+       return True;
 }
 
 /*******************************************************************
- api_reg_close
+ api_reg_open_khlm
  ********************************************************************/
-static void api_reg_close( pipes_struct *p, prs_struct *data,
-                                    prs_struct *rdata )
+
+static BOOL api_reg_open_hklm(pipes_struct *p)
 {
-       REG_Q_CLOSE q_r;
+       REG_Q_OPEN_HKLM q_u;
+       REG_R_OPEN_HKLM r_u;
+       prs_struct *data = &p->in_data.data;
+       prs_struct *rdata = &p->out_data.rdata;
 
-       /* grab the reg unknown 1 */
-       reg_io_q_close("", &q_r, data, 0);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       /* construct reply.  always indicate success */
-       reg_reply_close(&q_r, rdata);
-}
+       /* grab the reg open */
+       if(!reg_io_q_open_hklm("", &q_u, data, 0))
+               return False;
 
+       r_u.status = _reg_open_hklm(p, &q_u, &r_u);
+
+       if(!reg_io_r_open_hklm("", &r_u, rdata, 0))
+               return False;
+
+       return True;
+}
 
 /*******************************************************************
- reg_reply_open
+ api_reg_open_khlm
  ********************************************************************/
-static void reg_reply_open(REG_Q_OPEN_HKLM *q_r,
-                               prs_struct *rdata)
+
+static BOOL api_reg_open_hku(pipes_struct *p)
 {
-       REG_R_OPEN_HKLM r_u;
+       REG_Q_OPEN_HKU q_u;
+       REG_R_OPEN_HKU r_u;
+       prs_struct *data = &p->in_data.data;
+       prs_struct *rdata = &p->out_data.rdata;
 
-       r_u.status = 0x0;
-       /* get a (unique) handle.  open a policy on it. */
-       if (r_u.status == 0x0 && !open_policy_hnd(&(r_u.pol)))
-       {
-               r_u.status = 0xC0000000 | NT_STATUS_OBJECT_NAME_NOT_FOUND;
-       }
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       DEBUG(5,("reg_open: %d\n", __LINE__));
+       /* grab the reg open */
+       if(!reg_io_q_open_hku("", &q_u, data, 0))
+               return False;
 
-       /* store the response in the SMB stream */
-       reg_io_r_open_hklm("", &r_u, rdata, 0);
+       r_u.status = _reg_open_hku(p, &q_u, &r_u);
 
-       DEBUG(5,("reg_open: %d\n", __LINE__));
+       if(!reg_io_r_open_hku("", &r_u, rdata, 0))
+               return False;
+
+       return True;
 }
 
+
 /*******************************************************************
- api_reg_open
+ api_reg_open_entry
  ********************************************************************/
-static void api_reg_open( pipes_struct *p, prs_struct *data,
-                                    prs_struct *rdata )
+
+static BOOL api_reg_open_entry(pipes_struct *p)
 {
-       REG_Q_OPEN_HKLM q_u;
+       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;
 
-       /* grab the reg open */
-       reg_io_q_open_hklm("", &q_u, data, 0);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       /* construct reply.  always indicate success */
-       reg_reply_open(&q_u, rdata);
-}
+       /* 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;
+}
 
 /*******************************************************************
- reg_reply_open_entry
+ api_reg_info
  ********************************************************************/
-static void reg_reply_open_entry(REG_Q_OPEN_ENTRY *q_u,
-                               prs_struct *rdata)
+
+static BOOL api_reg_info(pipes_struct *p)
 {
-       uint32 status     = 0;
-       POLICY_HND pol;
-       REG_R_OPEN_ENTRY r_u;
-       fstring name;
+       REG_Q_INFO q_u;
+       REG_R_INFO 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_info("", &q_u, data, 0))
+               return False;
+
+       r_u.status = _reg_info(p, &q_u, &r_u);
 
-       DEBUG(5,("reg_open_entry: %d\n", __LINE__));
+       if(!reg_io_r_info("", &r_u, rdata, 0))
+               return False;
 
-       if (status == 0 && find_policy_by_hnd(&(q_u->pol)) == -1)
-       {
-               status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
-       }
+       return True;
+}
 
-       if (status == 0x0 && !open_policy_hnd(&pol))
-       {
-               status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
-       }
+/*******************************************************************
+ api_reg_shutdown
+ ********************************************************************/
 
-       unistr2_to_ascii(name, &q_u->uni_name, sizeof(name)-1);
+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;
 
-       if (status == 0x0)
-       {
-               DEBUG(5,("reg_open_entry: %s\n", name));
-               /* lkcl XXXX do a check on the name, here */
-               if (!strequal(name, "SYSTEM\\CurrentControlSet\\Control\\ProductOptions") &&
-                   !strequal(name, "SYSTEM\\CurrentControlSet\\Services\\NETLOGON\\Parameters\\"))
-               {
-                       status = 0xC000000 | NT_STATUS_ACCESS_DENIED;
-               }
-       }
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       if (status == 0x0 && !set_policy_reg_name(&pol, name))
-       {
-               status = 0xC000000 | NT_STATUS_TOO_MANY_SECRETS; /* ha ha very droll */
-       }
+       /* grab the reg shutdown */
+       if(!reg_io_q_shutdown("", &q_u, data, 0))
+               return False;
 
-       make_reg_r_open_entry(&r_u, &pol, status);
+       r_u.status = _reg_shutdown(p, &q_u, &r_u);
 
-       /* store the response in the SMB stream */
-       reg_io_r_open_entry("", &r_u, rdata, 0);
+       if(!reg_io_r_shutdown("", &r_u, rdata, 0))
+               return False;
 
-       DEBUG(5,("reg_open_entry: %d\n", __LINE__));
+       return True;
 }
 
 /*******************************************************************
- api_reg_open_entry
+ api_reg_abort_shutdown
  ********************************************************************/
-static void api_reg_open_entry( pipes_struct *p, prs_struct *data,
-                                    prs_struct *rdata )
+
+static BOOL api_reg_abort_shutdown(pipes_struct *p)
 {
-       REG_Q_OPEN_ENTRY q_u;
+       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;
 
-       /* grab the reg open entry */
-       reg_io_q_open_entry("", &q_u, data, 0);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       /* construct reply. */
-       reg_reply_open_entry(&q_u, rdata);
+       /* 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;
 }
 
 
 /*******************************************************************
- reg_reply_info
+ api_reg_query_key
  ********************************************************************/
-static void reg_reply_info(REG_Q_INFO *q_u,
-                               prs_struct *rdata)
+
+static BOOL api_reg_query_key(pipes_struct *p)
 {
-       uint32 status     = 0;
+       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;
 
-       REG_R_INFO r_u;
-       uint32 type = 0xcafeface;
-       BUFFER2 buf;
-       fstring name;
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       ZERO_STRUCT(buf);
+       if(!reg_io_q_query_key("", &q_u, data, 0))
+               return False;
 
-       DEBUG(5,("reg_info: %d\n", __LINE__));
+       r_u.status = _reg_query_key(p, &q_u, &r_u);
 
-       if (status == 0x0 && !get_policy_reg_name(&q_u->pol, name))
-       {
-               status = 0xC000000 | NT_STATUS_INVALID_HANDLE;
-       }
+       if(!reg_io_r_query_key("", &r_u, rdata, 0))
+               return False;
 
-       if (status == 0 &&
-          strequal(name, "SYSTEM\\CurrentControlSet\\Control\\ProductOptions"))
-       {
-               char *key = "LanmanNT";
-               make_buffer2(&buf, key, strlen(key));
-               type = 0x1;
-       }
-       else
-       {
-               status = 0x2; /* Win32 status code.  ick */
-       }
+       return True;
+}
 
-       make_reg_r_info(&r_u, &type, &buf, status);
+/*******************************************************************
+ api_reg_unknown_1a
+ ********************************************************************/
+
+static BOOL api_reg_unknown_1a(pipes_struct *p)
+{
+       REG_Q_UNKNOWN_1A q_u;
+       REG_R_UNKNOWN_1A r_u;
+       prs_struct *data = &p->in_data.data;
+       prs_struct *rdata = &p->out_data.rdata;
 
-       /* store the response in the SMB stream */
-       reg_io_r_info("", &r_u, rdata, 0);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
 
-       DEBUG(5,("reg_open_entry: %d\n", __LINE__));
+       if(!reg_io_q_unknown_1a("", &q_u, data, 0))
+               return False;
+
+       r_u.status = _reg_unknown_1a(p, &q_u, &r_u);
+
+       if(!reg_io_r_unknown_1a("", &r_u, rdata, 0))
+               return False;
+
+       return True;
 }
 
 /*******************************************************************
- api_reg_info
+ api_reg_enum_key
  ********************************************************************/
-static void api_reg_info( pipes_struct *p, prs_struct *data,
-                                    prs_struct *rdata )
+
+static BOOL api_reg_enum_key(pipes_struct *p)
 {
-       REG_Q_INFO q_u;
+       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;
 
-       /* grab the reg unknown 0x11*/
-       reg_io_q_info("", &q_u, data, 0);
+       ZERO_STRUCT(q_u);
+       ZERO_STRUCT(r_u);
+
+       if(!reg_io_q_enum_key("", &q_u, data, 0))
+               return False;
+
+       r_u.status = _reg_enum_key(p, &q_u, &r_u);
 
-       /* construct reply.  always indicate success */
-       reg_reply_info(&q_u, rdata);
+       if(!reg_io_r_enum_key("", &r_u, rdata, 0))
+               return False;
+
+       return True;
 }
 
 
+
 /*******************************************************************
  array of \PIPE\reg operations
  ********************************************************************/
 static struct api_struct api_reg_cmds[] =
 {
-       { "REG_CLOSE"        , REG_CLOSE        , api_reg_close        },
-       { "REG_OPEN_ENTRY"   , REG_OPEN_ENTRY   , api_reg_open_entry   },
-       { "REG_OPEN"         , REG_OPEN_HKLM    , api_reg_open         },
-       { "REG_INFO"         , REG_INFO         , api_reg_info         },
-       { NULL,                0                , NULL                 }
+       { "REG_CLOSE"              , REG_CLOSE              , api_reg_close            },
+       { "REG_OPEN_ENTRY"         , REG_OPEN_ENTRY         , api_reg_open_entry       },
+       { "REG_OPEN_HKLM"          , REG_OPEN_HKLM          , api_reg_open_hklm        },
+       { "REG_OPEN_HKU"           , REG_OPEN_HKU           , api_reg_open_hku         },
+       { "REG_ENUM_KEY"           , REG_ENUM_KEY           , api_reg_enum_key         },
+       { "REG_QUERY_KEY"          , REG_QUERY_KEY          , api_reg_query_key        },
+       { "REG_INFO"               , REG_INFO               , api_reg_info             },
+       { "REG_SHUTDOWN"           , REG_SHUTDOWN           , api_reg_shutdown         },
+       { "REG_ABORT_SHUTDOWN"     , REG_ABORT_SHUTDOWN     , api_reg_abort_shutdown   },
+       { "REG_UNKNOWN_1A"         , REG_UNKNOWN_1A         , api_reg_unknown_1a       },
+       { NULL                     , 0                      , NULL                     }
 };
 
 /*******************************************************************
  receives a reg pipe and responds.
  ********************************************************************/
-BOOL api_reg_rpc(pipes_struct *p, prs_struct *data)
+
+BOOL api_reg_rpc(pipes_struct *p)
 {
-       return api_rpcTNP(p, "api_reg_rpc", api_reg_cmds, data);
+       return api_rpcTNP(p, "api_reg_rpc", api_reg_cmds);
 }
-