2006-12-19 19:58:23 +00:00
|
|
|
/* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership.
|
|
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
* (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
#include "fspr.h"
|
|
|
|
#include "fspr_strings.h"
|
|
|
|
#include "fspr_arch_global_mutex.h"
|
|
|
|
#include "fspr_proc_mutex.h"
|
|
|
|
#include "fspr_thread_mutex.h"
|
|
|
|
#include "fspr_portable.h"
|
|
|
|
|
|
|
|
static fspr_status_t global_mutex_cleanup(void *data)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_global_mutex_t *m = (fspr_global_mutex_t *)data;
|
|
|
|
fspr_status_t rv;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_destroy(m->proc_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (m->thread_mutex) {
|
|
|
|
if (rv != APR_SUCCESS) {
|
2022-08-18 17:40:33 +00:00
|
|
|
(void)fspr_thread_mutex_destroy(m->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
else {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_thread_mutex_destroy(m->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_create(fspr_global_mutex_t **mutex,
|
2006-12-19 19:58:23 +00:00
|
|
|
const char *fname,
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_lockmech_e mech,
|
|
|
|
fspr_pool_t *pool)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_status_t rv;
|
|
|
|
fspr_global_mutex_t *m;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
m = (fspr_global_mutex_t *)fspr_palloc(pool, sizeof(*m));
|
2006-12-19 19:58:23 +00:00
|
|
|
m->pool = pool;
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_create(&m->proc_mutex, fname, mech, m->pool);
|
2006-12-19 19:58:23 +00:00
|
|
|
if (rv != APR_SUCCESS) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (m->proc_mutex->inter_meth->flags & APR_PROCESS_LOCK_MECH_IS_GLOBAL) {
|
|
|
|
m->thread_mutex = NULL; /* We don't need a thread lock. */
|
|
|
|
}
|
|
|
|
else {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_thread_mutex_create(&m->thread_mutex,
|
2006-12-19 19:58:23 +00:00
|
|
|
APR_THREAD_MUTEX_DEFAULT, m->pool);
|
|
|
|
if (rv != APR_SUCCESS) {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_destroy(m->proc_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_pool_cleanup_register(m->pool, (void *)m,
|
|
|
|
global_mutex_cleanup, fspr_pool_cleanup_null);
|
2006-12-19 19:58:23 +00:00
|
|
|
*mutex = m;
|
|
|
|
return APR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_child_init(
|
|
|
|
fspr_global_mutex_t **mutex,
|
2006-12-19 19:58:23 +00:00
|
|
|
const char *fname,
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_pool_t *pool)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_status_t rv;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_child_init(&((*mutex)->proc_mutex), fname, pool);
|
2006-12-19 19:58:23 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_lock(fspr_global_mutex_t *mutex)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_status_t rv;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (mutex->thread_mutex) {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_thread_mutex_lock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
if (rv != APR_SUCCESS) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_lock(mutex->proc_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (rv != APR_SUCCESS) {
|
|
|
|
if (mutex->thread_mutex) {
|
2022-08-18 17:40:33 +00:00
|
|
|
(void)fspr_thread_mutex_unlock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_trylock(fspr_global_mutex_t *mutex)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_status_t rv;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (mutex->thread_mutex) {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_thread_mutex_trylock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
if (rv != APR_SUCCESS) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_trylock(mutex->proc_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (rv != APR_SUCCESS) {
|
|
|
|
if (mutex->thread_mutex) {
|
2022-08-18 17:40:33 +00:00
|
|
|
(void)fspr_thread_mutex_unlock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_unlock(fspr_global_mutex_t *mutex)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
fspr_status_t rv;
|
2006-12-19 19:58:23 +00:00
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_proc_mutex_unlock(mutex->proc_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
#if APR_HAS_THREADS
|
|
|
|
if (mutex->thread_mutex) {
|
|
|
|
if (rv != APR_SUCCESS) {
|
2022-08-18 17:40:33 +00:00
|
|
|
(void)fspr_thread_mutex_unlock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
else {
|
2022-08-18 17:40:33 +00:00
|
|
|
rv = fspr_thread_mutex_unlock(mutex->thread_mutex);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APR_HAS_THREADS */
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_os_global_mutex_get(fspr_os_global_mutex_t *ospmutex,
|
|
|
|
fspr_global_mutex_t *pmutex)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
|
|
|
ospmutex->pool = pmutex->pool;
|
|
|
|
ospmutex->proc_mutex = pmutex->proc_mutex;
|
|
|
|
#if APR_HAS_THREADS
|
|
|
|
ospmutex->thread_mutex = pmutex->thread_mutex;
|
|
|
|
#endif
|
|
|
|
return APR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2022-08-18 17:40:33 +00:00
|
|
|
APR_DECLARE(fspr_status_t) fspr_global_mutex_destroy(fspr_global_mutex_t *mutex)
|
2006-12-19 19:58:23 +00:00
|
|
|
{
|
2022-08-18 17:40:33 +00:00
|
|
|
return fspr_pool_cleanup_run(mutex->pool, mutex, global_mutex_cleanup);
|
2006-12-19 19:58:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)
|