summaryrefslogtreecommitdiff
path: root/source4/gtk/common/select.c
blob: 5a0480ab28cd778a5dea10e038f529a704b6e130 (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/* 
   Unix SMB/CIFS implementation.
   SMB-related GTK+ functions
   
   Copyright (C) Jelmer Vernooij 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 "librpc/gen_ndr/ndr_samr_c.h"
#include "gtk/common/select.h"
#include "gtk/common/gtk-smb.h"
#include "auth/credentials/credentials.h"

/* GtkSelectDomainDialog */

const char *gtk_select_domain_dialog_get_domain(GtkSelectDomainDialog *d)
{
	return gtk_entry_get_text(GTK_ENTRY(d->entry_domain));
}

static void gtk_select_domain_dialog_init (GtkSelectDomainDialog *select_domain_dialog)
{
	GtkWidget *dialog_vbox1;
	GtkWidget *hbox1;
	GtkWidget *label1;
	GtkWidget *scrolledwindow1;
	GtkWidget *dialog_action_area1;
	GtkWidget *cancelbutton1;
	GtkWidget *okbutton1;
	GtkCellRenderer *renderer;
	GtkTreeViewColumn *curcol;

	gtk_window_set_title (GTK_WINDOW (select_domain_dialog), "Select Domain");

	dialog_vbox1 = GTK_DIALOG (select_domain_dialog)->vbox;

	hbox1 = gtk_hbox_new (FALSE, 0);
	gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0);

	label1 = gtk_label_new ("Domain:");
	gtk_box_pack_start (GTK_BOX (hbox1), label1, FALSE, FALSE, 0);

	select_domain_dialog->entry_domain = gtk_entry_new ();
	gtk_box_pack_start (GTK_BOX (hbox1), select_domain_dialog->entry_domain, TRUE, TRUE, 0);

	scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL);
	gtk_box_pack_start (GTK_BOX (dialog_vbox1), scrolledwindow1, TRUE, TRUE, 0);

	select_domain_dialog->list_domains = gtk_tree_view_new ();
	gtk_container_add (GTK_CONTAINER (scrolledwindow1), select_domain_dialog->list_domains);

	curcol = gtk_tree_view_column_new ();
	gtk_tree_view_column_set_title(curcol, "Name");
	renderer = gtk_cell_renderer_text_new();
	gtk_tree_view_column_pack_start(curcol, renderer, True);
	gtk_tree_view_append_column(GTK_TREE_VIEW(select_domain_dialog->list_domains), curcol);
	gtk_tree_view_column_add_attribute(curcol, renderer, "text", 0);

	select_domain_dialog->store_domains = gtk_list_store_new(1, G_TYPE_STRING);
	gtk_tree_view_set_model(GTK_TREE_VIEW(select_domain_dialog->list_domains), GTK_TREE_MODEL(select_domain_dialog->store_domains));
	g_object_unref(select_domain_dialog->store_domains);

	dialog_action_area1 = GTK_DIALOG (select_domain_dialog)->action_area;
	gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END);

	cancelbutton1 = gtk_button_new_from_stock ("gtk-cancel");
	gtk_dialog_add_action_widget (GTK_DIALOG (select_domain_dialog), cancelbutton1, GTK_RESPONSE_CANCEL);
	GTK_WIDGET_SET_FLAGS (cancelbutton1, GTK_CAN_DEFAULT);

	okbutton1 = gtk_button_new_from_stock ("gtk-ok");
	gtk_dialog_add_action_widget (GTK_DIALOG (select_domain_dialog), okbutton1, GTK_RESPONSE_OK);
	gtk_widget_show_all(dialog_vbox1);
	GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT);
}

struct policy_handle gtk_select_domain_dialog_get_handle(GtkSelectDomainDialog *d)
{
	struct policy_handle h;
	
	
	/* FIXME */
	return h;
}

