Fix acpidb CIDs 1011279 (Buffer not null terminated) and 978405 and
authortruckman <truckman@FreeBSD.org>
Tue, 24 May 2016 23:41:36 +0000 (23:41 +0000)
committertruckman <truckman@FreeBSD.org>
Tue, 24 May 2016 23:41:36 +0000 (23:41 +0000)
commitb29064e902d9e5a98dcbbbeffb19e29bb5c62834
treec8579ada06f383fd213c22dee434e2fcd48cb386
parent4b5433e33a1d4f5587905894fb1c76a5f99a49d4
Fix acpidb CIDs 1011279 (Buffer not null terminated) and 978405 and
1199380 (Resource leak).

load_dsdt() calls strncpy() to copy a filename and Coverity warns
that the destination buffer may not be NUL terminated.  Fix this
by using strlcpy() instead.  If silent truncation occurs, then the
filename was not valid anyway.

load_dsdt() leaks an fd (CID 978405) and a memory region allocated
using mmap() (CID 1199380) when it returns.  Fix these by calling
close() and munmap() as appropriate.

Don't bother fixing the minor memory leak "list", allocated by
AcGetAllTablesFromFile() (CID 1355191).

Check for truncation when creating the temp file name.

Set a flag to indicate that the temp file should be unlinked.
Relying on a strcmp() test could delete the input file in contrived
cases.

Reported by: Coverity
CID: 1011279, 978405, 1199380
Reviewed by: jkim
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D6368
usr.sbin/acpi/acpidb/acpidb.c