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