fusermount: Fix head-buffer-overflow in extract_x_options
authorBernd Schubert <bschubert@ddn.com>
Tue, 5 Mar 2024 17:09:33 +0000 (18:09 +0100)
committerBernd Schubert <bernd.schubert@fastmail.fm>
Tue, 5 Mar 2024 22:58:49 +0000 (23:58 +0100)
commit9e35addc358375c9228fcc2d5df780e9f4fef164
tree5eb506e43c45788329da4dd4ca785c35a7a8461b
parent6bda4091d4cc67e8f24cd7cb8dc93d076e115e27
fusermount: Fix head-buffer-overflow in extract_x_options

Commit 74b1df2e introduced a heap-buffer-overflow, as
allocated memory was not initialized and extract_x_options
was also not checking for the remaining buffer size.
Fix is to initialize the buffer and to also not exceed the buffer
size. Actually not exceeding buffer size is rather complex with C
and introduced quite some code changes.

Also fixed is a memory leak of allocated buffers in the commit
mentioned above.
util/fusermount.c