File: cmj_getsockaddr.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (160 lines) | stat: -rw-r--r-- 4,356 bytes parent folder | download
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
/****************************************************************
 *								*
 *	Copyright 2001, 2013 Fidelity Information Services, Inc	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

#include "mdef.h"

#include "gtm_socket.h"
#include "gtm_netdb.h"
#include "gtm_ipv6.h"
#include "gtm_stdlib.h"
#include "gtm_string.h"
#include "gtm_inet.h"
#include "gtm_ctype.h"

#include <errno.h>

#include "cmidef.h"
#include "eintr_wrappers.h"

#define IPV6_SEPARATOR ']'
#define IPV6_START '['

error_def(CMI_BADIPADDRPORT);
error_def(CMI_NOSERVENT);
error_def(ERR_TEXT);
error_def(CMI_NETFAIL);

/* writes into outport the TCP port cooresponding to tnd in NBO */
cmi_status_t cmj_getsockaddr(cmi_descriptor *nod, cmi_descriptor *tnd, struct addrinfo **ai_ptr_ptr)
{
	struct servent	*s;
	char		*tnd_str, *cp, *addr_str_ptr;
	char		addr_end;
	char		port_str[MAX_HOST_NAME_LEN], *port_str_ptr;
	char 		hn[MAX_HOST_NAME_LEN];
	int 		loop_limit = MAX_GETHOST_TRIES;
	int		tnd_len, iplen, port_len;
	struct addrinfo	hints, *ai_ptr = NULL;
	struct protoent *pe_ptr;
	int		errcode;
	int		port;

	/*
	 * address/port number determination:
	 *
	 * tnd := IP address:port for IPv4
	 * tnd := [IP address]:port for IPv6
	 *
	 * If tnd is an empty string, get port number from services database
	 *
	 */
	tnd_str = CMI_DESC_POINTER(tnd);
	tnd_len = CMI_DESC_LENGTH(tnd);
	if (tnd && (0 < tnd->len))
	{
		/* look for symbol separted ip address and port in ipv6 */
		if (IPV6_START == tnd_str[0])
		{
			if (NULL != (port_str_ptr = memchr(tnd_str, IPV6_SEPARATOR, tnd_len)))
			{
				if (0 == (iplen = (int)(port_str_ptr - &tnd_str[1])))
					return CMI_BADIPADDRPORT;
				if (iplen == tnd_len)
					return CMI_BADIPADDRPORT;
			} else
				return CMI_BADIPADDRPORT;
			addr_str_ptr = &tnd_str[1]; /* skip the '[' */
			iplen = port_str_ptr - addr_str_ptr;
			port_str_ptr += 1; /* skip the ']' */
			if (*port_str_ptr != ':')
				return CMI_BADIPADDRPORT;
			port_str_ptr += 1;
		} else
		{
			/* look for : */
			addr_str_ptr = port_str_ptr = tnd_str;
			for (iplen = 0, cp = tnd_str; cp < tnd_str + tnd_len; cp++)
			{
				if (*cp != ':' && *cp != '.' && !ISDIGIT_ASCII(*cp))
					return CMI_BADIPADDRPORT;
				if (*cp == ':')
				{
					if (0 == iplen)
					{
						if (0 == (iplen = (int)(cp - tnd_str)))
							return CMI_BADIPADDRPORT;
						port_str_ptr = (cp + 1);
					} else
						return CMI_BADIPADDRPORT;
				}
			}

		}
		port_len = (tnd_str + tnd_len) - port_str_ptr;
		if (0 >= port_len)
			return CMI_BADIPADDRPORT;
		memcpy(port_str, port_str_ptr, port_len);
		port_str[port_len] = '\0';

		if (0 != iplen)
		{	/* specified host name and port */
			addr_end = *(addr_str_ptr + iplen); /* the end can be ] or : */
			*(addr_str_ptr + iplen) = '\0';
			/* obtain ipv4/6 address for host tnd_str */
			CLIENT_HINTS(hints);
			if (0 != (errcode = getaddrinfo(addr_str_ptr, port_str, &hints, &ai_ptr)))
			{
				*(addr_str_ptr + iplen) = addr_end;
				return CMI_BADIPADDRPORT;
			}
			*(addr_str_ptr + iplen) = addr_end;
		} else
		{	/* only port is specified */
			if (NULL != nod)
			{
				assert(CMI_DESC_LENGTH(nod) < (SIZEOF(hn)-1));
				memcpy(hn, CMI_DESC_POINTER(nod), CMI_DESC_LENGTH(nod));
				hn[CMI_DESC_LENGTH(nod)] = '\0';
				CLIENT_HINTS(hints);

				while ((EAI_AGAIN == (errcode = getaddrinfo(hn, port_str, &hints, &ai_ptr))) && (0 < loop_limit))
				{
					loop_limit--;
				}
				if (0 != errcode)
					return CMI_NETFAIL;
				*ai_ptr_ptr = ai_ptr;
				return SS_NORMAL;
			}

			SERVER_HINTS(hints, (ipv4_only ? AF_INET : AF_UNSPEC));
			if (0 != (errcode = getaddrinfo(NULL, port_str, &hints, &ai_ptr)))
			{
				return CMI_BADIPADDRPORT;
			}
			iplen = -1;
		}
		errno = 0;
		port = ATOI(port_str);
		if ((0 == port) && (0 != errno) || (0 >= port))
			return CMI_BADIPADDRPORT;
	} else
	{	/* neither host nor port is specified */
		/* use the services db */
		SERVER_HINTS(hints, (ipv4_only ? AF_INET : AF_UNSPEC));
		if (0 != (errcode = getaddrinfo(NULL, GTCM_SERVER_NAME, &hints, &ai_ptr)))
		{
			return CMI_NOSERVENT;
		}
	}
	*ai_ptr_ptr = ai_ptr;
	return SS_NORMAL;
}