summaryrefslogtreecommitdiff
path: root/source4/rpc_server/drsuapi/drsutil.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-09-08 11:49:28 +1000
committerAndrew Tridgell <tridge@samba.org>2009-09-08 11:52:45 +1000
commit91805627c9b845cfb47d2d8af9535b2929f093f5 (patch)
tree413841241c01d4bf34b64417b64ad7f9eb3c2575 /source4/rpc_server/drsuapi/drsutil.c
parent783cde79667fbc91213733b0e85e596fc8173cea (diff)
downloadsamba-91805627c9b845cfb47d2d8af9535b2929f093f5.tar.gz
samba-91805627c9b845cfb47d2d8af9535b2929f093f5.tar.bz2
samba-91805627c9b845cfb47d2d8af9535b2929f093f5.zip
s4: implemented server side of DSUpdateRefs call
This call is made by DCs to tell us we should notify them of directory changes
Diffstat (limited to 'source4/rpc_server/drsuapi/drsutil.c')
-rw-r--r--source4/rpc_server/drsuapi/drsutil.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/source4/rpc_server/drsuapi/drsutil.c b/source4/rpc_server/drsuapi/drsutil.c
new file mode 100644
index 0000000000..f14c072c59
--- /dev/null
+++ b/source4/rpc_server/drsuapi/drsutil.c
@@ -0,0 +1,47 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ useful utilities for the DRS server
+
+ Copyright (C) Andrew Tridgell 2009
+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "librpc/gen_ndr/ndr_drsuapi.h"
+#include "rpc_server/dcerpc_server.h"
+#include "rpc_server/common/common.h"
+#include "rpc_server/drsuapi/dcesrv_drsuapi.h"
+#include "dsdb/samdb/samdb.h"
+#include "lib/ldb/include/ldb_errors.h"
+#include "param/param.h"
+#include "librpc/gen_ndr/ndr_drsblobs.h"
+#include "libcli/security/dom_sid.h"
+
+/*
+ format a drsuapi_DsReplicaObjectIdentifier naming context as a string
+ */
+char *drs_ObjectIdentifier_to_string(TALLOC_CTX *mem_ctx,
+ struct drsuapi_DsReplicaObjectIdentifier *nc)
+{
+ char *guid, *sid, *ret;
+ guid = GUID_string(mem_ctx, &nc->guid);
+ sid = dom_sid_string(mem_ctx, &nc->sid);
+ ret = talloc_asprintf(mem_ctx, "<GUID=%s>;<SID=%s>;%s",
+ guid, sid, nc->dn);
+ talloc_free(guid);
+ talloc_free(sid);
+ return ret;
+}