| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2007, Tilghman Lesher | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Tilghman Lesher <func_lock_2007@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software, distributed under the terms of | 
					
						
							|  |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*! \file
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \brief Dialplan mutexes | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \author Tilghman Lesher <func_lock_2007@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \ingroup functions | 
					
						
							| 
									
										
										
										
											2017-12-22 09:23:22 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-14 20:28:54 +00:00
										 |  |  | /*** MODULEINFO
 | 
					
						
							|  |  |  | 	<support_level>core</support_level> | 
					
						
							|  |  |  |  ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | #include <signal.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | #include "asterisk/lock.h"
 | 
					
						
							|  |  |  | #include "asterisk/file.h"
 | 
					
						
							|  |  |  | #include "asterisk/channel.h"
 | 
					
						
							|  |  |  | #include "asterisk/pbx.h"
 | 
					
						
							|  |  |  | #include "asterisk/module.h"
 | 
					
						
							|  |  |  | #include "asterisk/linkedlists.h"
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | #include "asterisk/astobj2.h"
 | 
					
						
							|  |  |  | #include "asterisk/utils.h"
 | 
					
						
							| 
									
										
										
										
											2021-05-22 14:29:22 +02:00
										 |  |  | #include "asterisk/cli.h"
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | /*** DOCUMENTATION
 | 
					
						
							|  |  |  | 	<function name="LOCK" language="en_US"> | 
					
						
							| 
									
										
										
										
											2025-01-23 16:35:58 -05:00
										 |  |  | 		<since> | 
					
						
							|  |  |  | 			<version>1.6.0</version> | 
					
						
							|  |  |  | 		</since> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Attempt to obtain a named mutex. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="lockname" required="true" /> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Attempts to grab a named lock exclusively, and prevents other channels from | 
					
						
							|  |  |  | 			obtaining the same lock.  LOCK will wait for the lock to become available. | 
					
						
							|  |  |  | 			Returns <literal>1</literal> if the lock was obtained or <literal>0</literal> on error.</para> | 
					
						
							|  |  |  | 			<note><para>To avoid the possibility of a deadlock, LOCK will only attempt to | 
					
						
							|  |  |  | 			obtain the lock for 3 seconds if the channel already has another lock.</para></note> | 
					
						
							| 
									
										
										
										
											2013-12-16 19:11:51 +00:00
										 |  |  | 			<note> | 
					
						
							|  |  |  | 				<para>If <literal>live_dangerously</literal> in <literal>asterisk.conf</literal> | 
					
						
							|  |  |  | 				is set to <literal>no</literal>, this function can only be executed from the | 
					
						
							|  |  |  | 				dialplan, and not directly from external protocols.</para> | 
					
						
							|  |  |  | 			</note> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		</description> | 
					
						
							| 
									
										
										
										
											2023-11-09 10:01:18 -05:00
										 |  |  | 		<see-also> | 
					
						
							|  |  |  | 			<ref type="function">TRYLOCK</ref> | 
					
						
							|  |  |  | 			<ref type="function">UNLOCK</ref> | 
					
						
							|  |  |  | 		</see-also> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 	</function> | 
					
						
							|  |  |  | 	<function name="TRYLOCK" language="en_US"> | 
					
						
							| 
									
										
										
										
											2025-01-23 16:35:58 -05:00
										 |  |  | 		<since> | 
					
						
							|  |  |  | 			<version>1.6.0</version> | 
					
						
							|  |  |  | 		</since> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Attempt to obtain a named mutex. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="lockname" required="true" /> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Attempts to grab a named lock exclusively, and prevents other channels | 
					
						
							| 
									
										
										
										
											2017-12-22 09:23:22 -05:00
										 |  |  | 			from obtaining the same lock.  Returns <literal>1</literal> if the lock was | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 			available or <literal>0</literal> otherwise.</para> | 
					
						
							| 
									
										
										
										
											2013-12-16 19:11:51 +00:00
										 |  |  | 			<note> | 
					
						
							|  |  |  | 				<para>If <literal>live_dangerously</literal> in <literal>asterisk.conf</literal> | 
					
						
							|  |  |  | 				is set to <literal>no</literal>, this function can only be executed from the | 
					
						
							|  |  |  | 				dialplan, and not directly from external protocols.</para> | 
					
						
							|  |  |  | 			</note> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		</description> | 
					
						
							| 
									
										
										
										
											2023-11-09 10:01:18 -05:00
										 |  |  | 		<see-also> | 
					
						
							|  |  |  | 			<ref type="function">LOCK</ref> | 
					
						
							|  |  |  | 			<ref type="function">UNLOCK</ref> | 
					
						
							|  |  |  | 		</see-also> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 	</function> | 
					
						
							|  |  |  | 	<function name="UNLOCK" language="en_US"> | 
					
						
							| 
									
										
										
										
											2025-01-23 16:35:58 -05:00
										 |  |  | 		<since> | 
					
						
							|  |  |  | 			<version>1.6.0</version> | 
					
						
							|  |  |  | 		</since> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Unlocks a named mutex. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="lockname" required="true" /> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							| 
									
										
										
										
											2017-12-22 09:23:22 -05:00
										 |  |  | 			<para>Unlocks a previously locked mutex. Returns <literal>1</literal> if the channel | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 			had a lock or <literal>0</literal> otherwise.</para> | 
					
						
							| 
									
										
										
										
											2017-12-22 09:23:22 -05:00
										 |  |  | 			<note><para>It is generally unnecessary to unlock in a hangup routine, as any locks | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 			held are automatically freed when the channel is destroyed.</para></note> | 
					
						
							| 
									
										
										
										
											2013-12-16 19:11:51 +00:00
										 |  |  | 			<note> | 
					
						
							|  |  |  | 				<para>If <literal>live_dangerously</literal> in <literal>asterisk.conf</literal> | 
					
						
							|  |  |  | 				is set to <literal>no</literal>, this function can only be executed from the | 
					
						
							|  |  |  | 				dialplan, and not directly from external protocols.</para> | 
					
						
							|  |  |  | 			</note> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 		</description> | 
					
						
							| 
									
										
										
										
											2023-11-09 10:01:18 -05:00
										 |  |  | 		<see-also> | 
					
						
							|  |  |  | 			<ref type="function">LOCK</ref> | 
					
						
							|  |  |  | 			<ref type="function">TRYLOCK</ref> | 
					
						
							|  |  |  | 		</see-also> | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 	</function> | 
					
						
							|  |  |  |  ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-15 17:34:30 +00:00
										 |  |  | static AST_LIST_HEAD_STATIC(locklist, lock_frame); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void lock_free(void *data); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | static void lock_fixup(void *data, struct ast_channel *oldchan, struct ast_channel *newchan); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | static int unloading = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-18 17:18:20 +00:00
										 |  |  | static const struct ast_datastore_info lock_info = { | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	.type = "MUTEX", | 
					
						
							|  |  |  | 	.destroy = lock_free, | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	.chan_fixup = lock_fixup, | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct lock_frame { | 
					
						
							|  |  |  | 	AST_LIST_ENTRY(lock_frame) entries; | 
					
						
							|  |  |  | 	ast_mutex_t mutex; | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	ast_cond_t cond; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	/*! count is needed so if a recursive mutex exits early, we know how many times to unlock it. */ | 
					
						
							|  |  |  | 	unsigned int count; | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	/*! Count of waiting of requesters for the named lock */ | 
					
						
							|  |  |  | 	unsigned int requesters; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	/*! who owns us */ | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	struct ast_channel *owner; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	/*! name of the lock */ | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	char name[0]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | struct channel_lock_frame { | 
					
						
							|  |  |  | 	AST_LIST_ENTRY(channel_lock_frame) list; | 
					
						
							|  |  |  | 	/*! Need to save channel pointer here, because during destruction, we won't have it. */ | 
					
						
							|  |  |  | 	struct ast_channel *channel; | 
					
						
							|  |  |  | 	struct lock_frame *lock_frame; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | static void lock_free(void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	AST_LIST_HEAD(, channel_lock_frame) *oldlist = data; | 
					
						
							|  |  |  | 	struct channel_lock_frame *clframe; | 
					
						
							|  |  |  | 	AST_LIST_LOCK(oldlist); | 
					
						
							|  |  |  | 	while ((clframe = AST_LIST_REMOVE_HEAD(oldlist, list))) { | 
					
						
							|  |  |  | 		/* Only unlock if we own the lock */ | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		if (clframe->channel == clframe->lock_frame->owner) { | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 			ast_mutex_lock(&clframe->lock_frame->mutex); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 			clframe->lock_frame->count = 0; | 
					
						
							|  |  |  | 			clframe->lock_frame->owner = NULL; | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 			ast_cond_signal(&clframe->lock_frame->cond); | 
					
						
							|  |  |  | 			ast_mutex_unlock(&clframe->lock_frame->mutex); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		ast_free(clframe); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(oldlist); | 
					
						
							|  |  |  | 	AST_LIST_HEAD_DESTROY(oldlist); | 
					
						
							|  |  |  | 	ast_free(oldlist); | 
					
						
							| 
									
										
										
										
											2021-05-22 14:53:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ast_module_unref(ast_module_info->self); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | static void lock_fixup(void *data, struct ast_channel *oldchan, struct ast_channel *newchan) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ast_datastore *lock_store = ast_channel_datastore_find(oldchan, &lock_info, NULL); | 
					
						
							|  |  |  | 	AST_LIST_HEAD(, channel_lock_frame) *list; | 
					
						
							|  |  |  | 	struct channel_lock_frame *clframe = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!lock_store) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	list = lock_store->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AST_LIST_LOCK(list); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE(list, clframe, list) { | 
					
						
							|  |  |  | 		if (clframe->lock_frame->owner == oldchan) { | 
					
						
							|  |  |  | 			clframe->lock_frame->owner = newchan; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		clframe->channel = newchan; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(list); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 22:10:18 +00:00
										 |  |  | static int get_lock(struct ast_channel *chan, char *lockname, int trylock) | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ast_datastore *lock_store = ast_channel_datastore_find(chan, &lock_info, NULL); | 
					
						
							|  |  |  | 	struct lock_frame *current; | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	struct channel_lock_frame *clframe = NULL; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	AST_LIST_HEAD(, channel_lock_frame) *list; | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	int res = 0; | 
					
						
							| 
									
										
										
										
											2012-01-10 22:10:18 +00:00
										 |  |  | 	struct timespec timeout = { 0, }; | 
					
						
							|  |  |  | 	struct timeval now; | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!lock_store) { | 
					
						
							| 
									
										
										
										
											2021-05-22 14:53:43 +02:00
										 |  |  | 		if (unloading) { | 
					
						
							|  |  |  | 			ast_log(LOG_ERROR, "%sLOCK has no datastore and func_lock is unloading, failing.\n", | 
					
						
							|  |  |  | 					trylock ? "TRY" : ""); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:56:11 +00:00
										 |  |  | 		lock_store = ast_datastore_alloc(&lock_info, NULL); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		if (!lock_store) { | 
					
						
							|  |  |  | 			ast_log(LOG_ERROR, "Unable to allocate new datastore.  No locks will be obtained.\n"); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 		list = ast_calloc(1, sizeof(*list)); | 
					
						
							|  |  |  | 		if (!list) { | 
					
						
							| 
									
										
										
										
											2012-01-10 22:10:18 +00:00
										 |  |  | 			ast_log(LOG_ERROR, | 
					
						
							|  |  |  | 				"Unable to allocate datastore list head.  %sLOCK will fail.\n", | 
					
						
							|  |  |  | 				trylock ? "TRY" : ""); | 
					
						
							| 
									
										
										
										
											2008-08-05 16:56:11 +00:00
										 |  |  | 			ast_datastore_free(lock_store); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 		lock_store->data = list; | 
					
						
							|  |  |  | 		AST_LIST_HEAD_INIT(list); | 
					
						
							|  |  |  | 		ast_channel_datastore_add(chan, lock_store); | 
					
						
							| 
									
										
										
										
											2021-05-22 14:53:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* We cannot unload until this channel has released the lock_store */ | 
					
						
							|  |  |  | 		ast_module_ref(ast_module_info->self); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		list = lock_store->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Lock already exists? */ | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	AST_LIST_LOCK(&locklist); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE(&locklist, current, entries) { | 
					
						
							|  |  |  | 		if (strcmp(current->name, lockname) == 0) { | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!current) { | 
					
						
							|  |  |  | 		if (unloading) { | 
					
						
							| 
									
										
										
										
											2021-05-22 14:53:43 +02:00
										 |  |  | 			ast_log(LOG_ERROR, | 
					
						
							|  |  |  | 				"Lock doesn't exist whilst unloading.  %sLOCK will fail.\n", | 
					
						
							|  |  |  | 				trylock ? "TRY" : ""); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 			/* Don't bother */ | 
					
						
							|  |  |  | 			AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Create new lock entry */ | 
					
						
							|  |  |  | 		current = ast_calloc(1, sizeof(*current) + strlen(lockname) + 1); | 
					
						
							|  |  |  | 		if (!current) { | 
					
						
							|  |  |  | 			AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		strcpy(current->name, lockname); /* SAFE */ | 
					
						
							|  |  |  | 		if ((res = ast_mutex_init(¤t->mutex))) { | 
					
						
							|  |  |  | 			ast_log(LOG_ERROR, "Unable to initialize mutex: %s\n", strerror(res)); | 
					
						
							|  |  |  | 			ast_free(current); | 
					
						
							|  |  |  | 			AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if ((res = ast_cond_init(¤t->cond, NULL))) { | 
					
						
							|  |  |  | 			ast_log(LOG_ERROR, "Unable to initialize condition variable: %s\n", strerror(res)); | 
					
						
							|  |  |  | 			ast_mutex_destroy(¤t->mutex); | 
					
						
							|  |  |  | 			ast_free(current); | 
					
						
							|  |  |  | 			AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		AST_LIST_INSERT_TAIL(&locklist, current, entries); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	/* Add to requester list */ | 
					
						
							|  |  |  | 	ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 	current->requesters++; | 
					
						
							|  |  |  | 	ast_mutex_unlock(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Found lock or created one - now find or create the corresponding link in the channel */ | 
					
						
							|  |  |  | 	AST_LIST_LOCK(list); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE(list, clframe, list) { | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		if (clframe->lock_frame == current) { | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	if (!clframe) { | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 		if (unloading) { | 
					
						
							| 
									
										
										
										
											2021-05-22 14:48:18 +02:00
										 |  |  | 			ast_log(LOG_ERROR, | 
					
						
							|  |  |  | 				"Busy unloading.  %sLOCK will fail.\n", | 
					
						
							|  |  |  | 				trylock ? "TRY" : ""); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 			/* Don't bother */ | 
					
						
							| 
									
										
										
										
											2021-05-22 14:48:18 +02:00
										 |  |  | 			ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 			current->requesters--; | 
					
						
							|  |  |  | 			ast_mutex_unlock(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 			AST_LIST_UNLOCK(list); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		if (!(clframe = ast_calloc(1, sizeof(*clframe)))) { | 
					
						
							| 
									
										
										
										
											2012-01-10 22:10:18 +00:00
										 |  |  | 			ast_log(LOG_ERROR, | 
					
						
							|  |  |  | 				"Unable to allocate channel lock frame.  %sLOCK will fail.\n", | 
					
						
							|  |  |  | 				trylock ? "TRY" : ""); | 
					
						
							| 
									
										
										
										
											2021-05-22 14:48:18 +02:00
										 |  |  | 			ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 			current->requesters--; | 
					
						
							|  |  |  | 			ast_mutex_unlock(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 			AST_LIST_UNLOCK(list); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		clframe->lock_frame = current; | 
					
						
							|  |  |  | 		clframe->channel = chan; | 
					
						
							|  |  |  | 		AST_LIST_INSERT_TAIL(list, clframe, list); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(list); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	/* If we already own the lock, then we're being called recursively.
 | 
					
						
							|  |  |  | 	 * Keep track of how many times that is, because we need to unlock | 
					
						
							|  |  |  | 	 * the same amount, before we'll release this one. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (current->owner == chan) { | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		/* We're not a requester, we already have it */ | 
					
						
							|  |  |  | 		ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 		current->requesters--; | 
					
						
							|  |  |  | 		ast_mutex_unlock(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		current->count++; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-10 22:10:18 +00:00
										 |  |  | 	/* Wait up to three seconds from now for LOCK. */ | 
					
						
							|  |  |  | 	now = ast_tvnow(); | 
					
						
							|  |  |  | 	timeout.tv_sec = now.tv_sec + 3; | 
					
						
							|  |  |  | 	timeout.tv_nsec = now.tv_usec * 1000; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = 0; | 
					
						
							|  |  |  | 	while (!trylock && !res && current->owner) { | 
					
						
							|  |  |  | 		res = ast_cond_timedwait(¤t->cond, ¤t->mutex, &timeout); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (current->owner) { | 
					
						
							|  |  |  | 		/* timeout;
 | 
					
						
							|  |  |  | 		 * trylock; or | 
					
						
							|  |  |  | 		 * cond_timedwait failed. | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * either way, we fail to obtain the lock. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		res = -1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		current->owner = chan; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 		current->count++; | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		res = 0; | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	/* Remove from requester list */ | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	current->requesters--; | 
					
						
							|  |  |  | 	if (res && unloading) | 
					
						
							|  |  |  | 		ast_cond_signal(¤t->cond); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	ast_mutex_unlock(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int unlock_read(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	struct ast_datastore *lock_store; | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	struct channel_lock_frame *clframe; | 
					
						
							|  |  |  | 	AST_LIST_HEAD(, channel_lock_frame) *list; | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	if (!chan) { | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lock_store = ast_channel_datastore_find(chan, &lock_info, NULL); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	if (!lock_store) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "No datastore for dialplan locks.  Nothing was ever locked!\n"); | 
					
						
							|  |  |  | 		ast_copy_string(buf, "0", len); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	if (!(list = lock_store->data)) { | 
					
						
							|  |  |  | 		ast_debug(1, "This should NEVER happen\n"); | 
					
						
							|  |  |  | 		ast_copy_string(buf, "0", len); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 	/* Find item in the channel list */ | 
					
						
							|  |  |  | 	AST_LIST_LOCK(list); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE(list, clframe, list) { | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		if (clframe->lock_frame && clframe->lock_frame->owner == chan && strcmp(clframe->lock_frame->name, data) == 0) { | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* We never destroy anything until channel destruction, which will never
 | 
					
						
							|  |  |  | 	 * happen while this routine is executing, so we don't need to hold the | 
					
						
							|  |  |  | 	 * lock beyond this point. */ | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!clframe) { | 
					
						
							|  |  |  | 		/* We didn't have this lock in the first place */ | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		ast_copy_string(buf, "0", len); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	if (--clframe->lock_frame->count == 0) { | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		ast_mutex_lock(&clframe->lock_frame->mutex); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 		clframe->lock_frame->owner = NULL; | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		ast_cond_signal(&clframe->lock_frame->cond); | 
					
						
							|  |  |  | 		ast_mutex_unlock(&clframe->lock_frame->mutex); | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-08-16 23:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	ast_copy_string(buf, "1", len); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int lock_read(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2009-09-30 04:32:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	if (!chan) { | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ast_autoservice_start(chan); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	ast_copy_string(buf, get_lock(chan, data, 0) ? "0" : "1", len); | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	ast_autoservice_stop(chan); | 
					
						
							| 
									
										
										
										
											2007-09-30 03:05:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int trylock_read(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	if (!chan) { | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ast_autoservice_start(chan); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	ast_copy_string(buf, get_lock(chan, data, 1) ? "0" : "1", len); | 
					
						
							| 
									
										
										
											
												Resolve FORWARD_NULL static analysis warnings
This resolves core findings from ASTERISK-19650 numbers 0-2, 6, 7, 9-11, 14-20,
22-24, 28, 30-32, 34-36, 42-56, 82-84, 87, 89-90, 93-102, 104, 105, 109-111,
and 115. Finding numbers 26, 33, and 29 were already resolved.  Those skipped
were either extended/deprecated or in areas of code that shouldn't be
disturbed.
(Closes issue ASTERISK-19650)
........
Merged revisions 366167 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 366168 from http://svn.asterisk.org/svn/asterisk/branches/10
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366169 65c4cc65-6c06-0410-ace0-fbb531ad65f3
											
										 
											2012-05-10 20:56:09 +00:00
										 |  |  | 	ast_autoservice_stop(chan); | 
					
						
							| 
									
										
										
										
											2007-09-30 03:05:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-22 14:29:22 +02:00
										 |  |  | static char *handle_cli_locks_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int c = 0; | 
					
						
							|  |  |  | 	struct lock_frame* current; | 
					
						
							|  |  |  | 	switch (cmd) { | 
					
						
							|  |  |  | 	case CLI_INIT: | 
					
						
							|  |  |  | 		e->command = "dialplan locks show"; | 
					
						
							|  |  |  | 		e->usage = | 
					
						
							|  |  |  | 			"Usage: dialplan locks show\n" | 
					
						
							|  |  |  | 			"       List all locks known to func_lock, along with their current status.\n"; | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	case CLI_GENERATE: | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ast_cli(a->fd, "func_lock locks:\n"); | 
					
						
							|  |  |  | 	ast_cli(a->fd, "%-40s Requesters Owner\n", "Name"); | 
					
						
							|  |  |  | 	AST_LIST_LOCK(&locklist); | 
					
						
							|  |  |  | 	AST_LIST_TRAVERSE(&locklist, current, entries) { | 
					
						
							|  |  |  | 		ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 		ast_cli(a->fd, "%-40s %-10d %s\n", current->name, current->requesters, | 
					
						
							|  |  |  | 				current->owner ? ast_channel_name(current->owner) : "(unlocked)"); | 
					
						
							|  |  |  | 		ast_mutex_unlock(¤t->mutex); | 
					
						
							|  |  |  | 		c++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 	ast_cli(a->fd, "%d total locks listed.\n", c); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | static struct ast_custom_function lock_function = { | 
					
						
							|  |  |  | 	.name = "LOCK", | 
					
						
							|  |  |  | 	.read = lock_read, | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | 	.read_max = 2, | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct ast_custom_function trylock_function = { | 
					
						
							|  |  |  | 	.name = "TRYLOCK", | 
					
						
							|  |  |  | 	.read = trylock_read, | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | 	.read_max = 2, | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct ast_custom_function unlock_function = { | 
					
						
							|  |  |  | 	.name = "UNLOCK", | 
					
						
							|  |  |  | 	.read = unlock_read, | 
					
						
							| 
									
										
										
										
											2009-04-29 18:53:01 +00:00
										 |  |  | 	.read_max = 2, | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-22 14:29:22 +02:00
										 |  |  | static struct ast_cli_entry cli_locks_show = AST_CLI_DEFINE(handle_cli_locks_show, "List func_lock locks."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct lock_frame *current; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Module flag */ | 
					
						
							|  |  |  | 	unloading = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	/* Make it impossible for new requesters to be added
 | 
					
						
							|  |  |  | 	 * NOTE:  channels could already be in get_lock() */ | 
					
						
							|  |  |  | 	ast_custom_function_unregister(&lock_function); | 
					
						
							|  |  |  | 	ast_custom_function_unregister(&trylock_function); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-22 14:29:22 +02:00
										 |  |  | 	ast_cli_unregister(&cli_locks_show); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	AST_LIST_LOCK(&locklist); | 
					
						
							| 
									
										
										
										
											2021-05-22 14:42:04 +02:00
										 |  |  | 	while ((current = AST_LIST_REMOVE_HEAD(&locklist, entries))) { | 
					
						
							|  |  |  | 		int warned = 0; | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		ast_mutex_lock(¤t->mutex); | 
					
						
							|  |  |  | 		while (current->owner || current->requesters) { | 
					
						
							| 
									
										
										
										
											2021-05-22 14:42:04 +02:00
										 |  |  | 			if (!warned) { | 
					
						
							|  |  |  | 				ast_log(LOG_WARNING, "Waiting for %d requesters for %s lock %s.\n", | 
					
						
							|  |  |  | 						current->requesters, current->owner ? "locked" : "unlocked", | 
					
						
							|  |  |  | 						current->name); | 
					
						
							|  |  |  | 				warned = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 			/* either the mutex is locked, or other parties are currently in get_lock,
 | 
					
						
							|  |  |  | 			 * we need to wait for all of those to clear first */ | 
					
						
							|  |  |  | 			ast_cond_wait(¤t->cond, ¤t->mutex); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		ast_mutex_unlock(¤t->mutex); | 
					
						
							|  |  |  | 		/* At this point we know:
 | 
					
						
							|  |  |  | 		 * 1. the lock has been released, | 
					
						
							|  |  |  | 		 * 2. there are no requesters (nor should any be able to sneak in). | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		ast_mutex_destroy(¤t->mutex); | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 		ast_cond_destroy(¤t->cond); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 		ast_free(current); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	AST_LIST_UNLOCK(&locklist); | 
					
						
							|  |  |  | 	AST_LIST_HEAD_DESTROY(&locklist); | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-18 21:06:20 +02:00
										 |  |  | 	/* At this point we can safely stop access to UNLOCK */ | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	ast_custom_function_unregister(&unlock_function); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int load_module(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-16 19:11:51 +00:00
										 |  |  | 	int res = ast_custom_function_register_escalating(&lock_function, AST_CFE_READ); | 
					
						
							|  |  |  | 	res |= ast_custom_function_register_escalating(&trylock_function, AST_CFE_READ); | 
					
						
							|  |  |  | 	res |= ast_custom_function_register_escalating(&unlock_function, AST_CFE_READ); | 
					
						
							| 
									
										
										
										
											2021-05-22 14:29:22 +02:00
										 |  |  | 	res |= ast_cli_register(&cli_locks_show); | 
					
						
							| 
									
										
										
										
											2012-05-10 18:35:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 16:44:25 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Dialplan mutexes"); |