pt_tcp.c revision 1.20 1 1.20 pooka /* $NetBSD: pt_tcp.c,v 1.20 2007/07/02 18:07:45 pooka 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.17 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd *
34 1.5 mycroft * from: Id: pt_tcp.c,v 1.1 1992/05/25 21:43:09 jsp Exp
35 1.11 lukem * @(#)pt_tcp.c 8.5 (Berkeley) 4/28/95
36 1.1 cgd */
37 1.1 cgd
38 1.10 lukem #include <sys/cdefs.h>
39 1.10 lukem #ifndef lint
40 1.20 pooka __RCSID("$NetBSD: pt_tcp.c,v 1.20 2007/07/02 18:07:45 pooka Exp $");
41 1.10 lukem #endif /* not lint */
42 1.10 lukem
43 1.1 cgd #include <stdio.h>
44 1.1 cgd #include <unistd.h>
45 1.1 cgd #include <stdlib.h>
46 1.1 cgd #include <errno.h>
47 1.13 perry #include <string.h>
48 1.1 cgd #include <sys/types.h>
49 1.1 cgd #include <sys/param.h>
50 1.1 cgd #include <sys/syslog.h>
51 1.1 cgd #include <sys/socket.h>
52 1.1 cgd #include <netinet/in.h>
53 1.5 mycroft #include <arpa/inet.h>
54 1.1 cgd #include <netdb.h>
55 1.1 cgd
56 1.1 cgd #include "portald.h"
57 1.1 cgd
58 1.1 cgd /*
59 1.1 cgd * Key will be tcp/host/port[/"priv"]
60 1.1 cgd * Create a TCP socket connected to the
61 1.1 cgd * requested host and port.
62 1.1 cgd * Some trailing suffix values have special meanings.
63 1.1 cgd * An unrecognised suffix is an error.
64 1.1 cgd */
65 1.10 lukem int
66 1.20 pooka portal_tcp(struct portal_cred *pcr, char *key, char **v, int *fdp)
67 1.1 cgd {
68 1.1 cgd char host[MAXHOSTNAMELEN];
69 1.1 cgd char port[MAXHOSTNAMELEN];
70 1.1 cgd char *p = key + (v[1] ? strlen(v[1]) : 0);
71 1.1 cgd char *q;
72 1.14 itojun int priv = 0;
73 1.14 itojun struct addrinfo hints, *res, *lres;
74 1.14 itojun int so = -1;
75 1.14 itojun const char *cause = "unknown";
76 1.1 cgd
77 1.1 cgd q = strchr(p, '/');
78 1.1 cgd if (q == 0 || q - p >= sizeof(host))
79 1.1 cgd return (EINVAL);
80 1.1 cgd *q = '\0';
81 1.16 itojun if (strlcpy(host, p, sizeof(host)) >= sizeof(host))
82 1.16 itojun return (EINVAL);
83 1.3 cgd p = q + 1;
84 1.1 cgd
85 1.1 cgd q = strchr(p, '/');
86 1.3 cgd if (q)
87 1.3 cgd *q = '\0';
88 1.16 itojun if (strlcpy(port, p, sizeof(port)) >= sizeof(port))
89 1.1 cgd return (EINVAL);
90 1.3 cgd if (q) {
91 1.3 cgd p = q + 1;
92 1.3 cgd if (strcmp(p, "priv") == 0) {
93 1.3 cgd if (pcr->pcr_uid == 0)
94 1.3 cgd priv = 1;
95 1.3 cgd else
96 1.3 cgd return (EPERM);
97 1.3 cgd } else {
98 1.3 cgd return (EINVAL);
99 1.3 cgd }
100 1.3 cgd }
101 1.1 cgd
102 1.14 itojun memset(&hints, 0, sizeof(hints));
103 1.14 itojun hints.ai_family = PF_UNSPEC;
104 1.14 itojun hints.ai_socktype = SOCK_STREAM;
105 1.14 itojun hints.ai_protocol = 0;
106 1.14 itojun if (getaddrinfo(host, port, &hints, &res) != 0)
107 1.14 itojun return(EINVAL);
108 1.14 itojun
109 1.14 itojun for (lres = res; lres; lres = lres->ai_next) {
110 1.14 itojun if (priv)
111 1.14 itojun so = rresvport((int *) 0);
112 1.14 itojun else
113 1.14 itojun so = socket(lres->ai_family, lres->ai_socktype,
114 1.14 itojun lres->ai_protocol);
115 1.14 itojun if (so < 0) {
116 1.14 itojun cause = "socket";
117 1.14 itojun continue;
118 1.14 itojun }
119 1.14 itojun
120 1.14 itojun if (connect(so, lres->ai_addr, lres->ai_addrlen) != 0) {
121 1.14 itojun cause = "connect";
122 1.14 itojun (void)close(so);
123 1.14 itojun so = -1;
124 1.14 itojun continue;
125 1.14 itojun }
126 1.14 itojun
127 1.14 itojun *fdp = so;
128 1.14 itojun errno = 0;
129 1.14 itojun break;
130 1.14 itojun }
131 1.14 itojun
132 1.14 itojun if (so < 0)
133 1.15 lukem syslog(LOG_WARNING, "%s: %m", cause);
134 1.14 itojun
135 1.14 itojun freeaddrinfo(res);
136 1.1 cgd
137 1.1 cgd return (errno);
138 1.1 cgd }
139