Commit Graph

3888 Commits

Author SHA1 Message Date
DeadSix27
ed1b67b9a8 cmake: use proper pkg-config install path variable 2019-11-18 15:24:06 +11:00
Erik de Castro Lopo
e0f7e0ece5 oss-fuzz: Add fuzzing targets
These fuzzing targets were originally from:

    https://github.com/guidovranken/flac-fuzzers.git

but having them in a separate repo was a huge pain in the neck when
working on fixing any problems found.
2019-11-18 06:29:10 +11:00
Erik de Castro Lopo
b19f3a6114 oss-fuzz: Add fuzzing headers
These includes header files were taken from:

    https://github.com/guidovranken/fuzzing-headers.git

with some minor changes required to make them compile cleanly
with the extra compiler warning flags used by the FLAC build
system.
2019-11-18 06:29:10 +11:00
Erik de Castro Lopo
888ea869a7 libFLAC++: Add libFLAC++-static.la target for oss-fuzzers 2019-11-18 06:29:10 +11:00
sezero
cdcf0d5575 cmake_minimum_required() cleanup:
- document version requirements in the top-level file.
- remove incorrect version requirements from sub-dirs.
- set min. required version to 3.5 in top-level file.
- set minimun required version to 3.9 under docs/ .
- make documents building an option (on by default.)
  so, the tree can be built using cmake-3.5 using
 -DBUILD_DOCS=0 on the command line.
2019-11-15 19:06:58 +11:00
sezero
2907d4921c flac/main.c: replace an snprintf() call with flac_snprintf()
flac_snprintf() is used everywhere else in there. that single instance
of plain snprintf() was added in commit 04974d27. fixes flac.exe build
with older msvc versions.
2019-11-11 14:14:46 +11:00
Erik de Castro Lopo
b3f55c40cc libFLAC/bitreader.c: Fix shift invoking undefined behaviour
Credit: Oss-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=18589
Testcase: fuzzer_decoder-5668806471188480
2019-11-11 11:42:34 +11:00
Erik de Castro Lopo
c7d3bd80cf test_streams: Fix UBSAN error in random generator 2019-11-11 11:42:34 +11:00
Hakan Kvist
b84ff55b03 libFLAC/stream_decoder.c: fix integer overflow on corrupt file
Corrupt metadata could make the length calculation overflow.
2019-10-24 06:57:47 +11:00
sezero
25305d685b Fix msvc build after commit b917d456
Closes: https://github.com/xiph/flac/issues/152
2019-10-19 14:51:05 +11:00
NY00123
7bc7aebc7c Replace unsigned with uint32_t in prototypes; Fixes DJGPP builds. 2019-10-19 12:51:38 +11:00
Erik de Castro Lopo
35b369ebee travis: Add a brew update 2019-10-16 16:42:11 +11:00
sezero
952d511655 cmake: fix nasm sources build when building in a separate directory
When building in the same directory as the source, it works, but not in
a separate directory.  The trailing slash is important with nasm.  Note
that include_directories("${CMAKE_CURRENT_SOURCE_DIR}/") does not work
because cmake seems to strip the trailing slash.

Also relax the cmake version requirement from 3.12 to 3.9 as everywhere
else in the tree: it works just fine.
2019-10-10 18:32:21 +11:00
sezero
d4a1b345dd configure.ac: allow several compiler flags for clang
The flac configury marked clang as 'not being gcc' and excluded
a lot of compiler switches, most importantly the visibility flags,
from being used with it. This was done possibly after a problem
reported at: https://github.com/erikd/libsndfile/issues/49 .

This patch does the following:

- m4/gcc_version.m4 (XIPH_GCC_VERSION): set GCC_MAJOR_VERSION and
  GCC_MINOR_VERSION to 0 for non-gcc. Previously, they were left
  unset.

- configure: the gcc version checks are, naturally, against non-
  zero values, so, allow many compiler switches to be used with
  clang without affecting real-gcc cases.

- configure: When setting CFLAGS="-O3 -funroll-loops", also set
  CXXFLAGS="-O3".  Prevents g++ warnings with _FORTIFY_SOURCE, i.e.:
 '_FORTIFY_SOURCE requires compiling with optimization (-O)'

