6 #include <api_drv_common.h>
9 #define UDP_ALLOC_BASE 0xC000
12 void UDP_Initialise();
13 void UDP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer);
14 void UDP_Unreachable(tInterface *Interface, int Code, void *Address, int Length, void *Buffer);
15 void UDP_SendPacketTo(tUDPChannel *Channel, int AddrType, const void *Address, Uint16 Port, const void *Data, size_t Length);
16 // --- Client Channels
17 tVFS_Node *UDP_Channel_Init(tInterface *Interface);
18 size_t UDP_Channel_Read(tVFS_Node *Node, off_t Offset, size_t Length, void *Buffer);
19 size_t UDP_Channel_Write(tVFS_Node *Node, off_t Offset, size_t Length, const void *Buffer);
20 int UDP_Channel_IOCtl(tVFS_Node *Node, int ID, void *Data);
21 void UDP_Channel_Close(tVFS_Node *Node);
23 Uint16 UDP_int_AllocatePort();
24 int UDP_int_MarkPortAsUsed(Uint16 Port);
25 void UDP_int_FreePort(Uint16 Port);
28 tVFS_NodeType gUDP_NodeType = {
29 .Read = UDP_Channel_Read,
30 .Write = UDP_Channel_Write,
31 .IOCtl = UDP_Channel_IOCtl,
32 .Close = UDP_Channel_Close
34 tMutex glUDP_Channels;
35 tUDPChannel *gpUDP_Channels;
38 Uint32 gUDP_Ports[0x10000/32];
40 tSocketFile gUDP_SocketFile = {NULL, "udp", UDP_Channel_Init};
44 * \fn void TCP_Initialise()
45 * \brief Initialise the TCP Layer
49 IPStack_AddFile(&gUDP_SocketFile);
50 //IPv4_RegisterCallback(IP4PROT_UDP, UDP_GetPacket, UDP_Unreachable);
51 IPv4_RegisterCallback(IP4PROT_UDP, UDP_GetPacket);
55 * \brief Scan a list of tUDPChannels and find process the first match
56 * \return 0 if no match was found, -1 on error and 1 if a match was found
58 int UDP_int_ScanList(tUDPChannel *List, tInterface *Interface, void *Address, int Length, void *Buffer)
60 tUDPHeader *hdr = Buffer;
69 // Match local endpoint
70 if(chan->Interface && chan->Interface != Interface) continue;
71 if(chan->LocalPort != ntohs(hdr->DestPort)) continue;
73 // Check for remote port restriction
74 if(chan->Remote.Port && chan->Remote.Port != ntohs(hdr->SourcePort))
76 // Check for remote address restriction
79 if(chan->Remote.AddrType != Interface->Type)
81 if(!IPStack_CompareAddress(Interface->Type, Address,
82 &chan->Remote.Addr, chan->RemoteMask)
87 Log_Log("UDP", "Recieved packet for %p", chan);
88 // Create the cached packet
89 len = ntohs(hdr->Length);
90 pack = malloc(sizeof(tUDPPacket) + len);
92 memcpy(&pack->Remote.Addr, Address, IPStack_GetAddressSize(Interface->Type));
93 pack->Remote.Port = ntohs(hdr->SourcePort);
94 pack->Remote.AddrType = Interface->Type;
96 memcpy(pack->Data, hdr->Data, len);
98 // Add the packet to the channel's queue
99 SHORTLOCK(&chan->lQueue);
101 chan->QueueEnd->Next = pack;
103 chan->QueueEnd = chan->Queue = pack;
104 SHORTREL(&chan->lQueue);
105 VFS_MarkAvaliable(&chan->Node, 1);
106 Mutex_Release(&glUDP_Channels);
113 * \fn void UDP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer)
114 * \brief Handles a packet from the IP Layer
116 void UDP_GetPacket(tInterface *Interface, void *Address, int Length, void *Buffer)
118 tUDPHeader *hdr = Buffer;
120 Log_Debug("UDP", "hdr->SourcePort = %i", ntohs(hdr->SourcePort));
121 Log_Debug("UDP", "hdr->DestPort = %i", ntohs(hdr->DestPort));
122 Log_Debug("UDP", "hdr->Length = %i", ntohs(hdr->Length));
123 Log_Debug("UDP", "hdr->Checksum = 0x%x", ntohs(hdr->Checksum));
125 // Check registered connections
126 Mutex_Acquire(&glUDP_Channels);
127 UDP_int_ScanList(gpUDP_Channels, Interface, Address, Length, Buffer);
128 Mutex_Release(&glUDP_Channels);
132 * \brief Handle an ICMP Unrechable Error
134 void UDP_Unreachable(tInterface *Interface, int Code, void *Address, int Length, void *Buffer)
140 * \brief Send a packet
141 * \param Channel Channel to send the packet from
142 * \param Data Packet data
143 * \param Length Length in bytes of packet data
145 void UDP_SendPacketTo(tUDPChannel *Channel, int AddrType, const void *Address, Uint16 Port, const void *Data, size_t Length)
149 if(Channel->Interface && Channel->Interface->Type != AddrType) return ;
155 hdr.SourcePort = htons( Channel->LocalPort );
156 hdr.DestPort = htons( Port );
157 hdr.Length = htons( sizeof(tUDPHeader) + Length );
158 hdr.Checksum = 0; // Checksum can be zero on IPv4
159 // Pass on the the IPv4 Layer
160 tIPStackBuffer *buffer = IPStack_Buffer_CreateBuffer(2 + IPV4_BUFFERS);
161 IPStack_Buffer_AppendSubBuffer(buffer, Length, 0, Data, NULL, NULL);
162 IPStack_Buffer_AppendSubBuffer(buffer, sizeof(hdr), 0, &hdr, NULL, NULL);
163 // TODO: What if Channel->Interface is NULL here?
164 IPv4_SendPacket(Channel->Interface, *(tIPv4*)Address, IP4PROT_UDP, 0, buffer);
165 IPStack_Buffer_DestroyBuffer(buffer);
170 // --- Client Channels
171 tVFS_Node *UDP_Channel_Init(tInterface *Interface)
174 new = calloc( sizeof(tUDPChannel), 1 );
175 new->Interface = Interface;
176 new->Node.ImplPtr = new;
177 new->Node.NumACLs = 1;
178 new->Node.ACLs = &gVFS_ACL_EveryoneRW;
179 new->Node.Type = &gUDP_NodeType;
181 Mutex_Acquire(&glUDP_Channels);
182 new->Next = gpUDP_Channels;
183 gpUDP_Channels = new;
184 Mutex_Release(&glUDP_Channels);
190 * \brief Read from the channel file (wait for a packet)
192 size_t UDP_Channel_Read(tVFS_Node *Node, off_t Offset, size_t Length, void *Buffer)
194 tUDPChannel *chan = Node->ImplPtr;
199 if(chan->LocalPort == 0) {
200 Log_Notice("UDP", "Channel %p sent with no local port", chan);
204 while(chan->Queue == NULL) Threads_Yield();
208 VFS_SelectNode(Node, VFS_SELECT_READ, NULL, "UDP_Channel_Read");
209 SHORTLOCK(&chan->lQueue);
210 if(chan->Queue == NULL) {
211 SHORTREL(&chan->lQueue);
215 chan->Queue = pack->Next;
217 chan->QueueEnd = NULL;
218 VFS_MarkAvaliable(Node, 0); // Nothing left
220 SHORTREL(&chan->lQueue);
224 // Check that the header fits
225 addrlen = IPStack_GetAddressSize(pack->Remote.AddrType);
230 Log_Notice("UDP", "Insuficient space for header in buffer (%i < %i)", (int)Length, ofs);
235 ep->Port = pack->Remote.Port;
236 ep->AddrType = pack->Remote.AddrType;
237 memcpy(&ep->Addr, &pack->Remote.Addr, addrlen);
240 if(Length > ofs + pack->Length) Length = ofs + pack->Length;
241 memcpy((char*)Buffer + ofs, pack->Data, Length - ofs);
243 // Free cached packet
250 * \brief Write to the channel file (send a packet)
252 size_t UDP_Channel_Write(tVFS_Node *Node, off_t Offset, size_t Length, const void *Buffer)
254 tUDPChannel *chan = Node->ImplPtr;
255 const tUDPEndpoint *ep;
258 if(chan->LocalPort == 0) return 0;
261 ofs = 2 + 2 + IPStack_GetAddressSize( ep->AddrType );
263 data = (const char *)Buffer + ofs;
265 UDP_SendPacketTo(chan, ep->AddrType, &ep->Addr, ep->Port, data, (size_t)Length - ofs);
271 * \brief Names for channel IOCtl Calls
273 static const char *casIOCtls_Channel[] = {
282 * \brief Channel IOCtls
284 int UDP_Channel_IOCtl(tVFS_Node *Node, int ID, void *Data)
286 tUDPChannel *chan = Node->ImplPtr;
287 ENTER("pNode iID pData", Node, ID, Data);
290 BASE_IOCTLS(DRV_TYPE_MISC, "UDP Channel", 0x100, casIOCtls_Channel);
292 case 4: // getset_localport (returns bool success)
293 if(!Data) LEAVE_RET('i', chan->LocalPort);
294 if(!CheckMem( Data, sizeof(Uint16) ) ) {
295 LOG("Invalid pointer %p", Data);
299 chan->LocalPort = *(Uint16*)Data;
300 // Permissions check (Ports lower than 1024 are root-only)
301 if(chan->LocalPort != 0 && chan->LocalPort < 1024) {
302 if( Threads_GetUID() != 0 ) {
303 LOG("Attempt by non-superuser to listen on port %i", chan->LocalPort);
308 // Allocate a random port if requested
309 if( chan->LocalPort == 0 )
310 chan->LocalPort = UDP_int_AllocatePort();
313 // Else, mark the requested port as used
314 if( UDP_int_MarkPortAsUsed(chan->LocalPort) == 0 ) {
315 LOG("Port %i us currently in use", chan->LocalPort);
323 case 5: // getset_remoteport (returns bool success)
324 if(!Data) LEAVE_RET('i', chan->Remote.Port);
325 if(!CheckMem( Data, sizeof(Uint16) ) ) {
326 LOG("Invalid pointer %p", Data);
329 chan->Remote.Port = *(Uint16*)Data;
332 case 6: // getset_remotemask (returns bool success)
333 if(!Data) LEAVE_RET('i', chan->RemoteMask);
334 if(!CheckMem(Data, sizeof(int))) LEAVE_RET('i', -1);
335 if( !chan->Interface ) {
336 LOG("Can't set remote mask on NULL interface");
339 if( *(int*)Data > IPStack_GetAddressSize(chan->Interface->Type) )
341 chan->RemoteMask = *(int*)Data;
344 case 7: // set_remoteaddr (returns bool success)
345 if( !chan->Interface ) {
346 LOG("Can't set remote address on NULL interface");
349 if(!CheckMem(Data, IPStack_GetAddressSize(chan->Interface->Type))) {
350 LOG("Invalid pointer");
353 memcpy(&chan->Remote.Addr, Data, IPStack_GetAddressSize(chan->Interface->Type));
360 * \brief Close and destroy an open channel
362 void UDP_Channel_Close(tVFS_Node *Node)
364 tUDPChannel *chan = Node->ImplPtr;
367 // Remove from the main list first
368 Mutex_Acquire(&glUDP_Channels);
369 if(gpUDP_Channels == chan)
370 gpUDP_Channels = gpUDP_Channels->Next;
373 for(prev = gpUDP_Channels;
374 prev->Next && prev->Next != chan;
377 Log_Warning("UDP", "Bookeeping Fail, channel %p is not in main list", chan);
379 prev->Next = prev->Next->Next;
381 Mutex_Release(&glUDP_Channels);
384 SHORTLOCK(&chan->lQueue);
389 chan->Queue = tmp->Next;
392 SHORTREL(&chan->lQueue);
394 // Free channel structure
399 * \return Port Number on success, or zero on failure
401 Uint16 UDP_int_AllocatePort()
404 Mutex_Acquire(&glUDP_Ports);
406 for( i = UDP_ALLOC_BASE; i < 0x10000; i += 32 )
407 if( gUDP_Ports[i/32] != 0xFFFFFFFF )
409 if(i == 0x10000) return 0;
412 if( !(gUDP_Ports[i/32] & (1 << (i%32))) )
415 Mutex_Release(&glUDP_Ports);
419 * \brief Allocate a specific port
420 * \return Boolean Success
422 int UDP_int_MarkPortAsUsed(Uint16 Port)
424 Mutex_Acquire(&glUDP_Ports);
425 if( gUDP_Ports[Port/32] & (1 << (Port%32)) ) {
427 Mutex_Release(&glUDP_Ports);
429 gUDP_Ports[Port/32] |= 1 << (Port%32);
430 Mutex_Release(&glUDP_Ports);
435 * \brief Free an allocated port
437 void UDP_int_FreePort(Uint16 Port)
439 Mutex_Acquire(&glUDP_Ports);
440 gUDP_Ports[Port/32] &= ~(1 << (Port%32));
441 Mutex_Release(&glUDP_Ports);