summaryrefslogtreecommitdiff
path: root/klibc/klibc/inet/bindresvport.c
blob: b5f327bb33091a89027fc9f1834460f7491171ef (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
/*
 * inet/bindresvport.c
 */

#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <string.h>
#include <unistd.h>

#define START_PORT	600
#define END_PORT	(IPPORT_RESERVED - 1)
#define NUM_PORTS	(END_PORT - START_PORT)

int bindresvport(int sd, struct sockaddr_in *sin)
{
	struct sockaddr_in me;
	static short port;
	int ret = 0;
	int i;

	if (sin == NULL) {
		sin = &me;
		memset(sin, 0, sizeof(me));
		sin->sin_port = AF_INET;
	}
	else if (sin->sin_family != AF_INET) {
		errno = EPFNOSUPPORT;
		ret = -1;
		goto bail;
	}
	
	if (port == 0) {
		port = START_PORT + (getpid() % NUM_PORTS);
	}
	
	for (i = 0; i < NUM_PORTS; i++, port++) {
		sin->sin_port = htons(port);
		if ((ret = bind(sd, sin, sizeof(*sin))) != -1)
			break;
		if (port == END_PORT)
			port = START_PORT;
	}

 bail:
	return ret;
}