2011-11-13 00:38:56 +01:00
|
|
|
/* nwserv.c 10-Feb-96 */
|
2011-11-13 00:38:56 +01:00
|
|
|
/* (C)opyright (C) 1993,1996 Martin Stover, Marburg, Germany
|
2011-11-13 00:38:55 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "net.h"
|
2011-11-13 00:38:55 +01:00
|
|
|
#include "nwserv.h"
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
uint32 internal_net = 0x0L; /* NETWORKNUMMER INTERN (SERVER) */
|
|
|
|
ipxAddr_t my_server_adr; /* Address of this server */
|
|
|
|
char my_nwname[50]; /* Name of this server */
|
|
|
|
int print_route_tac = 0; /* every x broadcasts print it */
|
|
|
|
int print_route_mode = 0; /* append */
|
|
|
|
char *pr_route_info_fn = NULL; /* filename */
|
|
|
|
int wdogs_till_tics = 0; /* send wdogs to all */
|
2011-11-13 00:38:55 +01:00
|
|
|
/* <========== DEVICES ==========> */
|
2011-11-13 00:38:55 +01:00
|
|
|
int anz_net_devices=0;
|
2011-11-13 00:38:55 +01:00
|
|
|
NW_NET_DEVICE *net_devices[MAX_NET_DEVICES];
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
uint16 ipx_sock_nummern[]={ SOCK_AUTO /* WDOG */
|
|
|
|
#if INTERNAL_RIP_SAP
|
|
|
|
,SOCK_SAP
|
|
|
|
#else
|
|
|
|
,SOCK_AUTO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RIP_SLOT
|
|
|
|
,SOCK_RIP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ROUTE_SLOT
|
|
|
|
,SOCK_ROUTE
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
2011-11-13 00:38:56 +01:00
|
|
|
#ifdef DIAG_SLOT
|
|
|
|
,SOCK_DIAGNOSE
|
|
|
|
#endif
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
#ifdef ECHO_SLOT
|
2011-11-13 00:38:56 +01:00
|
|
|
,SOCK_ECHO
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ERROR_SLOT
|
2011-11-13 00:38:56 +01:00
|
|
|
,SOCK_ERROR
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
};
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
#define NEEDED_SOCKETS (sizeof(ipx_sock_nummern) / sizeof(uint16))
|
2011-11-13 00:38:56 +01:00
|
|
|
#if FILE_SERVER_INACTIV
|
|
|
|
# define NEEDED_POLLS (NEEDED_SOCKETS)
|
|
|
|
#else
|
|
|
|
# define NEEDED_POLLS (NEEDED_SOCKETS+1)
|
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
static uint16 sock_nummern [NEEDED_SOCKETS];
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
int sockfd [NEEDED_SOCKETS];
|
2011-11-13 00:38:55 +01:00
|
|
|
static struct pollfd polls[NEEDED_POLLS];
|
2011-11-13 00:38:56 +01:00
|
|
|
#if 0
|
2011-11-13 00:38:55 +01:00
|
|
|
static uint16 spx_diag_socket; /* SPX DIAGNOSE SOCKET */
|
2011-11-13 00:38:56 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
static ipxAddr_t nw386_adr; /* Address of NW-TEST Server */
|
2011-11-13 00:38:55 +01:00
|
|
|
static int nw386_found = 0;
|
|
|
|
static int client_mode = 0;
|
2011-11-13 00:38:55 +01:00
|
|
|
static int ipxdebug = 0;
|
|
|
|
static int pid_ncpserv = -1;
|
2011-11-13 00:38:55 +01:00
|
|
|
static int fd_ncpserv_out = -1; /* ctrl-pipe out to ncpserv */
|
|
|
|
static int fd_ncpserv_in = -1; /* ctrl-pipe in from ncpserv */
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static time_t akttime_stamp = 0;
|
|
|
|
static int broadsecs = 2048;
|
|
|
|
static time_t server_down_stamp = 0;
|
2011-11-13 00:38:55 +01:00
|
|
|
static int server_goes_down_secs = 10;
|
2011-11-13 00:38:55 +01:00
|
|
|
static int save_ipx_routes = 0;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
#if !FILE_SERVER_INACTIV
|
2011-11-13 00:38:55 +01:00
|
|
|
static void write_to_ncpserv(int what, int connection,
|
2011-11-13 00:38:55 +01:00
|
|
|
char *data, int data_size)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2, 0, "write_to_ncpserv what=0x%x, conn=%d, data_size=%d",
|
2011-11-13 00:38:55 +01:00
|
|
|
what, connection, data_size));
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
switch (what) {
|
|
|
|
case 0x5555 : /* kill connection */
|
|
|
|
write(fd_ncpserv_out, (char*) &what, sizeof(int));
|
|
|
|
write(fd_ncpserv_out, (char*) &connection, sizeof(int));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x3333 : /* 'bindery' calls */
|
|
|
|
write(fd_ncpserv_out, (char*) &what, sizeof(int));
|
|
|
|
write(fd_ncpserv_out, (char*) &data_size, sizeof(int));
|
|
|
|
write(fd_ncpserv_out, data, data_size);
|
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 0xeeee : /* hup, read init */
|
|
|
|
write(fd_ncpserv_out, (char*) &what, sizeof(int));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xffff : /* 'down server' */
|
|
|
|
write(fd_ncpserv_out, (char*) &what, sizeof(int));
|
|
|
|
write(fd_ncpserv_out, (char*) &what, sizeof(int));
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
default : break;
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
#else
|
|
|
|
static void write_to_ncpserv(int what, int connection,
|
|
|
|
char *data, int data_size)
|
|
|
|
{
|
|
|
|
;; /* dummy */
|
|
|
|
}
|
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
void ins_del_bind_net_addr(uint8 *name, int styp, ipxAddr_t *adr)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
|
|
|
uint8 buf[1024];
|
|
|
|
uint8 *p = buf;
|
|
|
|
int len = 0;
|
|
|
|
if (NULL != adr) { /* insert */
|
|
|
|
*p=0x01;
|
|
|
|
p+=2; len+=2;
|
2011-11-13 00:38:56 +01:00
|
|
|
U16_TO_BE16(styp, p);
|
2011-11-13 00:38:55 +01:00
|
|
|
p+=2; len+=2;
|
2011-11-13 00:38:56 +01:00
|
|
|
*p = strlen((char*)name);
|
2011-11-13 00:38:55 +01:00
|
|
|
strmaxcpy(p+1, name, *p);
|
|
|
|
len += (*p+1); p+=(*p + 1);
|
|
|
|
memcpy(p, adr, sizeof(ipxAddr_t));
|
|
|
|
len+=sizeof(ipxAddr_t);
|
|
|
|
} else { /* delete */
|
|
|
|
*p=0x02;
|
|
|
|
p+=2; len+=2;
|
2011-11-13 00:38:56 +01:00
|
|
|
U16_TO_BE16(styp, p);
|
2011-11-13 00:38:55 +01:00
|
|
|
p+=2; len+=2;
|
2011-11-13 00:38:56 +01:00
|
|
|
*p = strlen((char*)name);
|
2011-11-13 00:38:55 +01:00
|
|
|
strmaxcpy(p+1, name, *p);
|
|
|
|
len += (*p+1); p+=(*p + 1);
|
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
write_to_ncpserv(0x3333, 0, (char *)buf, len);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int open_ipx_socket(uint16 sock_nr, int nr, int open_mode)
|
|
|
|
{
|
|
|
|
int ipx_fd=t_open("/dev/ipx", open_mode, NULL);
|
2011-11-13 00:38:56 +01:00
|
|
|
struct t_bind bind;
|
2011-11-13 00:38:55 +01:00
|
|
|
if (ipx_fd < 0) {
|
|
|
|
t_error("t_open !Ok");
|
|
|
|
return(-1);
|
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
memset(&my_server_adr, 0, sizeof(ipxAddr_t));
|
2011-11-13 00:38:55 +01:00
|
|
|
U16_TO_BE16(sock_nr, my_server_adr.sock); /* actual read socket */
|
|
|
|
bind.addr.len = sizeof(ipxAddr_t);
|
|
|
|
bind.addr.maxlen = sizeof(ipxAddr_t);
|
|
|
|
bind.addr.buf = (char*)&my_server_adr;
|
2011-11-13 00:38:55 +01:00
|
|
|
bind.qlen = 0; /* ever */
|
2011-11-13 00:38:56 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
if (t_bind(ipx_fd, &bind, &bind) < 0){
|
|
|
|
char sxx[200];
|
2011-11-13 00:38:56 +01:00
|
|
|
sprintf(sxx,"NWSERV:t_bind !OK in open_ipx_socket, sock=0x%x", (int) sock_nr);
|
2011-11-13 00:38:55 +01:00
|
|
|
t_error(sxx);
|
|
|
|
t_close(ipx_fd);
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
sock_nummern[nr] = GET_BE16(my_server_adr.sock); /* really socket nmbr */
|
|
|
|
if (nw_debug) print_ipx_addr(&my_server_adr);
|
|
|
|
return(ipx_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int start_ncpserv(char *nwname, ipxAddr_t *addr)
|
|
|
|
{
|
2011-11-13 00:38:56 +01:00
|
|
|
#if !FILE_SERVER_INACTIV
|
2011-11-13 00:38:55 +01:00
|
|
|
int fds_out[2];
|
|
|
|
int fds_in[2];
|
|
|
|
int pid;
|
|
|
|
if (pipe(fds_out) < 0 || pipe(fds_in) < 0) return(-1);
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
switch (pid=fork()) {
|
|
|
|
case 0 : { /* new Process */
|
2011-11-13 00:38:55 +01:00
|
|
|
char *progname="ncpserv";
|
|
|
|
char addrstr[100];
|
|
|
|
char pathname[300];
|
|
|
|
int j = FD_NWSERV;
|
|
|
|
close(fds_out[1]); /* no need to write */
|
|
|
|
dup2(fds_out[0], 0); /* becommes stdin */
|
|
|
|
close(fds_out[0]); /* no longer needed */
|
|
|
|
|
|
|
|
close(fds_in[0]); /* no need to read */
|
|
|
|
dup2(fds_in[1], FD_NWSERV); /* becommes fd FD_NWSERV */
|
|
|
|
close(fds_in[1]); /* no longer needed */
|
|
|
|
while (j++ < 100) close(j); /* close all > 4 */
|
|
|
|
ipx_addr_to_adr(addrstr, addr);
|
|
|
|
execl(get_exec_path(pathname, progname), progname,
|
|
|
|
nwname, addrstr, NULL);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
case -1: close(fds_out[0]);
|
2011-11-13 00:38:55 +01:00
|
|
|
close(fds_out[1]);
|
|
|
|
close(fds_in[0]);
|
|
|
|
close(fds_in[1]);
|
|
|
|
return(-1); /* error */
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
fds_out[0] = -1;
|
|
|
|
fd_ncpserv_out = fds_out[1];
|
|
|
|
fds_in[1] = -1;
|
|
|
|
fd_ncpserv_in = fds_in[0];
|
|
|
|
pid_ncpserv = pid;
|
2011-11-13 00:38:56 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
return(0); /* OK */
|
|
|
|
}
|
|
|
|
|
|
|
|
static int start_nwclient(void)
|
|
|
|
{
|
|
|
|
switch (fork()){
|
|
|
|
case 0 : { /* new Process */
|
2011-11-13 00:38:55 +01:00
|
|
|
char *progname="nwclient";
|
|
|
|
char pathname[300];
|
|
|
|
char my_addrstr[100];
|
|
|
|
char serv_addrstr[100];
|
|
|
|
ipx_addr_to_adr(my_addrstr, &my_server_adr);
|
|
|
|
ipx_addr_to_adr(serv_addrstr, &nw386_adr);
|
|
|
|
execl(get_exec_path(pathname, progname), progname,
|
|
|
|
my_addrstr, serv_addrstr, NULL);
|
|
|
|
}
|
|
|
|
exit(1);
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
case -1: return(-1); /* error */
|
|
|
|
}
|
|
|
|
return(0); /* OK */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* =========================== WDOG =============================== */
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
#ifdef _WDOG_TESTING_
|
|
|
|
/* for testing */
|
|
|
|
# define WDOG_TRIE_AFTER_SEC 1
|
|
|
|
# define MAX_WDOG_TRIES 1
|
|
|
|
#else
|
|
|
|
# define WDOG_TRIE_AFTER_SEC 300 /* ca. 5 min. */
|
|
|
|
# define MAX_WDOG_TRIES 11 /* Standardtries */
|
|
|
|
#endif
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void modify_wdog_conn(int conn, int mode);
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void send_wdog_packet(ipxAddr_t *addr, int conn, int what)
|
|
|
|
{
|
|
|
|
uint8 data[2];
|
|
|
|
data[0] = (uint8) conn;
|
|
|
|
data[1] = (uint8) what;
|
2011-11-13 00:38:55 +01:00
|
|
|
if (what == '?' && dont_send_wdog(addr)) {
|
|
|
|
modify_wdog_conn(conn, 0);
|
|
|
|
XDPRINTF((2,0, "No wdog to %s", visable_ipx_adr(addr)));
|
|
|
|
} else
|
2011-11-13 00:38:56 +01:00
|
|
|
send_ipx_data(sockfd[WDOG_SLOT], 17, 2, (char*)data, addr, "WDOG");
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void send_bcast_packet(ipxAddr_t *addr, int conn, int signature)
|
|
|
|
{
|
|
|
|
uint8 data[2];
|
|
|
|
data[0] = (uint8) conn;
|
|
|
|
data[1] = (uint8) signature;
|
|
|
|
/* signatures
|
|
|
|
* '!' = broadcast waiting inform
|
|
|
|
* '@' = sft_iii server change over inform.
|
|
|
|
*/
|
2011-11-13 00:38:56 +01:00
|
|
|
send_ipx_data(sockfd[WDOG_SLOT], 17, 2, (char*)data, addr, "BCAST");
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ipxAddr_t addr; /* address of client */
|
|
|
|
time_t last_time; /* last wdog packet sent */
|
|
|
|
int counter; /* max. 11 packets */
|
|
|
|
} CONN;
|
|
|
|
|
|
|
|
static CONN conns[MAX_CONNECTIONS];
|
2011-11-13 00:38:55 +01:00
|
|
|
static int hi_conn=0; /* highest connection nr in use */
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
static void insert_wdog_conn(int conn, ipxAddr_t *adr)
|
|
|
|
{
|
|
|
|
if (conn > 0 && conn <= MAX_CONNECTIONS) {
|
|
|
|
CONN *c;
|
|
|
|
while (hi_conn < conn) {
|
|
|
|
c=&(conns[hi_conn++]);
|
|
|
|
memset(c, 0, sizeof(CONN));
|
|
|
|
}
|
|
|
|
c=&(conns[--conn]);
|
|
|
|
c->last_time = akttime_stamp;
|
|
|
|
c->counter = 0;
|
|
|
|
if (NULL != adr) memcpy(&(c->addr), adr, sizeof(ipxAddr_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void modify_wdog_conn(int conn, int mode)
|
|
|
|
/* mode = 0 : reset */
|
|
|
|
/* mode = 1 : force test 1 */
|
|
|
|
/* mode = 2 : force test 2 */
|
|
|
|
/* mode = 99 : remove wdog */
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
|
|
|
if (conn > 0 && --conn < hi_conn) {
|
|
|
|
CONN *c=&(conns[conn]);
|
2011-11-13 00:38:55 +01:00
|
|
|
if (mode < 99) {
|
|
|
|
c->last_time = akttime_stamp;
|
|
|
|
switch (mode) {
|
|
|
|
case 1 : c->counter = MAX_WDOG_TRIES; /* quick test */
|
|
|
|
broadsecs = 4096;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2 : c->counter = 1; /* slow test (activate)*/
|
|
|
|
broadsecs = 4096;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default : c->counter = 0; /* reset */
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
} /* switch */
|
|
|
|
} else if (mode == 99) { /* remove */
|
|
|
|
memset(c, 0, sizeof(CONN));
|
|
|
|
if (conn + 1 == hi_conn) {
|
|
|
|
while (hi_conn) {
|
|
|
|
c=&(conns[hi_conn-1]);
|
|
|
|
if (!c->last_time) hi_conn--;
|
|
|
|
else break;
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_wdogs(void)
|
|
|
|
{
|
|
|
|
int k = hi_conn;
|
|
|
|
while (k--) {
|
|
|
|
CONN *c = &(conns[k]);
|
|
|
|
if (c->last_time) {
|
|
|
|
time_t t_diff = akttime_stamp - c->last_time;
|
|
|
|
if (c->counter || t_diff > WDOG_TRIE_AFTER_SEC) { /* max. 5 minutes */
|
|
|
|
if (c->counter > MAX_WDOG_TRIES) {
|
|
|
|
/* now its enough with trying */
|
|
|
|
/* clear connection */
|
|
|
|
write_to_ncpserv(0x5555, k+1, NULL, 0);
|
|
|
|
} else {
|
|
|
|
ipxAddr_t adr;
|
|
|
|
c->last_time = akttime_stamp;
|
|
|
|
memcpy(&adr, &(c->addr), sizeof(ipxAddr_t));
|
|
|
|
U16_TO_BE16(GET_BE16(adr.sock)+1, adr.sock);
|
|
|
|
send_wdog_packet(&adr, k+1, '?');
|
|
|
|
}
|
|
|
|
c->counter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void send_bcasts(int conn)
|
|
|
|
{
|
|
|
|
if (conn > 0 && --conn < hi_conn) {
|
|
|
|
CONN *c = &(conns[conn]);
|
|
|
|
ipxAddr_t adr;
|
|
|
|
memcpy(&adr, &(c->addr), sizeof(ipxAddr_t));
|
|
|
|
U16_TO_BE16(GET_BE16(adr.sock)+2, adr.sock);
|
|
|
|
send_bcast_packet(&adr, conn+1, '!'); /* notify */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void get_server_data(char *name,
|
|
|
|
ipxAddr_t *adr,
|
|
|
|
ipxAddr_t *from_addr)
|
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
if (!nw386_found && strcmp(name, my_nwname)) {
|
2011-11-13 00:38:55 +01:00
|
|
|
memcpy(&nw386_adr, adr, sizeof(ipxAddr_t));
|
|
|
|
nw386_found++;
|
|
|
|
if (client_mode) {
|
|
|
|
start_nwclient();
|
|
|
|
client_mode = 0; /* only start once */
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"NW386 %s found at:%s", name, visable_ipx_adr(adr)));
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void handle_sap(int fd,
|
2011-11-13 00:38:55 +01:00
|
|
|
int ipx_pack_typ,
|
|
|
|
int data_len,
|
|
|
|
IPX_DATA *ipxdata,
|
|
|
|
ipxAddr_t *from_addr)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
int query_type = GET_BE16(ipxdata->sqp.query_type);
|
|
|
|
int server_type = GET_BE16(ipxdata->sqp.server_type);
|
2011-11-13 00:38:56 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
if (query_type == 3) {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"SAP NEAREST SERVER request typ=%d von %s",
|
2011-11-13 00:38:55 +01:00
|
|
|
server_type, visable_ipx_adr(from_addr)));
|
2011-11-13 00:38:56 +01:00
|
|
|
/* Get Nearest File Server */
|
|
|
|
send_server_response(4, server_type, from_addr);
|
2011-11-13 00:38:55 +01:00
|
|
|
} else if (query_type == 1) { /* general Request */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0, "SAP GENERAL request server_type =%d", server_type));
|
2011-11-13 00:38:56 +01:00
|
|
|
send_server_response(2, server_type, from_addr);
|
2011-11-13 00:38:55 +01:00
|
|
|
} else if (query_type == 2 || query_type == 4) {
|
|
|
|
/* periodic general or shutdown response (2)
|
|
|
|
* or nearests Service Response (4)
|
|
|
|
*/
|
|
|
|
int entries = (data_len-2) / sizeof(SAPS);
|
|
|
|
uint8 *p = ((uint8*)ipxdata)+2;
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"SAP PERIODIC (entries=%d) from %s", entries, visable_ipx_adr(from_addr)));
|
2011-11-13 00:38:55 +01:00
|
|
|
while (entries--) {
|
|
|
|
int type = GET_BE16(p);
|
|
|
|
uint8 *name = p+2;
|
|
|
|
ipxAddr_t *ad = (ipxAddr_t*) (p+50);
|
|
|
|
int hops = GET_BE16(p+ sizeof(SAPS) -2);
|
2011-11-13 00:38:55 +01:00
|
|
|
if (hops < 16) U16_TO_BE16(hops+1, p+ sizeof(SAPS) -2);
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0, "TYP=%2d,hops=%2d, Addr=%s, Name=%s", type, hops,
|
2011-11-13 00:38:55 +01:00
|
|
|
visable_ipx_adr(ad), name));
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
if (type == 4) { /* from Fileserver */
|
2011-11-13 00:38:55 +01:00
|
|
|
if (16 == hops) {
|
|
|
|
/* shutdown */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0, "SERVER %s IS GOING DOWN", name));
|
2011-11-13 00:38:55 +01:00
|
|
|
insert_delete_server(name, type, NULL, NULL, 16, 1, 0);
|
2011-11-13 00:38:55 +01:00
|
|
|
} else {
|
2011-11-13 00:38:56 +01:00
|
|
|
get_server_data((char*)name, ad, from_addr);
|
2011-11-13 00:38:55 +01:00
|
|
|
insert_delete_server(name, type, ad, from_addr, hops, 0, 0);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
p+=sizeof(SAPS);
|
|
|
|
} /* while */
|
|
|
|
} else {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1,0, "UNKNOWN SAP query %x, server %x", query_type, server_type));
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Task state constants (IPX Connection States)
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** IPX_TASK_FREE - Task node is currently on the free list
|
|
|
|
** IPX_TASK_INUSE - Task has been allocated for use
|
|
|
|
** IPX_TASK_TRANSMIT - Packet has been transmitted (SendPacket)
|
|
|
|
** IPX_TASK_TIMEDOUT - Task has been disabled due to watchdog or
|
|
|
|
** retry fail
|
|
|
|
** IPX_TASK_DYING - Last NCP Response had Bad Connection Status
|
|
|
|
** Bit (Server Gone or Connection Gone).
|
|
|
|
** IPX_TASK_CONNECTED - Task is connected by address to the server
|
|
|
|
** IPX_TASK_BURST - A Packet Burst transaction is in progress
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
#define IPX_TASK_FREE 0 /* Not in use */
|
|
|
|
#define IPX_TASK_INUSE (1<<0) /* In use */
|
|
|
|
#define IPX_TASK_TRANSMIT (1<<1) /* Packet on the wire */
|
|
|
|
#define IPX_TASK_TIMEDOUT (1<<2) /* Connection is timed out */
|
|
|
|
#define IPX_TASK_DYING (1<<3) /* Connection no longer valid */
|
|
|
|
#define IPX_TASK_CONNECTED (1<<4) /* Connection in place */
|
|
|
|
#define IPX_TASK_BURST (1<<5) /* Packet Burst in progress */
|
|
|
|
|
|
|
|
#define CONN_STATUS_BAD_CONNECTION 0x01
|
|
|
|
#define CONN_STATUS_NO_SLOTS_AVAIL 0x04
|
|
|
|
#define CONN_STATUS_SERVER_DOWN 0x10
|
|
|
|
#define CONN_STATUS_MESSSAGE_WAITING 0x01
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
#ifdef DIAG_SLOT
|
2011-11-13 00:38:55 +01:00
|
|
|
static void response_ipx_diag(int fd, int ipx_pack_typ,
|
2011-11-13 00:38:55 +01:00
|
|
|
ipxAddr_t *to_addr)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
|
|
|
IPX_DATA ipxdata;
|
|
|
|
DIAGRESP *dia = &ipxdata.diaresp;
|
|
|
|
uint8 *p = (uint8*) (dia+1);
|
|
|
|
int datalen = sizeof(DIAGRESP); /* erstmal */
|
|
|
|
dia->majorversion = 1;
|
|
|
|
dia->minorversion = 1;
|
|
|
|
U16_TO_BE16(spx_diag_socket, dia->spx_diag_sock);
|
|
|
|
dia->anz = 3;
|
|
|
|
*p++ = 0; /* IPX/SPX */
|
|
|
|
datalen++;
|
|
|
|
*p++ = 1; /* Bridge Driver */
|
|
|
|
datalen++;
|
2011-11-13 00:38:55 +01:00
|
|
|
/* now extended */
|
2011-11-13 00:38:55 +01:00
|
|
|
*p++ = 6; /* Fileserver/Bridge (internal) */
|
|
|
|
datalen++;
|
|
|
|
*p++ = 1; /* Anz. Networks */
|
|
|
|
datalen++;
|
|
|
|
*p++ = 0; /* LAN BOARD */
|
|
|
|
datalen++;
|
|
|
|
memcpy(p, my_server_adr.net, IPX_NET_SIZE);
|
|
|
|
p += IPX_NET_SIZE;
|
|
|
|
datalen += IPX_NET_SIZE;
|
|
|
|
memcpy(p, my_server_adr.node, IPX_NODE_SIZE);
|
|
|
|
datalen += IPX_NODE_SIZE;
|
|
|
|
send_ipx_data(fd, ipx_pack_typ,
|
2011-11-13 00:38:55 +01:00
|
|
|
datalen,
|
|
|
|
(char*)&ipxdata,
|
|
|
|
to_addr, "DIAG Response");
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_diag(int fd, int ipx_pack_typ,
|
2011-11-13 00:38:55 +01:00
|
|
|
int data_len, IPX_DATA *ipxdata,
|
|
|
|
ipxAddr_t *from_addr)
|
2011-11-13 00:38:55 +01:00
|
|
|
/* should handle CONFIGURATION REQUESTS one time */
|
|
|
|
{
|
|
|
|
CONFREQ *conf = &(ipxdata->confreq);
|
|
|
|
int count = (int) conf->count;
|
|
|
|
int j = count;
|
|
|
|
uint8 *exnodes = conf->ex_node;
|
|
|
|
while (j--) {
|
|
|
|
if IPXCMPNODE(exnodes, my_server_adr.node) {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2, 0, "NO RESPONSE TO DIAG"));
|
2011-11-13 00:38:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
exnodes += IPX_NODE_SIZE;
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"DIAG Request, ipx_pack_typ %d, data_len %d, count %d",
|
2011-11-13 00:38:55 +01:00
|
|
|
(int)ipx_pack_typ, data_len, count));
|
2011-11-13 00:38:55 +01:00
|
|
|
response_ipx_diag(fd, ipx_pack_typ, from_addr);
|
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
static void handle_event(int fd, uint16 socknr, int slot)
|
|
|
|
{
|
|
|
|
struct t_unitdata ud;
|
|
|
|
ipxAddr_t source_adr;
|
|
|
|
uint8 ipx_pack_typ;
|
|
|
|
IPX_DATA ipx_data_buff;
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
ud.opt.len = sizeof(ipx_pack_typ);
|
|
|
|
ud.opt.maxlen = sizeof(ipx_pack_typ);
|
|
|
|
ud.opt.buf = (char*)&ipx_pack_typ; /* gets actual typ */
|
|
|
|
|
|
|
|
ud.addr.len = sizeof(ipxAddr_t);
|
|
|
|
ud.addr.maxlen = sizeof(ipxAddr_t);
|
|
|
|
|
|
|
|
ud.addr.buf = (char*)&source_adr;
|
|
|
|
ud.udata.len = IPX_MAX_DATA;
|
|
|
|
ud.udata.maxlen = IPX_MAX_DATA;
|
|
|
|
ud.udata.buf = (char*)&ipx_data_buff;
|
|
|
|
|
|
|
|
if (t_rcvudata(fd, &ud, &flags) < 0){
|
|
|
|
struct t_uderr uderr;
|
|
|
|
ipxAddr_t erradr;
|
|
|
|
uint8 err_pack_typ;
|
|
|
|
uderr.addr.len = sizeof(ipxAddr_t);
|
|
|
|
uderr.addr.maxlen = sizeof(ipxAddr_t);
|
|
|
|
uderr.addr.buf = (char*)&erradr;
|
|
|
|
uderr.opt.len = sizeof(err_pack_typ);
|
|
|
|
uderr.opt.maxlen = sizeof(err_pack_typ);
|
|
|
|
uderr.opt.buf = (char*)&err_pack_typ; /* get actual typ */
|
|
|
|
ud.addr.buf = (char*)&source_adr;
|
|
|
|
t_rcvuderr(fd, &uderr);
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2, 0, "Error from %s, Code = 0x%lx", visable_ipx_adr(&erradr), uderr.error));
|
2011-11-13 00:38:55 +01:00
|
|
|
if (nw_debug) t_error("t_rcvudata !OK");
|
2011-11-13 00:38:55 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((3,0,"Ptyp:%d from: %s", (int)ipx_pack_typ, visable_ipx_adr(&source_adr) ));
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
if (server_down_stamp) return; /* no more interests */
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
#if INTERNAL_RIP_SAP
|
2011-11-13 00:38:55 +01:00
|
|
|
if ( IPXCMPNODE(source_adr.node, my_server_adr.node) &&
|
|
|
|
IPXCMPNET (source_adr.net, my_server_adr.net)) {
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
int source_sock = (int) GET_BE16(source_adr.sock);
|
2011-11-13 00:38:55 +01:00
|
|
|
if ( source_sock == sock_nummern[WDOG_SLOT]
|
2011-11-13 00:38:55 +01:00
|
|
|
|| source_sock == SOCK_SAP
|
|
|
|
|| source_sock == SOCK_RIP) {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"OWN Packet from sock:0x%04x, ignored", source_sock));
|
2011-11-13 00:38:55 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
/* it also can be Packets from DOSEMU OR ncpfs on this machine */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0,"Packet from OWN maschine:sock=0x%x", source_sock));
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
switch (slot) {
|
|
|
|
case SAP_SLOT : handle_sap( fd, (int) ipx_pack_typ, ud.udata.len, &ipx_data_buff, &source_adr); break;
|
|
|
|
#ifdef RIP_SLOT
|
|
|
|
case RIP_SLOT : handle_rip( fd, (int) ipx_pack_typ, ud.udata.len, &ipx_data_buff, &source_adr); break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DIAG_SLOT
|
|
|
|
case DIAG_SLOT : handle_diag(fd, (int) ipx_pack_typ, ud.udata.len, &ipx_data_buff, &source_adr); break;
|
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
default :
|
|
|
|
if (WDOG_SLOT == slot) { /* this is a watchdog packet */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0, "WDOG Packet len=%d connid=%d, status=%d",
|
2011-11-13 00:38:55 +01:00
|
|
|
(int)ud.udata.len, (int) ipx_data_buff.wdog.connid,
|
|
|
|
(int)ipx_data_buff.wdog.status));
|
|
|
|
if (2 == ud.udata.len) {
|
|
|
|
if ('Y' == ipx_data_buff.wdog.status)
|
2011-11-13 00:38:55 +01:00
|
|
|
modify_wdog_conn(ipx_data_buff.wdog.connid, 0);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uint8 *p = (uint8*)&ipx_data_buff;
|
|
|
|
int k = 0;
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 2, "UNKNOWN"));
|
2011-11-13 00:38:55 +01:00
|
|
|
while (k++ < ud.udata.len){
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 3, " %x", (int) *p++));
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 1, NULL));
|
2011-11-13 00:38:55 +01:00
|
|
|
/*
|
|
|
|
print_ud_data(&ud);
|
|
|
|
*/
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
#if 0
|
|
|
|
static int get_ipx_addr(ipxAddr_t *addr)
|
|
|
|
{
|
|
|
|
int fd=t_open("/dev/ipx", O_RDWR, NULL);
|
|
|
|
struct t_optmgmt optb;
|
|
|
|
int result = -1;
|
|
|
|
if (fd < 0) {
|
|
|
|
t_error("t_open !Ok");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
optb.opt.maxlen = optb.opt.len = sizeof(ipxAddr_t);
|
|
|
|
optb.opt.buf = (char*)addr;
|
|
|
|
optb.flags = 0;
|
|
|
|
result = t_optmgmt(fd, &optb, &optb);
|
|
|
|
if (result < 0) t_error("t_optmgmt !Ok");
|
|
|
|
else result=0;
|
|
|
|
t_close(fd);
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
static int get_ipx_addr(ipxAddr_t *addr)
|
|
|
|
{
|
|
|
|
int fd=t_open("/dev/ipx", O_RDWR, NULL);
|
|
|
|
struct t_bind bind;
|
|
|
|
int result = -1;
|
|
|
|
if (fd < 0) {
|
|
|
|
t_error("t_open !Ok");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
bind.addr.len = sizeof(ipxAddr_t);
|
|
|
|
bind.addr.maxlen = sizeof(ipxAddr_t);
|
|
|
|
bind.addr.buf = (char*)addr;
|
|
|
|
bind.qlen = 0; /* ever */
|
|
|
|
memset(addr, 0, sizeof(ipxAddr_t));
|
|
|
|
|
|
|
|
if (t_bind(fd, &bind, &bind) < 0)
|
|
|
|
t_error("tbind:get_ipx_addr");
|
|
|
|
else {
|
|
|
|
result=0;
|
|
|
|
t_unbind(fd);
|
|
|
|
}
|
|
|
|
t_close(fd);
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void get_ini(int full)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
FILE *f = open_nw_ini();
|
|
|
|
int k;
|
|
|
|
uint32 node = 1; /* default 1 */
|
|
|
|
if (full) {
|
|
|
|
gethostname(my_nwname, 48);
|
2011-11-13 00:38:56 +01:00
|
|
|
upstr((uint8*)my_nwname);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
if (f){
|
|
|
|
char buff[500];
|
|
|
|
int what;
|
2011-11-13 00:38:55 +01:00
|
|
|
while (0 != (what=get_ini_entry(f, 0, (char*)buff, sizeof(buff)))) {
|
2011-11-13 00:38:55 +01:00
|
|
|
char inhalt[500];
|
|
|
|
char inhalt2[500];
|
|
|
|
char inhalt3[500];
|
2011-11-13 00:38:55 +01:00
|
|
|
char inhalt4[500];
|
2011-11-13 00:38:55 +01:00
|
|
|
char dummy;
|
|
|
|
int anz;
|
2011-11-13 00:38:55 +01:00
|
|
|
if ((anz=sscanf((char*)buff, "%s %s %s %s", inhalt, inhalt2,
|
|
|
|
inhalt3, inhalt4)) > 0) {
|
2011-11-13 00:38:55 +01:00
|
|
|
switch (what) {
|
2011-11-13 00:38:55 +01:00
|
|
|
case 2 : if (full) {
|
|
|
|
strncpy(my_nwname, inhalt, 48);
|
|
|
|
my_nwname[47] = '\0';
|
2011-11-13 00:38:56 +01:00
|
|
|
upstr((uint8*)my_nwname);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3 :
|
2011-11-13 00:38:55 +01:00
|
|
|
if (full) {
|
|
|
|
if (sscanf(inhalt, "%ld%c", &internal_net, &dummy) != 1)
|
|
|
|
sscanf(inhalt, "%lx", &internal_net);
|
|
|
|
if (anz > 1) {
|
|
|
|
if (sscanf(inhalt2, "%ld%c", &node, &dummy) != 1)
|
|
|
|
sscanf(inhalt2, "%lx", &node);
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
#if INTERNAL_RIP_SAP
|
2011-11-13 00:38:55 +01:00
|
|
|
case 4 :
|
2011-11-13 00:38:55 +01:00
|
|
|
if (full) {
|
|
|
|
if (anz_net_devices < MAX_NET_DEVICES &&
|
|
|
|
(!anz_net_devices || anz > 2) ) {
|
|
|
|
NW_NET_DEVICE **pnd=&(net_devices[anz_net_devices++]);
|
|
|
|
NW_NET_DEVICE *nd=*pnd=
|
|
|
|
(NW_NET_DEVICE*)xmalloc(sizeof(NW_NET_DEVICE));
|
|
|
|
memset(nd, 0, sizeof(NW_NET_DEVICE));
|
|
|
|
nd->ticks = 1;
|
|
|
|
nd->frame = IPX_FRAME_8023;
|
|
|
|
new_str(nd->devname, "eth0");
|
|
|
|
|
|
|
|
if (sscanf(inhalt, "%ld%c", &nd->net, &dummy) != 1)
|
|
|
|
sscanf(inhalt, "%lx", &nd->net);
|
|
|
|
if (anz > 1)
|
|
|
|
new_str(nd->devname, inhalt2);
|
|
|
|
|
|
|
|
if (anz > 2) {
|
|
|
|
upstr(inhalt3);
|
|
|
|
if (!strcmp(inhalt3, "802.3"))
|
|
|
|
nd->frame=IPX_FRAME_8023;
|
|
|
|
else if (!strcmp(inhalt3, "802.2"))
|
|
|
|
nd->frame=IPX_FRAME_8022;
|
|
|
|
else if (!strcmp(inhalt3, "SNAP"))
|
|
|
|
nd->frame=IPX_FRAME_SNAP;
|
|
|
|
else if (!strcmp(inhalt3, "ETHERNET_II"))
|
|
|
|
nd->frame=IPX_FRAME_ETHERII;
|
|
|
|
}
|
|
|
|
if (anz > 3) nd->ticks = atoi(inhalt4);
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
break;
|
2011-11-13 00:38:56 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 5 : save_ipx_routes=atoi(inhalt);
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
|
|
|
case 104 : /* nwclient */
|
|
|
|
if (client_mode && atoi(inhalt))
|
|
|
|
client_mode++;
|
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 210 : server_goes_down_secs=atoi(inhalt);
|
|
|
|
if (server_goes_down_secs < 1 ||
|
|
|
|
server_goes_down_secs > 600)
|
|
|
|
server_goes_down_secs = 10;
|
|
|
|
break;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 300 : print_route_tac=atoi(inhalt);
|
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:56 +01:00
|
|
|
case 301 : new_str(pr_route_info_fn, (uint8*)inhalt);
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 302 : print_route_mode=atoi(inhalt);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 310 : wdogs_till_tics=atoi(inhalt);
|
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
default : break;
|
|
|
|
} /* switch */
|
|
|
|
} /* if */
|
|
|
|
} /* while */
|
|
|
|
fclose(f);
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
if (client_mode < 2) client_mode=0;
|
2011-11-13 00:38:55 +01:00
|
|
|
if (print_route_tac && !pr_route_info_fn && !*pr_route_info_fn)
|
|
|
|
print_route_tac = 0;
|
|
|
|
if (!print_route_tac) xfree(pr_route_info_fn);
|
2011-11-13 00:38:55 +01:00
|
|
|
if (full) {
|
2011-11-13 00:38:55 +01:00
|
|
|
#ifdef LINUX
|
2011-11-13 00:38:56 +01:00
|
|
|
# if INTERNAL_RIP_SAP
|
2011-11-13 00:38:55 +01:00
|
|
|
init_ipx(internal_net, node, ipxdebug);
|
|
|
|
for (k=0; k < anz_net_devices; k++){
|
|
|
|
NW_NET_DEVICE *nd=net_devices[k];
|
|
|
|
char *frname=NULL;
|
|
|
|
switch (nd->frame) {
|
|
|
|
case IPX_FRAME_8022 : frname = "802.2"; break;
|
|
|
|
case IPX_FRAME_8023 : frname = "802.3"; break;
|
|
|
|
case IPX_FRAME_SNAP : frname = "SNAP"; break;
|
|
|
|
case IPX_FRAME_ETHERII : frname = "ETHERNET_II";break;
|
|
|
|
default : break;
|
|
|
|
} /* switch */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 0, "DEVICE=%s, FRAME=%s, NETWORK=0x%lx",
|
2011-11-13 00:38:55 +01:00
|
|
|
nd->devname, frname, nd->net));
|
|
|
|
init_dev(nd->devname, nd->frame, nd->net);
|
|
|
|
}
|
2011-11-13 00:38:56 +01:00
|
|
|
# endif
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
2011-11-13 00:38:56 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
if (!get_ipx_addr(&my_server_adr)) {
|
|
|
|
internal_net = GET_BE32(my_server_adr.net);
|
|
|
|
} else exit(1);
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 0, "Servername='%s', INTERNAL NET=0x%lx, NODE=0x%02x:%02x:%02x:%02x:%02x:%02x",
|
2011-11-13 00:38:55 +01:00
|
|
|
my_nwname, internal_net,
|
|
|
|
(int)my_server_adr.node[0],
|
|
|
|
(int)my_server_adr.node[1],
|
|
|
|
(int)my_server_adr.node[2],
|
|
|
|
(int)my_server_adr.node[3],
|
|
|
|
(int)my_server_adr.node[4],
|
|
|
|
(int)my_server_adr.node[5]));
|
|
|
|
} /* if full */
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void send_down_broadcast(void)
|
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
send_sap_rip_broadcast(2);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void close_all(void)
|
|
|
|
{
|
|
|
|
int j = NEEDED_SOCKETS;
|
2011-11-13 00:38:55 +01:00
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
while (j--) {
|
|
|
|
t_unbind(sockfd[j]);
|
|
|
|
t_close(sockfd[j]);
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
if (pid_ncpserv > 0) {
|
|
|
|
int status;
|
|
|
|
if (fd_ncpserv_out > -1) {
|
|
|
|
close(fd_ncpserv_out);
|
|
|
|
fd_ncpserv_out =-1;
|
|
|
|
}
|
|
|
|
if (fd_ncpserv_in > -1) {
|
|
|
|
close(fd_ncpserv_in);
|
|
|
|
fd_ncpserv_in = -1;
|
|
|
|
}
|
|
|
|
kill(pid_ncpserv, SIGTERM); /* terminate ncpserv */
|
|
|
|
waitpid(pid_ncpserv, &status, 0);
|
|
|
|
kill(pid_ncpserv, SIGKILL); /* kill ncpserv */
|
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
#ifdef LINUX
|
2011-11-13 00:38:56 +01:00
|
|
|
# if INTERNAL_RIP_SAP
|
2011-11-13 00:38:55 +01:00
|
|
|
if (!save_ipx_routes) {
|
|
|
|
for (j=0; j<anz_net_devices;j++) {
|
|
|
|
NW_NET_DEVICE *nd=net_devices[j];
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((1, 0, "Close Device=%s, frame=%d",
|
2011-11-13 00:38:55 +01:00
|
|
|
nd->devname, nd->frame));
|
|
|
|
exit_dev(nd->devname, nd->frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit_ipx(!save_ipx_routes);
|
2011-11-13 00:38:56 +01:00
|
|
|
# endif
|
2011-11-13 00:38:55 +01:00
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void down_server(void)
|
|
|
|
{
|
|
|
|
if (!server_down_stamp) {
|
|
|
|
write_to_ncpserv(0xffff, 0, NULL, 0);
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
fprintf(stderr, "\007");
|
|
|
|
fprintf(stderr, "\n*********************************************\n");
|
|
|
|
fprintf(stderr, "\nWARNING: NWE-SERVER shuts down in %3d sec !!!\n",
|
|
|
|
server_goes_down_secs);
|
|
|
|
fprintf(stderr, "\n*********************************************\n");
|
|
|
|
sleep(1);
|
|
|
|
fprintf(stderr, "\007\n");
|
|
|
|
broadsecs=100;
|
|
|
|
server_down_stamp = akttime_stamp;
|
|
|
|
send_down_broadcast();
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static int fl_get_int=0;
|
2011-11-13 00:38:55 +01:00
|
|
|
static void sig_quit(int rsig)
|
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
signal(rsig, SIG_IGN);
|
|
|
|
signal(SIGHUP, SIG_IGN); /* don't want it anymore */
|
2011-11-13 00:38:56 +01:00
|
|
|
XDPRINTF((2, 0, "Got Signal=%d", rsig));
|
2011-11-13 00:38:55 +01:00
|
|
|
fl_get_int=2;
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
static void handle_hup_reqest(void)
|
2011-11-13 00:38:55 +01:00
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
get_ini_debug(NWSERV);
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2,0, "Got HUP, reading ini."));
|
2011-11-13 00:38:55 +01:00
|
|
|
get_ini(0);
|
|
|
|
write_to_ncpserv(0xeeee, 0, NULL, 0); /* inform ncpserv */
|
|
|
|
fl_get_int=0;
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sig_hup(int rsig)
|
|
|
|
{
|
2011-11-13 00:38:55 +01:00
|
|
|
fl_get_int=1;
|
|
|
|
signal(SIGHUP, sig_hup);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void set_sigs(void)
|
|
|
|
{
|
|
|
|
signal(SIGTERM, sig_quit);
|
|
|
|
signal(SIGQUIT, sig_quit);
|
|
|
|
signal(SIGINT, sig_quit);
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
signal(SIGHUP, sig_hup);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int j = -1;
|
|
|
|
tzset();
|
2011-11-13 00:38:55 +01:00
|
|
|
if (argc > 1) client_mode=1;
|
2011-11-13 00:38:55 +01:00
|
|
|
/* in client mode the testprog 'nwclient' will be startet. */
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
init_tools(NWSERV);
|
|
|
|
get_ini(1);
|
2011-11-13 00:38:55 +01:00
|
|
|
|
|
|
|
while (++j < NEEDED_POLLS) {
|
|
|
|
polls[j].events = POLLIN|POLLPRI;
|
|
|
|
polls[j].revents = 0;
|
|
|
|
if (j < NEEDED_SOCKETS) {
|
|
|
|
int fd = open_ipx_socket(ipx_sock_nummern[j], j, O_RDWR);
|
|
|
|
if (fd < 0) {
|
|
|
|
while (j--) {
|
2011-11-13 00:38:55 +01:00
|
|
|
t_unbind(sockfd[j]);
|
|
|
|
t_close(sockfd[j]);
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
} else {
|
|
|
|
sockfd[j] = fd;
|
|
|
|
polls[j].fd = fd;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
polls[j].fd = -1;
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
U16_TO_BE16(SOCK_NCP, my_server_adr.sock);
|
|
|
|
if (!start_ncpserv(my_nwname, &my_server_adr)) {
|
2011-11-13 00:38:55 +01:00
|
|
|
/* now do polling */
|
2011-11-13 00:38:55 +01:00
|
|
|
time_t broadtime;
|
|
|
|
time(&broadtime);
|
|
|
|
set_sigs();
|
2011-11-13 00:38:56 +01:00
|
|
|
|
|
|
|
#if !FILE_SERVER_INACTIV
|
|
|
|
{
|
|
|
|
ipxAddr_t server_adr_sap;
|
|
|
|
polls[NEEDED_SOCKETS].fd = fd_ncpserv_in;
|
|
|
|
U16_TO_BE16(SOCK_NCP, my_server_adr.sock);
|
|
|
|
memcpy(&server_adr_sap, &my_server_adr, sizeof(ipxAddr_t));
|
|
|
|
U16_TO_BE16(SOCK_SAP, server_adr_sap.sock);
|
|
|
|
insert_delete_server((uint8*)my_nwname, 0x4,
|
|
|
|
&my_server_adr, &server_adr_sap, 0, 0, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
while (1) {
|
2011-11-13 00:38:55 +01:00
|
|
|
int anz_poll = poll(polls, NEEDED_POLLS, broadsecs);
|
2011-11-13 00:38:55 +01:00
|
|
|
time(&akttime_stamp);
|
2011-11-13 00:38:55 +01:00
|
|
|
if (fl_get_int) {
|
|
|
|
if (fl_get_int == 1) handle_hup_reqest();
|
|
|
|
else if (fl_get_int == 2) down_server();
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
if (anz_poll > 0) { /* i have to work */
|
2011-11-13 00:38:55 +01:00
|
|
|
struct pollfd *p = &polls[0];
|
|
|
|
j = -1;
|
|
|
|
while (++j < NEEDED_POLLS) {
|
|
|
|
if (p->revents){
|
2011-11-13 00:38:55 +01:00
|
|
|
if (j < NEEDED_SOCKETS) { /* socket */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((99, 0,"POLL %d, SOCKET %x", p->revents, sock_nummern[j]));
|
|
|
|
if (p->revents & ~POLLIN)
|
|
|
|
errorp(0, "STREAM error", "revents=0x%x", p->revents );
|
|
|
|
else handle_event(p->fd, sock_nummern[j], j);
|
2011-11-13 00:38:55 +01:00
|
|
|
} else { /* fd_ncpserv_in */
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2, 0, "POLL %d, fh=%d", p->revents, p->fd));
|
|
|
|
if (p->revents & ~POLLIN)
|
|
|
|
errorp(0, "STREAM error", "revents=0x%x", p->revents );
|
2011-11-13 00:38:55 +01:00
|
|
|
else {
|
|
|
|
if (p->fd == fd_ncpserv_in) {
|
|
|
|
int what;
|
|
|
|
int conn;
|
2011-11-13 00:38:55 +01:00
|
|
|
int size;
|
2011-11-13 00:38:55 +01:00
|
|
|
ipxAddr_t adr;
|
|
|
|
if (sizeof(int) == read(fd_ncpserv_in,
|
|
|
|
(char*)&what, sizeof(int))) {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((2, 0, "GOT ncpserv_in what=0x%x", what));
|
2011-11-13 00:38:55 +01:00
|
|
|
switch (what) {
|
|
|
|
case 0x2222 : /* insert wdog connection */
|
|
|
|
if (sizeof(int) == read(fd_ncpserv_in,
|
|
|
|
(char*)&conn, sizeof(int))
|
2011-11-13 00:38:55 +01:00
|
|
|
&& sizeof(int) == read(fd_ncpserv_in,
|
|
|
|
(char*)&size, sizeof(int))
|
2011-11-13 00:38:55 +01:00
|
|
|
&& sizeof(ipxAddr_t) == read(fd_ncpserv_in,
|
2011-11-13 00:38:55 +01:00
|
|
|
(char*)&adr, size))
|
2011-11-13 00:38:55 +01:00
|
|
|
insert_wdog_conn(conn, &adr);
|
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 0x4444 : /* reset wdog connection = 0 */
|
|
|
|
/* force test wdog conn 1 = 1 */
|
|
|
|
/* force test wdog conn 2 = 2 */
|
2011-11-13 00:38:55 +01:00
|
|
|
/* remove wdog = 99 */
|
2011-11-13 00:38:55 +01:00
|
|
|
if (sizeof(int) == read(fd_ncpserv_in,
|
2011-11-13 00:38:55 +01:00
|
|
|
(char*)&conn, sizeof(int))
|
|
|
|
&& sizeof(int) == read(fd_ncpserv_in,
|
|
|
|
(char*)&what, sizeof(what)))
|
|
|
|
modify_wdog_conn(conn, what);
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 0x6666 : /* bcast message */
|
2011-11-13 00:38:55 +01:00
|
|
|
if (sizeof(int) == read(fd_ncpserv_in,
|
2011-11-13 00:38:55 +01:00
|
|
|
(char*)&conn, sizeof(int)))
|
|
|
|
send_bcasts(conn);
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
2011-11-13 00:38:55 +01:00
|
|
|
case 0xffff : /* down file server */
|
2011-11-13 00:38:55 +01:00
|
|
|
if (sizeof(int) == read(fd_ncpserv_in,
|
2011-11-13 00:38:55 +01:00
|
|
|
(char*)&conn, sizeof(int)) &&
|
|
|
|
conn == what) {
|
|
|
|
down_server();
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default : break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-11-13 00:38:55 +01:00
|
|
|
if (! --anz_poll) break;
|
|
|
|
} /* if */
|
|
|
|
p++;
|
|
|
|
} /* while */
|
2011-11-13 00:38:55 +01:00
|
|
|
} else {
|
2011-11-13 00:38:55 +01:00
|
|
|
XDPRINTF((99,0,"POLLING ..."));
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
if (server_down_stamp) {
|
|
|
|
if (akttime_stamp - server_down_stamp > server_goes_down_secs) break;
|
|
|
|
} else {
|
2011-11-13 00:38:56 +01:00
|
|
|
if (akttime_stamp - broadtime > (broadsecs / 1000)) { /* ca. 30 seconds */
|
2011-11-13 00:38:55 +01:00
|
|
|
send_sap_rip_broadcast((broadsecs<3000) ? 1 :0); /* firsttime broadcast */
|
2011-11-13 00:38:56 +01:00
|
|
|
if (broadsecs < 30000) {
|
2011-11-13 00:38:55 +01:00
|
|
|
rip_for_net(MAX_U32);
|
|
|
|
get_servers();
|
|
|
|
broadsecs *= 2;
|
2011-11-13 00:38:56 +01:00
|
|
|
if (broadsecs > 30000)
|
|
|
|
#if INTERNAL_RIP_SAP
|
|
|
|
broadsecs = 30000; /* every 30 sec. */
|
|
|
|
#else
|
|
|
|
broadsecs = 60000; /* every 60 sec. */
|
|
|
|
#endif
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
send_wdogs();
|
|
|
|
broadtime = akttime_stamp;
|
|
|
|
} else if (client_mode) get_servers(); /* Here more often */
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
} /* while */
|
|
|
|
send_down_broadcast();
|
2011-11-13 00:38:55 +01:00
|
|
|
sleep(1);
|
|
|
|
send_down_broadcast();
|
2011-11-13 00:38:55 +01:00
|
|
|
}
|
|
|
|
close_all();
|
2011-11-13 00:38:55 +01:00
|
|
|
fprintf(stderr, "\nNWE-SERVER is down now !!\n");
|
2011-11-13 00:38:55 +01:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|