1 /***************************************************************************
2 * Copyright 1995, Technion, Israel Institute of Technology
3 * Electrical Eng, Software Lab.
4 * Author: Michael Veksler.
5 ***************************************************************************
7 * Purpose : DDE signals and processes functionality for DDE
8 ***************************************************************************
12 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
24 #include "shm_semaph.h"
25 #include "shm_main_blk.h"
29 #include "debugtools.h"
32 DECLARE_DEBUG_CHANNEL(dde
)
33 DECLARE_DEBUG_CHANNEL(msg
)
35 int curr_proc_idx
= -1;
37 enum stop_wait_op stop_wait_op
=CONT
;
39 sigjmp_buf env_get_ack
;
40 sigjmp_buf env_wait_x
;
42 #define IDX_TO_HWND(idx) (0xfffe - (idx))
43 #define HWND_TO_IDX(wnd) (0xfffe - (wnd))
44 #define DDE_WIN_INFO(win) ( main_block->windows[HWND_TO_IDX(win)] )
45 #define DDE_WIN2PROC(win) ( DDE_WIN_INFO(win).proc_idx )
46 #define DDE_IsRemoteWindow(win) ( (win)<0xffff && (win)>=(0xffff-DDE_PROCS))
50 #define DDE_MSG_SIZE sizeof(MSG16)
51 #define FREE_WND (WORD)(-2)
52 #define DELETED_WND (WORD)(-3)
53 static char *msg_type
[4]={"********", "DDE_SEND", "DDE_POST", "DDE_ACK"};
57 char filler
[DDE_MSG_SIZE
];
60 typedef struct fifo_element
{
62 struct fifo_element
*next
;
66 fifo_element
*first
; /* first element in the fifo or NULL */
67 fifo_element
*last
; /* last element in the fifo or NULL */
69 static struct fifo fifo
= {NULL
,NULL
};
71 void dde_proc_delete(int proc_idx
);
73 void dde_proc_add_fifo(int val
)
75 fifo_element
*created
;
77 created
= (fifo_element
*) xmalloc( sizeof(fifo_element
) );
84 fifo
.last
->next
= created
;
88 /* get an item from the fifo, and return it.
89 * If fifo is empty, return -1
91 int dde_proc_shift_fifo()
94 fifo_element
*deleted
;
96 if (fifo
.first
== NULL
)
101 fifo
.first
= deleted
->next
;
102 if (fifo
.first
== NULL
)
109 static void print_dde_message(char *desc
, MSG16
*msg
);
111 /* This should be run only when main_block is first allocated. */
112 void dde_proc_init(dde_proc proc
)
116 for (proc_num
=0 ; proc_num
<DDE_PROCS
; proc_num
++, proc
++) {
124 /* add current process to the list of processes */
125 void dde_proc_add(dde_proc procs
)
129 TRACE_(dde
)("(..)\n");
130 shm_write_wait(main_block
->sem
);
132 /* find free proc_idx and allocate it */
133 for (proc_idx
=0, proc
=procs
; proc_idx
<DDE_PROCS
; proc_idx
++, proc
++)
137 if (proc_idx
<DDE_PROCS
) { /* got here beacuse a free was found ? */
138 dde_msg_setup(&proc
->msg
);
140 curr_proc_idx
=proc_idx
;
141 shm_sem_init(&proc
->sem
);
145 WARN_(dde
)("Can't allocate process\n");
147 shm_write_signal(main_block
->sem
);
150 /* wait for dde - acknowledge message - or timout */
151 static BOOL
get_ack()
153 struct timeval timeout
;
155 struct msg_dat ack_buff
;
157 /* timeout after exactly one seconf */
161 sigsetjmp(env_get_ack
, 1);
162 /* get here after normal execution, or after siglongjmp */
164 do { /* loop to wait for DDE_ACK */
166 stop_wait_op
=CONT
; /* sensitive code: disallow siglongjmp */
167 size
= msgrcv( main_block
->proc
[curr_proc_idx
].msg
, &ack_buff
.dat
,
168 1, DDE_ACK
, IPC_NOWAIT
);
170 TRACE_(msg
)("get_ack: received DDE_ACK message\n");
173 if (DDE_GetRemoteMessage()) {
174 had_SIGUSR2
=1; /* might have recieved SIGUSR2 */
176 stop_wait_op
=STOP_WAIT_ACK
; /* allow siglongjmp */
178 } while (had_SIGUSR2
); /* loop if SIGUSR2 was recieved */
180 /* siglongjmp should be enabled at this moment */
181 select( 0, NULL
, NULL
, NULL
, &timeout
);
182 stop_wait_op
=CONT
; /* disallow further siglongjmp */
184 /* timeout !! (otherwise there would have been a siglongjmp) */
188 /* Transfer one message to a given process */
189 static BOOL
DDE_DoOneMessage (int proc_idx
, int size
, struct msgbuf
*msgbuf
)
191 dde_proc proc
= &main_block
->proc
[ proc_idx
];
194 if (proc_idx
== curr_proc_idx
)
197 if (kill(proc
->pid
,0) < 0) {
198 /* pid does not exist, or not our */
199 dde_proc_delete(proc_idx
);
203 if (TRACE_ON(dde
) || WARN_ON_dde
) {
204 MSG16
*msg
=(MSG16
*) &msgbuf
->mtext
;
206 if (msgbuf
->mtype
==DDE_SEND
)
207 title
="sending dde:";
208 else if (msgbuf
->mtype
==DDE_POST
)
209 title
="posting dde:";
213 print_dde_message(title
, msg
);
215 WARN_(dde
)("Unknown message type=0x%lx\n", msgbuf
->mtype
);
217 TRACE_(msg
)("to proc_idx=%d (pid=%d), queue=%u\n",
218 proc_idx
, proc
->pid
, (unsigned)proc
->msg
);
219 if ( proc
->msg
!= -1) {
220 TRACE_(msg
)("doing...(type=%s)\n", msg_type
[msgbuf
->mtype
]);
221 size
=msgsnd (proc
->msg
, msgbuf
, size
, 0);
227 kill(proc
->pid
,SIGUSR2
); /* tell the process there is a message */
229 TRACE_(msg
)("Trying to get acknowledgment from msg queue=%d\n",
231 Yield16(); /* force task switch, and */
232 /* acknowledgment sending */
237 WARN_(dde
)("get_ack: DDE_DoOneMessage: timeout\n");
242 WARN_(msg
)("message not sent, target has no message queue\n");
247 /* Do some sort of premitive hash table */
248 static HWND16
HWND_Local2Remote(HWND16 orig
)
253 WND_DATA
*deleted
= NULL
;
256 dde_wnd_idx
= orig
% DDE_WINDOWS
;
257 for ( i
=0 ; i
< DDE_WINDOWS
; i
++, dde_wnd_idx
++) {
258 if (dde_wnd_idx
>= DDE_WINDOWS
)
259 dde_wnd_idx
-= DDE_WINDOWS
; /* wrap-around */
261 tested
= &main_block
->windows
[ dde_wnd_idx
];
262 if (tested
->proc_idx
== FREE_WND
)
265 if (deleted
== NULL
&& tested
->proc_idx
== DELETED_WND
) {
267 deleted_idx
= dde_wnd_idx
;
268 } else if (tested
->wnd
== orig
&& tested
->proc_idx
== curr_proc_idx
) {
269 return IDX_TO_HWND(dde_wnd_idx
);
272 if (deleted
!= NULL
) { /* deleted is preferable */
273 /* free item, allocate it */
274 deleted
->proc_idx
= curr_proc_idx
;
276 return IDX_TO_HWND(deleted_idx
);
278 if (tested
->proc_idx
== FREE_WND
) {
279 tested
->proc_idx
= curr_proc_idx
;
281 return IDX_TO_HWND(dde_wnd_idx
);
284 WARN_(dde
)("Can't map any more windows to DDE windows\n");
288 static BOOL
DDE_DoMessage( MSG16
*msg
, int type
)
292 MSG16
*remote_message
;
293 struct msg_dat msg_dat
;
296 if (msg
->wParam
== 0)
299 if (main_block
==NULL
) {
300 if (msg
->message
>= WM_DDE_FIRST
&& msg
->message
<= WM_DDE_LAST
)
307 if (msg
->wParam
== (HWND16
)-1)
310 if ( ! DDE_IsRemoteWindow(msg
->hwnd
) && msg
->hwnd
!= (HWND16
)-1)
313 TRACE_(msg
)("(hwnd=0x%x,msg=0x%x,..) - %s\n",
314 (int)msg
->hwnd
,(int)msg
->message
,msg_type
[type
]);
317 TRACE_(msg
)("(hwnd=0x%x,msg=0x%x,..) -- HWND_BROADCAST !\n",
318 (int)msg
->hwnd
,(int)msg
->message
);
319 remote_message
=(void*)&msg_dat
.dat
.mtext
;
321 memcpy(remote_message
, msg
, sizeof(*msg
));
322 remote_message
->wParam
= HWND_Local2Remote(msg
->wParam
);
323 if (remote_message
->wParam
== 0)
326 msg_dat
.dat
.mtype
=type
;
328 if (msg
->hwnd
== (HWND16
)-1) {
330 for ( proc_idx
=0; proc_idx
< DDE_PROCS
; proc_idx
++) {
331 if (proc_idx
== curr_proc_idx
)
333 if (main_block
->proc
[ proc_idx
].msg
!= -1)
334 success
|=DDE_DoOneMessage(proc_idx
, DDE_MSG_SIZE
, &msg_dat
.dat
);
338 return DDE_DoOneMessage(DDE_WIN2PROC(msg
->hwnd
), DDE_MSG_SIZE
,
343 BOOL
DDE_SendMessage( MSG16
*msg
)
345 return DDE_DoMessage(msg
, DDE_SEND
);
348 BOOL
DDE_PostMessage( MSG16
*msg
)
350 return DDE_DoMessage(msg
, DDE_POST
);
354 void dde_proc_send_ack(HWND16 wnd
, BOOL val
) {
357 static struct msgbuf msg_ack
={DDE_ACK
,{'0'}};
359 proc
=DDE_WIN2PROC(wnd
);
360 msg
=main_block
->proc
[proc
].msg
;
361 TRACE_(msg
)("sending ACK to wnd=%4x, proc=%d,msg=%d, pid=%d\n",
362 wnd
,proc
,msg
,main_block
->proc
[proc
].pid
);
364 msg_ack
.mtext
[0]=val
;
365 msgsnd (msg
, &msg_ack
, 1, 0);
366 kill(main_block
->proc
[proc
].pid
, SIGUSR2
);
369 /* return true (non zero) if had a remote message */
370 #undef DDE_GetRemoteMessage
372 int DDE_GetRemoteMessage()
374 static int nesting
=0; /* to avoid infinite recursion */
376 MSG16
*remote_message
;
378 struct msg_dat msg_dat
;
379 BOOL was_sent
; /* sent/received */
383 if (curr_proc_idx
==-1) /* do we have DDE initialized ? */
388 ERR_(msg
)("suspecting infinite recursion, exiting");
392 remote_message
=(void*)&msg_dat
.dat
.mtext
;
394 /* test for SendMessage */
395 size
= msgrcv( main_block
->proc
[curr_proc_idx
].msg
, &msg_dat
.dat
,
396 DDE_MSG_SIZE
, DDE_SEND
, IPC_NOWAIT
);
398 if (size
==DDE_MSG_SIZE
) { /* is this a correct message (if any) ?*/
400 TRACE_(msg
)("DDE:receive sent message. msg=%04x wPar=%04x"
402 remote_message
->message
, remote_message
->wParam
,
403 remote_message
->lParam
);
405 size
= msgrcv( main_block
->proc
[curr_proc_idx
].msg
, &msg_dat
.dat
,
406 DDE_MSG_SIZE
, DDE_POST
, IPC_NOWAIT
);
408 if (size
==DDE_MSG_SIZE
) { /* is this a correct message (if any) ?*/
410 TRACE_(msg
)("DDE:receive posted message. "
411 "msg=%04x wPar=%04x lPar=%08lx\n",
412 remote_message
->message
, remote_message
->wParam
,
413 remote_message
->lParam
);
416 return 0; /* no DDE message found */
419 /* At this point we are sure that there is a DDE message,
420 * was_sent is TRUE is the message was sent, and false if it was posted
428 title
="receive sent dde:";
430 title
="receive posted dde:";
431 print_dde_message(title
, remote_message
);
434 if (remote_message
->hwnd
!= (HWND16
) -1 ) {
435 HWND16 dde_window
= DDE_WIN_INFO(remote_message
->hwnd
).wnd
;
436 /* we should know exactly where to send the message (locally)*/
438 TRACE_(dde
)("SendMessage(wnd=0x%04x, msg=0x%04x, wPar=0x%04x,"
439 "lPar=0x%08x\n", dde_window
, remote_message
->message
,
440 remote_message
->wParam
, (int)remote_message
->lParam
);
442 /* execute the recieved message */
443 passed
= SendMessage16(dde_window
, remote_message
->message
,
444 remote_message
->wParam
, remote_message
->lParam
);
446 /* Tell the sended, that the message is here */
447 dde_proc_send_ack(remote_message
->wParam
, passed
);
450 passed
= PostMessage16(dde_window
, remote_message
->message
,
451 remote_message
->wParam
, remote_message
->lParam
);
452 if (passed
== FALSE
) {
453 /* Tell the sender, that the message is here, and failed */
454 dde_proc_send_ack(remote_message
->wParam
, FALSE
);
457 /* ack will be sent later, at the first peek/get message */
458 dde_proc_add_fifo(remote_message
->wParam
);
465 /* iterate through all the windows */
466 for (wndPtr
= WIN_FindWndPtr(GetTopWindow(GetDesktopWindow()));
468 WIN_UpdateWndPtr(&wndPtr
,wndPtr
->next
))
470 if (wndPtr
->dwStyle
& WS_POPUP
|| wndPtr
->dwStyle
& WS_CAPTION
) {
472 SendMessage16( wndPtr
->hwndSelf
, remote_message
->message
,
473 remote_message
->wParam
, remote_message
->lParam
);
475 PostMessage16( wndPtr
->hwndSelf
, remote_message
->message
,
476 remote_message
->wParam
, remote_message
->lParam
);
480 /* replay with DDE_ACK after broadcasting in DDE_GetRemoteMessage */
481 dde_proc_send_ack(remote_message
->wParam
, TRUE
);
491 ack_wnd
= dde_proc_shift_fifo();
493 dde_proc_send_ack(ack_wnd
, TRUE
);
494 usleep(10000); /* force unix task switch */
499 void dde_msg_setup(int *msg_ptr
)
501 *msg_ptr
= msgget (IPC_PRIVATE
, IPC_CREAT
| 0700);
503 perror("dde_msg_setup fails to get message queue");
506 /* do we have dde handling in the window ?
507 * If we have, atom usage will make this instance of wine set up
510 void DDE_TestDDE(HWND16 hwnd
)
513 if (in_test
++) return;
514 if (main_block
!= NULL
) {
518 TRACE_(msg
)("(0x%04x)\n", hwnd
);
521 /* just send a message to see how things are going */
522 SendMessage16( hwnd
, WM_DDE_INITIATE
, 0, 0);
526 void dde_proc_delete(int proc_idx
)
528 dde_proc_done(&main_block
->proc
[proc_idx
]);
530 void stop_wait(int a
)
534 switch(stop_wait_op
) {
536 siglongjmp(env_get_ack
,1);
537 break; /* never reached */
539 siglongjmp(env_wait_x
,1);
540 break; /* never reached */
546 static void print_dde_message(char *desc
, MSG16
*msg
)
548 /* extern const char *MessageTypeNames[];*/
549 extern int debug_last_handle_size
;
553 DDEADVISE
*ddeadvise
;
556 dbg_decl_str(dde
, 2048);
558 if (is_dde_handle(msg
->lParam
& 0xffff) )
559 ptr
=DDE_AttachHandle(msg
->lParam
&0xffff, NULL
);
562 wStatus
=LOWORD(msg
->lParam
);
563 hWord
=HIWORD(msg
->lParam
);
565 dsprintf(dde
,"%s", desc
);
566 dsprintf(dde
,"%04x %04x==%s %04x %08lx ",
567 msg
->hwnd
, msg
->message
,"",/*MessageTypeNames[msg->message],*/
568 msg
->wParam
, msg
->lParam
);
569 switch(msg
->message
) {
570 case WM_DDE_INITIATE
:
573 case WM_DDE_TERMINATE
:
577 /* DDEADVISE: hOptions in WM_DDE_ADVISE message */
580 dsprintf(dde
,"fDeferUpd=%d,fAckReq=%d,cfFormat=0x%x",
581 ddeadvise
->fDeferUpd
, ddeadvise
->fAckReq
,
582 ddeadvise
->cfFormat
);
584 dsprintf(dde
,"NO-DATA");
585 dsprintf(dde
," atom=0x%x",hWord
);
588 case WM_DDE_UNADVISE
:
589 dsprintf(dde
,"format=0x%x, atom=0x%x",wStatus
,hWord
);
592 ddeack
=(DDEACK
*)&wStatus
;
593 dsprintf(dde
,"bAppReturnCode=%d,fBusy=%d,fAck=%d",
594 ddeack
->bAppReturnCode
, ddeack
->fBusy
, ddeack
->fAck
);
596 dsprintf(dde
,"(True)");
598 dsprintf(dde
,"(False)");
604 dsprintf(dde
,"fResponse=%d,fRelease=%d,"
605 "fAckReq=%d,cfFormat=0x%x,value=\"%.*s\"",
606 ddedata
->fResponse
, ddedata
->fRelease
,
607 ddedata
->fAckReq
, ddedata
->cfFormat
,
608 debug_last_handle_size
- (int)sizeof(*ddedata
)+1,
611 dsprintf(dde
,"NO-DATA");
612 dsprintf(dde
," atom=0x%04x",hWord
);
618 dsprintf(dde
,"fRelease=%d,cfFormat=0x%x,value[0]='%c'",
619 ddepoke
->fRelease
, ddepoke
->cfFormat
, ddepoke
->Value
[0]);
621 dsprintf(dde
,"NO-DATA");
622 dsprintf(dde
," atom=0x%04x",hWord
);
625 TRACE_(dde
)("%s\n", dbg_str(dde
));
628 void dde_proc_done(dde_proc proc
)
631 msgctl(proc
->msg
, IPC_RMID
, NULL
);
634 shm_delete_chain(&proc
->shmid
);
635 shm_sem_done(&proc
->sem
);
638 /* delete entry, if old junk */
639 void dde_proc_refresh(dde_proc proc
)
644 if (kill(proc
->pid
, 0) != -1)
647 /* get here if entry non empty, and the process does not exist */
655 for (i
=0 ; i
< DDE_WINDOWS
; i
++)
656 main_block
->windows
[i
].proc_idx
= FREE_WND
;
659 static BOOL
DDE_ProcHasWindows(int proc_idx
)
664 for ( i
=0 ; i
< DDE_WINDOWS
; i
++) {
665 tested
= &main_block
->windows
[ i
];
667 if (tested
->proc_idx
== proc_idx
)
672 /* Look for hwnd in the hash table of DDE windows,
673 * Delete it from there. If there are no more windows for this
674 * process, remove the process from the DDE data-structure.
675 * If there are no more processes - delete the whole DDE struff.
677 * This is inefficient, but who cares for the efficiency of this rare
680 void DDE_DestroyWindow(HWND16 hwnd
)
686 if (main_block
== NULL
)
689 dde_wnd_idx
= hwnd
% DDE_WINDOWS
;
691 for ( i
=0 ; i
< DDE_WINDOWS
; i
++, dde_wnd_idx
++) {
692 if (dde_wnd_idx
>= DDE_WINDOWS
)
693 dde_wnd_idx
-= DDE_WINDOWS
; /* wrap-around */
695 tested
= &main_block
->windows
[ dde_wnd_idx
];
696 if (tested
->proc_idx
== FREE_WND
)
697 return; /* No window will get deleted here */
699 if (tested
->wnd
== hwnd
&& tested
->proc_idx
== curr_proc_idx
) {
701 tested
->proc_idx
= DELETED_WND
;
702 if (DDE_ProcHasWindows( curr_proc_idx
))
704 while (dde_reschedule()) /* make sure there are no other */
705 /* processes waiting for acknowledgment */
707 dde_proc_delete( curr_proc_idx
);
708 if (DDE_no_of_attached() == 1)
711 shmdt( (void *) main_block
);
719 #endif /* CONFIG_IPC */