GType gtk_select_domain_dialog_get_type (void)
{
	static GType mytype = 0;

	if (!mytype)
	{
		static const GTypeInfo myinfo =
		{
			sizeof (GtkSelectDomainDialogClass),
			NULL,
			NULL,
			NULL,
			NULL,
			NULL,
			sizeof(GtkSelectDomainDialog),
			0,
			(GInstanceInitFunc) gtk_select_domain_dialog_init,
		};

		mytype = g_type_register_static (GTK_TYPE_DIALOG,
										 "GtkSelectDomainDialog", &myinfo, 0);
	}

	return mytype;
}
                                                                                                                             
GtkWidget *gtk_select_domain_dialog_new (struct dcerpc_pipe *sam_pipe)
{
	GtkSelectDomainDialog *d = g_object_new(gtk_select_domain_dialog_get_type (), NULL);
	NTSTATUS status;
	struct samr_EnumDomains r;
	struct samr_Connect cr;
	struct samr_Close dr;
	struct policy_handle handle;
	uint32_t resume_handle = 0;
	int i;
	TALLOC_CTX *mem_ctx = talloc_init("gtk_select_domain_dialog_new");

	d->sam_pipe = sam_pipe;

	cr.in.system_name = 0;
	cr.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
	cr.out.connect_handle = &handle;

	status = dcerpc_samr_Connect(sam_pipe, mem_ctx, &cr);
	if (!NT_STATUS_IS_OK(status)) {
		gtk_show_ntstatus(NULL, "Running Connect on SAMR", status);
		talloc_free(mem_ctx);
		return GTK_WIDGET(d);
	}

	r.in.connect_handle = &handle;
	r.in.resume_handle = &resume_handle;
	r.in.buf_size = (uint32_t)-1;
	r.out.resume_handle = &resume_handle;

	status = dcerpc_samr_EnumDomains(sam_pipe, mem_ctx, &r);
	if (!NT_STATUS_IS_OK(status)) {
		gtk_show_ntstatus(NULL, "Enumerating domains", status);
	} else if (r.out.sam) {
		for (i=0;i<r.out.sam->count;i++) {
			GtkTreeIter iter;
			gtk_list_store_append(d->store_domains, &iter);
			gtk_list_store_set (d->store_domains, &iter, 0, r.out.sam->entries[i].name.string, -1);
		}
	}

	dr.in.handle = &handle;
	dr.out.handle = &handle;

	status = dcerpc_samr_Close(sam_pipe, mem_ctx, &dr);
	if (!NT_STATUS_IS_OK(status)) {
		gtk_show_ntstatus(NULL, "Closing SAMR connection", status);
		talloc_free(mem_ctx);
		return GTK_WIDGET ( d );
	}

	talloc_free(mem_ctx);

	return GTK_WIDGET ( d );
}


/* GtkSelectHostDialog */
const char *gtk_select_host_dialog_get_host (GtkSelectHostDialog *d)
{
	return gtk_entry_get_text(GTK_ENTRY(d->entry_host));
}

