Kernel - Slight reworks to timer code
[tpg/acess2.git] / Modules / IPStack / link.c
index 07234df..8bca51f 100644 (file)
@@ -37,12 +37,10 @@ void Link_RegisterType(Uint16 Type, tPacketCallback Callback)
         int    i;
        void    *tmp;
        
-       Type = htons(Type);     // Set to network order
-       
        for( i = giRegisteredTypes; i -- ; )
        {
                if(gaRegisteredTypes[i].Type == Type) {
-                       Log_Warning("NET", "Attempt to register 0x%x twice", Type);
+                       Log_Warning("Net Link", "Attempt to register 0x%x twice", Type);
                        return ;
                }
                // Ooh! Free slot!
@@ -54,7 +52,7 @@ void Link_RegisterType(Uint16 Type, tPacketCallback Callback)
                giRegisteredTypeSpace += 5;
                tmp = realloc(gaRegisteredTypes, giRegisteredTypeSpace*sizeof(*gaRegisteredTypes));
                if(!tmp) {
-                       Log_Warning("NET",
+                       Log_Warning("Net Link",
                                "Out of heap space! (Attempted to allocate %i)",
                                giRegisteredTypeSpace*sizeof(*gaRegisteredTypes)
                                );
@@ -79,7 +77,7 @@ void Link_SendPacket(tAdapter *Adapter, Uint16 Type, tMacAddr To, int Length, vo
        Uint8   buf[bufSize];   // dynamic stack arrays ftw!
        tEthernetHeader *hdr = (void*)buf;
        
-       Log_Log("NET", "Sending %i bytes to %02x:%02x:%02x:%02x:%02x:%02x (Type 0x%x)",
+       Log_Log("Net Link", "Sending %i bytes to %02x:%02x:%02x:%02x:%02x:%02x (Type 0x%x)",
                Length, To.B[0], To.B[1], To.B[2], To.B[3], To.B[4], To.B[5], Type);
        
        hdr->Dest = To;
@@ -94,27 +92,13 @@ void Link_SendPacket(tAdapter *Adapter, Uint16 Type, tMacAddr To, int Length, vo
        VFS_Write(Adapter->DeviceFD, bufSize, buf);
 }
 
-/**
- * \fn void Link_WatchDevice(tAdapter *Adapter)
- * \brief Spawns a worker thread to watch the specified adapter
- */
-void Link_WatchDevice(tAdapter *Adapter)
+void Link_WorkerThread(void *Ptr)
 {
-        int    tid = Proc_SpawnWorker();       // Create a new worker thread
-       
-       if(tid < 0) {
-               Log_Warning("NET", "Unable to create watcher thread for '%s'", Adapter->Device);
-               return ;
-       }
-       
-       if(tid > 0) {
-               Log_Log("NET", "Watching '%s' using tid %i", Adapter->Device, tid);
-               return ;
-       }
-       
-       if( !gbLink_CRCTableGenerated )
-               Link_InitCRC();
+       tAdapter        *Adapter = Ptr;
        
+       Threads_SetName(Adapter->Device);
+       Log_Log("Net Link", "Thread %i watching '%s'", Threads_GetTID(), Adapter->Device);
+
        // Child Thread
        while(Adapter->DeviceFD != -1)
        {
@@ -124,34 +108,37 @@ void Link_WatchDevice(tAdapter *Adapter)
                Uint32  checksum;
                
                // Wait for a packet (Read on a network device is blocking)
-               Log_Debug("NET", "Waiting on adapter FD#0x%x", Adapter->DeviceFD);
+               //Log_Debug("NET", "Waiting on adapter FD#0x%x", Adapter->DeviceFD);
                ret = VFS_Read(Adapter->DeviceFD, MAX_PACKET_SIZE, buf);
                if(ret == -1)   break;
                
-               if(ret <= (int)sizeof(tEthernetHeader)) {
-                       Log_Log("NET", "Recieved an undersized packet");
+               if(ret < sizeof(tEthernetHeader)) {
+                       Log_Log("Net Link", "Recieved an undersized packet (%i < %i)",
+                               ret, sizeof(tEthernetHeader));
                        continue;
                }
                
-               Log_Log("NET", "Packet from %02x:%02x:%02x:%02x:%02x:%02x",
+               Log_Log("Net Link",
+                       "Packet from %02x:%02x:%02x:%02x:%02x:%02x"
+                       " to %02x:%02x:%02x:%02x:%02x:%02x (Type=%04x)",
                        hdr->Src.B[0], hdr->Src.B[1], hdr->Src.B[2],
-                       hdr->Src.B[3], hdr->Src.B[4], hdr->Src.B[5]
-                       );
-               Log_Log("NET", "to %02x:%02x:%02x:%02x:%02x:%02x",
+                       hdr->Src.B[3], hdr->Src.B[4], hdr->Src.B[5],
                        hdr->Dest.B[0], hdr->Dest.B[1], hdr->Dest.B[2],
-                       hdr->Dest.B[3], hdr->Dest.B[4], hdr->Dest.B[5]
+                       hdr->Dest.B[3], hdr->Dest.B[4], hdr->Dest.B[5],
+                       ntohs(hdr->Type)
                        );
                checksum = *(Uint32*)&hdr->Data[ret-sizeof(tEthernetHeader)-4];
-               Log_Log("NET", "Checksum 0x%08x", checksum);
+               //Log_Log("NET", "Checksum 0x%08x", checksum);
+               // TODO: Check checksum
                
                // Check if there is a registered callback for this packet type
                for( i = giRegisteredTypes; i--; )
                {
-                       if(gaRegisteredTypes[i].Type == hdr->Type)      break;
+                       if(gaRegisteredTypes[i].Type == ntohs(hdr->Type))       break;
                }
                // No? Ignore it
                if( i == -1 ) {
-                       Log_Log("NET", "Unregistered type 0x%x", ntohs(hdr->Type));
+                       Log_Log("Net Link", "Unregistered type 0x%x", ntohs(hdr->Type));
                        continue;
                }
                
@@ -164,11 +151,32 @@ void Link_WatchDevice(tAdapter *Adapter)
                        );
        }
        
-       Log_Log("NET", "Watcher terminated (file closed)");
+       Log_Log("Net Link", "Watcher terminated (file closed)");
        
        Threads_Exit(0, 0);
 }
 
+/**
+ * \fn void Link_WatchDevice(tAdapter *Adapter)
+ * \brief Spawns a worker thread to watch the specified adapter
+ */
+void Link_WatchDevice(tAdapter *Adapter)
+{
+        int    tid;
+
+       if( !gbLink_CRCTableGenerated )
+               Link_InitCRC();
+       
+       tid = Proc_SpawnWorker(Link_WorkerThread, Adapter);     // Create a new worker thread
+       
+       if(tid < 0) {
+               Log_Warning("Net Link", "Unable to create watcher thread for '%s'", Adapter->Device);
+               return ;
+       }
+       
+       Log_Log("Net Link", "Watching '%s' using tid %i", Adapter->Device, tid);
+}
+
 // From http://www.cl.cam.ac.uk/research/srg/bluebook/21/crc/node6.html
 #define        QUOTIENT        0x04c11db7
 void Link_InitCRC(void)

UCC git Repository :: git.ucc.asn.au