Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | /* * Copyright (c) 2000-2007 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ /* * File: ipc/ipc_mqueue.h * Author: Rich Draves * Date: 1989 * * Definitions for message queues. */ #ifndef _IPC_IPC_MQUEUE_H_ #define _IPC_IPC_MQUEUE_H_ #include <mach_assert.h> #include <mach/message.h> #include <kern/assert.h> #include <kern/macro_help.h> #include <kern/kern_types.h> #include <kern/waitq.h> #include <ipc/ipc_kmsg.h> #include <ipc/ipc_object.h> #include <ipc/ipc_types.h> #include <sys/event.h> typedef struct ipc_mqueue { union { struct { struct waitq waitq; struct ipc_kmsg_queue messages; mach_port_seqno_t seqno; mach_port_name_t receiver_name; uint16_t msgcount; uint16_t qlimit; #ifdef __LP64__ uint32_t qcontext; #endif #if MACH_FLIPC struct flipc_port *fport; // Null for local port, or ptr to flipc port #endif } port; struct { struct waitq_set setq; } pset; } data; union { /* * Port Sets: * only use imq_klist * * Special Reply Ports (ip_specialreply == true): * only use imq_srp_owner_thread * * Ports, based on ip_sync_link_state, use: * - PORT_SYNC_LINK_ANY: imq_klist * - PORT_SYNC_LINK_WORKLOOP_KNOTE: imq_inheritor_knote * - PORT_SYNC_LINK_WORKLOOP_STASH: imq_inheritor_turnstile * - PORT_SYNC_LINK_RCV_THREAD: imq_inheritor_thread_ref */ struct klist imq_klist; struct knote *imq_inheritor_knote; struct turnstile *imq_inheritor_turnstile; thread_t imq_inheritor_thread_ref; thread_t imq_srp_owner_thread; }; #ifndef __LP64__ uint32_t qcontext; #endif } *ipc_mqueue_t; #define IMQ_NULL ((ipc_mqueue_t) 0) #define imq_wait_queue data.port.waitq #define imq_messages data.port.messages #define imq_msgcount data.port.msgcount #define imq_qlimit data.port.qlimit #define imq_seqno data.port.seqno #define imq_receiver_name data.port.receiver_name #if MACH_FLIPC #define imq_fport data.port.fport #endif /* * The qcontext structure member fills in a 32-bit padding gap in ipc_mqueue. * However, the 32-bits are in slightly different places on 32 and 64 bit systems. */ #ifdef __LP64__ #define imq_context data.port.qcontext #else #define imq_context qcontext #endif /* * we can use the 'eventmask' bits of the waitq b/c * they are only used by global queues */ #define imq_fullwaiters data.port.waitq.waitq_eventmask #define imq_in_pset data.port.waitq.waitq_set_id #define imq_preposts data.port.waitq.waitq_prepost_id #define imq_set_queue data.pset.setq #define imq_is_set(mq) waitqs_is_set(&(mq)->imq_set_queue) #define imq_is_queue(mq) waitq_is_queue(&(mq)->imq_wait_queue) #define imq_is_turnstile_proxy(mq) \ waitq_is_turnstile_proxy(&(mq)->imq_wait_queue) #define imq_is_valid(mq) waitq_is_valid(&(mq)->imq_wait_queue) #define imq_unlock(mq) waitq_unlock(&(mq)->imq_wait_queue) #define imq_held(mq) waitq_held(&(mq)->imq_wait_queue) #define imq_valid(mq) waitq_valid(&(mq)->imq_wait_queue) extern void imq_lock(ipc_mqueue_t mq); extern unsigned int imq_lock_try(ipc_mqueue_t mq); /* * Get an ipc_mqueue pointer from a waitq pointer. These are traditionally the * same pointer, but this conversion makes no assumptions on union structure * member positions - it should allow the waitq to move around in either the * port-set mqueue or the port mqueue independently. */ #define imq_from_waitq(waitq) (waitq_is_set(waitq) ? \ __container_of(waitq, struct ipc_mqueue, imq_set_queue.wqset_q) : \ __container_of(waitq, struct ipc_mqueue, imq_wait_queue)) #define imq_to_object(mq) ip_to_object(ip_from_mq(mq)) extern void imq_reserve_and_lock(ipc_mqueue_t mq, uint64_t *reserved_prepost); extern void imq_release_and_unlock(ipc_mqueue_t mq, uint64_t reserved_prepost); #define imq_full(mq) ((mq)->imq_msgcount >= (mq)->imq_qlimit) #define imq_full_kernel(mq) ((mq)->imq_msgcount >= MACH_PORT_QLIMIT_KERNEL) extern int ipc_mqueue_full; // extern int ipc_mqueue_rcv; #define IPC_MQUEUE_FULL CAST_EVENT64_T(&ipc_mqueue_full) #define IPC_MQUEUE_RECEIVE NO_EVENT64 /* * Exported interfaces */ __enum_closed_decl(ipc_mqueue_kind_t, int, { IPC_MQUEUE_KIND_NONE, /* this mqueue really isn't used */ IPC_MQUEUE_KIND_PORT, /* this queue is a regular port queue */ IPC_MQUEUE_KIND_SET, /* this queue is a portset queue */ }); /* Initialize a newly-allocated message queue */ extern void ipc_mqueue_init( ipc_mqueue_t mqueue, ipc_mqueue_kind_t kind); /* de-initialize / cleanup an mqueue (specifically waitq resources) */ extern void ipc_mqueue_deinit( ipc_mqueue_t mqueue); /* destroy an mqueue */ extern boolean_t ipc_mqueue_destroy_locked( ipc_mqueue_t mqueue); /* Wake up receivers waiting in a message queue */ extern void ipc_mqueue_changed( ipc_space_t space, ipc_mqueue_t mqueue); /* Add the specific mqueue as a member of the set */ extern kern_return_t ipc_mqueue_add( ipc_mqueue_t mqueue, ipc_mqueue_t set_mqueue, uint64_t *reserved_link, uint64_t *reserved_prepost); /* Check to see if mqueue is member of set_mqueue */ extern boolean_t ipc_mqueue_member( ipc_mqueue_t mqueue, ipc_mqueue_t set_mqueue); /* Remove an mqueue from a specific set */ extern kern_return_t ipc_mqueue_remove( ipc_mqueue_t mqueue, ipc_mqueue_t set_mqueue); /* Remove an mqueue from all sets */ extern void ipc_mqueue_remove_from_all( ipc_mqueue_t mqueue); /* Remove all the members of the specifiied set */ extern void ipc_mqueue_remove_all( ipc_mqueue_t mqueue); /* Send a message to a port */ extern mach_msg_return_t ipc_mqueue_send( ipc_mqueue_t mqueue, ipc_kmsg_t kmsg, mach_msg_option_t option, mach_msg_timeout_t timeout_val); /* check for queue send queue full of a port */ extern mach_msg_return_t ipc_mqueue_preflight_send( ipc_mqueue_t mqueue, ipc_kmsg_t kmsg, mach_msg_option_t option, mach_msg_timeout_t timeout_val); /* Set a [send-possible] override on the mqueue */ extern void ipc_mqueue_override_send( ipc_mqueue_t mqueue, mach_msg_priority_t override); /* Deliver message to message queue or waiting receiver */ extern void ipc_mqueue_post( ipc_mqueue_t mqueue, ipc_kmsg_t kmsg, mach_msg_option_t option); /* Receive a message from a message queue */ extern void ipc_mqueue_receive( ipc_mqueue_t mqueue, mach_msg_option_t option, mach_msg_size_t max_size, mach_msg_timeout_t timeout_val, int interruptible); /* Receive a message from a message queue using a specified thread */ extern wait_result_t ipc_mqueue_receive_on_thread( ipc_mqueue_t mqueue, mach_msg_option_t option, mach_msg_size_t max_size, mach_msg_timeout_t rcv_timeout, int interruptible, thread_t thread); /* Continuation routine for message receive */ extern void ipc_mqueue_receive_continue( void *param, wait_result_t wresult); /* Select a message from a queue and try to post it to ourself */ extern void ipc_mqueue_select_on_thread( ipc_mqueue_t port_mq, ipc_mqueue_t set_mq, mach_msg_option_t option, mach_msg_size_t max_size, thread_t thread); /* Peek into a messaqe queue to see if there are messages */ extern unsigned ipc_mqueue_peek( ipc_mqueue_t mqueue, mach_port_seqno_t *msg_seqnop, mach_msg_size_t *msg_sizep, mach_msg_id_t *msg_idp, mach_msg_max_trailer_t *msg_trailerp, ipc_kmsg_t *kmsgp); /* Peek into a locked messaqe queue to see if there are messages */ extern unsigned ipc_mqueue_peek_locked( ipc_mqueue_t mqueue, mach_port_seqno_t *msg_seqnop, mach_msg_size_t *msg_sizep, mach_msg_id_t *msg_idp, mach_msg_max_trailer_t *msg_trailerp, ipc_kmsg_t *kmsgp); /* Peek into a messaqe queue set to see if there are queues with messages */ extern unsigned ipc_mqueue_set_peek( ipc_mqueue_t mqueue); /* Release an mqueue/port reference that was granted by MACH_PEEK_MSG */ extern void ipc_mqueue_release_peek_ref( ipc_mqueue_t mqueue); /* Gather the names of member port for a given set */ extern void ipc_mqueue_set_gather_member_names( ipc_space_t space, ipc_mqueue_t set_mq, ipc_entry_num_t maxnames, mach_port_name_t *names, ipc_entry_num_t *actualp); /* Clear a message count reservation */ extern void ipc_mqueue_release_msgcount( ipc_mqueue_t port_mq, ipc_mqueue_t set_mq); /* Change a queue limit */ extern void ipc_mqueue_set_qlimit( ipc_mqueue_t mqueue, mach_port_msgcount_t qlimit); /* Change a queue's sequence number */ extern void ipc_mqueue_set_seqno( ipc_mqueue_t mqueue, mach_port_seqno_t seqno); /* Convert a name in a space to a message queue */ extern mach_msg_return_t ipc_mqueue_copyin( ipc_space_t space, mach_port_name_t name, ipc_mqueue_t *mqueuep, ipc_object_t *objectp); #endif /* _IPC_IPC_MQUEUE_H_ */ |