2016-11-25 17:18:40 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the UCB release of Plan 9. It is subject to the license
|
|
|
|
* terms in the LICENSE file found in the top-level directory of this
|
|
|
|
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
|
|
|
|
* part of the UCB release of Plan 9, including this file, may be copied,
|
|
|
|
* modified, propagated, or distributed except according to the terms contained
|
|
|
|
* in the LICENSE file.
|
|
|
|
*/
|
2018-01-06 01:08:25 +01:00
|
|
|
/* Portions of this file are Copyright (C) 2015-2018 Giacomo Tesio <giacomo@tesio.it>
|
|
|
|
* See /doc/license/gpl-2.0.txt for details about the licensing.
|
|
|
|
*/
|
2016-11-25 17:18:40 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* old single-process version of dial that libthread can cope with
|
|
|
|
*/
|
|
|
|
#include <u.h>
|
|
|
|
#include <libc.h>
|
|
|
|
|
|
|
|
typedef struct DS DS;
|
|
|
|
|
|
|
|
static int call(char*, char*, DS*);
|
|
|
|
static int csdial(DS*);
|
|
|
|
static void _dial_string_parse(const char*, DS*);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Maxstring = 128,
|
|
|
|
Maxpath = 256,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DS {
|
|
|
|
/* dist string */
|
|
|
|
char buf[Maxstring];
|
|
|
|
char *netdir;
|
|
|
|
char *proto;
|
|
|
|
char *rem;
|
|
|
|
|
|
|
|
/* other args */
|
|
|
|
char *local;
|
|
|
|
char *dir;
|
|
|
|
int *cfdp;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the dialstring is of the form '[/net/]proto!dest'
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
_threaddial(const char *dest, const char *local, char *dir, int *cfdp)
|
|
|
|
{
|
|
|
|
DS ds;
|
|
|
|
int rv;
|
|
|
|
char err[ERRMAX], alterr[ERRMAX];
|
|
|
|
|
|
|
|
ds.local = (char*)local;
|
|
|
|
ds.dir = dir;
|
|
|
|
ds.cfdp = cfdp;
|
|
|
|
|
|
|
|
_dial_string_parse(dest, &ds);
|
|
|
|
if(ds.netdir)
|
|
|
|
return csdial(&ds);
|
|
|
|
|
|
|
|
ds.netdir = "/net";
|
|
|
|
rv = csdial(&ds);
|
|
|
|
if(rv >= 0)
|
|
|
|
return rv;
|
|
|
|
err[0] = '\0';
|
|
|
|
errstr(err, sizeof err);
|
2017-04-19 23:33:14 +02:00
|
|
|
if(jehanne_strstr(err, "refused") != 0){
|
|
|
|
jehanne_werrstr("%s", err);
|
2016-11-25 17:18:40 +01:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
ds.netdir = "/net.alt";
|
|
|
|
rv = csdial(&ds);
|
|
|
|
if(rv >= 0)
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
alterr[0] = 0;
|
|
|
|
errstr(alterr, sizeof alterr);
|
2017-04-19 23:33:14 +02:00
|
|
|
if(jehanne_strstr(alterr, "translate") || jehanne_strstr(alterr, "does not exist"))
|
|
|
|
jehanne_werrstr("%s", err);
|
2016-11-25 17:18:40 +01:00
|
|
|
else
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_werrstr("%s", alterr);
|
2016-11-25 17:18:40 +01:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
csdial(DS *ds)
|
|
|
|
{
|
|
|
|
int n, fd, rv;
|
|
|
|
char *p, buf[Maxstring], clone[Maxpath], err[ERRMAX], besterr[ERRMAX];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* open connection server
|
|
|
|
*/
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(buf, sizeof(buf), "%s/cs", ds->netdir);
|
2016-11-25 17:18:40 +01:00
|
|
|
fd = open(buf, ORDWR);
|
|
|
|
if(fd < 0){
|
|
|
|
/* no connection server, don't translate */
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(clone, sizeof(clone), "%s/%s/clone", ds->netdir, ds->proto);
|
2016-11-25 17:18:40 +01:00
|
|
|
return call(clone, ds->rem, ds);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ask connection server to translate
|
|
|
|
*/
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(buf, sizeof(buf), "%s!%s", ds->proto, ds->rem);
|
|
|
|
if(write(fd, buf, jehanne_strlen(buf)) < 0){
|
2016-11-25 17:18:40 +01:00
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* loop through each address from the connection server till
|
|
|
|
* we get one that works.
|
|
|
|
*/
|
|
|
|
*besterr = 0;
|
|
|
|
rv = -1;
|
|
|
|
seek(fd, 0, 0);
|
|
|
|
while((n = read(fd, buf, sizeof(buf) - 1)) > 0){
|
|
|
|
buf[n] = 0;
|
2017-04-19 23:33:14 +02:00
|
|
|
p = jehanne_strchr(buf, ' ');
|
2016-11-25 17:18:40 +01:00
|
|
|
if(p == 0)
|
|
|
|
continue;
|
|
|
|
*p++ = 0;
|
|
|
|
rv = call(buf, p, ds);
|
|
|
|
if(rv >= 0)
|
|
|
|
break;
|
|
|
|
err[0] = '\0';
|
|
|
|
errstr(err, sizeof err);
|
2017-04-19 23:33:14 +02:00
|
|
|
if(jehanne_strstr(err, "does not exist") == 0)
|
|
|
|
jehanne_strcpy(besterr, err);
|
2016-11-25 17:18:40 +01:00
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if(rv < 0 && *besterr)
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_werrstr("%s", besterr);
|
2016-11-25 17:18:40 +01:00
|
|
|
else
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_werrstr("%s", err);
|
2016-11-25 17:18:40 +01:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
call(char *clone, char *dest, DS *ds)
|
|
|
|
{
|
|
|
|
int fd, cfd, n;
|
|
|
|
char cname[Maxpath], name[Maxpath], data[Maxpath], *p;
|
|
|
|
|
|
|
|
/* because cs is in a different name space, replace the mount point */
|
|
|
|
if(*clone == '/'){
|
2017-04-19 23:33:14 +02:00
|
|
|
p = jehanne_strchr(clone+1, '/');
|
2016-11-25 17:18:40 +01:00
|
|
|
if(p == nil)
|
|
|
|
p = clone;
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
} else
|
|
|
|
p = clone;
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(cname, sizeof cname, "%s/%s", ds->netdir, p);
|
2016-11-25 17:18:40 +01:00
|
|
|
|
|
|
|
cfd = open(cname, ORDWR);
|
|
|
|
if(cfd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* get directory name */
|
|
|
|
n = read(cfd, name, sizeof(name)-1);
|
|
|
|
if(n < 0){
|
|
|
|
close(cfd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
name[n] = 0;
|
|
|
|
for(p = name; *p == ' '; p++)
|
|
|
|
;
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(name, sizeof(name), "%ld", jehanne_strtoul(p, 0, 0));
|
|
|
|
p = jehanne_strrchr(cname, '/');
|
2016-11-25 17:18:40 +01:00
|
|
|
*p = 0;
|
|
|
|
if(ds->dir)
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(ds->dir, NETPATHLEN, "%s/%s", cname, name);
|
|
|
|
jehanne_snprint(data, sizeof(data), "%s/%s/data", cname, name);
|
2016-11-25 17:18:40 +01:00
|
|
|
|
|
|
|
/* connect */
|
|
|
|
if(ds->local)
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(name, sizeof(name), "connect %s %s", dest, ds->local);
|
2016-11-25 17:18:40 +01:00
|
|
|
else
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_snprint(name, sizeof(name), "connect %s", dest);
|
|
|
|
if(write(cfd, name, jehanne_strlen(name)) < 0){
|
2016-11-25 17:18:40 +01:00
|
|
|
close(cfd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open data connection */
|
|
|
|
fd = open(data, ORDWR);
|
|
|
|
if(fd < 0){
|
|
|
|
close(cfd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(ds->cfdp)
|
|
|
|
*ds->cfdp = cfd;
|
|
|
|
else
|
|
|
|
close(cfd);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* parse a dial string
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_dial_string_parse(const char *str, DS *ds)
|
|
|
|
{
|
|
|
|
char *p, *p2;
|
|
|
|
|
2017-04-19 23:33:14 +02:00
|
|
|
jehanne_strncpy(ds->buf, str, Maxstring);
|
2016-11-25 17:18:40 +01:00
|
|
|
ds->buf[Maxstring-1] = 0;
|
|
|
|
|
2017-04-19 23:33:14 +02:00
|
|
|
p = jehanne_strchr(ds->buf, '!');
|
2016-11-25 17:18:40 +01:00
|
|
|
if(p == 0) {
|
|
|
|
ds->netdir = 0;
|
|
|
|
ds->proto = "net";
|
|
|
|
ds->rem = ds->buf;
|
|
|
|
} else {
|
|
|
|
if(*ds->buf != '/' && *ds->buf != '#'){
|
|
|
|
ds->netdir = 0;
|
|
|
|
ds->proto = ds->buf;
|
|
|
|
} else {
|
|
|
|
for(p2 = p; *p2 != '/'; p2--)
|
|
|
|
;
|
|
|
|
*p2++ = 0;
|
|
|
|
ds->netdir = ds->buf;
|
|
|
|
ds->proto = p2;
|
|
|
|
}
|
|
|
|
*p = 0;
|
|
|
|
ds->rem = p + 1;
|
|
|
|
}
|
|
|
|
}
|