Opened 5 years ago

Closed 4 years ago

Last modified 4 years ago

#8259 closed defect (invalid)

A use-after-free bug in libavcodec/utils.c

Reported by: wurongxin Owned by:
Priority: normal Component: undetermined
Version: unspecified Keywords:
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

Summary of the bug:
How to reproduce:

% ffmpeg -i input ... output
ffmpeg version
built on ...

Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker.

In the source file https://github.com/FFmpeg/FFmpeg/blob/release/3.4/libavcodec/utils.c, in the function "default_lockmgr_cb", there is a use-after-free bug. Please see the following code. At Line 104, it frees the variable "*mutex", and then uses "*mutex" at Line 105.

69.	static int default_lockmgr_cb(void **arg, enum AVLockOp op)
70.	{
	…
101.	    case AV_LOCK_DESTROY:
102.	        if (*mutex)
103.	            pthread_mutex_destroy(*mutex);
104.	        av_free(*mutex);
105.	        avpriv_atomic_ptr_cas(mutex, *mutex, NULL);

Change History (4)

comment:1 by mkver, 5 years ago

Component: avcodecundetermined
Priority: criticalnormal
Resolution: invalid
Status: newclosed

Having a dangling pointer and using it in a function call does not constitute a use-after-free; for this, one would have to try to access the (invalid) data at the place where the pointer points to.

in reply to:  1 comment:2 by wurongxin, 5 years ago

Resolution: invalid
Status: closedreopened

Replying to mkver:

Having a dangling pointer and using it in a function call does not constitute a use-after-free; for this, one would have to try to access the (invalid) data at the place where the pointer points to.

I don't think this is a safe operation and a good practice to write the code like that way. A very simple solution would be to swap the Line 104 and 105. Please consider it carefully. BTW, this happens in libavcodec, why you label the component as undetermined?

Last edited 5 years ago by wurongxin (previous) (diff)

comment:3 by Carl Eugen Hoyos, 4 years ago

Resolution: invalid
Status: reopenedclosed

The code in question was removed in a04c2c707de2ce850f79870e84ac9d7ec7aa9143

comment:4 by Carl Eugen Hoyos, 4 years ago

Version: 3.4.6unspecified
Note: See TracTickets for help on using tickets.