/* * Userspace mutex implementation * * Copyright (C) 2009 Bahadir Bilgehan Balban */ #include #include #include #include #include #include #include #include #include #include INC_API(syscall.h) #include INC_ARCH(exception.h) #include INC_GLUE(memory.h) void init_mutex_queue_head(struct mutex_queue_head *mqhead) { memset(mqhead, 0, sizeof(*mqhead)); link_init(&mqhead->list); mutex_init(&mqhead->mutex_control_mutex); } void mutex_queue_head_lock(struct mutex_queue_head *mqhead) { mutex_lock(&mqhead->mutex_control_mutex); } void mutex_queue_head_unlock(struct mutex_queue_head *mqhead) { /* Async unlock because in some cases preemption may be disabled here */ mutex_unlock_async(&mqhead->mutex_control_mutex); } void mutex_queue_init(struct mutex_queue *mq, unsigned long physical) { /* This is the unique key that describes this mutex */ mq->physical = physical; link_init(&mq->list); waitqueue_head_init(&mq->wqh_holders); waitqueue_head_init(&mq->wqh_contenders); } void mutex_control_add(struct mutex_queue_head *mqhead, struct mutex_queue *mq) { BUG_ON(!list_empty(&mq->list)); list_insert(&mq->list, &mqhead->list); mqhead->count++; } void mutex_control_remove(struct mutex_queue_head *mqhead, struct mutex_queue *mq) { list_remove_init(&mq->list); mqhead->count--; } /* Note, this has ptr/negative error returns instead of ptr/zero. */ struct mutex_queue *mutex_control_find(struct mutex_queue_head *mqhead, unsigned long mutex_physical) { struct mutex_queue *mutex_queue; /* Find the mutex queue with this key */ list_foreach_struct(mutex_queue, &mqhead->list, list) if (mutex_queue->physical == mutex_physical) return mutex_queue; return 0; } struct mutex_queue *mutex_control_create(unsigned long mutex_physical) { struct mutex_queue *mutex_queue; /* Allocate the mutex queue structure */ if (!(mutex_queue = alloc_user_mutex())) return 0; /* Init and return */ mutex_queue_init(mutex_queue, mutex_physical); return mutex_queue; } void mutex_control_delete(struct mutex_queue *mq) { BUG_ON(!list_empty(&mq->list)); /* Test internals of waitqueue */ BUG_ON(mq->wqh_contenders.sleepers); BUG_ON(mq->wqh_holders.sleepers); BUG_ON(!list_empty(&mq->wqh_contenders.task_list)); BUG_ON(!list_empty(&mq->wqh_holders.task_list)); free_user_mutex(mq); } /* * A contended thread is expected to show up with the * contended mutex address here. * * (1) The mutex is converted into its physical form and * searched for in the existing mutex list. If it does not * appear there, it gets added. * (2) The thread is put to sleep in the mutex wait queue * until a wake up event occurs. If there is already an asleep * lock holder (i.e. unlocker) that is woken up and we return. */ int mutex_control_lock(struct mutex_queue_head *mqhead, unsigned long mutex_address) { struct mutex_queue *mutex_queue; mutex_queue_head_lock(mqhead); /* Search for the mutex queue */ if (!(mutex_queue = mutex_control_find(mqhead, mutex_address))) { /* Create a new one */ if (!(mutex_queue = mutex_control_create(mutex_address))) { mutex_queue_head_unlock(mqhead); return -ENOMEM; } /* Add the queue to mutex queue list */ mutex_control_add(mqhead, mutex_queue); } else { /* See if there is a lock holder */ if (mutex_queue->wqh_holders.sleepers) { /* * If yes, wake it up async and we can *hope* * to acquire the lock before the lock holder */ wake_up(&mutex_queue->wqh_holders, WAKEUP_ASYNC); /* Since noone is left, delete the mutex queue */ mutex_control_remove(mqhead, mutex_queue); mutex_control_delete(mutex_queue); /* Release lock and return */ mutex_queue_head_unlock(mqhead); return 0; } } /* Prepare to wait on the contenders queue */ CREATE_WAITQUEUE_ON_STACK(wq, current); wait_on_prepare(&mutex_queue->wqh_contenders, &wq); /* Release lock */ mutex_queue_head_unlock(mqhead); /* Initiate prepared wait */ return wait_on_prepared_wait(); } /* * A thread that has detected a contention on a mutex that * it had locked but has just released is expected to show up with * that mutex here. * * (1) The mutex is converted into its physical form and * searched for in the existing mutex list. If not found, * a new one is created and the thread sleeps there as a lock * holder. * (2) All the threads waiting on this mutex are woken up. This may * cause a thundering herd, but user threads cannot be trusted * to acquire the mutex, waking up all of them increases the * chances that some thread may acquire it. */ int mutex_control_unlock(struct mutex_queue_head *mqhead, unsigned long mutex_address) { struct mutex_queue *mutex_queue; mutex_queue_head_lock(mqhead); /* Search for the mutex queue */ if (!(mutex_queue = mutex_control_find(mqhead, mutex_address))) { /* No such mutex, create one and sleep on it */ if (!(mutex_queue = mutex_control_create(mutex_address))) { mutex_queue_head_unlock(mqhead); return -ENOMEM; } /* Add the queue to mutex queue list */ mutex_control_add(mqhead, mutex_queue); /* Prepare to wait on the lock holders queue */ CREATE_WAITQUEUE_ON_STACK(wq, current); /* Prepare to wait */ wait_on_prepare(&mutex_queue->wqh_holders, &wq); /* Release lock first */ mutex_queue_head_unlock(mqhead); /* Initiate prepared wait */ return wait_on_prepared_wait(); } /* * Found it, if it exists, there are contenders, * now wake all of them up in FIFO order. * FIXME: Make sure this is FIFO order. It doesn't seem so. */ wake_up(&mutex_queue->wqh_contenders, WAKEUP_ASYNC); /* Since noone is left, delete the mutex queue */ mutex_control_remove(mqhead, mutex_queue); mutex_control_delete(mutex_queue); /* Release lock and return */ mutex_queue_head_unlock(mqhead); return 0; } int sys_mutex_control(unsigned long mutex_address, int mutex_op) { unsigned long mutex_physical; int ret = 0; /* Check valid operation */ if (mutex_op != MUTEX_CONTROL_LOCK && mutex_op != MUTEX_CONTROL_UNLOCK) { printk("Invalid args to %s.\n", __FUNCTION__); return -EINVAL; } /* Check valid user virtual address */ if (KERN_ADDR(mutex_address)) { printk("Invalid args to %s.\n", __FUNCTION__); return -EINVAL; } if ((ret = cap_mutex_check(mutex_address, mutex_op)) < 0) return ret; /* * Find and check physical address for virtual mutex address * * FIXME: Could we check this as a capability? Perhaps not * since not always the caller but its pager possesses * relevant memory capability. Maybe check on behalf of * its pager? */ if (!(mutex_physical = virt_to_phys_by_pgd(mutex_address, TASK_PGD(current)))) return -EINVAL; switch (mutex_op) { case MUTEX_CONTROL_LOCK: ret = mutex_control_lock(&curcont->mutex_queue_head, mutex_physical); break; case MUTEX_CONTROL_UNLOCK: ret = mutex_control_unlock(&curcont->mutex_queue_head, mutex_physical); break; default: printk("%s: Invalid operands\n", __FUNCTION__); ret = -EINVAL; } return ret; }