This is the construction site of next major version of hpc-workspace++ tool.
DO NOT USE - it is incomplete
This is very rough and not ment for usage, and I will for the time being also not expect or accept contributions, until some things are settled.
Please use the discussion tab if you would like to share input.
The codebase got harder and scarier to maintain and needed a major cleanup and modernization.
-
Separation of configuration and database implementation from the client tools is the first goal.
-
Better testing is the second goal.
-
It is likely that all python tools will be replaced with C++ tools on the long run.
-
backwards compatibility will be maintained, might have some restrictions (e.g. old config files will need some flags to be added)
Functional extension is possible after this is achieved.
at the moment main development platform is
- Ubuntu 22.04.5 LTS
- CMake 3.22.1
- gcc 11.4.0
future test platforms:
-
Ubuntu 22.04.5 LTS
- CMake 3.22.1
- gcc 11.4.0
- clang 14.0.0
-
Ubuntu 24.4 LTS
- CMake 3.28.3
- gcc 13.3.0
- clang 18.1.3
-
Rocky Linux 8.10
- CMake 3.26.5
- gcc 14
-
Rocky Linux 9.5
- Cmake 3.26.5
- gcc 11.5
this list can be extended.
no intention to support old platforms like centos7, but it might work.
language level might evolve from c++17 to c++20 if there is reasons.
ws_list has a dependency to -fopenmp, can be removed from CMakeList.txt if not available.
source is fetched and build as part of this tool:
- {fmt}
- yaml-cpp
- rapidyaml
- Guidelines Support Library (GSL)
library taken from distribution
- boost program_options + boost system
- libcap (optional if capability support is wanted instead of setuid)
for testing:
- Catch2
- bats
- ws_allocate (C++)
- ws_extend (will remain a shell wrapper)
- ws_find (new in C++)
- ws_list (new in C++)
- ws_register (might get based on ws_list)
- ws_release (C++)
- ws_restore (C++)
- ws_send_ical (might get based on ws_list)
- ws_share (will remain a shell script)
- ws_expirer (will be migrated to C++)
- ws_validate_config (might be migrated to C++)
- ws_prepare (new in C++)
- move from single file ws.conf to multifile ws.d
- migrate config from yaml-cpp to ryaml and remove yaml-cpp dependency (on hold for the moment, uses both)
- move to compiletime+runtime detected capability/setuid/usermode switch (usermode is for testing mainly, does not elevate privileges)
- add more unit tests to existing code
- build/select a better test framework for the tools
- debug what is there
- migrate more tools: migrate ws_expirer, ws_validate_config
- add tests for new tools
- debug what is there
- get CMake setup in better shape
- remove tbb dependency
- migrate and check/correct/add documentation, guides and man pages
- test with more compilers and distributions
- do real live tests
- define and implement new DB format
- how to automate testing? VMs? container?
- missing features in current version?
for developers
cmake --preset debug
cmake --build --preset debug -j 12
for mold users:
cmake --preset debug -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=mold"
cmake --build --preset debug -j 12
for lld users:
cmake --preset debug -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld"
cmake --build --preset debug -j 12
for production
cmake --preset release
cmake --build --preset release -j 12
unit tests:
ctest --preset debug .
higher level tests (user mode only)
bats bats/test
cd docker
sudo docker build ubuntu-24.04 -t hpcwsv2
sudo docker run hpcwsv2 testall
Tests in docker allow coverage analysis
cd docker
mkdir coverage
sudo docker run -v $PWD/coverage:/ws/coverage_report hpcw lcov
sudo chown -R $USERNAME coverage
note: setcap tests will fail with ASAN error messages if sysctl fs.suid_dumpable = 2
Update: turned out that capability version seems to have restrictions in docker, can only be tested fully in VM
TODO: remove capabuility tests from docker
Vagrant files are provided to allow testing with rocky linux 8 and rocky linux 9. this should allow to test capability version as well as setup with root_squash filesystems.
cd vm/rocky-8
vagrant up
turns out that NFS root_squash and Lustre root_sqash do not behave the same way, what works on Lustre does not on NFS, so NFS is not suitable for testing.
latest lustre versions also drop capabilites, unless
lctl set_param -P mdt.<fsname>-*.enable_cap_mask=+cap_dac_read_search,cap_chown,cap_dac_override,cap_fowner
is used.