summaryrefslogtreecommitdiff
path: root/source4/rpc_server/dssetup/dcesrv_dssetup.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-31 11:37:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:52 -0500
commit09d708e27e3c46a989dd670f369a47383fec373e (patch)
tree8191272202b73d454ffed39eb28da06d35adb4c5 /source4/rpc_server/dssetup/dcesrv_dssetup.c
parentdda32aa5ba8237dcb6e619621562a27bcf031452 (diff)
downloadsamba-09d708e27e3c46a989dd670f369a47383fec373e.tar.gz
samba-09d708e27e3c46a989dd670f369a47383fec373e.tar.bz2
samba-09d708e27e3c46a989dd670f369a47383fec373e.zip
r4452: the beginnings of a dssetup rpc server.
(This used to be commit 1c2170ae21d60c22ee3053fbf249dba59de576ba)
Diffstat (limited to 'source4/rpc_server/dssetup/dcesrv_dssetup.c')
-rw-r--r--source4/rpc_server/dssetup/dcesrv_dssetup.c177
1 files changed, 177 insertions, 0 deletions
diff --git a/source4/rpc_server/dssetup/dcesrv_dssetup.c b/source4/rpc_server/dssetup/dcesrv_dssetup.c
new file mode 100644
index 0000000000..4bc28bc475
--- /dev/null
+++ b/source4/rpc_server/dssetup/dcesrv_dssetup.c
@@ -0,0 +1,177 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ endpoint server for the dssetup pipe
+
+ Copyright (C) Andrew Tridgell 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"
+#include "rpc_server/dcerpc_server.h"
+#include "librpc/gen_ndr/ndr_dssetup.h"
+#include "rpc_server/common/common.h"
+
+
+/*
+ ds_RolerGetPrimaryDomainInformation
+*/
+static WERROR ds_RolerGetPrimaryDomainInformation(struct dcesrv_call_state *dce_call,
+ TALLOC_CTX *mem_ctx,
+ struct ds_RolerGetPrimaryDomainInformation *r)
+{
+ WERROR err = WERR_OK;
+ void *sam_ctx;
+ const char * const attrs[] = { "dnsDomain", "objectGUID", "name", NULL };
+ int ret;
+ struct ldb_message **res;
+
+ sam_ctx = samdb_connect(mem_ctx);
+ if (sam_ctx == NULL) {
+ return WERR_SERVER_UNAVAILABLE;
+ }
+
+ ret = samdb_search(sam_ctx, mem_ctx, NULL, &res, attrs,
+ "(&(objectClass=domainDNS)(!(objectClass=builtinDomain)))");
+ if (ret != 1) {
+ return WERR_SERVER_UNAVAILABLE;
+ }
+
+ switch (r->in.level) {
+ case 1:
+ r->out.info = talloc_p(mem_ctx, union ds_DomainInformation);
+ if (r->out.info == NULL) {
+ return WERR_NOMEM;
+ }
+ r->out.info->basic.role = 5;
+ r->out.info->basic.flags = 0x01000003;
+ r->out.info->basic.domain = samdb_result_string(res[0], "name", NULL);
+ r->out.info->basic.dns_domain = samdb_result_string(res[0], "dnsDomain", NULL);
+ r->out.info->basic.forest = samdb_result_string(res[0], "dnsDomain", NULL);
+ r->out.info->basic.domain_guid = samdb_result_guid(res[0], "objectGUID");
+ break;
+
+ default:
+ err = WERR_INVALID_PARAM;
+ break;
+ }
+
+ return err;
+}
+
+
+/*
+ ds_RolerDnsNameToFlatName
+*/
+static WERROR ds_RolerDnsNameToFlatName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerDnsNameToFlatName *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerDcAsDc
+*/
+static WERROR ds_RolerDcAsDc(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerDcAsDc *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerDcAsReplica
+*/
+static WERROR ds_RolerDcAsReplica(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerDcAsReplica *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerDemoteDc
+*/
+static WERROR ds_RolerDemoteDc(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerDemoteDc *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerGetDcOperationProgress
+*/
+static WERROR ds_RolerGetDcOperationProgress(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerGetDcOperationProgress *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerGetDcOperationResults
+*/
+static WERROR ds_RolerGetDcOperationResults(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerGetDcOperationResults *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerCancel
+*/
+static WERROR ds_RolerCancel(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerCancel *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerServerSaveStateForUpgrade
+*/
+static WERROR ds_RolerServerSaveStateForUpgrade(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerServerSaveStateForUpgrade *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerUpgradeDownlevelServer
+*/
+static WERROR ds_RolerUpgradeDownlevelServer(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerUpgradeDownlevelServer *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/*
+ ds_RolerAbortDownlevelServerUpgrade
+*/
+static WERROR ds_RolerAbortDownlevelServerUpgrade(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
+ struct ds_RolerAbortDownlevelServerUpgrade *r)
+{
+ DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
+}
+
+
+/* include the generated boilerplate */
+#include "librpc/gen_ndr/ndr_dssetup_s.c"