summaryrefslogtreecommitdiff
path: root/source3/librpc/rpc/dcerpc_ep.c
blob: bf193662aad0cf244f9e0746b587fa062dcaaf0c (plain)
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
/*
 *  Endpoint Mapper Functions
 *  DCERPC local endpoint mapper client routines
 *  Copyright (c) 2010      Andreas Schneider.
 *
 *  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/rpc/dcerpc.h"
#include "librpc/rpc/dcerpc_ep.h"
#include "librpc/gen_ndr/cli_epmapper.h"

#define EPM_MAX_ANNOTATION_SIZE 64

static NTSTATUS ep_register(const struct ndr_interface_table *iface,
			    const struct dcerpc_binding_vector *bind_vec,
			    const struct GUID *object_guid,
			    const char *annotation,
			    uint32_t replace)
{
	struct dcerpc_binding_handle *h = NULL;
	static struct client_address client_id;
	struct epm_entry_t *entries;
	uint32_t num_ents, i;
	TALLOC_CTX *tmp_ctx;
	NTSTATUS result = NT_STATUS_OK;
	NTSTATUS status;

	if (iface == NULL) {
		return NT_STATUS_INVALID_PARAMETER;
	}

	if (bind_vec == NULL || bind_vec->count == 0) {
		return NT_STATUS_INVALID_PARAMETER;
	}

	tmp_ctx = talloc_stackframe();
	if (tmp_ctx == NULL) {
		return NT_STATUS_NO_MEMORY;
	}

#if 0
	/* NOTE: Samba3 doesn't have a ncalrpc server component yet. As soon as
	 * this is supported, we should talk to the endpoint mapper over the
	 * local transport.
	 */

	/* Connect to the endpoint mapper locally */
	ncalrpc_sock = talloc_asprintf(tmp_ctx,
				      "%s/%s",
				      get_dyn_NCALRPCDIR(),
				      "epmapper");
	if (ncalrpc_sock == NULL) {
		status = NT_STATUS_NO_MEMORY;
		goto done;
	}

	status = rpc_pipe_open_ncalrpc(tmp_ctx,
				       ncalrpc_sock,
				       &ndr_table_epmapper.syntax_id,
				       &cli);
	if (!NT_STATUS_IS_OK(status)) {
		goto done;
	}
#endif

	strlcpy(client_id.addr, "localhost", sizeof(client_id.addr));
	client_id.name = "localhost";

	status = rpcint_binding_handle(tmp_ctx,
				       &ndr_table_epmapper,
				       &client_id,
				       get_server_info_system(),
				       server_messaging_context(),
				       &h);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(0, ("dcerpc_ep_register: Could not connect to epmapper (%s)",
			  nt_errstr(status)));
		goto done;
	}

	num_ents = bind_vec->count;
	entries = talloc_array(tmp_ctx, struct epm_entry_t, num_ents);

	for (i = 0; i < num_ents; i++) {
		struct dcerpc_binding *map_binding = &bind_vec->bindings[i];
		struct epm_twr_t *map_tower;

		map_tower = talloc_zero(entries, struct epm_twr_t);
		if (map_tower == NULL) {
			goto done;
		}

		status = dcerpc_binding_build_tower(entries,
						    map_binding,
						    &map_tower->tower);
		if (!NT_STATUS_IS_OK(status)) {
			goto done;
		}

		entries[i].tower = map_tower;
		entries[i].annotation = talloc_strndup(entries, annotation,
						       EPM_MAX_ANNOTATION_SIZE);
		if (entries[i].annotation == NULL) {
			status = NT_STATUS_NO_MEMORY;
			goto done;
		}
		if (object_guid != NULL) {
			entries[i].object = *object_guid;
		} else {
			entries[i].object = map_binding->object.uuid;
		}
	}

	status = dcerpc_epm_Insert(h,
				   tmp_ctx,
				   num_ents,
				   entries,
				   replace,
				   &result);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(0, ("dcerpc_ep_register: Could not insert tower (%s)\n",
			  nt_errstr(status)));
		goto done;
	}
	if (!NT_STATUS_IS_OK(result)) {
		DEBUG(0, ("dcerpc_ep_register: Could not insert tower (%s)\n",
			  nt_errstr(result)));
		status = result;
		goto done;
	}

done:
	talloc_free(tmp_ctx);

	return status;
}

NTSTATUS dcerpc_ep_register(const struct ndr_interface_table *iface,
			    const struct dcerpc_binding_vector *bind_vec,
			    const struct GUID *object_guid,
			    const char *annotation)
{
	return ep_register(iface, bind_vec, object_guid, annotation, 1);
}

NTSTATUS dcerpc_ep_register_noreplace(const struct ndr_interface_table *iface,
				      const struct dcerpc_binding_vector *bind_vec,
				      const struct GUID *object_guid,
				      const char *annotation)
{
	return ep_register(iface, bind_vec, object_guid, annotation, 0);
}

/* vim: set ts=8 sw=8 noet cindent syntax=c.doxygen: */