TNeoKernel  v1.03
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tn_mutex.h
Go to the documentation of this file.
1 /*******************************************************************************
2  *
3  * TNeoKernel: real-time kernel initially based on TNKernel
4  *
5  * TNKernel: copyright © 2004, 2013 Yuri Tiomkin.
6  * PIC32-specific routines: copyright © 2013, 2014 Anders Montonen.
7  * TNeoKernel: copyright © 2014 Dmitry Frank.
8  *
9  * TNeoKernel was born as a thorough review and re-implementation of
10  * TNKernel. The new kernel has well-formed code, inherited bugs are fixed
11  * as well as new features being added, and it is tested carefully with
12  * unit-tests.
13  *
14  * API is changed somewhat, so it's not 100% compatible with TNKernel,
15  * hence the new name: TNeoKernel.
16  *
17  * Permission to use, copy, modify, and distribute this software in source
18  * and binary forms and its documentation for any purpose and without fee
19  * is hereby granted, provided that the above copyright notice appear
20  * in all copies and that both that copyright notice and this permission
21  * notice appear in supporting documentation.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE DMITRY FRANK AND CONTRIBUTORS "AS IS"
24  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DMITRY FRANK OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33  * THE POSSIBILITY OF SUCH DAMAGE.
34  *
35  ******************************************************************************/
36 
37 /**
38  * \file
39  *
40  * A mutex is an object used to protect shared resource.
41  *
42  * There is a lot of confusion about differences between semaphores and
43  * mutexes, so, it's quite recommended to read small article by Michael Barr:
44  * [Mutexes and Semaphores Demystified](http://goo.gl/YprPBW).
45  *
46  * Very short:
47  *
48  * While mutex is seemingly similar to a semaphore with maximum count of `1`
49  * (the so-called binary semaphore), their usage is very different: the purpose
50  * of mutex is to protect shared resource. A locked mutex is "owned" by the
51  * task that locked it, and only the same task may unlock it. This ownership
52  * allows to implement algorithms to prevent priority inversion. So, mutex is
53  * a *locking mechanism*.
54  *
55  * Semaphore, on the other hand, is *signaling mechanism*. It's quite legal and
56  * encouraged for semaphore to be acquired in the task A, and then signaled
57  * from task B or even from ISR. It may be used in situations like "producer
58  * and consumer", etc.
59  *
60  * In addition to the article mentioned above, you may want to look at the
61  * [related question on stackoverflow.com](http://goo.gl/ZBReHK).
62  *
63  * ---------------------------------------------------------------------------
64  *
65  * Mutex features in TNeoKernel:
66  *
67  * - Recursive locking is supported (if option `#TN_MUTEX_REC` is non-zero);
68  * - Deadlock detection (if option `#TN_MUTEX_DEADLOCK_DETECT` is non-zero);
69  * - Two protocols available to avoid unbounded priority inversion: priority
70  * inheritance and priority ceiling.
71  *
72  *
73  * A discussion about strengths and weaknesses of each protocol as
74  * well as priority inversions problem is beyond the scope of this document.
75  *
76  * The priority inheritance protocol solves the priority inversions problem but
77  * doesn't prevents deadlocks, although the kernel can notify you if a deadlock
78  * has occured (see `#TN_MUTEX_DEADLOCK_DETECT`).
79  *
80  * The priority ceiling protocol prevents deadlocks and chained blocking but it
81  * is slower than the priority inheritance protocol.
82  *
83  * @see `#TN_USE_MUTEXES`
84  */
85 
86 #ifndef _TN_MUTEX_H
87 #define _TN_MUTEX_H
88 
89 /*******************************************************************************
90  * INCLUDED FILES
91  ******************************************************************************/
92 
93 #include "tn_list.h"
94 #include "tn_common.h"
95 
96 
97 
98 #ifdef __cplusplus
99 extern "C" { /*}*/
100 #endif
101 
102 /*******************************************************************************
103  * PUBLIC TYPES
104  ******************************************************************************/
105 
106 /**
107  * Mutex protocol for avoid priority inversion
108  */
110  ///
111  /// Mutex uses priority ceiling protocol
113  ///
114  /// Mutex uses priority inheritance protocol
116 };
117 
118 
119 /**
120  * Mutex
121  */
122 struct TN_Mutex {
123  ///
124  /// List of tasks that wait a mutex
125  struct TN_ListItem wait_queue;
126  ///
127  /// To include in task's locked mutexes list (if any)
128  struct TN_ListItem mutex_queue;
129 #if TN_MUTEX_DEADLOCK_DETECT
130  ///
131  /// List of other mutexes involved in deadlock
132  /// (normally, this list is empty)
133  struct TN_ListItem deadlock_list;
134 #endif
135  ///
136  /// Mutex protocol: priority ceiling or priority inheritance
138  ///
139  /// Current mutex owner (task that locked mutex)
140  struct TN_Task *holder;
141  ///
142  /// Used if only protocol is `#TN_MUTEX_PROT_CEILING`:
143  /// maximum priority of task that may lock the mutex
145  ///
146  /// Lock count (for recursive locking)
147  int cnt;
148  ///
149  /// id for object validity verification
151 };
152 
153 /*******************************************************************************
154  * GLOBAL VARIABLES
155  ******************************************************************************/
156 
157 /*******************************************************************************
158  * DEFINITIONS
159  ******************************************************************************/
160 
161 /*******************************************************************************
162  * PUBLIC FUNCTION PROTOTYPES
163  ******************************************************************************/
164 
165 /**
166  * Construct the mutex. The field `id_mutex` should not contain `#TN_ID_MUTEX`,
167  * otherwise, `#TN_RC_WPARAM` is returned.
168  *
169  * $(TN_CALL_FROM_TASK)
170  * $(TN_CALL_FROM_ISR)
171  * $(TN_LEGEND_LINK)
172  *
173  * @param mutex
174  * Pointer to already allocated `struct TN_Mutex`
175  * @param protocol
176  * Mutex protocol: priority ceiling or priority inheritance.
177  * See `enum #TN_MutexProtocol`.
178  * @param ceil_priority
179  * Used if only `protocol` is `#TN_MUTEX_PROT_CEILING`: maximum priority
180  * of the task that may lock the mutex.
181  *
182  * @return
183  * * `#TN_RC_OK` if mutex was successfully created;
184  * * If `#TN_CHECK_PARAM` is non-zero, additional return code
185  * is available: `#TN_RC_WPARAM`.
186  */
188  struct TN_Mutex *mutex,
189  enum TN_MutexProtocol protocol,
190  int ceil_priority
191  );
192 
193 /**
194  * Destruct mutex.
195  *
196  * All tasks that wait for lock the mutex become runnable with
197  * `#TN_RC_DELETED` code returned.
198  *
199  * $(TN_CALL_FROM_TASK)
200  * $(TN_CAN_SWITCH_CONTEXT)
201  * $(TN_LEGEND_LINK)
202  *
203  * @param mutex mutex to destruct
204  *
205  * @return
206  * * `#TN_RC_OK` if mutex was successfully destroyed;
207  * * `#TN_RC_WCONTEXT` if called from wrong context;
208  * * If `#TN_CHECK_PARAM` is non-zero, additional return codes
209  * are available: `#TN_RC_WPARAM` and `#TN_RC_INVALID_OBJ`.
210  */
211 enum TN_RCode tn_mutex_delete(struct TN_Mutex *mutex);
212 
213 /**
214  * Lock mutex.
215  *
216  * * If the mutex is not locked, function immediately locks the mutex and
217  * returns `#TN_RC_OK`.
218  * * If the mutex is already locked by the same task, lock count is merely
219  * incremented and `#TN_RC_OK` is returned immediately.
220  * * If the mutex is locked by different task, behavior depends on
221  * `timeout` value: refer to `#TN_Timeout`.
222  *
223  * $(TN_CALL_FROM_TASK)
224  * $(TN_CAN_SWITCH_CONTEXT)
225  * $(TN_CAN_SLEEP)
226  * $(TN_LEGEND_LINK)
227  *
228  * @param mutex mutex to lock
229  * @param timeout refer to `#TN_Timeout`
230  *
231  * @return
232  * * `#TN_RC_OK` if mutex is successfully locked or if lock count was
233  * merely incremented (this is possible if recursive locking is enabled,
234  * see `#TN_MUTEX_REC`)
235  * * `#TN_RC_WCONTEXT` if called from wrong context;
236  * * `#TN_RC_ILLEGAL_USE`
237  * * if mutex protocol is `#TN_MUTEX_PROT_CEILING`
238  * and calling task's priority is higher than `ceil_priority`
239  * given to `tn_mutex_create()`
240  * * if recursive locking is disabled (see `#TN_MUTEX_REC`)
241  * and the mutex is already locked by calling task
242  * * Other possible return codes depend on `timeout` value,
243  * refer to `#TN_Timeout`
244  * * If `#TN_CHECK_PARAM` is non-zero, additional return codes
245  * are available: `#TN_RC_WPARAM` and `#TN_RC_INVALID_OBJ`.
246  *
247  * @see `#TN_MutexProtocol`
248  */
249 enum TN_RCode tn_mutex_lock(struct TN_Mutex *mutex, TN_Timeout timeout);
250 
251 /**
252  * The same as `tn_mutex_lock()` with zero timeout
253  *
254  * $(TN_CALL_FROM_TASK)
255  * $(TN_CAN_SWITCH_CONTEXT)
256  * $(TN_LEGEND_LINK)
257  */
258 enum TN_RCode tn_mutex_lock_polling(struct TN_Mutex *mutex);
259 
260 /**
261  * Unlock mutex.
262  * * If mutex is not locked or locked by different task, `#TN_RC_ILLEGAL_USE`
263  * is returned.
264  * * If mutex is already locked by calling task, lock count is decremented.
265  * Now, if lock count is zero, mutex gets unlocked (and if there are
266  * task(s) waiting for mutex, the first one from the wait queue locks the
267  * mutex). Otherwise, mutex remains locked with lock count decremented
268  * and function returns `#TN_RC_OK`.
269  *
270  * $(TN_CALL_FROM_TASK)
271  * $(TN_CAN_SWITCH_CONTEXT)
272  * $(TN_LEGEND_LINK)
273  *
274  * @return
275  * * `#TN_RC_OK` if mutex is unlocked of if lock count was merely decremented
276  * (this is possible if recursive locking is enabled, see `#TN_MUTEX_REC`)
277  * * `#TN_RC_WCONTEXT` if called from wrong context;
278  * * `#TN_RC_ILLEGAL_USE` if mutex is either not locked or locked by
279  * different task
280  * * If `#TN_CHECK_PARAM` is non-zero, additional return codes
281  * are available: `#TN_RC_WPARAM` and `#TN_RC_INVALID_OBJ`.
282  *
283  */
284 enum TN_RCode tn_mutex_unlock(struct TN_Mutex *mutex);
285 
286 
287 #ifdef __cplusplus
288 } /* extern "C" */
289 #endif
290 
291 #endif // _TN_MUTEX_H
292 
293 /*******************************************************************************
294  * end of file
295  ******************************************************************************/
296 
297 
TN_MutexProtocol
Mutex protocol for avoid priority inversion.
Definition: tn_mutex.h:109
enum TN_RCode tn_mutex_create(struct TN_Mutex *mutex, enum TN_MutexProtocol protocol, int ceil_priority)
Construct the mutex.
Mutex.
Definition: tn_mutex.h:122
Task.
Definition: tn_tasks.h:173
TN_RCode
Result code returned by kernel services.
Definition: tn_common.h:100
enum TN_RCode tn_mutex_lock_polling(struct TN_Mutex *mutex)
The same as tn_mutex_lock() with zero timeout.
enum TN_RCode tn_mutex_unlock(struct TN_Mutex *mutex)
Unlock mutex.
TN_ObjId
Magic number for object validity verification.
Definition: tn_common.h:87
unsigned long TN_Timeout
The value representing maximum number of system ticks to wait.
Definition: tn_common.h:203
Definitions used through the whole kernel.
enum TN_MutexProtocol protocol
Mutex protocol: priority ceiling or priority inheritance.
Definition: tn_mutex.h:137
struct TN_ListItem deadlock_list
List of other mutexes involved in deadlock (normally, this list is empty)
Definition: tn_mutex.h:133
enum TN_RCode tn_mutex_delete(struct TN_Mutex *mutex)
Destruct mutex.
enum TN_RCode tn_mutex_lock(struct TN_Mutex *mutex, TN_Timeout timeout)
Lock mutex.
struct TN_ListItem mutex_queue
To include in task's locked mutexes list (if any)
Definition: tn_mutex.h:128
int cnt
Lock count (for recursive locking)
Definition: tn_mutex.h:147
enum TN_ObjId id_mutex
id for object validity verification
Definition: tn_mutex.h:150
int ceil_priority
Used if only protocol is TN_MUTEX_PROT_CEILING: maximum priority of task that may lock the mutex...
Definition: tn_mutex.h:144
Mutex uses priority ceiling protocol.
Definition: tn_mutex.h:112
Mutex uses priority inheritance protocol.
Definition: tn_mutex.h:115
struct TN_Task * holder
Current mutex owner (task that locked mutex)
Definition: tn_mutex.h:140
struct TN_ListItem wait_queue
List of tasks that wait a mutex.
Definition: tn_mutex.h:125