Tested compilation using gcc-7.3.1 and clang-5.0.2 on x86_64-linux,
and gcc-4.4.7 and clang-3.4.2 on an i686-linux.  Also tested cross-
compiling for Mac OS X using clang-5.0.2.
2019-10-10 18:31:26 +11:00
sezero
ee70d96932 cmake: do not add visibility attributes to shared lib builds for win32. 2019-10-10 18:30:39 +11:00
sezero
b917d456d2 make dllexport work with compilers other than MSVC
the issue is, flac and metaflac exes rely on flac_internal_???_utf8()
procedures from windows_unicode_filenames.c and there is no easy way
to exclude them from exports without breaking things. So export them
explicitly (they are exported anyway w/o this patch), but add a FIXME
note about the kludge in windows_unicode_filenames.c.
2019-10-10 18:30:39 +11:00
sezero
19a0e99ac3 move the new public get_decoder_client_data function to public header. 2019-10-10 06:09:21 +11:00
Erik de Castro Lopo
2e7931c27e libFLAC/bitreader.c: Fix out-of-bounds read
Credit: Oss-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=17069
Testcase: fuzzer_decoder-5670265022840832
2019-10-08 06:14:06 +11:00
Erik de Castro Lopo
6d0e222a6e Make sure CMake build files end up in release tarball 2019-10-01 08:18:28 +10:00
Erik de Castro Lopo
f771c6451b Remove un-needed Makefile.am 2019-10-01 08:18:28 +10:00
Peter Seiderer
44036c9a9b configure.ac: check for sys/auxv.h before defining FLAC__CPU_PPC
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Note: One of the buildroot autobuilder provided powerpc toolchains
seem to not provide the sys/auxv.h header file, resulting in a
compile failure (see [1] for details).

[1] http://lists.busybox.net/pipermail/buildroot/2019-September/259732.html
2019-09-30 07:49:10 +10:00
Erik de Castro Lopo
5598543a96 libFLAC/lpc.c: Fix signed integer overflow
Do the addition as 64 bits before truncating to 32 bits.

Credit: Oss-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16459
Testcase: fuzzer_decoder-5728784602365952
2019-09-16 06:18:07 +10:00
Erik de Castro Lopo
8147ee7ea2 libFLAC/bitreader.c: Fix shift invoking undefined behaviour
Credit: Oss-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16464
Testcase: fuzzer_decoder-5663276452544512
2019-09-16 06:18:07 +10:00
Erik de Castro Lopo
09f47c00e1 libFLAC/bitreader.c: Fix shift invoking undefined behaviour
Credit: Oss-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16458
Testcase: fuzzer_decoder-5649174900506624
2019-09-16 06:18:07 +10:00
Erik de Castro Lopo
c34c3459b5 libFLAC/bitreader.c: Fix OOB read
Credit: OSS-Fuzz
Issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=16457
Testcase: fuzzer_decoder-5076189185572864
2019-09-16 06:18:07 +10:00
Erik de Castro Lopo
04974d2715 Fix a number of gcc 9.2 compiler warnings 2019-09-15 16:14:36 +10:00
Rosen Penev
2409f5f39d Run libFLAC++ through clang-tidy.
Applied the following suggestions:

modernize-deprecated-headers
google-readability-casting
google-readability-namespace-comments
readability-else-after-return
2019-09-15 11:39:08 +10:00
oreo639
01167efa6a Fix function redefinition on arm-none-eabi compilers 2019-09-15 11:35:36 +10:00
Rosen Penev
9ea40e34f8 window: fabs > fabsf and cos > cosf where it makes sense
The f functions are faster. It seems the arguments are all floats.
2019-09-15 11:34:08 +10:00
Rosen Penev
cc6ca9a6ec flac/utils: Add missing define
wcswidth needs _XOPEN_SOURCE defined. Otherwise, no declaration.
2019-09-15 11:30:35 +10:00
Rosen Penev
66dd7f05d7 Switch to utimensat for newer POSIX versions
Some libcs like uClibc-ng can optionally disable deprecated functions.
utime is one of them. When done so, both the header and the function go
missing.

