Commit 11e636e
committed
[kernel/mutex] fix: reject deleted mutex waiters
A waiter resumed by rt_mutex_delete() or rt_mutex_detach() could
continue accessing the deleted mutex through pending_object. This could
cause a data abort or use-after-free when the object was freed or
reused.
Clear pending_object for all blocked waiters before waking them. Return
-RT_ERROR after a deleted mutex waiter resumes instead of dereferencing
the stale object.
Reproduction with the regression test applied to the parent version:
- UP QEMU reused the deleted mutex address and filled it with 0xA5.
- The core.mutex/test_mutex_delete_waiter test then reported a data
abort with pc=0x6007a7bc and
r00/r03=0xa5a5a5a5.
- The symbolized stack was:
rt_sched_thread_get_curr_prio() [src/scheduler_comm.c:125]
_rt_mutex_take() [src/ipc.c:1489]
rt_mutex_take() [src/ipc.c:1542]
mutex_waiter_entry() [src/utest/mutex_tc.c:919]
Add regression coverage for dynamic mutex deletion and static mutex
detachment with object memory reuse.
Validation:
- Parent UP QEMU: core.mutex/test_mutex_delete_waiter triggered a data abort.
- Fixed UP QEMU: core.mutex passed, including test_mutex_delete_waiter.
- scons -j$(nproc) --strict -C bsp/qemu-vexpress-a9 passed.
Signed-off-by: Hui Su <3164683437@qq.com>1 parent 6ea6827 commit 11e636e
2 files changed
Lines changed: 158 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
949 | 949 | | |
950 | 950 | | |
951 | 951 | | |
| 952 | + | |
952 | 953 | | |
953 | 954 | | |
| 955 | + | |
| 956 | + | |
| 957 | + | |
| 958 | + | |
| 959 | + | |
| 960 | + | |
| 961 | + | |
| 962 | + | |
| 963 | + | |
| 964 | + | |
| 965 | + | |
| 966 | + | |
954 | 967 | | |
955 | 968 | | |
956 | 969 | | |
| |||
1452 | 1465 | | |
1453 | 1466 | | |
1454 | 1467 | | |
| 1468 | + | |
| 1469 | + | |
| 1470 | + | |
| 1471 | + | |
| 1472 | + | |
| 1473 | + | |
| 1474 | + | |
1455 | 1475 | | |
1456 | 1476 | | |
1457 | 1477 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| 47 | + | |
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| |||
904 | 905 | | |
905 | 906 | | |
906 | 907 | | |
| 908 | + | |
| 909 | + | |
| 910 | + | |
| 911 | + | |
| 912 | + | |
| 913 | + | |
| 914 | + | |
| 915 | + | |
| 916 | + | |
| 917 | + | |
| 918 | + | |
| 919 | + | |
| 920 | + | |
| 921 | + | |
| 922 | + | |
| 923 | + | |
| 924 | + | |
| 925 | + | |
| 926 | + | |
| 927 | + | |
| 928 | + | |
| 929 | + | |
| 930 | + | |
| 931 | + | |
| 932 | + | |
| 933 | + | |
| 934 | + | |
| 935 | + | |
| 936 | + | |
| 937 | + | |
| 938 | + | |
| 939 | + | |
| 940 | + | |
| 941 | + | |
| 942 | + | |
| 943 | + | |
| 944 | + | |
| 945 | + | |
| 946 | + | |
| 947 | + | |
| 948 | + | |
| 949 | + | |
| 950 | + | |
| 951 | + | |
| 952 | + | |
| 953 | + | |
| 954 | + | |
| 955 | + | |
| 956 | + | |
| 957 | + | |
| 958 | + | |
| 959 | + | |
| 960 | + | |
| 961 | + | |
| 962 | + | |
| 963 | + | |
| 964 | + | |
| 965 | + | |
| 966 | + | |
| 967 | + | |
| 968 | + | |
| 969 | + | |
| 970 | + | |
| 971 | + | |
| 972 | + | |
| 973 | + | |
| 974 | + | |
| 975 | + | |
| 976 | + | |
| 977 | + | |
| 978 | + | |
| 979 | + | |
| 980 | + | |
| 981 | + | |
| 982 | + | |
| 983 | + | |
| 984 | + | |
| 985 | + | |
| 986 | + | |
| 987 | + | |
| 988 | + | |
| 989 | + | |
| 990 | + | |
| 991 | + | |
| 992 | + | |
| 993 | + | |
| 994 | + | |
| 995 | + | |
| 996 | + | |
| 997 | + | |
| 998 | + | |
| 999 | + | |
| 1000 | + | |
| 1001 | + | |
| 1002 | + | |
| 1003 | + | |
| 1004 | + | |
| 1005 | + | |
| 1006 | + | |
| 1007 | + | |
| 1008 | + | |
| 1009 | + | |
| 1010 | + | |
| 1011 | + | |
| 1012 | + | |
| 1013 | + | |
| 1014 | + | |
| 1015 | + | |
| 1016 | + | |
| 1017 | + | |
| 1018 | + | |
| 1019 | + | |
| 1020 | + | |
| 1021 | + | |
| 1022 | + | |
| 1023 | + | |
| 1024 | + | |
| 1025 | + | |
| 1026 | + | |
| 1027 | + | |
| 1028 | + | |
| 1029 | + | |
| 1030 | + | |
| 1031 | + | |
| 1032 | + | |
| 1033 | + | |
| 1034 | + | |
907 | 1035 | | |
908 | 1036 | | |
909 | 1037 | | |
910 | 1038 | | |
| 1039 | + | |
| 1040 | + | |
| 1041 | + | |
911 | 1042 | | |
912 | 1043 | | |
913 | 1044 | | |
| |||
916 | 1047 | | |
917 | 1048 | | |
918 | 1049 | | |
| 1050 | + | |
| 1051 | + | |
| 1052 | + | |
| 1053 | + | |
| 1054 | + | |
| 1055 | + | |
919 | 1056 | | |
920 | 1057 | | |
921 | 1058 | | |
| |||
936 | 1073 | | |
937 | 1074 | | |
938 | 1075 | | |
| 1076 | + | |
939 | 1077 | | |
940 | 1078 | | |
941 | 1079 | | |
| |||
0 commit comments