ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/sockinfo.C
Revision: 1.10
Committed: Thu Oct 16 02:41:21 2003 UTC (20 years, 7 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: poll-based-iom, VPE_1_2
Changes since 1.9: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*
2 sockinfo.C -- socket address management
3 Copyright (C) 2003 Marc Lehmann <pcg@goof.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20 #include "config.h"
21
22 #include <arpa/inet.h>
23 #include <netdb.h>
24
25 #include "gettext.h"
26
27 #include "sockinfo.h"
28 #include "slog.h"
29
30 // all ipv4-based protocols
31 #define PROTv4 (PROT_UDPv4 | PROT_TCPv4 | PROT_ICMPv4 | PROT_IPv4)
32
33 void sockinfo::set (const sockaddr_in *sa, u8 prot_)
34 {
35 host = sa->sin_addr.s_addr;
36 port = prot_ & (PROT_IPv4 | PROT_ICMPv4) ? 0 : sa->sin_port;
37 prot = prot_;
38 }
39
40 void sockinfo::set (const char *hostname, u16 port_, u8 prot_)
41 {
42 prot = prot_;
43 host = 0;
44 port = htons (port_);
45
46 if (prot & PROTv4
47 && hostname)
48 {
49 struct hostent *he = gethostbyname (hostname);
50
51 if (he
52 && he->h_addrtype == AF_INET && he->h_length == 4 && he->h_addr_list[0])
53 {
54 //sa->sin_family = he->h_addrtype;
55 memcpy (&host, he->h_addr_list[0], 4);
56 }
57 else
58 slog (L_NOTICE, _("unable to resolve host '%s'"), hostname);
59 }
60 }
61
62 void
63 sockinfo::set (const conf_node *conf, u8 prot_)
64 {
65 set (conf->hostname,
66 prot_ == PROT_UDPv4 ? conf->udp_port
67 : prot_ == PROT_TCPv4 ? conf->tcp_port
68 : 0,
69 prot_);
70 }
71
72 const sockaddr *
73 sockinfo::sav4() const
74 {
75 static sockaddr_in sa;
76
77 sa.sin_family = AF_INET;
78 sa.sin_port = port;
79 sa.sin_addr.s_addr = host;
80
81 return (const sockaddr *)&sa;
82 }
83
84 static char hostport[10 + 15 + 1 + 5 + 1]; // proto / IPv4 : port
85
86 const char *
87 sockinfo::ntoa () const
88 {
89 in_addr ia = { host };
90
91 sprintf (hostport, "%.15s", inet_ntoa (ia));
92
93 return hostport;
94 }
95
96 sockinfo::operator const char *() const
97 {
98 in_addr ia = { host };
99
100 sprintf (hostport, "%s/%.15s:%d", strprotocol (prot), inet_ntoa (ia), ntohs (port) & 0xffff);
101
102 return hostport;
103 }
104
105 u8
106 sockinfo::supported_protocols (conf_node *conf)
107 {
108 u8 protocols = prot;
109
110 if (prot & (PROT_UDPv4 | PROT_TCPv4))
111 protocols |= PROT_IPv4 | PROT_ICMPv4;
112
113 if (conf
114 && prot & PROTv4
115 && conf->protocols & PROT_UDPv4
116 && conf->udp_port)
117 protocols |= PROT_UDPv4;
118
119 if (conf
120 && prot & PROTv4
121 && conf->protocols & PROT_TCPv4
122 && conf->tcp_port)
123 protocols |= PROT_TCPv4;
124
125 return protocols;
126 }
127
128 bool
129 sockinfo::upgrade_protocol (u8 prot_, conf_node *conf)
130 {
131 if (prot_ == prot)
132 return true;
133
134 if (prot & PROTv4
135 && prot_ & PROTv4)
136 {
137 if (prot_ & (PROT_IPv4 | PROT_ICMPv4))
138 {
139 prot = prot_;
140 port = 0;
141 return true;
142 }
143
144 if (conf
145 && prot_ & PROT_UDPv4
146 && conf->protocols & PROT_UDPv4
147 && conf->udp_port)
148 {
149 prot = prot_;
150 port = htons (conf->udp_port);
151 return true;
152 }
153
154 if (conf
155 && prot_ & PROT_TCPv4
156 && conf->protocols & PROT_TCPv4
157 && conf->tcp_port)
158 {
159 prot = prot_;
160 port = htons (conf->tcp_port);
161 return true;
162 }
163 }
164
165 return false;
166 }
167
168 bool
169 operator == (const sockinfo &a, const sockinfo &b)
170 {
171 return a.host == b.host && a.port == b.port && a.prot == b.prot;
172 }
173
174 bool
175 operator < (const sockinfo &a, const sockinfo &b)
176 {
177 return a.host < b.host
178 || (a.host == b.host && (a.port < b.port
179 || (a.port == b.port && a.prot < b.prot)));
180 }
181