Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge from canonical #1

Merged
merged 13 commits into from
Jan 18, 2021
Merged

Merge from canonical #1

merged 13 commits into from
Jan 18, 2021

Conversation

fortnern
Copy link
Owner

No description provided.

bljhdf and others added 13 commits December 23, 2020 22:13
* Doxygen - RM entries for H5A, H5S, and H5P APIs

* fix issues on ubuntu

* added missing H5F_fspace_strategy_t_snip

* Doxygen: Add more H5P functions

Co-authored-by: hdfhelp <hdfhelp@jelly.ad.hdfgroup.org>
* OESS-98 convert plugin option to FetchContent, add tests

* Fixes for pkcfg files because of plugin option

* OESS-98 fix tools test for plugins

* Remove duplicate setting
* Fixes Autotools detection of the st_blocks field in stat

The Autotools and CMake will now both correctly determine if the
stat struct has the st_blocks field and set H5_HAVE_STAT_ST_BLOCKS
appropriately.

* Fixes a typo in configure.ac
* OESS-98 convert plugin option to FetchContent, add tests

* Fixes for pkcfg files because of plugin option

* OESS-98 fix tools test for plugins

* Keep doxygen comments under 100 chars long - format hint

* Whitespace
* Removes no-op callback stubs from read-only VFDs

Also changes VFD registration to allow read-only VFDs with no
write callback to be registered.

* Adds a RELEASE.txt note for HDFFV-11205

For the read-only VFD registration change
* OESS-98 convert plugin option to FetchContent, add tests

* Fixes for pkcfg files because of plugin option

* OESS-98 fix tools test for plugins

* Keep doxygen comments under 100 chars long - format hint

* Whitespace

* HDFFV-11144 - Reclassify CMake messages
* Removes no-op callback stubs from read-only VFDs

Also changes VFD registration to allow read-only VFDs with no
write callback to be registered.

* Adds a RELEASE.txt note for HDFFV-11205

For the read-only VFD registration change

* Revert "Removes no-op callback stubs from read-only VFDs"

This reverts commit a7a9549.

* Removes lock callbacks from ros3 and hdfs VFDs
* OESS-98 convert plugin option to FetchContent, add tests

* Fixes for pkcfg files because of plugin option

* OESS-98 fix tools test for plugins

* Keep doxygen comments under 100 chars long - format hint

* Whitespace

* HDFFV-11144 - Reclassify CMake messages

* HDFFV-11099/11100 added help text
@fortnern fortnern merged commit 85c948d into fortnern:develop Jan 18, 2021
fortnern pushed a commit that referenced this pull request Mar 29, 2024
…#4236)

Both H5Dchunk_iter() and H5Dget_chunk_info(_by_coord)() did not take
the size of the user block into account when reporting addresses. Since
the #1 use of these functions is to root around in the file for the raw
data, this is kind of a problem.

