summaryrefslogtreecommitdiff
path: root/ccan/nfs/socket.c
blob: ea5ed9859507e4dde0453ac5cf4d1a12298b3b4d (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
/*
   Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2010
   
   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 <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <poll.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <rpc/xdr.h>
#include <arpa/inet.h>
#include <sys/ioctl.h>
#include "nfs.h"
#include "libnfs-raw.h"
#include "libnfs-private.h"
#include "dlinklist.h"

static void set_nonblocking(int fd)
{
	unsigned v;
	v = fcntl(fd, F_GETFL, 0);
        fcntl(fd, F_SETFL, v | O_NONBLOCK);
}

int rpc_get_fd(struct rpc_context *rpc)
{
	return rpc->fd;
}

int rpc_which_events(struct rpc_context *rpc)
{
	int events = POLLIN;

	if (rpc->is_connected == 0) {
		events |= POLLOUT;
	}

	if (rpc->outqueue) {
		events |= POLLOUT;
	}
	return events;
}

static int rpc_write_to_socket(struct rpc_context *rpc)
{
	ssize_t count;

	if (rpc == NULL) {
		printf("trying to write to socket for NULL context\n");
		return -1;
	}
	if (rpc->fd == -1) {
		printf("trying to write but not connected\n");
		return -2;
	}

	while (rpc->outqueue != NULL) {
		ssize_t total;

		total = rpc->outqueue->outdata.size;

		count = write(rpc->fd, rpc->outqueue->outdata.data + rpc->outqueue->written, total - rpc->outqueue->written);
		if (count == -1) {
			if (errno == EAGAIN || errno == EWOULDBLOCK) {
				printf("socket would block, return from write to socket\n");
				return 0;
			}
			printf("Error when writing to socket :%s(%d)\n", strerror(errno), errno);
			return -3;
		}

		rpc->outqueue->written += count;
		if (rpc->outqueue->written == total) {
			struct rpc_pdu *pdu = rpc->outqueue;

	       	    	DLIST_REMOVE(rpc->outqueue, pdu);
			DLIST_ADD_END(rpc->waitpdu, pdu, NULL);
		}
	}
	return 0;
}

static int rpc_read_from_socket(struct rpc_context *rpc)
{
	int available;
	int size;
	unsigned char *buf;
	ssize_t count;

	if (ioctl(rpc->fd, FIONREAD, &available) != 0) {
		rpc_set_error(rpc, "Ioctl FIONREAD returned error : %d. Closing socket.", errno);
		return -1;
	}
	if (available == 0) {
		rpc_set_error(rpc, "Socket has been closed");
		return -2;
	}
	size = rpc->insize - rpc->inpos + available;
	buf = malloc(size);
	if (buf == NULL) {
		rpc_set_error(rpc, "Out of memory: failed to allocate %d bytes for input buffer. Closing socket.", size);
		return -3;
	}
	if (rpc->insize > rpc->inpos) {
		memcpy(buf, rpc->inbuf + rpc->inpos, rpc->insize - rpc->inpos);
		rpc->insize -= rpc->inpos;
		rpc->inpos   = 0;
	}

	count = read(rpc->fd, buf + rpc->insize, available);
	if (count == -1) {
		if (errno == EINTR) {
			free(buf);
			buf = NULL;
			return 0;
		}
		rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno);
		free(buf);
		buf = NULL;
		return -4;
	}

	if (rpc->inbuf != NULL) {
		free(rpc->inbuf);
	}
	rpc->inbuf   = (char *)buf;
	rpc->insize += count;

	while (1) {
		if (rpc->insize - rpc->inpos < 4) {
			return 0;
		}
		count = rpc_get_pdu_size(rpc->inbuf + rpc->inpos);
		if (rpc->insize + rpc->inpos < count) {
			return 0;
		}
		if (rpc_process_pdu(rpc, rpc->inbuf + rpc->inpos, count) != 0) {
			rpc_set_error(rpc, "Invalid/garbage pdu received from server. Closing socket");
			return -5;
		}
		rpc->inpos += count;
		if (rpc->inpos == rpc->insize) {
			free(rpc->inbuf);
			rpc->inbuf = NULL;
			rpc->insize = 0;
			rpc->inpos = 0;
		}
	}
	return 0;
}



int rpc_service(struct rpc_context *rpc, int revents)
{
	if (revents & POLLERR) {
		printf("rpc_service: POLLERR, socket error\n");
		if (rpc->is_connected == 0) {
			rpc_set_error(rpc, "Failed to connect to server socket.");
		} else {
			rpc_set_error(rpc, "Socket closed with POLLERR");
		}
		rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data);
		return -1;
	}
	if (revents & POLLHUP) {
		printf("rpc_service: POLLHUP, socket error\n");
		rpc_set_error(rpc, "Socket failed with POLLHUP");
		rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data);
		return -2;
	}

	if (rpc->is_connected == 0 && rpc->fd != -1 && revents&POLLOUT) {
		rpc->is_connected = 1;
		rpc->connect_cb(rpc, RPC_STATUS_SUCCESS, NULL, rpc->connect_data);
		return 0;
	}

	if (revents & POLLOUT && rpc->outqueue != NULL) {
		if (rpc_write_to_socket(rpc) != 0) {
			printf("write to socket failed\n");
			return -3;
		}
	}

	if (revents & POLLIN) {
		if (rpc_read_from_socket(rpc) != 0) {
			rpc_disconnect(rpc, rpc_get_error(rpc));
			return -4;
		}
	}

	return 0;
}


int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, int use_privileged_port, rpc_cb cb, void *private_data)
{
	struct sockaddr_storage s;
	struct sockaddr_in *sin = (struct sockaddr_in *)&s;
	int socksize;

	if (rpc->fd != -1) {
		rpc_set_error(rpc, "Trying to connect while already connected");
		printf("%s\n", rpc->error_string);
		return -1;
	}

	sin->sin_family = AF_INET;
	sin->sin_port   = htons(port);
	if (inet_pton(AF_INET, server, &sin->sin_addr) != 1) {
		rpc_set_error(rpc, "Not a valid server ip address");
		printf("%s\n", rpc->error_string);
		return -2;
	}

	switch (s.ss_family) {
	case AF_INET:
		rpc->fd = socket(AF_INET, SOCK_STREAM, 0);
		socksize = sizeof(struct sockaddr_in);
		break;
	}

	if (rpc->fd == -1) {
		rpc_set_error(rpc, "Failed to open socket");
		printf("%s\n", rpc->error_string);
		return -3;
	}

	/* if we are root, try to find a privileged port to use (512 - 1023) */
	if (geteuid() == 0 && use_privileged_port != 0) {
		struct sockaddr_storage ls;
		int ret, count = 0;
		static int local_port = 0;

		if (local_port == 0) {
			srandom(getpid() ^ time(NULL));
			local_port = random()%512 + 512;
		}

		do {
			count ++;
			if (local_port >= 1024) {
				local_port = 512;
			}
			switch (s.ss_family) {
			case AF_INET:
				bzero(&ls, socksize);
				((struct sockaddr_in *)&ls)->sin_family      = AF_INET;
				((struct sockaddr_in *)&ls)->sin_addr.s_addr = INADDR_ANY;
				((struct sockaddr_in *)&ls)->sin_port        = htons(local_port++);
				break;
			}

			ret  = bind(rpc->fd, (struct sockaddr *)&ls, socksize);
		} while (ret != 0  && count < 50);
	}

	rpc->connect_cb  = cb;
	rpc->connect_data = private_data;

	set_nonblocking(rpc->fd);

	if (connect(rpc->fd, (struct sockaddr *)&s, socksize) != 0 && errno != EINPROGRESS) {
		rpc_set_error(rpc, "connect() to server failed");
		printf("%s\n", rpc->error_string);
		return -4;
	}

	return 0;
}

int rpc_disconnect(struct rpc_context *rpc, char *error)
{
	if (rpc->fd != -1) {
		close(rpc->fd);
	}
	rpc->fd  = -1;

	rpc->is_connected = 0;

	rpc_error_all_pdus(rpc, error);

	return 0;
}