/* THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. */ #include #include #include #include #include #include "types.h" #include "config.h" #include "args.h" #include "text.h" #include "network.h" #include "mono.h" #include "ipx.h" #include "ipx_drv.h" //added 05/17/99 Matt Mueller - needed to redefine FD_* so that no asm is used #include "checker.h" //end addition -MM #define MAX_IPX_DATA 576 ubyte broadcast_addr[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; ubyte null_addr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; //int ipx_fd; //ipx_socket_t ipx_socket_data; ubyte ipx_installed=0; ubyte ipx_atexit_installed=0; //ushort ipx_socket = 0; u_int32_t ipx_network = 0; ubyte ipx_MyAddress[10]; int ipx_packetnum = 0; /* Sequence number */ /* User defined routing stuff */ typedef struct user_address { ubyte network[4]; ubyte node[6]; ubyte address[6]; } user_address; #define MAX_USERS 64 int Ipx_num_users = 0; user_address Ipx_users[MAX_USERS]; #define MAX_NETWORKS 64 int Ipx_num_networks = 0; uint Ipx_networks[MAX_NETWORKS]; void ipx_close(void); int ipx_general_PacketReady(int fd) { fd_set set; struct timeval tv; FD_ZERO(&set); FD_SET(fd, &set); tv.tv_sec = tv.tv_usec = 0; if (select(fd + 1, &set, NULL, NULL, &tv) > 0) return 1; else return 0; } struct ipx_driver *driver = NULL; ubyte * ipx_get_my_server_address() { return (ubyte *)&ipx_network; } ubyte * ipx_get_my_local_address() { return (ubyte *)(ipx_MyAddress + 4); } //--------------------------------------------------------------- // Initializes all IPX internals. // If socket_number==0, then opens next available socket. // Returns: 0 if successful. // -1 if socket already open. // -2 if socket table full. // -3 if IPX not installed. // -4 if couldn't allocate low dos memory // -5 if error with getting internetwork address int ipx_init( int socket_number ) { int i; if (!driver) return -1; memset(ipx_MyAddress,0,10); if ((i = FindArg("-ipxnetwork")) && Args[i + 1]) { unsigned long n = strtol(Args[i + 1], NULL, 16); ipx_MyAddress[0] = n >> 24; ipx_MyAddress[1] = (n >> 16) & 255; ipx_MyAddress[2] = (n >> 8) & 255; ipx_MyAddress[3] = n & 255; printf("IPX: Using network %08x\n", (unsigned int)n); } if (driver->OpenSocket(socket_number)) { return -3; } // if (driver->GetMyAddress) // driver->GetMyAddress(); memcpy(&ipx_network, ipx_MyAddress, 4); Ipx_num_networks = 0; memcpy( &Ipx_networks[Ipx_num_networks++], &ipx_network, 4 ); ipx_installed = 1; if (ipx_atexit_installed==0){ atexit(ipx_close); ipx_atexit_installed=1; } return 0; } void ipx_close() { if (ipx_installed) driver->CloseSocket(); ipx_installed = 0; } //########printfs?? int ipx_set_driver(char *arg) { ipx_close(); if (!FindArg( "-nonetwork" )) { int socket=0; int ipx_error; int t; if (Inferno_verbose) printf( "\n%s ", TXT_INITIALIZING_NETWORK); if ((t=FindArg("-socket"))) socket = atoi( Args[t+1] ); if ((t=FindArg("-pps")) && (t = atoi(Args[t+1])) && (t >= 2) && (t <= 20)) { Network_initial_pps = t; } if ( FindArg("-shortpackets") ) Network_initial_shortpackets = 1; #ifdef SUPPORTS_NET_IP if (strcmp(arg,"ip")==0){ driver=&ipx_ip; }else #endif driver=arch_ipx_set_driver(arg); if ((ipx_error=ipx_init(IPX_DEFAULT_SOCKET+socket))==0) { if (Inferno_verbose) printf( "%s %d.\n", TXT_IPX_CHANNEL, socket ); Network_active = 1; } else { switch( ipx_error ) { case 3: if (Inferno_verbose) printf( "%s\n", TXT_NO_NETWORK); break; case -2: if (Inferno_verbose) printf( "%s 0x%x.\n", TXT_SOCKET_ERROR, IPX_DEFAULT_SOCKET+socket); break; case -4: if (Inferno_verbose) printf( "%s\n", TXT_MEMORY_IPX ); break; default: if (Inferno_verbose) printf( "%s %d", TXT_ERROR_IPX, ipx_error ); } if (Inferno_verbose) printf( "%s\n",TXT_NETWORK_DISABLED); Network_active = 0; // Assume no network } ipx_read_user_file( "descent.usr" ); ipx_read_network_file( "descent.net" ); //if ( FindArg( "-dynamicsockets" )) // Network_allow_socket_changes = 1; //else // Network_allow_socket_changes = 0; } else { if (Inferno_verbose) printf( "%s\n", TXT_NETWORK_DISABLED); Network_active = 0; // Assume no network } return ipx_installed?0:-1; } int ipx_get_packet_data( ubyte * data ) { if (driver->GetPacketData) return driver->GetPacketData(data); else { struct ipx_recv_data rd; char *buf; int size; if (driver->usepacketnum) buf=alloca(MAX_IPX_DATA); else buf=data; //edited 04/12/99 Matt Mueller - duh, we don't want to throw all that data away! while (driver->PacketReady()) { if ((size = driver->ReceivePacket(buf, MAX_IPX_DATA, &rd)) > 4) { if (!memcmp(rd.src_network, ipx_MyAddress, 10)) { mprintf((0,"dumped my own packet\n")); continue; /* don't get own pkts */ } if (driver->usepacketnum){ memcpy(data, buf + 4, size - 4); return size-4; }else{ return size; } } } return 0; } } void ipx_send_packet_data( ubyte * data, int datasize, ubyte *network, ubyte *address, ubyte *immediate_address ) { if (driver->SendPacketData) driver->SendPacketData(data,datasize,network,address,immediate_address); else{ IPXPacket_t ipx_header; memcpy(ipx_header.Destination.Network, network, 4); memcpy(ipx_header.Destination.Node, immediate_address, 6); // *(ushort *)ipx_header.Destination.Socket = htons(ipx_socket_data.socket); ipx_header.PacketType = 4; /* Packet Exchange */ if (driver->usepacketnum){ ubyte buf[MAX_IPX_DATA]; *(uint *)buf = ipx_packetnum++; memcpy(buf + 4, data, datasize); driver->SendPacket(&ipx_header, buf, datasize + 4); }else driver->SendPacket(&ipx_header, data, datasize);//we can save 4 bytes } } void ipx_get_local_target( ubyte * server, ubyte * node, ubyte * local_target ) { if (driver->GetLocalTarget) driver->GetLocalTarget(server,node,local_target); else // let's hope Linux knows how to route it memcpy( local_target, node, 6 ); } void ipx_send_broadcast_packet_data( ubyte * data, int datasize ) { int i, j; ubyte local_address[6]; // Set to all networks besides mine for (i=0; iCheckReadyToJoin) return 1; return driver->CheckReadyToJoin(server,node); } int ipx_change_default_socket( ushort socket_number ) { if ( !ipx_installed ) return -3; driver->CloseSocket(); if (driver->OpenSocket(socket_number)) { return -3; } return 0; } void ipx_read_user_file(char * filename) { FILE * fp; user_address tmp; char temp_line[132], *p1; int n, ln=0, x; if (!filename) return; Ipx_num_users = 0; fp = fopen( filename, "rt" ); if ( !fp ) return; printf( "Broadcast Users:\n" ); while (fgets(temp_line, 132, fp)) { ln++; p1 = strchr(temp_line,'\n'); if (p1) *p1 = '\0'; p1 = strchr(temp_line,';'); if (p1) *p1 = '\0'; #if 1 // adb: replaced sscanf(..., "%2x...", (char *)...) with better, but longer code if (strlen(temp_line) >= 21 && temp_line[8] == '/') { for (n = 0; n < 4; n++) { if (sscanf(temp_line + n * 2, "%2x", &x) != 1) break; tmp.network[n] = x; } if (n != 4) continue; for (n = 0; n < 6; n++) { if (sscanf(temp_line + 9 + n * 2, "%2x", &x) != 1) break; tmp.node[n] = x; } if (n != 6) continue; } else continue; #else n = sscanf( temp_line, "%2x%2x%2x%2x/%2x%2x%2x%2x%2x%2x", &tmp.network[0], &tmp.network[1], &tmp.network[2], &tmp.network[3], &tmp.node[0], &tmp.node[1], &tmp.node[2],&tmp.node[3], &tmp.node[4], &tmp.node[5] ); if ( n != 10 ) continue; #endif if ( Ipx_num_users < MAX_USERS ) { ubyte * ipx_real_buffer = (ubyte *)&tmp; ipx_get_local_target( tmp.network, tmp.node, tmp.address ); Ipx_users[Ipx_num_users++] = tmp; printf( "%02X%02X%02X%02X/", ipx_real_buffer[0],ipx_real_buffer[1],ipx_real_buffer[2],ipx_real_buffer[3] ); printf( "%02X%02X%02X%02X%02X%02X\n", ipx_real_buffer[4],ipx_real_buffer[5],ipx_real_buffer[6],ipx_real_buffer[7],ipx_real_buffer[8],ipx_real_buffer[9] ); } else { printf( "Too many addresses in %s! (Limit of %d)\n", filename, MAX_USERS ); fclose(fp); return; } } fclose(fp); } void ipx_read_network_file(char * filename) { FILE * fp; user_address tmp; char temp_line[132], *p1; int i, n, ln=0, x; if (!filename) return; fp = fopen( filename, "rt" ); if ( !fp ) return; printf( "Using Networks:\n" ); for (i=0; i= 8) { for (n = 0; n < 4; n++) { if (sscanf(temp_line + n * 2, "%2x", &x) != 1) break; tmp.network[n] = x; } if (n != 4) continue; } else continue; #else n = sscanf( temp_line, "%2x%2x%2x%2x", &tmp.network[0], &tmp.network[1], &tmp.network[2], &tmp.network[3] ); if ( n != 4 ) continue; #endif if ( Ipx_num_networks < MAX_NETWORKS ) { int j; for (j=0; j= Ipx_num_networks ) { memcpy( &Ipx_networks[Ipx_num_networks++], tmp.network, 4 ); printf(" %02x%02x%02x%02x\n", tmp.network[0], tmp.network[1], tmp.network[2], tmp.network[3] ); } } else { printf( "Too many networks in %s! (Limit of %d)\n", filename, MAX_NETWORKS ); fclose(fp); return; } } fclose(fp); }