Fixes GitHub issue HDFGroup#3003
fortnern pushed a commit that referenced this pull request Sep 17, 2024
* Take user block into account when returning chunk addresses (HDFGroup#4236)

Both H5Dchunk_iter() and H5Dget_chunk_info(_by_coord)() did not take
the size of the user block into account when reporting addresses. Since
the #1 use of these functions is to root around in the file for the raw
data, this is kind of a problem.

Fixes GitHub issue HDFGroup#3003

* Fix a minor warning in h5test.c (HDFGroup#4242)

* Turn on -Werror for Java in GitHub -Werror workflows (HDFGroup#4243)

* Update Windows CI to not install ninja (HDFGroup#4230)

* Rework Fortran macros to use the proper code. (HDFGroup#4240)

* Correct reference copy for 16 API (HDFGroup#4244)

* Determine MPI LOGICAL during build, used in tests. (HDFGroup#4246)

* Skip userblock test in chunk_info.c for multi-file VFDs (HDFGroup#4249)

* Match generators with real cmake -G output on Windows (HDFGroup#4252)

* Add Julia GitHub Actions. (HDFGroup#4123)

* Re-revert to using autoreconf in autogen.sh (HDFGroup#4253)

We previously tried removing the per-tool invocation of the Autotools
and instead simply invoked autoreconf (PR HDFGroup#1906). This was reverted
when it turned out that the NAG Fortran compiler had trouble with an
undecorated -shared linker flag.

It turns out that this is due to a bug in libtool 2.4.2 and earlier.
Since this version of libtool is over a decade old, we're un-reverting
the change. We've added a release note for anyone who has to build
from source on elderly platforms.

Fixes HDFGroup#1343

* Rewrite H5T__path_find_real for clarity (HDFGroup#4225)

* Move conversion path free logic to helper function

* Add tgz extensions on names (HDFGroup#4255)

* Remove an error check regarding large cache objects (HDFGroup#4254)

* Remove an error check regarding large cache objects

In PR#4231 an assert() call was converted to a normal HDF5 error
check. It turns out that the original assert() was added by a
developer as a way of being alerted that large cache objects
existed instead of as a guard against incorrect behavior, making
it unnecessary in either debug or release builds.

The error check has been removed.

* Update RELEASE.txt

* File format security issues (HDFGroup#4234)

* Add job timeout to cygwin workflow (HDFGroup#4260)

* Replace user-define with user-defined (HDFGroup#4261)

* Improve the CMake clang -fsanitize=memory flags (HDFGroup#4267)

-fsanitize=memory is almost useless without
using -fsanitize-memory-track-origins=2 and we shoud probably add
-fno-optimize-sibling-calls as well.

* Add documentation (H5M) (HDFGroup#4259)

* Add documentation (H5P) (HDFGroup#4262)

* MPI type correction (HDFGroup#4268)

* corrected type for MPI_*_f2c APIs

* fixed return type of callback

* reset compilation flags of logical test program

* Clean up test/cmpd_dtransform.c (HDFGroup#4270)

* Clean up test/cmpd_dtransform.c

* Fix uninitialized memory warning from sanitizers
* FAIL_STACK_ERROR --> TEST_ERROR
* Emit output
* Delete test file when done

* Fix typo

* H5Fdelete() --> remove()

* Fix uninitialized memory issues in packet table (HDFGroup#4271)

* replace deprecated CMAKE_COMPILER_IS_GNU** (HDFGroup#4272)

* Prevent stack overflows in H5E__push_stack (HDFGroup#4264)

* Minor fixes after merge of file format security fixes (HDFGroup#4263)

* Update H5_IS_BUFFER_OVERFLOW to account for 'size' of 0

* Invert a few checks to avoid function call

* CHECK --> CHECK_PTR in tmisc.c (HDFGroup#4274)

* Add release note for CVE-2017-17507 (HDFGroup#4275)

* Update Cygwin installation guide (HDFGroup#4265)

* Addresses configuration fortran testing flags (HDFGroup#4276)

* turn warnings to errors in fortran configure test

* Intel fortran test fix

* Merge julia workflows into standard ci format (HDFGroup#4273)

* Fix range check in H5_addr_overlap (HDFGroup#4278)

When the H5_addr_overlap macro was updated to use H5_RANGE_OVERLAP,
it failed to take into account that H5_RANGE_OVERLAP expects the
range to be inclusive. This lead to an assertion failure in
H5MM_memcpy due to a memcpy operation on overlapping memory.
This has been fixed by subtracting 1 from the calculated high
bound values passed to H5_RANGE_OVERLAP

* Fix potential buffer read overflows in H5PB_read (HDFGroup#4279)

H5PB_read previously did not account for the fact that the size of the
read it's performing could overflow the page buffer pointer, depending
on the calculated offset for the read. This has been fixed by adjusting
the size of the read if it's determined that it would overflow the page.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants