Incorporated geneb's fixes from https://github.com/geneb/tcpser.

This commit is contained in:
Chris Osborn 2016-05-24 18:52:54 -07:00
parent 18f40e77c4
commit 72eeccd0d4
7 changed files with 38 additions and 21 deletions

View File

@ -40,9 +40,8 @@ void print_help(char *name)
exit(1); exit(1);
} }
int init(int argc, int init(int argc, char **argv, modem_config cfg[], int max_modem, char **ip_addr,
char **argv, int *port, char *all_busy, int all_busy_len)
modem_config cfg[], int max_modem, int *port, char *all_busy, int all_busy_len)
{ {
int i = 0; int i = 0;
int j = 0; int j = 0;
@ -110,6 +109,11 @@ int init(int argc,
cfg[i].invert_dcd = TRUE; cfg[i].invert_dcd = TRUE;
break; break;
case 'p': case 'p':
if (strstr(optarg, ":") > 0) {
*ip_addr = strtok(optarg, ":");
*port = (atoi(strtok(NULL,":")));
}
else
*port = (atoi(optarg)); *port = (atoi(optarg));
break; break;
case 'n': case 'n':

View File

@ -5,7 +5,6 @@
#include "modem_core.h" #include "modem_core.h"
void print_help(char *name); extern void print_help(char *name);
int init(int argc, extern int init(int argc, char **argv, modem_config cfg[], int max_modem, char **ip_addr,
char **argv, int *port, char *all_busy, int all_busy_len);
modem_config cfg[], int max_modem, int *port, char *all_busy, int all_busy_len);

View File

@ -11,7 +11,7 @@
const int BACK_LOG = 5; const int BACK_LOG = 5;
int ip_init_server_conn(int port) int ip_init_server_conn(char *ip_addr, int port)
{ {
int sSocket = 0, on = 0, rc = 0; int sSocket = 0, on = 0, rc = 0;
struct sockaddr_in serverName = { 0 }; struct sockaddr_in serverName = { 0 };
@ -31,7 +31,7 @@ int ip_init_server_conn(int port)
* turn off bind address checking, and allow * turn off bind address checking, and allow
* port numbers to be reused - otherwise * port numbers to be reused - otherwise
* the TIME_WAIT phenomenon will prevent * the TIME_WAIT phenomenon will prevent
* binding to these addreG. * binding to these addresses.
*/ */
on = 1; on = 1;
@ -42,11 +42,16 @@ int ip_init_server_conn(int port)
ELOG(LOG_ERROR, "bind address checking could not be turned off"); ELOG(LOG_ERROR, "bind address checking could not be turned off");
} }
if (ip_addr != NULL) /* gwb */
serverName.sin_addr.s_addr = inet_addr(ip_addr);
else
serverName.sin_addr.s_addr = htonl(INADDR_ANY); serverName.sin_addr.s_addr = htonl(INADDR_ANY);
serverName.sin_family = AF_INET; serverName.sin_family = AF_INET;
/* network-order */ /* network-order */
serverName.sin_port = htons(port); serverName.sin_port = htons(port);
if (ip_addr != NULL ) /* gwb */
LOG(LOG_DEBUG, "Using specified ip address %s", ip_addr);
LOG(LOG_DEBUG, "Binding server socket to port %d", port); LOG(LOG_DEBUG, "Binding server socket to port %d", port);
rc = bind(sSocket, (struct sockaddr *) &serverName, sizeof(serverName) rc = bind(sSocket, (struct sockaddr *) &serverName, sizeof(serverName)

View File

@ -6,12 +6,12 @@
#define FALSE 0 #define FALSE 0
#endif #endif
int ip_init(void); extern int ip_init(void);
int ip_init_server_conn(int port); extern int ip_init_server_conn(char *ip_addr, int port);
int ip_connect(char addy[]); extern int ip_connect(char addy[]);
int ip_accept(int sSocket); extern int ip_accept(int sSocket);
int ip_disconnect(int fd); extern int ip_disconnect(int fd);
int ip_write(int fd, char *data, int len); extern int ip_write(int fd, char *data, int len);
int ip_read(int fd, char *data, int len); extern int ip_read(int fd, char *data, int len);
#endif #endif

View File

@ -93,7 +93,7 @@ int ip232_init_conn(modem_config *cfg)
LOG_ENTER(); LOG_ENTER();
LOG(LOG_INFO, "Opening ip232 device"); LOG(LOG_INFO, "Opening ip232 device");
port = atoi(cfg->dce_data.tty); port = atoi(cfg->dce_data.tty);
rc = ip_init_server_conn(port); rc = ip_init_server_conn("", port);
if (rc < 0) { if (rc < 0) {
ELOG(LOG_FATAL, "Could not initialize ip232 server socket"); ELOG(LOG_FATAL, "Could not initialize ip232 server socket");
exit(-1); exit(-1);

View File

@ -76,6 +76,14 @@ int line_connect(modem_config *cfg)
if (cfg->line_data.fd > -1) { if (cfg->line_data.fd > -1) {
LOG(LOG_ALL, "Connected to %s", addy); LOG(LOG_ALL, "Connected to %s", addy);
cfg->line_data.valid_conn = TRUE; cfg->line_data.valid_conn = TRUE;
/* we need to let the other end know that our end will
* handle the echo - otherwise "true" telnet clients like
* those that come with Linux & Windows will echo characters
* typed and you'll end up with doubled characters if the remote
* host is echoing as well...
* - gwb
*/
send_nvt_command(cfg->line_data.fd, &cfg->line_data.nvt_data, NVT_WILL, NVT_OPT_ECHO);
return 0; return 0;
} }
else { else {

View File

@ -23,6 +23,7 @@ int main(int argc, char *argv[])
int modem_count; int modem_count;
int port = 0; int port = 0;
char *ip_addr = NULL; /* gwb */
char all_busy[255]; char all_busy[255];
pthread_t thread_id; pthread_t thread_id;
@ -51,9 +52,9 @@ int main(int argc, char *argv[])
signal(SIGIO, SIG_IGN); /* Some Linux variant term on SIGIO by default */ signal(SIGIO, SIG_IGN); /* Some Linux variant term on SIGIO by default */
modem_count = init(argc, argv, cfg, 64, &port, all_busy, sizeof(all_busy)); modem_count = init(argc, argv, cfg, 64, &ip_addr, &port,all_busy,sizeof(all_busy)); /* gwb */
sSocket = ip_init_server_conn(port); sSocket = ip_init_server_conn(ip_addr, port);
for (i = 0; i < modem_count; i++) { for (i = 0; i < modem_count; i++) {
if (-1 == pipe(cfg[i].data.mp[0])) { if (-1 == pipe(cfg[i].data.mp[0])) {