summaryrefslogtreecommitdiff
path: root/source4/lib/socket/socket_ipv4.c
blob: 9246ac4070af9e727fe00b5065a97f6b38427268 (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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/* 
   Unix SMB/CIFS implementation.
   Socket IPv4 functions
   Copyright (C) Stefan Metzmacher 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"

static NTSTATUS ipv4_tcp_init(struct socket_context *sock)
{
	sock->fd = socket(PF_INET, SOCK_STREAM, 0);
	if (sock->fd == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */ 
		return NT_STATUS_FOOBAR;
	}

	return NT_STATUS_OK;
}

static void ipv4_tcp_close(struct socket_context *sock)
{
	close(sock->fd);
}

static NTSTATUS ipv4_tcp_connect(struct socket_context *sock,
					const char *my_address, int my_port,
					const char *srv_address, int srv_port,
					uint32_t flags)
{
	struct sockaddr_in my_addr;
	struct sockaddr_in srv_addr;
	struct in_addr my_ip;
	struct in_addr srv_ip;
	int ret;

	ret = inet_aton(my_address, &my_ip);
	if (ret == 0) {
		/* not a valid ipv4 address */
		return NT_STATUS_FOOBAR;
	}

	ZERO_STRUCT(my_addr);
#ifdef HAVE_SOCK_SIN_LEN
	my_addr.sin_len		= sizeof(my_addr);
#endif
	my_addr.sin_addr	= my_ip;
	my_addr.sin_port	= htons(my_port);
	my_addr.sin_family	= PF_INET;

	ret = inet_aton(srv_address, &srv_ip);
	if (ret == 0) {
		/* not a valid ipv4 address */
		return NT_STATUS_FOOBAR;
	}

	ret = bind(sock->fd, &my_addr, sizeof(my_addr));
	if (ret == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */
		return NT_STATUS_FOOBAR;
	}

	ZERO_STRUCT(srv_addr);
#ifdef HAVE_SOCK_SIN_LEN
	srv_addr.sin_len	= sizeof(srv_addr);
#endif
	srv_addr.sin_addr	= srv_ip;
	srv_addr.sin_port	= htons(srv_port);
	srv_addr.sin_family	= PF_INET;

	if (!(flags & SOCKET_FLAG_BLOCK)) {
		ret = set_blocking(sock->fd, False);
		if (ret == -1) {
			/* TODO: we need to map from errno to NTSTATUS here! */
			return NT_STATUS_FOOBAR;
		}
	}


	ret = connect(sock->fd, &srv_addr, sizeof(srv_addr));
	if (ret == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */
		return NT_STATUS_FOOBAR;
	}

	sock->state = SOCKET_STATE_CLIENT_CONNECTED;

	return NT_STATUS_OK;
}

static NTSTATUS ipv4_tcp_listen(struct socket_context *sock,
					const char *my_address, int port,
					int queue_size, uint32_t flags)
{
	struct sockaddr_in my_addr;
	struct in_addr ip_addr;
	int ret;

	ZERO_STRUCT(my_addr);

	ret = inet_aton(my_address, &ip_addr);
	if (ret == 0) {
		/* not a valid ipv4 address */
		return NT_STATUS_FOOBAR;
	}

#ifdef HAVE_SOCK_SIN_LEN
	my_addr.sin_len		= sizeof(my_addr);
#endif
	my_addr.sin_addr	= ip_addr;
	my_addr.sin_port	= htons(port);
	my_addr.sin_family	= PF_INET;

	ret = bind(sock->fd, &my_addr, sizeof(my_addr));
	if (ret == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */
		return NT_STATUS_FOOBAR;
	}

	ret = listen(sock->fd, queue_size);
	if (ret == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */
		return NT_STATUS_FOOBAR;
	}

	if (!(flags & SOCKET_FLAG_BLOCK)) {
		ret = set_blocking(sock->fd, False);
		if (ret == -1) {
			/* TODO: we need to map from errno to NTSTATUS here! */
			return NT_STATUS_FOOBAR;
		}
	}

	return NT_STATUS_NOT_IMPLEMENTED;
}

static NTSTATUS ipv4_tcp_accept(struct socket_context *sock, struct socket_context **new_sock, uint32_t flags)
{
	struct sockaddr_in cli_addr;
	socklen_t cli_addr_len = 0;
	int new_fd;

	new_fd = accept(sock->fd, &cli_addr, &cli_addr_len);
	if (new_fd == -1) {
		/* TODO: we need to map from errno to NTSTATUS here! */
		return NT_STATUS_FOOBAR;
	}

	/* TODO: we could add a 'accept_check' hook here
	 *	 which get the black/white lists via socket_set_accept_filter()
	 *	 or something like that
	 *	 --metze
	 */

	(*new_sock) = talloc_p(NULL, struct socket_context);
	if (!(*new_sock)) {
		return NT_STATUS_NO_MEMORY;
	}

	/* copy the socket_context */
	(*new_sock)->type		= sock->type;
	(*new_sock)->state		= SOCKET_STATE_SERVER_CONNECTED;
	(*new_sock)->flags		= flags;

	(*new_sock)->fd			= new_fd;

	(*new_sock)->private_data	= NULL;
	(*new_sock)->ops		= sock->ops;

	return NT_STATUS_OK;
}

