123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
- #include <errno.h>
- #include <pthread.h>
- #include <stdlib.h>
- #include "internals.h"
- #include "queue.h"
- #include "spinlock.h"
- #include "restart.h"
- static pthread_readlock_info *
- rwlock_is_in_list(pthread_descr self, pthread_rwlock_t *rwlock)
- {
- pthread_readlock_info *info;
- for (info = self->p_readlock_list; info != NULL; info = info->pr_next)
- {
- if (info->pr_lock == rwlock)
- return info;
- }
- return NULL;
- }
- static pthread_readlock_info *
- rwlock_add_to_list(pthread_descr self, pthread_rwlock_t *rwlock)
- {
- pthread_readlock_info *info = self->p_readlock_free;
- if (info != NULL)
- self->p_readlock_free = info->pr_next;
- else
- info = malloc(sizeof *info);
- if (info == NULL)
- return NULL;
- info->pr_lock_count = 1;
- info->pr_lock = rwlock;
- info->pr_next = self->p_readlock_list;
- self->p_readlock_list = info;
- return info;
- }
- static pthread_readlock_info *
- rwlock_remove_from_list(pthread_descr self, pthread_rwlock_t *rwlock)
- {
- pthread_readlock_info **pinfo;
- for (pinfo = &self->p_readlock_list; *pinfo != NULL; pinfo = &(*pinfo)->pr_next)
- {
- if ((*pinfo)->pr_lock == rwlock)
- {
- pthread_readlock_info *info = *pinfo;
- if (--info->pr_lock_count == 0)
- *pinfo = info->pr_next;
- return info;
- }
- }
- return NULL;
- }
- static int
- rwlock_can_rdlock(pthread_rwlock_t *rwlock, int have_lock_already)
- {
-
- if (rwlock->__rw_writer != NULL)
- return 0;
-
- if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_READER_NP)
- return 1;
-
- if (queue_is_empty(&rwlock->__rw_write_waiting))
- return 1;
-
- if (have_lock_already)
- return 1;
-
- return 0;
- }
- static int
- rwlock_have_already(pthread_descr *pself, pthread_rwlock_t *rwlock,
- pthread_readlock_info **pexisting, int *pout_of_mem)
- {
- pthread_readlock_info *existing = NULL;
- int out_of_mem = 0, have_lock_already = 0;
- pthread_descr self = *pself;
- if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_WRITER_NP)
- {
- if (!self)
- self = thread_self();
- existing = rwlock_is_in_list(self, rwlock);
- if (existing != NULL || self->p_untracked_readlock_count > 0)
- have_lock_already = 1;
- else
- {
- existing = rwlock_add_to_list(self, rwlock);
- if (existing == NULL)
- out_of_mem = 1;
- }
- }
- *pout_of_mem = out_of_mem;
- *pexisting = existing;
- *pself = self;
- return have_lock_already;
- }
- int
- pthread_rwlock_init (pthread_rwlock_t *rwlock,
- const pthread_rwlockattr_t *attr)
- {
- __pthread_init_lock(&rwlock->__rw_lock);
- rwlock->__rw_readers = 0;
- rwlock->__rw_writer = NULL;
- rwlock->__rw_read_waiting = NULL;
- rwlock->__rw_write_waiting = NULL;
- if (attr == NULL)
- {
- rwlock->__rw_kind = PTHREAD_RWLOCK_DEFAULT_NP;
- rwlock->__rw_pshared = PTHREAD_PROCESS_PRIVATE;
- }
- else
- {
- rwlock->__rw_kind = attr->__lockkind;
- rwlock->__rw_pshared = attr->__pshared;
- }
- return 0;
- }
- int
- pthread_rwlock_destroy (pthread_rwlock_t *rwlock)
- {
- int readers;
- _pthread_descr writer;
- __pthread_lock (&rwlock->__rw_lock, NULL);
- readers = rwlock->__rw_readers;
- writer = rwlock->__rw_writer;
- __pthread_unlock (&rwlock->__rw_lock);
- if (readers > 0 || writer != NULL)
- return EBUSY;
- return 0;
- }
- int
- pthread_rwlock_rdlock (pthread_rwlock_t *rwlock)
- {
- pthread_descr self = NULL;
- pthread_readlock_info *existing;
- int out_of_mem, have_lock_already;
- have_lock_already = rwlock_have_already(&self, rwlock,
- &existing, &out_of_mem);
- for (;;)
- {
- if (self == NULL)
- self = thread_self ();
- __pthread_lock (&rwlock->__rw_lock, self);
- if (rwlock_can_rdlock(rwlock, have_lock_already))
- break;
- enqueue (&rwlock->__rw_read_waiting, self);
- __pthread_unlock (&rwlock->__rw_lock);
- suspend (self);
- }
- ++rwlock->__rw_readers;
- __pthread_unlock (&rwlock->__rw_lock);
- if (have_lock_already || out_of_mem)
- {
- if (existing != NULL)
- existing->pr_lock_count++;
- else
- self->p_untracked_readlock_count++;
- }
- return 0;
- }
- int
- pthread_rwlock_tryrdlock (pthread_rwlock_t *rwlock)
- {
- pthread_descr self = thread_self();
- pthread_readlock_info *existing;
- int out_of_mem, have_lock_already;
- int retval = EBUSY;
- have_lock_already = rwlock_have_already(&self, rwlock,
- &existing, &out_of_mem);
- __pthread_lock (&rwlock->__rw_lock, self);
-
- if (rwlock_can_rdlock(rwlock, 0))
- {
- ++rwlock->__rw_readers;
- retval = 0;
- }
- __pthread_unlock (&rwlock->__rw_lock);
- if (retval == 0)
- {
- if (have_lock_already || out_of_mem)
- {
- if (existing != NULL)
- existing->pr_lock_count++;
- else
- self->p_untracked_readlock_count++;
- }
- }
- return retval;
- }
- int
- pthread_rwlock_wrlock (pthread_rwlock_t *rwlock)
- {
- pthread_descr self = thread_self ();
- while(1)
- {
- __pthread_lock (&rwlock->__rw_lock, self);
- if (rwlock->__rw_readers == 0 && rwlock->__rw_writer == NULL)
- {
- rwlock->__rw_writer = self;
- __pthread_unlock (&rwlock->__rw_lock);
- return 0;
- }
-
- enqueue (&rwlock->__rw_write_waiting, self);
- __pthread_unlock (&rwlock->__rw_lock);
- suspend (self);
- }
- }
- int
- pthread_rwlock_trywrlock (pthread_rwlock_t *rwlock)
- {
- int result = EBUSY;
- __pthread_lock (&rwlock->__rw_lock, NULL);
- if (rwlock->__rw_readers == 0 && rwlock->__rw_writer == NULL)
- {
- rwlock->__rw_writer = thread_self ();
- result = 0;
- }
- __pthread_unlock (&rwlock->__rw_lock);
- return result;
- }
- int
- pthread_rwlock_unlock (pthread_rwlock_t *rwlock)
- {
- pthread_descr torestart;
- pthread_descr th;
- __pthread_lock (&rwlock->__rw_lock, NULL);
- if (rwlock->__rw_writer != NULL)
- {
-
- if (rwlock->__rw_writer != thread_self ())
- {
- __pthread_unlock (&rwlock->__rw_lock);
- return EPERM;
- }
- rwlock->__rw_writer = NULL;
- if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_READER_NP
- || (th = dequeue (&rwlock->__rw_write_waiting)) == NULL)
- {
-
- torestart = rwlock->__rw_read_waiting;
- rwlock->__rw_read_waiting = NULL;
- __pthread_unlock (&rwlock->__rw_lock);
- while ((th = dequeue (&torestart)) != NULL)
- restart (th);
- }
- else
- {
-
- __pthread_unlock (&rwlock->__rw_lock);
- restart (th);
- }
- }
- else
- {
-
- if (rwlock->__rw_readers == 0)
- {
- __pthread_unlock (&rwlock->__rw_lock);
- return EPERM;
- }
- --rwlock->__rw_readers;
- if (rwlock->__rw_readers == 0)
-
- th = dequeue (&rwlock->__rw_write_waiting);
- else
- th = NULL;
- __pthread_unlock (&rwlock->__rw_lock);
- if (th != NULL)
- restart (th);
-
- if (rwlock->__rw_kind == PTHREAD_RWLOCK_PREFER_WRITER_NP)
- {
- pthread_descr self = thread_self();
- pthread_readlock_info *victim = rwlock_remove_from_list(self, rwlock);
- if (victim != NULL)
- {
- if (victim->pr_lock_count == 0)
- {
- victim->pr_next = self->p_readlock_free;
- self->p_readlock_free = victim;
- }
- }
- else
- {
- if (self->p_untracked_readlock_count > 0)
- self->p_untracked_readlock_count--;
- }
- }
- }
- return 0;
- }
- int
- pthread_rwlockattr_init (pthread_rwlockattr_t *attr)
- {
- attr->__lockkind = 0;
- attr->__pshared = 0;
- return 0;
- }
- int
- pthread_rwlockattr_destroy (pthread_rwlockattr_t *attr attribute_unused)
- {
- return 0;
- }
- int
- pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *attr, int *pshared)
- {
- *pshared = attr->__pshared;
- return 0;
- }
- int
- pthread_rwlockattr_setpshared (pthread_rwlockattr_t *attr, int pshared)
- {
- if (pshared != PTHREAD_PROCESS_PRIVATE && pshared != PTHREAD_PROCESS_SHARED)
- return EINVAL;
- attr->__pshared = pshared;
- return 0;
- }
- int
- pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t *attr, int *pref)
- {
- *pref = attr->__lockkind;
- return 0;
- }
- int
- pthread_rwlockattr_setkind_np (pthread_rwlockattr_t *attr, int pref)
- {
- if (pref != PTHREAD_RWLOCK_PREFER_READER_NP
- && pref != PTHREAD_RWLOCK_PREFER_WRITER_NP
- && pref != PTHREAD_RWLOCK_DEFAULT_NP)
- return EINVAL;
- attr->__lockkind = pref;
- return 0;
- }
|