This fixes flac_utime to work in such a situation.
2019-08-20 06:49:13 +10:00
pkubaj
5db5820932 Fix build on FreeBSD PowerPC
Used the elf_aux_info function on FreeBSD and clarify that users of other
systems need to implement reading from AT_HWCAP2.
2019-08-18 10:44:15 +10:00
Ralph Giles
88ddb5b59e Fix metaflac under ctest.
The 1.3.3 release didn't update the version number in the cmake
build. It's too late to fix the release, but bringing the version
number into sync allows the metaflac test which verifies the
encoder's embedded version number to pass, giving us proper test
feedback on other changes to the development tree.
2019-08-16 06:59:42 +10:00
Erik de Castro Lopo
4ca0d85c5d libFLAC: Rename get_client_data_from_decoder function
This function was added after the 1.3.2 release, but the name was bad
(missing "FLAC__" at the start) and the pointer returned should be 'const'.
2019-08-09 09:36:19 +10:00
sezero
f85a2f44f6 increase required minimum cmake version to 3.9. 2019-08-06 07:26:19 +10:00
sezero
4a43f2bd4d Do not assume that sys/param.h defines MIN and MAX
One such example is sys/param.h from MinGW.
2019-08-05 12:35:08 +10:00
Ralph Giles
8dda876b23 doc: Add xmlns attributes.
validator.w3.org wants a namespace declaration for xhtml.
2019-08-05 10:48:40 +10:00
Erik de Castro Lopo
f764434a39 Version 1.3.3 2019-08-04 19:47:53 +10:00
Fabian Greffrath
83d829afc5 doc: Remove xhtml validator links.
Fix "privacy-breach-w3c-valid-html" lintian error.

Don't ping an external site when loading documentation
pages since this can be used to track user activity.

These links are also broken, since they depend on the
referer header, which browsers no longer send to insecure
pages for similar privacy reasons. That aspect could be
addressed by using https urls for the validator site.

Signed-off-by: Ralph Giles <giles@thaumas.net>
2019-08-04 17:05:09 +10:00
Ralph Giles
a41eb7ddd4 doc: Use empty-element <hr/> tag.
Improve the conformance of the xhtml generated by doxygen by
using the self-closing <hr/> tag in the custom footer.

Without this, xmllint complains about </body> and </html> end
tags inside the still-only <hr>. That syntax is allowed in
html but not xml.
2019-08-04 17:05:09 +10:00
Ralph Giles
e229fb4e56 .travis.yml: Generate and validate html documentation.
Install Doxygen when running on the linux environment to test
generation of the API documentation.

Run the included static html documentation as well as the
generated API documentation through xmllint to verify
it conforms to the declared DTD. Since this this will be very
slow or fail relying on network resources, also install
the w3c-sgml library so the xhtml1 DTDs are available locally.

We're checking the source files, not build results in the
particular environment, so it's fine to run this check
on only a subset of builds.

Don't validate on CMake builds since they're not currently
generating API documentation even when Doxygen is available.
2019-08-04 17:05:09 +10:00
Dagobert Michelsen
fcabd81aba Add -lrt for all operating systems for clock_gettime 2019-07-17 08:16:39 +10:00
Erik de Castro Lopo
deb21bc251 Update Visual Studio 2005 files
Patch-from: Janne Hyvärinen
2019-07-16 07:53:41 +10:00
Erik de Castro Lopo
48e8dbcf4a Fix CppCheck warnings 2019-07-15 09:42:38 +10:00
Erik de Castro Lopo
1146117229 test: Ignore varying length in metadata
The metadata test checked for specific lengths which change from 5 bytes for
something like "1.3.2" to 9 bytes for something like "1.3.3pre1".
2019-07-15 09:42:38 +10:00
evpobr
cd03042ea9 Fix CMake configure warning
Policy CMP0054 is not set: Only interpret if() arguments as variables or keywords when
 unquoted.
2019-06-01 12:33:53 +10:00
Vitaliy Kirsanov
0c3440aec0 Fixed #107: CMake error without enabling BUILD_CXXLIBS 2019-05-31 19:19:20 +10:00
Виталий Кирсанов
77e234acef CMake: fixed windows_unicode_filenames linking errors 2019-05-28 15:55:27 +10:00
evpobr
e4b94e3144 Fix Visual Studio solution generation with CMake
Rename flac application target to flacapp to avoid name collision with FLAC library target.

Closes #101.
2019-05-12 09:00:07 +10:00
Vitaliy Kirsanov
95a94232a8 Added README description for CMake 2019-05-04 11:41:48 +10:00