Usermode/AxWin3 - Bugfixing and cleanup
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / ipc.c
1 /*
2  * Acess2 GUI (AxWin) Version 3
3  * - By John Hodge (thePowersGang)
4  * 
5  * ipc.c
6  * - Interprocess communication
7  */
8 #include <common.h>
9 #include <acess/sys.h>
10 #include <net.h>
11 #include <string.h>
12 #include <ipcmessages.h>
13 #include <stdio.h>
14 #include <wm.h>
15 #include <wm_internals.h>
16
17 #define AXWIN_PORT      4101
18
19 #define STATICBUF_SIZE  64
20 #define MAX_WINDOWS_PER_APP     128
21
22 // === TYPES ===
23 typedef struct sIPC_Type        tIPC_Type;
24
25 struct sIPC_Type
26 {
27          int    (*GetIdentSize)(const void *Ident);
28          int    (*CompareIdent)(const void *Ident1, const void *Ident2);
29         void    (*SendMessage)(const void *Ident, size_t Length, const void *Data);
30 };
31
32 struct sIPC_Client
33 {
34         const tIPC_Type *IPCType;
35         const void      *Ident; // Stored after structure
36
37          int    nWindows;
38         tWindow **Windows;
39 };
40
41 // === IMPORTS ===
42 extern tWindow  *gpWM_FocusedWindow;    // Needed for _FocusWindow
43
44 // === PROTOTYPES ===
45 void    IPC_Init(void);
46 void    IPC_FillSelect(int *nfds, fd_set *set);
47 void    IPC_HandleSelect(fd_set *set);
48  int    IPC_Type_Datagram_GetSize(const void *Ident);
49  int    IPC_Type_Datagram_Compare(const void *Ident1, const void *Ident2);
50 void    IPC_Type_Datagram_Send(const void *Ident, size_t Length, const void *Data);
51  int    IPC_Type_Sys_GetSize(const void *Ident);
52  int    IPC_Type_Sys_Compare(const void *Ident1, const void *Ident2);
53 void    IPC_Type_Sys_Send(const void *Ident, size_t Length, const void *Data);
54 void    IPC_Handle(const tIPC_Type *IPCType, const void *Ident, size_t MsgLen, tAxWin_IPCMessage *Msg);
55
56 // === GLOBALS ===
57 const tIPC_Type gIPC_Type_Datagram = {
58         IPC_Type_Datagram_GetSize,
59         IPC_Type_Datagram_Compare, 
60         IPC_Type_Datagram_Send
61 };
62 const tIPC_Type gIPC_Type_SysMessage = {
63         IPC_Type_Sys_GetSize,
64         IPC_Type_Sys_Compare,
65         IPC_Type_Sys_Send
66 };
67  int    giNetworkFileHandle = -1;
68  int    giMessagesFileHandle = -1;
69  int    giIPC_ClientCount;
70 tIPC_Client     **gIPC_Clients;
71
72 // === CODE ===
73 void IPC_Init(void)
74 {
75          int    tmp;
76         // TODO: Check this
77         giNetworkFileHandle = open("/Devices/ip/loop/udp", OPENFLAG_READ);
78         tmp = AXWIN_PORT;       ioctl(giNetworkFileHandle, 4, &tmp);    // TODO: Don't hard-code IOCtl number
79 }
80
81 void IPC_FillSelect(int *nfds, fd_set *set)
82 {
83         if( giNetworkFileHandle > *nfds )       *nfds = giNetworkFileHandle;
84         FD_SET(giNetworkFileHandle, set);
85 }
86
87 void IPC_HandleSelect(fd_set *set)
88 {
89         if( FD_ISSET(giNetworkFileHandle, set) )
90         {
91                 char    staticBuf[STATICBUF_SIZE];
92                  int    readlen, identlen;
93                 char    *msg;
94
95                 readlen = read(giNetworkFileHandle, staticBuf, sizeof(staticBuf));
96                 
97                 identlen = 4 + Net_GetAddressSize( ((uint16_t*)staticBuf)[1] );
98                 msg = staticBuf + identlen;
99
100                 IPC_Handle(&gIPC_Type_Datagram, staticBuf, readlen - identlen, (void*)msg);
101 //              _SysDebug("IPC_HandleSelect: UDP handled");
102         }
103
104         while(SysGetMessage(NULL, NULL))
105         {
106                 pid_t   tid;
107                  int    len = SysGetMessage(&tid, NULL);
108                 char    data[len];
109                 SysGetMessage(NULL, data);
110
111                 IPC_Handle(&gIPC_Type_SysMessage, &tid, len, (void*)data);
112 //              _SysDebug("IPC_HandleSelect: Message handled");
113         }
114 }
115
116 int IPC_Type_Datagram_GetSize(const void *Ident)
117 {
118         return 4 + Net_GetAddressSize( ((const uint16_t*)Ident)[1] );
119 }
120
121 int IPC_Type_Datagram_Compare(const void *Ident1, const void *Ident2)
122 {
123         // Pass the buck :)
124         // - No need to worry about mis-matching sizes, as the size is computed
125         //   from the 3rd/4th bytes, hence it will differ before the size is hit.
126         return memcmp(Ident1, Ident2, IPC_Type_Datagram_GetSize(Ident1));
127 }
128
129 void IPC_Type_Datagram_Send(const void *Ident, size_t Length, const void *Data)
130 {
131          int    identlen = IPC_Type_Datagram_GetSize(Ident);
132         char    tmpbuf[ identlen + Length ];
133         memcpy(tmpbuf, Ident, identlen);        // Header
134         memcpy(tmpbuf + identlen, Data, Length);        // Data
135         // TODO: Handle fragmented packets
136         write(giNetworkFileHandle, tmpbuf, sizeof(tmpbuf));
137 }
138
139 int IPC_Type_Sys_GetSize(const void *Ident)
140 {
141         return sizeof(pid_t);
142 }
143
144 int IPC_Type_Sys_Compare(const void *Ident1, const void *Ident2)
145 {
146         return *(const tid_t*)Ident1 - *(const tid_t*)Ident2;
147 }
148
149 void IPC_Type_Sys_Send(const void *Ident, size_t Length, const void *Data)
150 {
151         SysSendMessage( *(const tid_t*)Ident, Length, Data );
152 }
153
154 // --- Client -> Window Mappings
155 int _CompareClientPtrs(const void *_a, const void *_b)
156 {
157         tIPC_Client     *a = *(tIPC_Client**)_a;
158         tIPC_Client     *b = *(tIPC_Client**)_b;
159         
160         if(a->IPCType < b->IPCType)     return -1;
161         if(a->IPCType > b->IPCType)     return 1;
162         
163         return a->IPCType->CompareIdent(a->Ident, b->Ident);
164 }
165
166 tIPC_Client *IPC_int_GetClient(const tIPC_Type *IPCType, const void *Ident)
167 {
168          int    pos = 0;        // Position where the new client will be inserted
169          int    ident_size;
170         tIPC_Client     *ret;
171
172         // - Search list of registered clients
173         if(giIPC_ClientCount > 0)
174         {
175                 tIPC_Client     target;
176                  int    div;
177                  int    cmp = -1;
178         
179                 target.IPCType = IPCType;
180                 target.Ident = Ident;
181                 ret = &target;  // Abuse ret to get a pointer
182                 
183                 div = giIPC_ClientCount;
184                 pos = div/2;
185                 while(div > 0)
186                 {
187                         div /= 2;
188                         cmp = _CompareClientPtrs(&ret, &gIPC_Clients[pos]);
189 //                      _SysDebug("Checking against %i gives %i", pos, cmp);
190                         if(cmp == 0)    break;
191                         if(cmp < 0)
192                                 pos -= div;
193                         else
194                                 pos += div;
195                 }
196                 
197                 // - Return if found    
198                 if(cmp == 0)
199                         return gIPC_Clients[pos];
200         
201                 // Adjust pos to be the index where the new client will be placed
202                 if(cmp > 0)     pos ++;
203         }
204
205
206         // - Create a new client entry
207         ident_size = IPCType->GetIdentSize(Ident);
208 //      _SysDebug("ident_size = %i", ident_size);
209         ret = malloc( sizeof(tIPC_Client) + ident_size );
210         if(!ret)        return NULL;
211         ret->IPCType = IPCType;
212         ret->Ident = ret + 1;   // Get the end of the structure
213         memcpy( (void*)ret->Ident, Ident, ident_size );
214         ret->nWindows = 0;
215         ret->Windows = NULL;
216         
217         // TODO: Register some way of detecting the client disconnecting
218         //       > Wait on the thread / register with kernel somehow
219         //       > Sockets are easier, but UDP is harder. Might get rid of it
220
221         // - Insert
222         giIPC_ClientCount ++;
223         gIPC_Clients = realloc(gIPC_Clients, giIPC_ClientCount*sizeof(tIPC_Client*));
224         memmove(&gIPC_Clients[pos+1], &gIPC_Clients[pos], (giIPC_ClientCount-pos-1) * sizeof(tIPC_Client*));
225         gIPC_Clients[pos] = ret;
226
227         return ret;
228 }
229
230 tWindow *IPC_int_GetWindow(tIPC_Client *Client, uint32_t WindowID)
231 {
232         if( WindowID == -1 )
233                 return NULL;
234
235         if( WindowID >= Client->nWindows ) {
236 //              _SysDebug("Window %i out of range for %p (%i)", WindowID, Client, Client->nWindows);
237                 return NULL;
238         }
239
240         return Client->Windows[WindowID];
241 }
242
243 void IPC_int_SetWindow(tIPC_Client *Client, uint32_t WindowID, tWindow *WindowPtr)
244 {
245         if( WindowID >= MAX_WINDOWS_PER_APP )
246                 return ;
247
248         if( WindowID >= Client->nWindows )
249         {
250                  int    oldCount = Client->nWindows;
251                 Client->nWindows = WindowID + 1;
252                 Client->Windows = realloc(Client->Windows, Client->nWindows*sizeof(tWindow*));
253                 memset( &Client->Windows[oldCount],  0, (Client->nWindows-oldCount)*sizeof(tWindow*) );
254                 _SysDebug("Expanded %p's window list from %i to %i", Client, oldCount, Client->nWindows);
255         }
256
257         _SysDebug("Assigned %p to window %i for %p", WindowPtr, WindowID, Client);      
258         Client->Windows[WindowID] = WindowPtr;
259 }
260
261 // --- IPC Message Handlers ---
262 int IPC_Msg_Ping(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
263 {
264         ASSERT(Msg->ID == IPCMSG_PING);
265         
266         if( !(Msg->Flags & IPCMSG_FLAG_RETURN) )        return 0;
267         
268         if( Msg->Size < 4 )     return -1;
269         
270         tIPCMsg_ReturnInt       *ret = (void*)Msg->Data;
271         Msg->ID = IPCMSG_PING;
272         Msg->Size = sizeof(*ret);
273         ret->Value = AXWIN_VERSION;
274         Client->IPCType->SendMessage(Client->Ident, sizeof(*Msg)+sizeof(*ret), Msg);
275         return 0;
276 }
277
278 int IPC_Msg_GetDisplayCount(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
279 {
280         tAxWin_IPCMessage       *ret_hdr;
281         tIPCMsg_ReturnInt       *ret;
282         char    buf[sizeof(*ret_hdr)+sizeof(*ret)];
283         
284         ASSERT(Msg->ID == IPCMSG_GETDISPLAYCOUNT);
285
286         if( !(Msg->Flags & IPCMSG_FLAG_RETURN) )        return 0;
287         
288         ret_hdr = (void*)buf;
289         ret_hdr->ID = IPCMSG_GETDISPLAYCOUNT;
290         ret_hdr->Flags = 0;
291         ret_hdr->Window = -1;
292         ret_hdr->Size = sizeof(*ret);
293         ret = (void*)ret_hdr->Data;
294         ret->Value = 1; // HARD CODE - Current version only supports one display
295         
296         Client->IPCType->SendMessage(Client->Ident, sizeof(buf), buf);
297         return 0;
298 }
299
300 int IPC_Msg_GetDisplayDims(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
301 {
302         tIPCMsg_GetDisplayDims  *info;
303         tAxWin_IPCMessage       *ret_hdr;
304         tIPCMsg_RetDisplayDims  *ret;
305         char    buf[sizeof(*ret_hdr)+sizeof(*ret)];
306         
307         ASSERT(Msg->ID == IPCMSG_GETDISPLAYDIMS);
308
309         if( !(Msg->Flags & IPCMSG_FLAG_RETURN) )        return 0;
310
311         info = (void*)Msg->Data;        
312
313         ret_hdr = (void*)buf;
314         ret_hdr->ID = IPCMSG_GETDISPLAYDIMS;
315         ret_hdr->Flags = 0;
316         ret_hdr->Window = -1;
317         ret_hdr->Size = sizeof(*ret);
318         ret = (void*)ret_hdr->Data;
319         
320         // HARD CODE! Only one display supported
321         if( info->DisplayID == 0 )
322         {
323                 ret->X = 0;
324                 ret->Y = 0;
325                 ret->W = giScreenWidth;
326                 ret->H = giScreenHeight;
327         }
328         else
329         {
330                 ret->X = 0;     ret->Y = 0;
331                 ret->W = 0;     ret->H = 0;
332         }
333         
334         Client->IPCType->SendMessage(Client->Ident, sizeof(buf), buf);
335         return 0;
336 }
337
338 int IPC_Msg_SendMsg(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
339 {
340         tIPCMsg_SendMsg *info = (void*)Msg->Data;
341         tWindow *src, *dest;
342
343         ASSERT(Msg->ID == IPCMSG_SENDMSG);
344         
345         // - Sanity checks
346         if( Msg->Size < sizeof(tIPCMsg_SendMsg) )
347                 return -1;
348         if( Msg->Size < sizeof(tIPCMsg_SendMsg) + info->Length )
349                 return -1;
350         
351         src = IPC_int_GetWindow(Client, Msg->Window);
352         if(!src)        return 1;
353         dest = IPC_int_GetWindow(Client, info->Remote);
354         if(!dest)       return 1;
355
356         WM_SendMessage(src, dest, info->ID, info->Length, info->Data);  
357
358         return 0;
359 }
360
361 int IPC_Msg_CreateWin(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
362 {
363         tIPCMsg_CreateWin       *info = (void*)Msg->Data;
364         tWindow *newwin, *parent;
365
366         ASSERT(Msg->ID == IPCMSG_CREATEWIN);
367
368         // - Sanity checks
369         //  > +1 is for NULL byte on string
370         if( Msg->Size < sizeof(*info) + 1 ) {
371                 _SysDebug("IPC_Msg_CreateWin: Size check 1 failed");
372                 return -1;
373         }
374         if( info->Renderer[Msg->Size - sizeof(*info) - 1] != '\0' ) {
375                 _SysDebug("IPC_Msg_CreateWin: Size check 2 failed");
376                 _SysDebug("info = {");
377                 _SysDebug("  .NewWinID = %i", info->NewWinID);
378                 _SysDebug("  .RendererArg = %i", info->RendererArg);
379                 _SysDebug("  .Renderer = '%.*s'", Msg->Size - sizeof(*info), info->Renderer);
380                 _SysDebug("}");
381                 return -1;
382         }
383         
384         // - Get the parent window ID
385         parent = IPC_int_GetWindow(Client, Msg->Window);
386
387         // Catch creating a window with an existing ID
388         if( IPC_int_GetWindow(Client, info->NewWinID) )
389                 return 1;
390
391         // - Create the new window, and save its pointer
392         newwin = WM_CreateWindow(parent, Client, info->NewWinID, info->RendererArg, info->Renderer);
393         IPC_int_SetWindow(Client, info->NewWinID, newwin);
394
395         return 0;
396 }
397
398 int IPC_Msg_SetWindowTitle(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
399 {
400         tWindow *win;
401
402         ASSERT(Msg->ID == IPCMSG_SETWINTITLE);
403         
404         if( Msg->Size < 1 )     return -1;
405         if( Msg->Data[ Msg->Size-1 ] != '\0' )  return -1;      
406
407         win = IPC_int_GetWindow(Client, Msg->Window);
408         if(!win)        return 1;
409
410         WM_SetWindowTitle(win, Msg->Data);
411
412         return 0;
413 }
414
415 int IPC_Msg_ShowWindow(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
416 {
417         tIPCMsg_Boolean *info = (void*)Msg->Data;
418         tWindow *win;
419         
420         ASSERT(Msg->ID == IPCMSG_SHOWWINDOW);
421         
422         if( Msg->Size < sizeof(*info) ) return -1;
423         
424         win = IPC_int_GetWindow(Client, Msg->Window);
425         if(!win)        return 1;
426
427         WM_ShowWindow(win, !!info->Value);
428         
429         return 0;
430 }
431
432 int IPC_Msg_DecorateWindow(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
433 {
434         tIPCMsg_Boolean *info = (void*)Msg->Data;
435         tWindow *win;
436         
437         if( Msg->Size < sizeof(*info) ) return -1;
438         
439         win = IPC_int_GetWindow(Client, Msg->Window);
440         if(!win)        return 1;
441         
442         WM_DecorateWindow(win, !!info->Value);
443         return 0;
444 }
445
446 int IPC_Msg_FocusWindow(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
447 {
448         tWindow *win;
449
450         ASSERT(Msg->ID == IPCMSG_FOCUSWINDOW);
451         
452         // Don't allow the focus to be changed unless the client has the focus
453         if(!gpWM_FocusedWindow) return 1;
454         if(gpWM_FocusedWindow->Client != Client)        return 1;
455
456         win = IPC_int_GetWindow(Client, Msg->Window);
457         if(!win)        return 1;
458
459         WM_FocusWindow(win);
460
461         return 0;
462 }
463
464 int IPC_Msg_SetWinPos(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
465 {
466         tIPCMsg_SetWindowPos    *info = (void*)Msg->Data;
467         tWindow *win;
468         
469         ASSERT(Msg->ID == IPCMSG_SETWINPOS);
470         
471         if(Msg->Size < sizeof(*info))   return -1;
472         
473         win = IPC_int_GetWindow(Client, Msg->Window);
474         if(!win)        return 1;
475         
476         _SysDebug("info = {..., bSetPos=%i,bSetDims=%i}", info->bSetPos, info->bSetDims);
477         
478         if(info->bSetPos)
479                 WM_MoveWindow(win, info->X, info->Y);
480         if(info->bSetDims)
481                 WM_ResizeWindow(win, info->W, info->H);
482         
483         return 0;
484 }
485
486 int IPC_Msg_RegisterAction(tIPC_Client *Client, tAxWin_IPCMessage *Msg)
487 {
488         ASSERT(Msg->ID == IPCMSG_REGACTION);
489         return 0;
490 }
491
492 int (*gIPC_MessageHandlers[])(tIPC_Client *Client, tAxWin_IPCMessage *Msg) = {
493         IPC_Msg_Ping,
494         IPC_Msg_GetDisplayCount,
495         IPC_Msg_GetDisplayDims,
496         IPC_Msg_SendMsg,
497         IPC_Msg_CreateWin,
498         NULL,   // Destroy window
499         IPC_Msg_SetWindowTitle,
500         IPC_Msg_ShowWindow,
501         IPC_Msg_DecorateWindow,
502         IPC_Msg_FocusWindow,
503         IPC_Msg_SetWinPos,
504         IPC_Msg_RegisterAction
505 };
506 const int giIPC_NumMessageHandlers = sizeof(gIPC_MessageHandlers)/sizeof(gIPC_MessageHandlers[0]);
507
508 void IPC_Handle(const tIPC_Type *IPCType, const void *Ident, size_t MsgLen, tAxWin_IPCMessage *Msg)
509 {
510         tIPC_Client     *client;
511          int    rv = 0;
512         
513         _SysDebug("IPC_Handle: (IPCType=%p, Ident=%p, MsgLen=%i, Msg=%p)",
514                 IPCType, Ident, MsgLen, Msg);
515         
516         if( MsgLen < sizeof(tAxWin_IPCMessage) )
517                 return ;
518         if( MsgLen < sizeof(tAxWin_IPCMessage) + Msg->Size )
519                 return ;
520         
521         client = IPC_int_GetClient(IPCType, Ident);
522
523         if( Msg->ID >= giIPC_NumMessageHandlers ) {
524                 fprintf(stderr, "WARNING: Unknown message %i (%p)\n", Msg->ID, IPCType);
525                 _SysDebug("WARNING: Unknown message %i (%p)", Msg->ID, IPCType);
526                 return ;
527         }
528         
529         if( !gIPC_MessageHandlers[ Msg->ID ] ) {
530                 fprintf(stderr, "WARNING: Message %i does not have a handler\n", Msg->ID);
531                 _SysDebug("WARNING: Message %i does not have a handler", Msg->ID);
532                 return ;
533         }
534
535         _SysDebug("IPC_Handle: Msg->ID = %i", Msg->ID);
536         rv = gIPC_MessageHandlers[Msg->ID](client, Msg);
537         _SysDebug("IPC_Handle: rv = %i", rv);
538 }
539
540 // --- Server->Client replies
541 void IPC_SendWMMessage(tIPC_Client *Client, uint32_t Src, uint32_t Dst, int MsgID, int Len, void *Data)
542 {
543         tAxWin_IPCMessage       *hdr;
544         tIPCMsg_SendMsg         *msg;
545         char    buf[sizeof(*hdr)+sizeof(*msg)+Len];
546         
547         hdr = (void*)buf;
548         msg = (void*)hdr->Data;
549         
550         hdr->ID = IPCMSG_SENDMSG;
551         hdr->Flags = 0;
552         hdr->Size = sizeof(*msg) + Len;
553         hdr->Window = Dst;
554         
555         msg->Remote = Src;
556         msg->ID = MsgID;
557         msg->Length = Len;
558         memcpy(msg->Data, Data, Len);
559         
560         Client->IPCType->SendMessage(Client->Ident, sizeof(buf), buf);
561 }
562

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