1
0
mirror of https://github.com/moparisthebest/socat synced 2024-08-13 16:43:48 -04:00
socat/xio-gopen.c

135 lines
4.1 KiB
C
Raw Permalink Normal View History

2008-01-28 16:37:16 -05:00
/* source: xio-gopen.c */
2008-10-15 16:50:44 -04:00
/* Copyright Gerhard Rieger 2001-2008 */
2008-01-27 07:00:08 -05:00
/* Published under the GNU General Public License V.2, see file COPYING */
/* this file contains the source for opening addresses of generic open type */
#include "xiosysincludes.h"
#include "xioopen.h"
#include "xio-named.h"
#include "xio-unix.h"
#include "xio-gopen.h"
#if WITH_GOPEN
2008-02-17 08:59:16 -05:00
static int xioopen_gopen1(int argc, const char *argv[], struct opt *opts, int xioflags, xiofile_t *fd, unsigned groups, int dummy1, int dummy2, int dummy3);
2008-01-27 07:00:08 -05:00
2008-10-21 20:33:23 -04:00
const struct xioaddr_endpoint_desc xioaddr_gopen1 = { XIOADDR_SYS, "gopen", 1, XIOBIT_ALL, GROUP_FD|GROUP_FIFO|GROUP_BLK|GROUP_REG|GROUP_NAMED|GROUP_OPEN|GROUP_FILE|GROUP_TERMIOS|GROUP_SOCKET|GROUP_SOCK_UNIX, XIOSHUT_UNSPEC, XIOCLOSE_UNSPEC, xioopen_gopen1, 0, 0, 0 HELP(":<filename>") };
2008-01-27 07:00:08 -05:00
2008-02-17 08:59:16 -05:00
const union xioaddr_desc *xioaddrs_gopen[] = {
(union xioaddr_desc *)&xioaddr_gopen1,
NULL
};
static int xioopen_gopen1(int argc, const char *argv[], struct opt *opts, int xioflags, xiofile_t *fd, unsigned groups, int dummy1, int dummy2, int dummy3) {
2008-01-27 07:00:08 -05:00
const char *filename = argv[1];
flags_t openflags = (xioflags & XIO_ACCMODE);
mode_t st_mode;
bool exists;
bool opt_unlink_close = false;
int result;
if ((result =
_xioopen_named_early(argc, argv, fd, GROUP_NAMED|groups, &exists, opts)) < 0) {
return result;
}
st_mode = result;
if (exists) {
/* file (or at least named entry) exists */
if ((xioflags&XIO_ACCMODE) != XIO_RDONLY) {
openflags |= O_APPEND;
}
} else {
openflags |= O_CREAT;
}
/* note: when S_ISSOCK was undefined, it always gives 0 */
if (exists && S_ISSOCK(st_mode)) {
#if WITH_UNIX
2008-09-20 17:47:06 -04:00
union sockaddr_union us;
socklen_t uslen;
2008-01-27 07:00:08 -05:00
char infobuff[256];
Info1("\"%s\" is a socket, connecting to it", filename);
2008-02-17 08:59:16 -05:00
2008-10-21 20:33:23 -04:00
fd->stream.howtoshut = XIOSHUT_DOWN;
fd->stream.howtoclose = XIOCLOSE_CLOSE;
2008-09-20 17:47:06 -04:00
result =
_xioopen_unix_client(&fd->stream, xioflags, groups, 0, opts, filename);
if (result < 0) {
return result;
2008-01-27 07:00:08 -05:00
}
applyopts_named(filename, opts, PH_PASTOPEN); /* unlink-late */
2008-02-17 08:59:16 -05:00
if (Getsockname(fd->stream.fd1, (struct sockaddr *)&us, &uslen) < 0) {
2008-01-27 07:00:08 -05:00
Warn4("getsockname(%d, %p, {%d}): %s",
2008-02-17 08:59:16 -05:00
fd->stream.fd1, &us, uslen, strerror(errno));
2008-01-27 07:00:08 -05:00
} else {
Notice1("successfully connected via %s",
2008-09-20 17:47:06 -04:00
sockaddr_unix_info(&us.un, uslen,
infobuff, sizeof(infobuff)));
2008-01-27 07:00:08 -05:00
}
#else
Error("\"%s\" is a socket, but UNIX socket support is not compiled in");
return -1;
#endif /* WITH_UNIX */
} else {
/* a file name */
Info1("\"%s\" is not a socket, open()'ing it", filename);
retropt_bool(opts, OPT_UNLINK_CLOSE, &opt_unlink_close);
if (opt_unlink_close) {
if ((fd->stream.unlink_close = strdup(filename)) == NULL) {
Error1("strdup(\"%s\"): out of memory", filename);
}
fd->stream.opt_unlink_close = true;
}
2008-10-21 20:33:23 -04:00
if (fd->stream.howtoshut == XIOSHUT_UNSPEC)
fd->stream.howtoshut = XIOSHUT_NONE;
if (fd->stream.howtoclose == XIOCLOSE_UNSPEC)
fd->stream.howtoclose = XIOCLOSE_CLOSE;
2008-01-27 07:00:08 -05:00
Notice3("opening %s \"%s\" for %s",
filetypenames[(st_mode&S_IFMT)>>12], filename, ddirection[(xioflags&XIO_ACCMODE)]);
if ((result = _xioopen_open(filename, openflags, opts)) < 0)
return result;
#ifdef I_PUSH
if (S_ISCHR(st_mode)) {
Ioctl(result, I_PUSH, "ptem");
Ioctl(result, I_PUSH, "ldterm");
Ioctl(result, I_PUSH, "ttcompat");
}
#endif
2008-02-17 08:59:16 -05:00
fd->stream.fd1 = result;
2008-01-27 07:00:08 -05:00
#if WITH_TERMIOS
2008-02-17 08:59:16 -05:00
if (Isatty(fd->stream.fd1)) {
if (Tcgetattr(fd->stream.fd1, &fd->stream.savetty) < 0) {
2008-01-27 07:00:08 -05:00
Warn2("cannot query current terminal settings on fd %d: %s",
2008-02-17 08:59:16 -05:00
fd->stream.fd1, strerror(errno));
2008-01-27 07:00:08 -05:00
} else {
fd->stream.ttyvalid = true;
}
}
#endif /* WITH_TERMIOS */
applyopts_named(filename, opts, PH_FD);
2008-02-17 08:59:16 -05:00
applyopts(fd->stream.fd1, opts, PH_FD);
applyopts_cloexec(fd->stream.fd1, opts);
2008-01-27 07:00:08 -05:00
}
2008-02-17 08:59:16 -05:00
if ((result = applyopts2(fd->stream.fd1, opts, PH_PASTSOCKET, PH_CONNECTED)) < 0)
2008-01-27 07:00:08 -05:00
return result;
if ((result = _xio_openlate(&fd->stream, opts)) < 0)
return result;
return 0;
}
#endif /* WITH_GOPEN */