File: /home/django/libpff/libcthreads/libcthreads_lock.c
/*
* Lock functions
*
* Copyright (C) 2012-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <memory.h>
#include <types.h>
#include <errno.h>
#if defined( HAVE_PTHREAD_H ) && !defined( WINAPI )
#include <pthread.h>
#endif
#include "libcthreads_libcerror.h"
#include "libcthreads_lock.h"
#include "libcthreads_types.h"
#if !defined( HAVE_LOCAL_LIBCTHREADS ) || defined( HAVE_MULTI_THREAD_SUPPORT )
/* Creates a lock
* Make sure the value lock is referencing, is set to NULL
* Returns 1 if successful or -1 on error
*/
int libcthreads_lock_initialize(
libcthreads_lock_t **lock,
libcerror_error_t **error )
{
libcthreads_internal_lock_t *internal_lock = NULL;
static char *function = "libcthreads_lock_initialize";
#if defined( HAVE_PTHREAD_H ) && !defined( WINAPI )
int pthread_result = 0;
#endif
if( lock == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
"%s: invalid lock.",
function );
return( -1 );
}
if( *lock != NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_VALUE_ALREADY_SET,
"%s: invalid lock value already set.",
function );
return( -1 );
}
internal_lock = memory_allocate_structure(
libcthreads_internal_lock_t );
if( internal_lock == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_MEMORY,
LIBCERROR_MEMORY_ERROR_INSUFFICIENT,
"%s: unable to create lock.",
function );
goto on_error;
}
if( memory_set(
internal_lock,
0,
sizeof( libcthreads_internal_lock_t ) ) == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_MEMORY,
LIBCERROR_MEMORY_ERROR_SET_FAILED,
"%s: unable to clear lock.",
function );
memory_free(
internal_lock );
return( -1 );
}
#if defined( WINAPI )
InitializeCriticalSection(
&( internal_lock->critical_section ) );
#elif defined( HAVE_PTHREAD_H )
pthread_result = pthread_mutex_init(
&( internal_lock->mutex ),
NULL );
switch( pthread_result )
{
case 0:
break;
case EAGAIN:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to initialize mutex with error: Insufficient resources.",
function );
goto on_error;
default:
libcerror_system_set_error(
error,
pthread_result,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to initialize mutex.",
function );
goto on_error;
}
#endif
*lock = (libcthreads_lock_t *) internal_lock;
return( 1 );
on_error:
if( internal_lock != NULL )
{
memory_free(
internal_lock );
}
return( -1 );
}
/* Frees a lock
* Returns 1 if successful or -1 on error
*/
int libcthreads_lock_free(
libcthreads_lock_t **lock,
libcerror_error_t **error )
{
libcthreads_internal_lock_t *internal_lock = NULL;
static char *function = "libcthreads_lock_free";
int result = 1;
#if defined( HAVE_PTHREAD_H ) && !defined( WINAPI )
int pthread_result = 0;
#endif
if( lock == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
"%s: invalid lock.",
function );
return( -1 );
}
if( *lock != NULL )
{
internal_lock = (libcthreads_internal_lock_t *) *lock;
*lock = NULL;
#if defined( WINAPI )
DeleteCriticalSection(
&( internal_lock->critical_section ) );
#elif defined( HAVE_PTHREAD_H )
pthread_result = pthread_mutex_destroy(
&( internal_lock->mutex ) );
switch( pthread_result )
{
case 0:
break;
case EAGAIN:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to destroy mutex with error: Insufficient resources.",
function );
result = -1;
break;
case EBUSY:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to destroy mutex with error: Resource busy.",
function );
result = -1;
break;
default:
libcerror_system_set_error(
error,
pthread_result,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to destroy mutex.",
function );
result = -1;
break;
}
#endif
memory_free(
internal_lock );
}
return( result );
}
/* Grabs a lock
* Returns 1 if successful or -1 on error
*/
int libcthreads_lock_grab(
const libcthreads_lock_t *lock,
libcerror_error_t **error )
{
libcthreads_internal_lock_t *internal_lock = NULL;
static char *function = "libcthreads_lock_grab";
#if defined( HAVE_PTHREAD_H ) && !defined( WINAPI )
int pthread_result = 0;
#endif
if( lock == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
"%s: invalid lock.",
function );
return( -1 );
}
internal_lock = (libcthreads_internal_lock_t *) lock;
#if defined( WINAPI )
EnterCriticalSection(
&( internal_lock->critical_section ) );
#elif defined( HAVE_PTHREAD_H )
pthread_result = pthread_mutex_lock(
&( internal_lock->mutex ) );
switch( pthread_result )
{
case 0:
break;
case EAGAIN:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to lock mutex with error: Maximum number of locks exceeded.",
function );
return( -1 );
case EDEADLK:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to lock mutex with error: Deadlock condition detected.",
function );
return( -1 );
default:
libcerror_system_set_error(
error,
pthread_result,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to lock mutex.",
function );
return( -1 );
}
#endif
return( 1 );
}
/* Releases a lock
* Returns 1 if successful or -1 on error
*/
int libcthreads_lock_release(
const libcthreads_lock_t *lock,
libcerror_error_t **error )
{
libcthreads_internal_lock_t *internal_lock = NULL;
static char *function = "libcthreads_lock_release";
#if defined( HAVE_PTHREAD_H ) && !defined( WINAPI )
int pthread_result = 0;
#endif
if( lock == NULL )
{
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
"%s: invalid lock.",
function );
return( -1 );
}
internal_lock = (libcthreads_internal_lock_t *) lock;
#if defined( WINAPI )
LeaveCriticalSection(
&( internal_lock->critical_section ) );
#elif defined( HAVE_PTHREAD_H )
pthread_result = pthread_mutex_unlock(
&( internal_lock->mutex ) );
switch( pthread_result )
{
case 0:
break;
case EAGAIN:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to unlock mutex with error: Maximum number of locks exceeded.",
function );
return( -1 );
case EDEADLK:
libcerror_error_set(
error,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to unlock mutex with error: Deadlock condition detected.",
function );
return( -1 );
default:
libcerror_system_set_error(
error,
pthread_result,
LIBCERROR_ERROR_DOMAIN_RUNTIME,
LIBCERROR_RUNTIME_ERROR_FINALIZE_FAILED,
"%s: unable to unlock mutex.",
function );
return( -1 );
}
#endif
return( 1 );
}
#endif /* !defined( HAVE_LOCAL_LIBCTHREADS ) || defined( HAVE_MULTI_THREAD_SUPPORT ) */