pt_tcp.c revision 1.14 1 1.14 itojun /* $NetBSD: pt_tcp.c,v 1.14 2000/12/31 06:03:53 itojun Exp $ */
2 1.7 cgd
3 1.1 cgd /*
4 1.11 lukem * Copyright (c) 1992, 1993, 1994
5 1.1 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software donated to Berkeley by
8 1.1 cgd * Jan-Simon Pendry.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd *
38 1.5 mycroft * from: Id: pt_tcp.c,v 1.1 1992/05/25 21:43:09 jsp Exp
39 1.11 lukem * @(#)pt_tcp.c 8.5 (Berkeley) 4/28/95
40 1.1 cgd */
41 1.1 cgd
42 1.10 lukem #include <sys/cdefs.h>
43 1.10 lukem #ifndef lint
44 1.14 itojun __RCSID("$NetBSD: pt_tcp.c,v 1.14 2000/12/31 06:03:53 itojun Exp $");
45 1.10 lukem #endif /* not lint */
46 1.10 lukem
47 1.1 cgd #include <stdio.h>
48 1.1 cgd #include <unistd.h>
49 1.1 cgd #include <stdlib.h>
50 1.1 cgd #include <errno.h>
51 1.13 perry #include <string.h>
52 1.1 cgd #include <sys/types.h>
53 1.1 cgd #include <sys/param.h>
54 1.1 cgd #include <sys/syslog.h>
55 1.1 cgd #include <sys/socket.h>
56 1.1 cgd #include <netinet/in.h>
57 1.5 mycroft #include <arpa/inet.h>
58 1.1 cgd #include <netdb.h>
59 1.1 cgd
60 1.1 cgd #include "portald.h"
61 1.1 cgd
62 1.1 cgd /*
63 1.1 cgd * Key will be tcp/host/port[/"priv"]
64 1.1 cgd * Create a TCP socket connected to the
65 1.1 cgd * requested host and port.
66 1.1 cgd * Some trailing suffix values have special meanings.
67 1.1 cgd * An unrecognised suffix is an error.
68 1.1 cgd */
69 1.10 lukem int
70 1.10 lukem portal_tcp(pcr, key, v, kso, fdp)
71 1.10 lukem struct portal_cred *pcr;
72 1.10 lukem char *key;
73 1.10 lukem char **v;
74 1.10 lukem int kso;
75 1.10 lukem int *fdp;
76 1.1 cgd {
77 1.1 cgd char host[MAXHOSTNAMELEN];
78 1.1 cgd char port[MAXHOSTNAMELEN];
79 1.1 cgd char *p = key + (v[1] ? strlen(v[1]) : 0);
80 1.1 cgd char *q;
81 1.14 itojun int priv = 0;
82 1.14 itojun #ifdef INET6
83 1.14 itojun struct addrinfo hints, *res, *lres;
84 1.14 itojun int so = -1;
85 1.14 itojun const char *cause = "unknown";
86 1.14 itojun #else /* ! INET6 */
87 1.1 cgd struct hostent *hp;
88 1.1 cgd struct servent *sp;
89 1.1 cgd struct in_addr **ipp;
90 1.1 cgd struct in_addr *ip[2];
91 1.1 cgd struct in_addr ina;
92 1.1 cgd int s_port;
93 1.1 cgd struct sockaddr_in sain;
94 1.14 itojun #endif
95 1.1 cgd
96 1.1 cgd q = strchr(p, '/');
97 1.1 cgd if (q == 0 || q - p >= sizeof(host))
98 1.1 cgd return (EINVAL);
99 1.1 cgd *q = '\0';
100 1.1 cgd strcpy(host, p);
101 1.3 cgd p = q + 1;
102 1.1 cgd
103 1.1 cgd q = strchr(p, '/');
104 1.3 cgd if (q)
105 1.3 cgd *q = '\0';
106 1.3 cgd if (strlen(p) >= sizeof(port))
107 1.1 cgd return (EINVAL);
108 1.1 cgd strcpy(port, p);
109 1.3 cgd if (q) {
110 1.3 cgd p = q + 1;
111 1.3 cgd if (strcmp(p, "priv") == 0) {
112 1.3 cgd if (pcr->pcr_uid == 0)
113 1.3 cgd priv = 1;
114 1.3 cgd else
115 1.3 cgd return (EPERM);
116 1.3 cgd } else {
117 1.3 cgd return (EINVAL);
118 1.3 cgd }
119 1.3 cgd }
120 1.1 cgd
121 1.14 itojun #ifdef INET6
122 1.14 itojun memset(&hints, 0, sizeof(hints));
123 1.14 itojun hints.ai_family = PF_UNSPEC;
124 1.14 itojun hints.ai_socktype = SOCK_STREAM;
125 1.14 itojun hints.ai_protocol = 0;
126 1.14 itojun if (getaddrinfo(host, port, &hints, &res) != 0)
127 1.14 itojun return(EINVAL);
128 1.14 itojun
129 1.14 itojun for (lres = res; lres; lres = lres->ai_next) {
130 1.14 itojun if (priv)
131 1.14 itojun so = rresvport((int *) 0);
132 1.14 itojun else
133 1.14 itojun so = socket(lres->ai_family, lres->ai_socktype,
134 1.14 itojun lres->ai_protocol);
135 1.14 itojun if (so < 0) {
136 1.14 itojun cause = "socket";
137 1.14 itojun continue;
138 1.14 itojun }
139 1.14 itojun
140 1.14 itojun if (connect(so, lres->ai_addr, lres->ai_addrlen) != 0) {
141 1.14 itojun cause = "connect";
142 1.14 itojun (void)close(so);
143 1.14 itojun so = -1;
144 1.14 itojun continue;
145 1.14 itojun }
146 1.14 itojun
147 1.14 itojun *fdp = so;
148 1.14 itojun errno = 0;
149 1.14 itojun break;
150 1.14 itojun }
151 1.14 itojun
152 1.14 itojun if (so < 0)
153 1.14 itojun syslog(LOG_ERR, "%s: %m", cause);
154 1.14 itojun
155 1.14 itojun freeaddrinfo(res);
156 1.14 itojun #else /* ! INET6 */
157 1.9 mycroft if (inet_aton(host, &ina) == 0) {
158 1.9 mycroft hp = gethostbyname(host);
159 1.9 mycroft if (hp == 0)
160 1.9 mycroft return (EINVAL);
161 1.1 cgd ipp = (struct in_addr **) hp->h_addr_list;
162 1.1 cgd } else {
163 1.1 cgd ip[0] = &ina;
164 1.1 cgd ip[1] = 0;
165 1.1 cgd ipp = ip;
166 1.1 cgd }
167 1.1 cgd
168 1.1 cgd sp = getservbyname(port, "tcp");
169 1.1 cgd if (sp != 0)
170 1.1 cgd s_port = sp->s_port;
171 1.1 cgd else {
172 1.11 lukem s_port = strtoul(port, &p, 0);
173 1.11 lukem if (s_port == 0 || *p != '\0')
174 1.1 cgd return (EINVAL);
175 1.11 lukem s_port = htons(s_port);
176 1.1 cgd }
177 1.1 cgd
178 1.6 mycroft memset(&sain, 0, sizeof(sain));
179 1.1 cgd sain.sin_len = sizeof(sain);
180 1.1 cgd sain.sin_family = AF_INET;
181 1.1 cgd sain.sin_port = s_port;
182 1.1 cgd
183 1.1 cgd while (ipp[0]) {
184 1.1 cgd int so;
185 1.1 cgd
186 1.3 cgd if (priv)
187 1.3 cgd so = rresvport((int *) 0);
188 1.3 cgd else
189 1.3 cgd so = socket(AF_INET, SOCK_STREAM, 0);
190 1.1 cgd if (so < 0) {
191 1.1 cgd syslog(LOG_ERR, "socket: %m");
192 1.1 cgd return (errno);
193 1.1 cgd }
194 1.1 cgd
195 1.1 cgd sain.sin_addr = *ipp[0];
196 1.12 enami if (connect(so, (struct sockaddr *) &sain,
197 1.12 enami sizeof(sain)) == 0) {
198 1.1 cgd *fdp = so;
199 1.1 cgd return (0);
200 1.1 cgd }
201 1.1 cgd (void) close(so);
202 1.1 cgd
203 1.1 cgd ipp++;
204 1.1 cgd }
205 1.14 itojun #endif /* INET6 */
206 1.1 cgd
207 1.1 cgd return (errno);
208 1.1 cgd }
209