static void gtk_select_host_dialog_init (GtkSelectHostDialog *select_host_dialog)
{
	GtkWidget *dialog_vbox2;
	GtkWidget *hbox2;
	GtkWidget *label2;
	GtkWidget *scrolledwindow2;
	GtkWidget *dialog_action_area2;
	GtkWidget *cancelbutton2;
	GtkWidget *okbutton2;

	gtk_window_set_title (GTK_WINDOW (select_host_dialog), "Select Host");

	dialog_vbox2 = GTK_DIALOG (select_host_dialog)->vbox;

	hbox2 = gtk_hbox_new (FALSE, 0);
	gtk_box_pack_start (GTK_BOX (dialog_vbox2), hbox2, TRUE, TRUE, 0);

	label2 = gtk_label_new ("Host");
	gtk_box_pack_start (GTK_BOX (hbox2), label2, FALSE, FALSE, 0);

	select_host_dialog->entry_host = gtk_entry_new ();
	gtk_box_pack_start (GTK_BOX (hbox2), select_host_dialog->entry_host, TRUE, TRUE, 0);

	scrolledwindow2 = gtk_scrolled_window_new (NULL, NULL);
	gtk_box_pack_start (GTK_BOX (dialog_vbox2), scrolledwindow2, TRUE, TRUE, 0);

	select_host_dialog->tree_host = gtk_tree_view_new ();
	gtk_container_add (GTK_CONTAINER (scrolledwindow2), select_host_dialog->tree_host);

	select_host_dialog->store_host = gtk_tree_store_new(1, G_TYPE_STRING);
	gtk_tree_view_set_model(GTK_TREE_VIEW(select_host_dialog->tree_host), GTK_TREE_MODEL(select_host_dialog->store_host));
	g_object_unref(select_host_dialog->store_host); 

	dialog_action_area2 = GTK_DIALOG (select_host_dialog)->action_area;
	gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area2), GTK_BUTTONBOX_END);

	cancelbutton2 = gtk_button_new_from_stock ("gtk-cancel");
	gtk_dialog_add_action_widget (GTK_DIALOG (select_host_dialog), cancelbutton2, GTK_RESPONSE_CANCEL);
	GTK_WIDGET_SET_FLAGS (cancelbutton2, GTK_CAN_DEFAULT);

	okbutton2 = gtk_button_new_from_stock ("gtk-ok");
	gtk_widget_show_all (dialog_vbox2);
	gtk_dialog_add_action_widget (GTK_DIALOG (select_host_dialog), okbutton2, GTK_RESPONSE_OK);
	GTK_WIDGET_SET_FLAGS (okbutton2, GTK_CAN_DEFAULT);
}

GType gtk_select_host_dialog_get_type (void)
{
	static GType mytype = 0;

	if (!mytype)
	{
		static const GTypeInfo myinfo =
		{
			sizeof (GtkSelectHostDialogClass),
			NULL,
			NULL,
			NULL,
			NULL,
			NULL,
			sizeof(GtkSelectHostDialog),
			0,
			(GInstanceInitFunc) gtk_select_host_dialog_init,
		};

		mytype = g_type_register_static (GTK_TYPE_DIALOG,
										 "GtkSelectHostDialog", &myinfo, 0);
	}

	return mytype;
}
                                                                                                                             
GtkWidget *gtk_select_host_dialog_new (struct dcerpc_pipe *sam_pipe)
{
        return GTK_WIDGET ( g_object_new (gtk_select_host_dialog_get_type (), NULL ));
}

/**
 * Connect to a specific interface, but ask the user 
 * for information not specified
 */
struct dcerpc_pipe *gtk_connect_rpc_interface(TALLOC_CTX *mem_ctx, const struct dcerpc_interface_table *table)
{
	GtkRpcBindingDialog *d;
	NTSTATUS status;
	struct dcerpc_pipe *pipe;
	struct cli_credentials *cred;
	gint result;

	d = GTK_RPC_BINDING_DIALOG(gtk_rpc_binding_dialog_new(NULL));
	result = gtk_dialog_run(GTK_DIALOG(d));

	if (result != GTK_RESPONSE_ACCEPT) {
		gtk_widget_destroy(GTK_WIDGET(d));
		return NULL;
	}

	cred = cli_credentials_init(mem_ctx);
	cli_credentials_guess(cred);
	cli_credentials_set_gtk_callbacks(cred);

	status = dcerpc_pipe_connect_b(mem_ctx, &pipe,
				       gtk_rpc_binding_dialog_get_binding(d, mem_ctx),
				       table, cred, NULL);

	if(!NT_STATUS_IS_OK(status)) {
		gtk_show_ntstatus(NULL, "While connecting to interface", status);
		gtk_widget_destroy(GTK_WIDGET(d));
		talloc_free(cred);
		return NULL;
	}

	gtk_widget_destroy(GTK_WIDGET(d));
	
	talloc_free(cred);

	return pipe;
}