remove old ___P() prototypes
[dragonfly.git] / sys / kern / lwkt_msgport.c
1 /*
2  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $DragonFly: src/sys/kern/lwkt_msgport.c,v 1.5 2003/08/12 02:36:15 dillon Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <sys/proc.h>
33 #include <sys/rtprio.h>
34 #include <sys/queue.h>
35 #include <sys/sysctl.h>
36 #include <sys/kthread.h>
37 #include <machine/cpu.h>
38 #include <sys/lock.h>
39
40 #include <vm/vm.h>
41 #include <vm/vm_param.h>
42 #include <vm/vm_kern.h>
43 #include <vm/vm_object.h>
44 #include <vm/vm_page.h>
45 #include <vm/vm_map.h>
46 #include <vm/vm_pager.h>
47 #include <vm/vm_extern.h>
48 #include <vm/vm_zone.h>
49
50 #include <sys/thread2.h>
51 #include <sys/msgport2.h>
52
53 #include <machine/stdarg.h>
54 #include <machine/ipl.h>
55 #ifdef SMP
56 #include <machine/smp.h>
57 #endif
58
59
60 /************************************************************************
61  *                              MESSAGE FUNCTIONS                       *
62  ************************************************************************/
63
64 static void lwkt_replyport_remote(lwkt_msg_t msg);
65 static void lwkt_putport_remote(lwkt_msg_t msg);
66 static void lwkt_abortport_remote(lwkt_port_t port);
67
68 void
69 lwkt_initmsg_td(lwkt_msg_t msg, thread_t td)
70 {
71     lwkt_initmsg(msg, &td->td_msgport, 0);
72 }
73
74 /*
75  * lwkt_sendmsg()
76  *
77  *      Send a message asynchronously.  This function requests asynchronous
78  *      completion and calls lwkt_beginmsg().  If the target port decides to
79  *      run the message synchronously this function will automatically queue
80  *      the message to the current thread's message queue to present a
81  *      consistent interface to the caller. 
82  *
83  *      The message's ms_cmd must be initialized and its ms_flags must be
84  *      at least zero'd out.  lwkt_sendmsg() will initialize the message's
85  *      reply port to the current thread's built-in reply port.
86  */
87 void
88 lwkt_sendmsg(lwkt_port_t port, lwkt_msg_t msg)
89 {
90     int error;
91
92     msg->ms_flags |= MSGF_ASYNC;
93     msg->ms_flags &= ~(MSGF_REPLY | MSGF_QUEUED);
94     msg->ms_reply_port = &curthread->td_msgport;
95     msg->ms_abortreq = 0;
96     if ((error = lwkt_beginmsg(port, msg)) != EASYNC) {
97         lwkt_replymsg(msg, error);
98     }
99 }
100
101 /*
102  * lwkt_domsg()
103  *
104  *      Send a message synchronously.  This function requests synchronous
105  *      completion and calls lwkt_beginmsg().  If the target port decides to
106  *      run the message asynchronously this function will block waiting for
107  *      the message to complete.  Since MSGF_ASYNC is not set the target
108  *      will not attempt to queue the reply to a reply port but will simply
109  *      wake up anyone waiting on the message.
110  *
111  *      A synchronous error code is always returned.
112  *
113  *      The message's ms_cmd must be initialized and its ms_flags must be
114  *      at least zero'd out.  lwkt_domsg() will initialize the message's
115  *      reply port to the current thread's built-in reply port.
116  */
117 int
118 lwkt_domsg(lwkt_port_t port, lwkt_msg_t msg)
119 {
120     int error;
121
122     msg->ms_flags &= ~(MSGF_ASYNC | MSGF_REPLY | MSGF_QUEUED);
123     msg->ms_reply_port = &curthread->td_msgport;
124     msg->ms_abortreq = 0;
125     if ((error = lwkt_beginmsg(port, msg)) == EASYNC) {
126         error = lwkt_waitmsg(msg);
127     }
128     return(error);
129 }
130
131 /*
132  * lwkt_waitmsg()
133  *
134  *      Wait for a message that we originated to complete, remove it from
135  *      the reply queue if necessary, and return its error code.
136  *
137  *      This call may be used in virtually any situation, including for the
138  *      case where you used lwkt_sendmsg() to initiate the message.
139  *
140  *      Note that we don't own the message any more so we cannot safely 
141  *      modify ms_flags, meaning we can't clear MSGF_ASYNC as an optimization.
142  *      However, since any remote cpu replying to the message will IPI the
143  *      message over to us for action, a critical section is sufficient to
144  *      protect td_msgq.
145  */
146 int
147 lwkt_waitmsg(lwkt_msg_t msg)
148 {
149     lwkt_port_t port;
150
151     /*
152      * Done but not queued case (message was originally a synchronous request)
153      */
154     if ((msg->ms_flags & (MSGF_DONE|MSGF_REPLY)) == MSGF_DONE)
155         return(msg->ms_error);
156
157     port = msg->ms_reply_port;
158     KKASSERT(port->mp_td == curthread); /* for now */
159     crit_enter();
160     if ((msg->ms_flags & MSGF_DONE) == 0) {
161         port->mp_flags |= MSGPORTF_WAITING;
162         do {
163             lwkt_deschedule_self();
164             lwkt_switch();
165         } while ((msg->ms_flags & MSGF_DONE) == 0);
166         port->mp_flags &= ~MSGPORTF_WAITING;
167     }
168     /*
169      * We own the message now.
170      */
171     if (msg->ms_flags & MSGF_QUEUED) {
172         msg->ms_flags &= ~MSGF_QUEUED;
173         TAILQ_REMOVE(&port->mp_msgq, msg, ms_node);
174     }
175     crit_exit();
176     return(msg->ms_error);
177 }
178
179
180 /************************************************************************
181  *                              PORT FUNCTIONS                          *
182  ************************************************************************/
183
184 /*
185  * lwkt_initport()
186  *
187  *      Initialize a port for use and assign it to the specified thread.
188  */
189 void
190 lwkt_init_port(lwkt_port_t port, thread_t td)
191 {
192     bzero(port, sizeof(*port));
193     TAILQ_INIT(&port->mp_msgq);
194     port->mp_td = td;
195     port->mp_beginmsg = lwkt_putport;
196     port->mp_abortmsg =  lwkt_abortport;
197     port->mp_returnmsg = lwkt_replyport;
198 }
199
200 /*
201  * lwkt_replyport()
202  *
203  *      This function is typically assigned to the mp_replymsg port vector.
204  *
205  *      The message is being returned to the specified port.  The port is
206  *      owned by the mp_td thread.  If we are on the same cpu as the mp_td
207  *      thread we can trivially queue the message to the messageq, otherwise
208  *      we have to send an ipi message to the correct cpu.   We then schedule
209  *      the target thread.
210  *
211  *      If MSGF_ASYNC is not set we do not bother queueing the message, we
212  *      just set the DONE bit.  
213  *
214  *      Note that the IPIQ callback function (*_remote) is entered with a
215  *      critical section already held.
216  */
217
218 static __inline
219 void
220 _lwkt_replyport(lwkt_port_t port, lwkt_msg_t msg)
221 {
222     thread_t td = port->mp_td;
223
224     if (td->td_gd == mycpu) {
225         TAILQ_INSERT_TAIL(&port->mp_msgq, msg, ms_node);
226         msg->ms_flags |= MSGF_DONE | MSGF_REPLY | MSGF_QUEUED;
227         if (port->mp_flags & MSGPORTF_WAITING)
228             lwkt_schedule(td);
229     } else {
230         lwkt_send_ipiq(td->td_gd->gd_cpuid, (ipifunc_t)lwkt_replyport_remote, msg);
231     }
232 }
233
234 static
235 void
236 lwkt_replyport_remote(lwkt_msg_t msg)
237 {
238     _lwkt_replyport(msg->ms_reply_port, msg);
239 }
240
241
242 void
243 lwkt_replyport(lwkt_port_t port, lwkt_msg_t msg)
244 {
245     crit_enter();
246     if (msg->ms_flags & MSGF_ASYNC) {
247         _lwkt_replyport(port, msg);
248     } else {
249         msg->ms_flags |= MSGF_DONE;
250         if (port->mp_flags & MSGPORTF_WAITING)
251             lwkt_schedule(port->mp_td);
252     }
253     crit_exit();
254 }
255
256 /*
257  * lwkt_putport()
258  *
259  *      This function is typically assigned to the mp_beginmsg port vector.
260  *
261  *      Queue a message to the target port and wakeup the thread owning it.
262  *      This function always returns EASYNC and may be assigned to a
263  *      message port's mp_beginmsg function vector.
264  */
265 static
266 __inline
267 void
268 _lwkt_putport(lwkt_port_t port, lwkt_msg_t msg)
269 {
270     thread_t td = port->mp_td;
271
272     if (td->td_gd == mycpu) {
273         TAILQ_INSERT_TAIL(&port->mp_msgq, msg, ms_node);
274         msg->ms_flags |= MSGF_QUEUED;
275         if (port->mp_flags & MSGPORTF_WAITING)
276             lwkt_schedule(td);
277     } else {
278         msg->ms_target_port = port;
279         lwkt_send_ipiq(td->td_gd->gd_cpuid, (ipifunc_t)lwkt_putport_remote, msg);
280     }
281 }
282
283 static
284 void
285 lwkt_putport_remote(lwkt_msg_t msg)
286 {
287     _lwkt_putport(msg->ms_target_port, msg);
288 }
289
290 int
291 lwkt_putport(lwkt_port_t port, lwkt_msg_t msg)
292 {
293     crit_enter();
294     _lwkt_putport(port, msg);
295     crit_exit();
296     return(EASYNC);
297 }
298
299 /*
300  * lwkt_abortport()
301  *
302  *      This function is typically assigned to the mp_abortmsg port vector.
303  *
304  *      This function attempts to abort a message.  Aborts are always 
305  *      optional, so we could just do nothing if we wanted.  We get onto the
306  *      cpu owning the port, check to see if the message is queued on the 
307  *      port's message queue, and remove and abort it if it is.  Otherwise
308  *      we do nothing.  
309  *
310  *      Note that we cannot safely use ms_target_port because the port might
311  *      have forwarded the message on to some other port and we could race
312  *      against that use of ms_target_port.
313  */
314 static
315 __inline
316 void
317 _lwkt_abortport(lwkt_port_t port)
318 {
319     thread_t td = port->mp_td;
320     lwkt_msg_t msg;
321
322     if (td->td_gd == mycpu) {
323 again:
324         msg = TAILQ_FIRST(&port->mp_msgq);
325         while (msg) {
326             if (msg->ms_abortreq) {
327                 TAILQ_REMOVE(&port->mp_msgq, msg, ms_node);
328                 msg->ms_flags &= ~MSGF_QUEUED;
329                 lwkt_replymsg(msg, ECONNABORTED); /* YYY dangerous from IPI? */
330                 goto again;
331             }
332             msg = TAILQ_NEXT(msg, ms_node);
333         }
334     } else {
335         lwkt_send_ipiq(td->td_gd->gd_cpuid, (ipifunc_t)lwkt_abortport_remote, port);
336     }
337 }
338
339 static
340 void
341 lwkt_abortport_remote(lwkt_port_t port)
342 {
343     _lwkt_abortport(port);
344 }
345
346 void
347 lwkt_abortport(lwkt_port_t port, lwkt_msg_t msg)
348 {
349     msg->ms_abortreq = 1;
350     crit_enter();
351     _lwkt_abortport(port);
352     crit_exit();
353 }
354
355 /*
356  * lwkt_getport()
357  *
358  *      Retrieve the next message from the port's message queue, return NULL
359  *      if no messages are pending.
360  *
361  *      The calling thread MUST own the port.
362  */
363 void *
364 lwkt_getport(lwkt_port_t port)
365 {
366     lwkt_msg_t msg;
367
368     KKASSERT(port->mp_td == curthread);
369
370     crit_enter();
371     if ((msg = TAILQ_FIRST(&port->mp_msgq)) != NULL) {
372         TAILQ_REMOVE(&port->mp_msgq, msg, ms_node);
373         msg->ms_flags &= ~MSGF_QUEUED;
374     }
375     crit_exit();
376     return(msg);
377 }
378
379 /*
380  * lwkt_waitport()
381  *
382  *      Retrieve the next message from the port's message queue, block until
383  *      a message is ready.  This function never returns NULL.
384  */
385 void *
386 lwkt_waitport(lwkt_port_t port)
387 {
388     lwkt_msg_t msg;
389
390     KKASSERT(port->mp_td == curthread);
391
392     crit_enter();
393     if ((msg = TAILQ_FIRST(&port->mp_msgq)) == NULL) {
394         port->mp_flags |= MSGPORTF_WAITING;
395         do {
396             lwkt_deschedule_self();
397             lwkt_switch();
398         } while ((msg = TAILQ_FIRST(&port->mp_msgq)) == NULL);
399         port->mp_flags &= ~MSGPORTF_WAITING;
400     }
401     TAILQ_REMOVE(&port->mp_msgq, msg, ms_node);
402     msg->ms_flags &= ~MSGF_QUEUED;
403     crit_exit();
404     return(msg);
405 }
406