]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/winnet.c
win32 net fixes
[btb/d2x.git] / arch / win32 / winnet.c
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
11 COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14 /*
15  *
16  * Win32 lower-level network code.
17  * implements functions declared in include/ipx.h
18  *
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include <conf.h>
23 #endif
24
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <winsock.h>
29
30 #include "args.h"
31 #include "error.h"
32 #include "ipx.h"
33 #include "ipx_drv.h"
34 #include "ipx_udp.h"
35 #include "ipx_mcast4.h"
36 #include "inferno.h"
37
38
39 extern struct ipx_driver ipx_win;
40
41 #define MAX_IPX_DATA 576
42
43 int ipx_fd;
44 ipx_socket_t ipx_socket_data;
45 ubyte ipx_installed=0;
46 ushort ipx_socket = 0;
47 uint ipx_network = 0;
48 ubyte ipx_MyAddress[10];
49 int ipx_packetnum = 0;                  /* Sequence number */
50
51 /* User defined routing stuff */
52 typedef struct user_address {
53         ubyte network[4];
54         ubyte node[6];
55         ubyte address[6];
56 } user_address;
57 #define MAX_USERS 64
58 int Ipx_num_users = 0;
59 user_address Ipx_users[MAX_USERS];
60
61 #define MAX_NETWORKS 64
62 int Ipx_num_networks = 0;
63 uint Ipx_networks[MAX_NETWORKS];
64
65 int ipx_general_PacketReady(ipx_socket_t *s) {
66         fd_set set;
67         struct timeval tv;
68         
69         FD_ZERO(&set);
70         FD_SET(s->fd, &set);
71         tv.tv_sec = tv.tv_usec = 0;
72         if (select(FD_SETSIZE, &set, NULL, NULL, &tv) > 0)
73                 return 1;
74         else
75                 return 0;
76 }
77
78 struct ipx_driver *driver = &ipx_win;
79
80 ubyte * ipx_get_my_server_address()
81 {
82         return (ubyte *)&ipx_network;
83 }
84
85 ubyte * ipx_get_my_local_address()
86 {
87         return (ubyte *)(ipx_MyAddress + 4);
88 }
89
90 void arch_ipx_set_driver(int ipx_driver)
91 {
92         switch(ipx_driver) {
93         case IPX_DRIVER_IPX: driver = &ipx_win; break;
94         case IPX_DRIVER_UDP: driver = &ipx_udp; break;
95         case IPX_DRIVER_MCAST4: driver = &ipx_mcast4; break;
96         default: Int3();
97         }
98 }
99
100 int ipx_init(int socket_number)
101 {
102         int i;
103
104         WORD wVersionRequested;
105         WSADATA wsaData;
106
107         wVersionRequested = MAKEWORD(2, 0);
108         if (WSAStartup( wVersionRequested, &wsaData))
109         {
110           return IPX_SOCKET_ALREADY_OPEN;
111         }
112
113 #if 0
114         if ( LOBYTE( wsaData.wVersion ) != 2 ||
115           HIBYTE( wsaData.wVersion ) != 0 ) {
116            /* We couldn't find a usable WinSock DLL. */
117            WSACleanup( );
118            return IPX_SOCKET_TABLE_FULL;
119         }
120 #endif
121
122         if ((i = FindArg("-ipxnetwork")) && Args[i + 1]) {
123                 unsigned long n = strtol(Args[i + 1], NULL, 16);
124                 ipx_MyAddress[0] = (unsigned char)n >> 24; ipx_MyAddress[1] = (unsigned char)(n >> 16) & 255;
125                 ipx_MyAddress[2] = (unsigned char)(n >> 8) & 255; ipx_MyAddress[3] = (unsigned char)n & 255;
126                 printf("IPX: Using network %08x\n", (int) n);
127         }
128         if (driver->OpenSocket(&ipx_socket_data, socket_number)) {
129                 return IPX_NOT_INSTALLED;
130         }
131         driver->GetMyAddress();
132         memcpy(&ipx_network, ipx_MyAddress, 4);
133         Ipx_num_networks = 0;
134         memcpy( &Ipx_networks[Ipx_num_networks++], &ipx_network, 4 );
135         ipx_installed = 1;
136         atexit(ipx_close);
137         printf("ipx succesfully installed\n");
138         return IPX_INIT_OK;
139 }
140
141 void ipx_close()
142 {
143         if (ipx_installed) {
144                 WSACleanup();
145                 driver->CloseSocket(&ipx_socket_data);
146         }
147         ipx_installed = 0;
148 }
149
150 int ipx_get_packet_data( ubyte * data )
151 {
152         struct ipx_recv_data rd;
153         char buf[MAX_IPX_DATA];
154 //killed 6-15-99 to get rid of compile warnings - OE
155 //      uint best_id = 0;
156 //      uint pkt_num;
157 //end kill - OE
158         int size;
159         int best_size = 0;
160 //edited 04/12/99 Matt Mueller - duh, we don't want to throw all that data away!
161         //--killed-- Like the original, only take latest packet, throw away rest
162         //do _NOT_ throw them away!
163         while (driver->PacketReady(&ipx_socket_data)) {
164                 if ((size = 
165                      driver->ReceivePacket(&ipx_socket_data, buf, 
166                       sizeof(buf), &rd)) > 4) {
167                      if (!memcmp(rd.src_network, ipx_MyAddress, 10)) 
168                         continue;       /* don't get own pkts */
169 //--killed--                 pkt_num = *(uint *)buf;
170 //--killed--                 if (pkt_num >= best_id) {
171                         memcpy(data, buf + 4, size - 4);
172                                 return size-4;
173 //--killed--                    best_id = pkt_num;
174 //--killed--                    best_size = size - 4;
175 //--killed--                 }
176 //end edit -MM
177                 }
178         }
179         return best_size;
180 }
181
182 void ipx_send_packet_data( ubyte * data, int datasize, ubyte *network, ubyte *address, ubyte *immediate_address )
183 {
184         u_char buf[MAX_IPX_DATA];
185         IPXPacket_t ipx_header;
186         
187         memcpy(ipx_header.Destination.Network, network, 4);
188         memcpy(ipx_header.Destination.Node, immediate_address, 6);
189         {
190                 u_short socket = htons(ipx_socket_data.socket);
191                 memcpy(ipx_header.Destination.Socket, &socket, 2);
192         }
193         ipx_header.PacketType = 4; /* Packet Exchange */
194         {
195                 int packetnum = INTEL_INT(ipx_packetnum);
196                 memcpy(buf, &packetnum, 4);
197         }
198         ipx_packetnum++;
199         memcpy(buf + 4, data, datasize);
200         driver->SendPacket(&ipx_socket_data, &ipx_header, buf, datasize + 4);
201 }
202
203 void ipx_get_local_target( ubyte * server, ubyte * node, ubyte * local_target )
204 {
205         // let's hope Linux knows how to route it
206         memcpy( local_target, node, 6 );
207 }
208
209 void ipx_send_broadcast_packet_data( ubyte * data, int datasize )       
210 {
211         int i, j;
212         ubyte broadcast[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
213         ubyte local_address[6];
214
215         // Set to all networks besides mine
216         for (i=0; i<Ipx_num_networks; i++ )     {
217                 if ( memcmp( &Ipx_networks[i], &ipx_network, 4 ) )      {
218                         ipx_get_local_target( (ubyte *)&Ipx_networks[i], broadcast, local_address );
219                         ipx_send_packet_data( data, datasize, (ubyte *)&Ipx_networks[i], broadcast, local_address );
220                 } else {
221                         ipx_send_packet_data( data, datasize, (ubyte *)&Ipx_networks[i], broadcast, broadcast );
222                 }
223         }
224
225         //OLDipx_send_packet_data( data, datasize, (ubyte *)&ipx_network, broadcast, broadcast );
226
227         // Send directly to all users not on my network or in the network list.
228         for (i=0; i<Ipx_num_users; i++ )        {
229                 if ( memcmp( Ipx_users[i].network, &ipx_network, 4 ) )  {
230                         for (j=0; j<Ipx_num_networks; j++ )             {
231                                 if (!memcmp( Ipx_users[i].network, &Ipx_networks[j], 4 ))
232                                         goto SkipUser;
233                         }
234                         ipx_send_packet_data( data, datasize, Ipx_users[i].network, Ipx_users[i].node, Ipx_users[i].address );
235 SkipUser:
236                         j = 0;
237                 }
238         }
239 }
240
241 // Sends a non-localized packet... needs 4 byte server, 6 byte address
242 void ipx_send_internetwork_packet_data( ubyte * data, int datasize, ubyte * server, ubyte *address )
243 {
244         ubyte local_address[6];
245
246         if ( (*(uint *)server) != 0 )   {
247                 ipx_get_local_target( server, address, local_address );
248                 ipx_send_packet_data( data, datasize, server, address, local_address );
249         } else {
250                 // Old method, no server info.
251                 ipx_send_packet_data( data, datasize, server, address, address );
252         }
253 }
254
255 int ipx_change_default_socket( ushort socket_number )
256 {
257         if ( !ipx_installed ) return -3;
258
259         driver->CloseSocket(&ipx_socket_data);
260         if (driver->OpenSocket(&ipx_socket_data, socket_number)) {
261                 return -3;
262         }
263         return 0;
264 }
265
266 void ipx_read_user_file(char * filename)
267 {
268         FILE * fp;
269         user_address tmp;
270         char temp_line[132], *p1;
271         int n, ln=0, x;
272
273         if (!filename) return;
274
275         Ipx_num_users = 0;
276
277         fp = fopen( filename, "rt" );
278         if ( !fp ) return;
279
280         printf( "Broadcast Users:\n" );
281
282         while (fgets(temp_line, 132, fp)) {
283                 ln++;
284                 p1 = strchr(temp_line,'\n'); if (p1) *p1 = '\0';
285                 p1 = strchr(temp_line,';'); if (p1) *p1 = '\0';
286 #if 1 // adb: replaced sscanf(..., "%2x...", (char *)...) with better, but longer code
287                 if (strlen(temp_line) >= 21 && temp_line[8] == '/') {
288                         for (n = 0; n < 4; n++) {
289                                 if (sscanf(temp_line + n * 2, "%2x", &x) != 1)
290                                         break;
291                                 tmp.network[n] = x;
292                         }
293                         if (n != 4)
294                                 continue;
295                         for (n = 0; n < 6; n++) {
296                                 if (sscanf(temp_line + 9 + n * 2, "%2x", &x) != 1)
297                                         break;
298                                 tmp.node[n] = x;
299                         }
300                         if (n != 6)
301                                 continue;
302                 } else
303                         continue;
304 #else
305                 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] );
306                 if ( n != 10 ) continue;
307 #endif
308                 if ( Ipx_num_users < MAX_USERS )        {
309                         ubyte * ipx_real_buffer = (ubyte *)&tmp;
310                         ipx_get_local_target( tmp.network, tmp.node, tmp.address );
311                         Ipx_users[Ipx_num_users++] = tmp;
312                         printf( "%02X%02X%02X%02X/", ipx_real_buffer[0],ipx_real_buffer[1],ipx_real_buffer[2],ipx_real_buffer[3] );
313                         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] );
314                 } else {
315                         printf( "Too many addresses in %s! (Limit of %d)\n", filename, MAX_USERS );
316                         fclose(fp);
317                         return;
318                 }
319         }
320         fclose(fp);
321 }
322
323
324 void ipx_read_network_file(char * filename)
325 {
326         FILE * fp;
327         user_address tmp;
328         char temp_line[132], *p1;
329         int i, n, ln=0, x;
330
331         if (!filename) return;
332
333         fp = fopen( filename, "rt" );
334         if ( !fp ) return;
335
336         printf( "Using Networks:\n" );
337         for (i=0; i<Ipx_num_networks; i++ )             {
338                 ubyte * n1 = (ubyte *)&Ipx_networks[i];
339                 printf("* %02x%02x%02x%02x\n", n1[0], n1[1], n1[2], n1[3] );
340         }
341
342         while (fgets(temp_line, 132, fp)) {
343                 ln++;
344                 p1 = strchr(temp_line,'\n'); if (p1) *p1 = '\0';
345                 p1 = strchr(temp_line,';'); if (p1) *p1 = '\0';
346 #if 1 // adb: replaced sscanf(..., "%2x...", (char *)...) with better, but longer code
347                 if (strlen(temp_line) >= 8) {
348                         for (n = 0; n < 4; n++) {
349                                 if (sscanf(temp_line + n * 2, "%2x", &x) != 1)
350                                         break;
351                                 tmp.network[n] = x;
352                         }
353                         if (n != 4)
354                                 continue;
355                 } else
356                         continue;
357 #else
358                 n = sscanf( temp_line, "%2x%2x%2x%2x", &tmp.network[0], &tmp.network[1], &tmp.network[2], &tmp.network[3] );
359                 if ( n != 4 ) continue;
360 #endif
361                 if ( Ipx_num_networks < MAX_NETWORKS  ) {
362                         int j;
363                         for (j=0; j<Ipx_num_networks; j++ )     
364                                 if ( !memcmp( &Ipx_networks[j], tmp.network, 4 ) )
365                                         break;
366                         if ( j >= Ipx_num_networks )    {
367                                 memcpy( &Ipx_networks[Ipx_num_networks++], tmp.network, 4 );
368                                 printf("  %02x%02x%02x%02x\n", tmp.network[0], tmp.network[1], tmp.network[2], tmp.network[3] );
369                         }
370                 } else {
371                         printf( "Too many networks in %s! (Limit of %d)\n", filename, MAX_NETWORKS );
372                         fclose(fp);
373                         return;
374                 }
375         }
376         fclose(fp);
377 }
378
379 // Initalizes the protocol-specific member of the netgame packet.
380 void ipx_init_netgame_aux_data(ubyte buf[])
381 {
382         if(driver->InitNetgameAuxData)
383                 driver->InitNetgameAuxData(&ipx_socket_data, buf);
384 }
385
386 // Handles the protocol-specific member of the netgame packet.
387 int ipx_handle_netgame_aux_data(const ubyte buf[])
388 {
389         if(driver->HandleNetgameAuxData)
390                 return driver->HandleNetgameAuxData(&ipx_socket_data, buf);
391         return 0;
392 }
393
394 // Notifies the protocol that we're done with a particular game
395 void ipx_handle_leave_game()
396 {
397         if(driver->HandleLeaveGame)
398                 driver->HandleLeaveGame(&ipx_socket_data);
399 }
400
401 // Send a packet to every member of the game.
402 int ipx_send_game_packet(ubyte *data, int datasize)
403 {
404         if(driver->SendGamePacket) {
405                 u_char buf[MAX_IPX_DATA];
406
407                 memcpy(buf, &ipx_packetnum, 4);
408                 ipx_packetnum++;
409                 memcpy(buf + 4, data, datasize);
410                 *(uint *)data = ipx_packetnum++;
411                 return driver->SendGamePacket(&ipx_socket_data, buf, datasize + 4);
412         } else {
413                 // Loop through all the players unicasting the packet.
414                 int i;
415
416                 //printf("Sending game packet: N_players = %i\n", N_players);
417
418                 for(i=0; i<N_players; i++) {
419                         if(Players[i].connected && (i != Player_num))
420                                 ipx_send_packet_data(data, datasize, NetPlayers.players[i].network.ipx.server, NetPlayers.players[i].network.ipx.node,Players[i].net_address);
421                 }
422                 return datasize;
423         }
424
425         return 0;
426 }