#include <mach/port.h>
#include <mach/kern_return.h>
-#include <kern/lock.h>
#include <kern/ipc_kobject.h>
#include <kern/thread.h>
#include <kern/misc_protos.h>
-#include <kern/wait_queue.h>
+#include <kern/waitq.h>
#include <ipc/ipc_entry.h>
#include <ipc/ipc_space.h>
#include <ipc/ipc_object.h>
#include <ipc/ipc_mqueue.h>
#include <ipc/ipc_notify.h>
#include <ipc/ipc_table.h>
+#include <ipc/ipc_importance.h>
#include <security/mac_mach_internal.h>
#include <string.h>
-decl_lck_mtx_data(, ipc_port_multiple_lock_data)
-lck_mtx_ext_t ipc_port_multiple_lock_data_ext;
+decl_lck_spin_data(, ipc_port_multiple_lock_data)
ipc_port_timestamp_t ipc_port_timestamp_data;
int ipc_portbt;
if (port->ip_sprequests == 0) {
port->ip_sprequests = 1;
#if IMPORTANCE_INHERITANCE
+ /* TODO: Live importance support in send-possible */
if (port->ip_impdonation != 0 &&
port->ip_spimportant == 0 &&
(task_is_importance_donor(current_task()))) {
void
ipc_port_clear_receiver(
- ipc_port_t port,
- queue_t links)
+ ipc_port_t port)
{
spl_t s;
/*
* pull ourselves from any sets.
*/
- if (port->ip_pset_count != 0) {
- ipc_pset_remove_from_all(port, links);
- assert(port->ip_pset_count == 0);
+ if (port->ip_in_pset != 0) {
+ ipc_pset_remove_from_all(port);
+ assert(port->ip_in_pset == 0);
}
/*
port->ip_pdrequest = IP_NULL;
port->ip_requests = IPR_NULL;
- port->ip_pset_count = 0;
port->ip_premsg = IKM_NULL;
port->ip_context = 0;
port->ip_spimportant = 0;
port->ip_impdonation = 0;
port->ip_tempowner = 0;
- port->ip_taskptr = 0;
port->ip_guarded = 0;
port->ip_strict_guard = 0;
port->ip_reserved = 0;
- ipc_mqueue_init(&port->ip_messages, FALSE /* set */);
+ ipc_mqueue_init(&port->ip_messages,
+ FALSE /* !set */, NULL /* no reserved link */);
}
/*
/* unlock space after init */
is_write_unlock(space);
-#if CONFIG_MACF_MACH
- task_t issuer = current_task();
- tasklabel_lock2 (issuer, space->is_task);
- mac_port_label_associate(&issuer->maclabel, &space->is_task->maclabel,
- &port->ip_label);
- tasklabel_unlock2 (issuer, space->is_task);
-#endif
-
*namep = name;
*portp = port;
ipc_port_init_debug(port, &buf[0], IP_CALLSTACK_MAX);
#endif /* MACH_ASSERT */
-#if CONFIG_MACF_MACH
- task_t issuer = current_task();
- tasklabel_lock2 (issuer, space->is_task);
- mac_port_label_associate(&issuer->maclabel, &space->is_task->maclabel,
- &port->ip_label);
- tasklabel_unlock2 (issuer, space->is_task);
-#endif
-
*portp = port;
return KERN_SUCCESS;
#if IMPORTANCE_INHERITANCE
if (port->ip_spimportant != 0) {
port->ip_spimportant = 0;
- port->ip_impcount--;
- dropassert = TRUE;
+ if (ipc_port_impcount_delta(port, -1, IP_NULL) == -1) {
+ dropassert = TRUE;
+ }
}
#endif /* IMPORTANCE_INHERITANCE */
ip_unlock(port);
out:
#if IMPORTANCE_INHERITANCE
- if ((dropassert == TRUE) && (current_task()->imp_receiver != 0)) {
- /* drop internal assertion and no task lock held */
- task_importance_drop_internal_assertion(current_task(), 1);
+ if (dropassert == TRUE && ipc_importance_task_is_any_receiver_type(current_task()->task_imp_base)) {
+ /* drop internal assertion */
+ ipc_importance_task_drop_internal_assertion(current_task()->task_imp_base, 1);
}
#endif /* IMPORTANCE_INHERITANCE */
return;
ipc_kmsg_t kmsg;
#if IMPORTANCE_INHERITANCE
- task_t release_imp_task = TASK_NULL;
+ ipc_importance_task_t release_imp_task = IIT_NULL;
thread_t self = current_thread();
boolean_t top = (self->ith_assertions == 0);
natural_t assertcnt = 0;
assert(ip_active(port));
/* port->ip_receiver_name is garbage */
/* port->ip_receiver/port->ip_destination is garbage */
- assert(port->ip_pset_count == 0);
+ assert(port->ip_in_pset == 0);
assert(port->ip_mscount == 0);
/* check for a backup port */
pdrequest = port->ip_pdrequest;
#if IMPORTANCE_INHERITANCE
- /* determine how may assertions to drop and from whom */
+ /* determine how many assertions to drop and from whom */
if (port->ip_tempowner != 0) {
assert(top);
- if (port->ip_taskptr != 0) {
- release_imp_task = port->ip_imp_task;
- port->ip_imp_task = TASK_NULL;
- port->ip_taskptr = 0;
+ release_imp_task = port->ip_imp_task;
+ if (IIT_NULL != release_imp_task) {
+ port->ip_imp_task = IIT_NULL;
assertcnt = port->ip_impcount;
}
/* Otherwise, nothing to drop */
} else {
- assert(port->ip_taskptr == 0);
assertcnt = port->ip_impcount;
if (pdrequest != IP_NULL)
/* mark in limbo for the journey */
port->ip_object.io_bits &= ~IO_BITS_ACTIVE;
port->ip_timestamp = ipc_port_timestamp();
+ nsrequest = port->ip_nsrequest;
/*
* If the port has a preallocated message buffer and that buffer
}
/* throw away no-senders request */
- nsrequest = port->ip_nsrequest;
if (nsrequest != IP_NULL)
ipc_notify_send_once(nsrequest); /* consumes ref */
mqueue = &port->ip_messages;
ipc_mqueue_destroy(mqueue);
+ /* cleanup waitq related resources */
+ ipc_mqueue_deinit(mqueue);
+
/* generate dead-name notifications */
ipc_port_dnnotify(port);
drop_assertions:
#if IMPORTANCE_INHERITANCE
- if (release_imp_task != TASK_NULL) {
+ if (release_imp_task != IIT_NULL) {
if (assertcnt > 0) {
assert(top);
self->ith_assertions = 0;
- assert(release_imp_task->imp_receiver != 0);
- task_importance_drop_internal_assertion(release_imp_task, assertcnt);
+ assert(ipc_importance_task_is_any_receiver_type(release_imp_task));
+ ipc_importance_task_drop_internal_assertion(release_imp_task, assertcnt);
}
- task_deallocate(release_imp_task);
+ ipc_importance_task_release(release_imp_task);
} else if (assertcnt > 0) {
if (top) {
self->ith_assertions = 0;
- release_imp_task = current_task();
- if (release_imp_task->imp_receiver != 0) {
- task_importance_drop_internal_assertion(release_imp_task, assertcnt);
+ release_imp_task = current_task()->task_imp_base;
+ if (ipc_importance_task_is_any_receiver_type(release_imp_task)) {
+ ipc_importance_task_drop_internal_assertion(release_imp_task, assertcnt);
}
- } else {
- /* the port chain we are enqueued on should cover our assertions */
- assert(assertcnt <= self->ith_assertions);
}
}
#endif /* IMPORTANCE_INHERITANCE */
ipc_port_t base;
#if IMPORTANCE_INHERITANCE
- task_t task = TASK_NULL;
- task_t release_task = TASK_NULL;
+ ipc_importance_task_t imp_task = IIT_NULL;
+ ipc_importance_task_t release_imp_task = IIT_NULL;
int assertcnt = 0;
#endif /* IMPORTANCE_INHERITANCE */
/* must have been in limbo or still bound to a task */
assert(port->ip_tempowner != 0);
- if (port->ip_taskptr != 0) {
- /*
- * We delayed dropping assertions from a specific task.
- * Cache that info now (we'll drop assertions and the
- * task reference below).
- */
- release_task = port->ip_imp_task;
- port->ip_imp_task = TASK_NULL;
- port->ip_taskptr = 0;
+ /*
+ * We delayed dropping assertions from a specific task.
+ * Cache that info now (we'll drop assertions and the
+ * task reference below).
+ */
+ release_imp_task = port->ip_imp_task;
+ if (IIT_NULL != release_imp_task) {
+ port->ip_imp_task = IIT_NULL;
}
assertcnt = port->ip_impcount;
*/
if (ip_active(base) && (assertcnt > 0)) {
if (base->ip_tempowner != 0) {
- if (base->ip_taskptr != 0)
+ if (IIT_NULL != base->ip_imp_task) {
/* specified tempowner task */
- task = base->ip_imp_task;
+ imp_task = base->ip_imp_task;
+ assert(ipc_importance_task_is_any_receiver_type(imp_task));
+ }
/* otherwise don't boost current task */
} else if (base->ip_receiver_name != MACH_PORT_NULL) {
/* only spaces with boost-accepting tasks */
if (space->is_task != TASK_NULL &&
- space->is_task->imp_receiver != 0)
- task = space->is_task;
+ ipc_importance_task_is_any_receiver_type(space->is_task->task_imp_base))
+ imp_task = space->is_task->task_imp_base;
}
/* take reference before unlocking base */
- if (task != TASK_NULL) {
- assert(task->imp_receiver != 0);
- task_reference(task);
+ if (imp_task != IIT_NULL) {
+ ipc_importance_task_reference(imp_task);
}
}
#endif /* IMPORTANCE_INHERITANCE */
* Transfer assertions now that the ports are unlocked.
* Avoid extra overhead if transferring to/from the same task.
*/
- boolean_t transfer_assertions = (task != release_task) ? TRUE : FALSE;
+ boolean_t transfer_assertions = (imp_task != release_imp_task) ? TRUE : FALSE;
- if (task != TASK_NULL) {
+ if (imp_task != IIT_NULL) {
if (transfer_assertions)
- task_importance_hold_internal_assertion(task, assertcnt);
- task_deallocate(task);
- task = TASK_NULL;
+ ipc_importance_task_hold_internal_assertion(imp_task, assertcnt);
+ ipc_importance_task_release(imp_task);
+ imp_task = IIT_NULL;
}
- if (release_task != TASK_NULL) {
+ if (release_imp_task != IIT_NULL) {
if (transfer_assertions)
- task_importance_drop_internal_assertion(release_task, assertcnt);
- task_deallocate(release_task);
- release_task = TASK_NULL;
+ ipc_importance_task_drop_internal_assertion(release_imp_task, assertcnt);
+ ipc_importance_task_release(release_imp_task);
+ release_imp_task = IIT_NULL;
}
#endif /* IMPORTANCE_INHERITANCE */
}
/*
- * Routine: ipc_port_importance_delta
+ * Routine: ipc_port_impcount_delta
+ * Purpose:
+ * Adjust only the importance count associated with a port.
+ * If there are any adjustments to be made to receiver task,
+ * those are handled elsewhere.
+ *
+ * For now, be defensive during deductions to make sure the
+ * impcount for the port doesn't underflow zero. This will
+ * go away when the port boost addition is made atomic (see
+ * note in ipc_port_importance_delta()).
+ * Conditions:
+ * The port is referenced and locked.
+ * Nothing else is locked.
+ */
+mach_port_delta_t
+ipc_port_impcount_delta(
+ ipc_port_t port,
+ mach_port_delta_t delta,
+ ipc_port_t __unused base)
+{
+ mach_port_delta_t absdelta;
+
+ if (!ip_active(port)) {
+ return 0;
+ }
+
+ /* adding/doing nothing is easy */
+ if (delta >= 0) {
+ port->ip_impcount += delta;
+ return delta;
+ }
+
+ absdelta = 0 - delta;
+ //assert(port->ip_impcount >= absdelta);
+ /* if we have enough to deduct, we're done */
+ if (port->ip_impcount >= absdelta) {
+ port->ip_impcount -= absdelta;
+ return delta;
+ }
+
+#if DEVELOPMENT || DEBUG
+ if (port->ip_receiver_name != MACH_PORT_NULL) {
+ task_t target_task = port->ip_receiver->is_task;
+ ipc_importance_task_t target_imp = target_task->task_imp_base;
+ const char *target_procname;
+ int target_pid;
+
+ if (target_imp != IIT_NULL) {
+ target_procname = target_imp->iit_procname;
+ target_pid = target_imp->iit_bsd_pid;
+ } else {
+ target_procname = "unknown";
+ target_pid = -1;
+ }
+ printf("Over-release of importance assertions for port 0x%x receiver pid %d (%s), "
+ "dropping %d assertion(s) but port only has %d remaining.\n",
+ port->ip_receiver_name,
+ target_imp->iit_bsd_pid, target_imp->iit_procname,
+ absdelta, port->ip_impcount);
+
+ } else if (base != IP_NULL) {
+ task_t target_task = base->ip_receiver->is_task;
+ ipc_importance_task_t target_imp = target_task->task_imp_base;
+ const char *target_procname;
+ int target_pid;
+
+ if (target_imp != IIT_NULL) {
+ target_procname = target_imp->iit_procname;
+ target_pid = target_imp->iit_bsd_pid;
+ } else {
+ target_procname = "unknown";
+ target_pid = -1;
+ }
+ printf("Over-release of importance assertions for port %p "
+ "enqueued on port 0x%x with receiver pid %d (%s), "
+ "dropping %d assertion(s) but port only has %d remaining.\n",
+ port, base->ip_receiver_name,
+ target_imp->iit_bsd_pid, target_imp->iit_procname,
+ absdelta, port->ip_impcount);
+ }
+#endif
+ delta = 0 - port->ip_impcount;
+ port->ip_impcount = 0;
+ return delta;
+}
+
+/*
+ * Routine: ipc_port_importance_delta_internal
* Purpose:
* Adjust the importance count through the given port.
* If the port is in transit, apply the delta throughout
#if IMPORTANCE_INHERITANCE
boolean_t
-ipc_port_importance_delta(
+ipc_port_importance_delta_internal(
ipc_port_t port,
- mach_port_delta_t delta)
+ mach_port_delta_t *deltap,
+ ipc_importance_task_t *imp_task)
{
ipc_port_t next, base;
- task_t task = TASK_NULL;
boolean_t dropped = FALSE;
- if (delta == 0)
+ *imp_task = IIT_NULL;
+
+ if (*deltap == 0)
return FALSE;
base = port;
/* unlock down to the base, adding a boost at each level */
for (;;) {
- port->ip_impcount += delta;
+ /*
+ * JMM TODO - because of the port unlock to grab the multiple lock
+ * above, a subsequent drop of importance could race and beat
+ * the "previous" increase - causing the port impcount to go
+ * negative briefly. The defensive deduction performed by
+ * ipc_port_impcount_delta() defeats that, and therefore can
+ * cause an importance leak once the increase finally arrives.
+ *
+ * Need to rework the importance delta logic to be more like
+ * ipc_importance_inherit_from() where it locks all it needs in
+ * one pass to avoid any lock drops - to keep that race from
+ * ever occuring.
+ */
+ *deltap = ipc_port_impcount_delta(port, *deltap, base);
- if (port == base)
+ if (port == base) {
break;
+ }
/* port is in transit */
assert(port->ip_tempowner == 0);
/* find the task (if any) to boost according to the base */
if (ip_active(base)) {
if (base->ip_tempowner != 0) {
- if (base->ip_taskptr != 0)
- task = base->ip_imp_task;
+ if (IIT_NULL != base->ip_imp_task)
+ *imp_task = base->ip_imp_task;
/* otherwise don't boost */
} else if (base->ip_receiver_name != MACH_PORT_NULL) {
/* only spaces with boost-accepting tasks */
if (space->is_task != TASK_NULL &&
- space->is_task->imp_receiver != 0)
- task = space->is_task;
+ ipc_importance_task_is_any_receiver_type(space->is_task->task_imp_base)) {
+ *imp_task = space->is_task->task_imp_base;
+ }
}
}
* Only the base is locked. If we have to hold or drop task
* importance assertions, we'll have to drop that lock as well.
*/
- if (task != TASK_NULL) {
+ if (*imp_task != IIT_NULL) {
/* take a reference before unlocking base */
- assert(task->imp_receiver != 0);
- task_reference(task);
+ ipc_importance_task_reference(*imp_task);
+ }
+ if (dropped == TRUE) {
ip_unlock(base);
- dropped = TRUE;
+ }
- if (delta > 0)
- task_importance_hold_internal_assertion(task, delta);
- else
- task_importance_drop_internal_assertion(task, -delta);
+ return dropped;
+}
+#endif /* IMPORTANCE_INHERITANCE */
- task_deallocate(task);
- } else if (dropped == TRUE) {
- ip_unlock(base);
+/*
+ * Routine: ipc_port_importance_delta
+ * Purpose:
+ * Adjust the importance count through the given port.
+ * If the port is in transit, apply the delta throughout
+ * the chain.
+ *
+ * If there is a task at the base of the chain that wants/needs
+ * to be adjusted, apply the delta.
+ * Conditions:
+ * The port is referenced and locked on entry.
+ * Nothing else is locked.
+ * The lock may be dropped on exit.
+ * Returns TRUE if lock was dropped.
+ */
+#if IMPORTANCE_INHERITANCE
+
+boolean_t
+ipc_port_importance_delta(
+ ipc_port_t port,
+ mach_port_delta_t delta)
+{
+ ipc_importance_task_t imp_task = IIT_NULL;
+ boolean_t dropped;
+
+ dropped = ipc_port_importance_delta_internal(port, &delta, &imp_task);
+
+ if (IIT_NULL == imp_task)
+ return dropped;
+
+ if (!dropped) {
+ dropped = TRUE;
+ ip_unlock(port);
}
+ assert(ipc_importance_task_is_any_receiver_type(imp_task));
+
+ if (delta > 0)
+ ipc_importance_task_hold_internal_assertion(imp_task, delta);
+ else
+ ipc_importance_task_drop_internal_assertion(imp_task, -delta);
+
+ ipc_importance_task_release(imp_task);
return dropped;
}
#endif /* IMPORTANCE_INHERITANCE */
if ((entry->ie_bits & MACH_PORT_TYPE_RECEIVE) == 0)
return IP_NULL;
- port = (ipc_port_t) entry->ie_object;
+ __IGNORE_WCASTALIGN(port = (ipc_port_t) entry->ie_object);
assert(port != IP_NULL);
ip_lock(port);
ip_lock(port);
+ assert(port->ip_srights > 0);
+ port->ip_srights--;
+
if (!ip_active(port)) {
ip_unlock(port);
ip_release(port);
return;
}
- assert(port->ip_srights > 0);
-
- if (--port->ip_srights == 0 &&
+ if (port->ip_srights == 0 &&
port->ip_nsrequest != IP_NULL) {
nsrequest = port->ip_nsrequest;
port->ip_nsrequest = IP_NULL;
{
ipc_port_t port;
- port = (ipc_port_t) io_alloc(IOT_PORT);
+ __IGNORE_WCASTALIGN(port = (ipc_port_t) io_alloc(IOT_PORT));
if (port == IP_NULL)
return IP_NULL;
ipc_port_init_debug(port, &buf[0], IP_CALLSTACK_MAX);
#endif /* MACH_ASSERT */
-#if CONFIG_MACF_MACH
- /* Currently, ipc_port_alloc_special is used for two things:
- * - Reply ports for messages from the kernel
- * - Ports for communication with the kernel (e.g. task ports)
- * Since both of these would typically be labelled as kernel objects,
- * we will use a new entry point for this purpose, as current_task()
- * is often wrong (i.e. not kernel_task) or null.
- */
- mac_port_label_init(&port->ip_label);
- mac_port_label_associate_kernel(&port->ip_label, space == ipc_space_reply);
-#endif
-
return port;
}
it_requests_free(its, requests);
port->ip_requests = IPR_NULL;
}
+
+ ipc_mqueue_deinit(&port->ip_messages);
#if MACH_ASSERT
ipc_port_track_dealloc(port);
#endif /* MACH_ASSERT */
-
-#if CONFIG_MACF_MACH
- /* Port label should have been initialized after creation. */
- mac_port_label_destroy(&port->ip_label);
-#endif
}
#if MACH_ASSERT
* Allocation is intercepted via ipc_port_init;
* deallocation is intercepted via io_free.
*/
+#if 0
queue_head_t port_alloc_queue;
lck_spin_t port_alloc_queue_lock;
+#endif
unsigned long port_count = 0;
unsigned long port_count_warning = 20000;
void
ipc_port_debug_init(void)
{
+#if 0
queue_init(&port_alloc_queue);
-
lck_spin_init(&port_alloc_queue_lock, &ipc_lck_grp, &ipc_lck_attr);
+#endif
if (!PE_parse_boot_argn("ipc_portbt", &ipc_portbt, sizeof (ipc_portbt)))
ipc_portbt = 0;