static NTSTATUS ipv4_tcp_recv(struct socket_context *sock, TALLOC_CTX *mem_ctx,
					DATA_BLOB *blob, size_t wantlen, uint32_t flags)
{
	ssize_t gotlen;
	void *buf;
	int flgs = 0;

	buf = talloc(mem_ctx, wantlen);
	if (!buf) {
		return NT_STATUS_NO_MEMORY;
	}

	/* TODO: we need to map all flags here */
	if (flags & SOCKET_FLAG_PEEK) {
		flgs |= MSG_PEEK;
	}

	if (!(flags & SOCKET_FLAG_BLOCK)) {
		flgs |= MSG_DONTWAIT;
	}

	gotlen = recv(sock->fd, buf, wantlen, flgs);
	if (gotlen == 0) {
		talloc_free(buf);
		return NT_STATUS_END_OF_FILE;
	} else if (gotlen == -1) {
		NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
		switch (errno) {
			case EBADF:
			case ENOTCONN:
			case ENOTSOCK:
			case EFAULT:
			case EINVAL:
				status = NT_STATUS_INVALID_PARAMETER;
				break;
			case EAGAIN:
			case EINTR:
				status = STATUS_MORE_ENTRIES;
				break;
			case ECONNREFUSED:
				status = NT_STATUS_CONNECTION_REFUSED;
				break;
		}
		talloc_free(buf);
		return status;
	}

	blob->length = gotlen;
	blob->data = talloc_realloc(buf, gotlen);
	if (!blob->data) {
		return NT_STATUS_NO_MEMORY;
	}

	return NT_STATUS_OK;
}

static NTSTATUS ipv4_tcp_send(struct socket_context *sock, TALLOC_CTX *mem_ctx,
					const DATA_BLOB *blob, size_t *sendlen, uint32_t flags)
{
	ssize_t len;
	int flgs = 0;

	/* TODO: we need to map all flags here */
	if (!(flags & SOCKET_FLAG_BLOCK)) {
		flgs |= MSG_DONTWAIT;
	}

	len = send(sock->fd, blob->data, blob->length, flgs);
	if (len == -1) {
		NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
		switch (errno) {
			case EBADF:
			case ENOTSOCK:
			case EFAULT:
			case EINVAL:
				status = NT_STATUS_INVALID_PARAMETER;
				break;
			case EMSGSIZE:
				status = NT_STATUS_INVALID_BUFFER_SIZE;
				break;
			case EAGAIN:
			/*case EWOULDBLOCK: this is an alis of EAGAIN --metze */
			case EINTR:
				*sendlen = 0;
				status = STATUS_MORE_ENTRIES;
				break;
			case ENOBUFS:
				status = NT_STATUS_FOOBAR;
				break;
			case ENOMEM:
				status = NT_STATUS_NO_MEMORY;
				break;
			case EPIPE:
				status = NT_STATUS_CONNECTION_DISCONNECTED;
				break;
		}
		return status;
	}	

	*sendlen = len;

	return NT_STATUS_OK;
}

static NTSTATUS ipv4_tcp_set_option(struct socket_context *sock, const char *option, const char *val)
{
	set_socket_options(sock->fd, option);
	return NT_STATUS_OK;
}

static char *ipv4_tcp_get_peer_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx)
{
	return NULL;
}

static int ipv4_tcp_get_peer_port(struct socket_context *sock, TALLOC_CTX *mem_ctx)
{
	return -1;
}

static char *ipv4_tcp_get_my_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx)
{
	return NULL;
}

static int ipv4_tcp_get_my_port(struct socket_context *sock, TALLOC_CTX *mem_ctx)
{
	return -1;
}

static int ipv4_tcp_get_fd(struct socket_context *sock, TALLOC_CTX *mem_ctx)
{
	return sock->fd;
}

static const struct socket_ops ipv4_tcp_ops = {
	.name		= "ipv4",
	.type		= SOCKET_TYPE_STREAM,

	.init		= ipv4_tcp_init,
	.connect	= ipv4_tcp_connect,
	.listen		= ipv4_tcp_listen,
	.accept		= ipv4_tcp_accept,
	.recv		= ipv4_tcp_recv,
	.send		= ipv4_tcp_send,
	.close		= ipv4_tcp_close,

	.set_option	= ipv4_tcp_set_option,

	.get_peer_addr	= ipv4_tcp_get_peer_addr,
	.get_peer_port	= ipv4_tcp_get_peer_port,
	.get_my_addr	= ipv4_tcp_get_my_addr,
	.get_my_port	= ipv4_tcp_get_my_port,

	.get_fd		= ipv4_tcp_get_fd
};

const struct socket_ops *socket_ipv4_ops(void)
{
	return &ipv4_tcp_ops;
}

NTSTATUS socket_ipv4_init(void)
{
	return NT_STATUS_OK;
}