2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2001-12-11 23:51:14 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
2001-12-11 23:51:14 +00:00
|
|
|
static const char sccsid[] = "@(#)io.c 8.1 (Berkeley) 6/6/93";
|
1998-01-14 07:21:14 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
1995-05-30 06:41:30 +00:00
|
|
|
* This file contains the I/O handling and the exchange of
|
1994-05-27 12:33:43 +00:00
|
|
|
* edit characters. This connection itself is established in
|
|
|
|
* ctl.c
|
|
|
|
*/
|
|
|
|
|
2001-12-11 23:51:14 +00:00
|
|
|
#include <sys/filio.h>
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <errno.h>
|
2004-04-19 21:37:29 +00:00
|
|
|
#include <signal.h>
|
2001-08-09 06:45:35 +00:00
|
|
|
#include <netdb.h>
|
2016-02-25 19:06:44 +00:00
|
|
|
#include <poll.h>
|
2014-03-17 11:58:48 +00:00
|
|
|
#include <stdio.h>
|
2001-08-09 06:45:35 +00:00
|
|
|
#include <stdlib.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <string.h>
|
2001-07-26 11:02:39 +00:00
|
|
|
#include <unistd.h>
|
2014-03-17 11:58:48 +00:00
|
|
|
#define _XOPEN_SOURCE_EXTENDED
|
|
|
|
#include <curses.h>
|
2001-12-11 23:51:14 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "talk.h"
|
2001-08-09 06:45:35 +00:00
|
|
|
#include "talk_ctl.h"
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2014-03-17 11:58:48 +00:00
|
|
|
extern void display(xwin_t *, wchar_t *);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2004-04-19 21:37:29 +00:00
|
|
|
volatile sig_atomic_t gotwinch = 0;
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* The routine to do the actual talking
|
|
|
|
*/
|
1996-03-09 19:23:01 +00:00
|
|
|
void
|
2008-04-28 21:08:42 +00:00
|
|
|
talk(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-08-09 06:45:35 +00:00
|
|
|
struct hostent *hp, *hp2;
|
2016-02-25 19:06:44 +00:00
|
|
|
struct pollfd fds[2];
|
1996-03-09 19:23:01 +00:00
|
|
|
int nb;
|
2014-03-17 11:58:48 +00:00
|
|
|
wchar_t buf[BUFSIZ];
|
|
|
|
char **addr, *his_machine_name;
|
|
|
|
FILE *sockfp;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-08-09 06:45:35 +00:00
|
|
|
his_machine_name = NULL;
|
|
|
|
hp = gethostbyaddr((const char *)&his_machine_addr.s_addr,
|
|
|
|
sizeof(his_machine_addr.s_addr), AF_INET);
|
|
|
|
if (hp != NULL) {
|
|
|
|
hp2 = gethostbyname(hp->h_name);
|
|
|
|
if (hp2 != NULL && hp2->h_addrtype == AF_INET &&
|
|
|
|
hp2->h_length == sizeof(his_machine_addr))
|
|
|
|
for (addr = hp2->h_addr_list; *addr != NULL; addr++)
|
|
|
|
if (memcmp(*addr, &his_machine_addr,
|
|
|
|
sizeof(his_machine_addr)) == 0) {
|
|
|
|
his_machine_name = strdup(hp->h_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (his_machine_name == NULL)
|
|
|
|
his_machine_name = strdup(inet_ntoa(his_machine_addr));
|
2014-03-17 11:58:48 +00:00
|
|
|
snprintf((char *)buf, sizeof(buf), "Connection established with %s@%s.",
|
2001-08-09 06:45:35 +00:00
|
|
|
msg.r_name, his_machine_name);
|
|
|
|
free(his_machine_name);
|
2014-03-17 11:58:48 +00:00
|
|
|
message((char *)buf);
|
1996-08-19 19:42:00 +00:00
|
|
|
write(STDOUT_FILENO, "\007\007\007", 3);
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
current_line = 0;
|
|
|
|
|
2014-03-17 11:58:48 +00:00
|
|
|
if ((sockfp = fdopen(sockt, "w+")) == NULL)
|
|
|
|
p_error("fdopen");
|
|
|
|
|
|
|
|
setvbuf(sockfp, NULL, _IONBF, 0);
|
|
|
|
setvbuf(stdin, NULL, _IONBF, 0);
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
2014-03-17 11:58:48 +00:00
|
|
|
* Wait on both the other process (sockt) and standard input.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
for (;;) {
|
2016-02-25 19:06:44 +00:00
|
|
|
fds[0].fd = fileno(stdin);
|
|
|
|
fds[0].events = POLLIN;
|
|
|
|
fds[1].fd = sockt;
|
|
|
|
fds[1].events = POLLIN;
|
|
|
|
nb = poll(fds, 2, INFTIM);
|
2004-04-19 21:37:29 +00:00
|
|
|
if (gotwinch) {
|
|
|
|
resize_display();
|
|
|
|
gotwinch = 0;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
if (nb <= 0) {
|
2014-03-17 11:58:48 +00:00
|
|
|
if (errno == EINTR)
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
2014-03-17 11:58:48 +00:00
|
|
|
/* Panic, we don't know what happened. */
|
2016-02-25 19:06:44 +00:00
|
|
|
p_error("Unexpected error from poll");
|
1994-05-27 12:33:43 +00:00
|
|
|
quit();
|
|
|
|
}
|
2016-02-25 19:06:44 +00:00
|
|
|
if (fds[1].revents & POLLIN) {
|
2014-03-17 11:58:48 +00:00
|
|
|
wint_t w;
|
|
|
|
|
|
|
|
/* There is data on sockt. */
|
|
|
|
w = fgetwc(sockfp);
|
|
|
|
if (w == WEOF) {
|
1994-05-27 12:33:43 +00:00
|
|
|
message("Connection closed. Exiting");
|
|
|
|
quit();
|
|
|
|
}
|
2014-03-17 11:58:48 +00:00
|
|
|
display(&his_win, &w);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2016-02-25 19:06:44 +00:00
|
|
|
if (fds[0].revents & POLLIN) {
|
2014-03-17 11:58:48 +00:00
|
|
|
wint_t w;
|
|
|
|
|
|
|
|
if ((w = getwchar()) != WEOF) {
|
|
|
|
display(&my_win, &w);
|
|
|
|
(void )fputwc(w, sockfp);
|
|
|
|
(void )fflush(sockfp);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* p_error prints the system error message on the standard location
|
|
|
|
* on the screen and then exits. (i.e. a curses version of perror)
|
|
|
|
*/
|
1996-03-09 19:23:01 +00:00
|
|
|
void
|
2008-04-28 21:08:42 +00:00
|
|
|
p_error(const char *string)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1995-03-28 19:48:45 +00:00
|
|
|
wmove(my_win.x_win, current_line, 0);
|
1994-05-27 12:33:43 +00:00
|
|
|
wprintw(my_win.x_win, "[%s : %s (%d)]\n",
|
|
|
|
string, strerror(errno), errno);
|
|
|
|
wrefresh(my_win.x_win);
|
|
|
|
move(LINES-1, 0);
|
|
|
|
refresh();
|
|
|
|
quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display string in the standard location
|
|
|
|
*/
|
1996-03-09 19:23:01 +00:00
|
|
|
void
|
2008-04-28 21:08:42 +00:00
|
|
|
message(const char *string)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1995-03-28 19:48:45 +00:00
|
|
|
wmove(my_win.x_win, current_line, 0);
|
|
|
|
wprintw(my_win.x_win, "[%s]\n", string);
|
|
|
|
if (current_line < my_win.x_nlines - 1)
|
|
|
|
current_line++;
|
1994-05-27 12:33:43 +00:00
|
|
|
wrefresh(my_win.x_win);
|
|
|
|
}
|