From 38b07b3614281253b5818c220c35dabfc5b9ef45 Mon Sep 17 00:00:00 2001 From: Wenyong Huang Date: Thu, 24 Mar 2022 10:05:10 +0800 Subject: [PATCH] Add libuv and uvwasi to attributions (#1057) --- ATTRIBUTIONS.md | 10 +++ .../iwasm/libraries/libc-uvwasi/LICENSE_LIBUV | 66 +++++++++++++++++++ .../libraries/libc-uvwasi/LICENSE_UVWASI | 21 ++++++ 3 files changed, 97 insertions(+) create mode 100644 core/iwasm/libraries/libc-uvwasi/LICENSE_LIBUV create mode 100644 core/iwasm/libraries/libc-uvwasi/LICENSE_UVWASI diff --git a/ATTRIBUTIONS.md b/ATTRIBUTIONS.md index da12a771a..c3f5be240 100644 --- a/ATTRIBUTIONS.md +++ b/ATTRIBUTIONS.md @@ -11,6 +11,8 @@ WAMR project reused some components from other open source project: - **wasmtime**: for the wasi libc implementation - **zephyr**: for several platform specific examples - **WebAssembly debugging patch for LLDB**: for extending the ability of LLDB to support wasm debugging +- **libuv**: for the WASI Libc with uvwasi implementation +- **uvwasi**: for the WASI Libc with uvwasi implementation The WAMR fast interpreter is a clean room development. We would acknowledge the inspirations by [WASM3](https://github.com/wasm3/wasm3) open source project for the approach of pre-calculated oprand stack location. @@ -25,6 +27,8 @@ The WAMR fast interpreter is a clean room development. We would acknowledge the | wasmtime | unspecified | v0.26.0 | https://github.com/bytecodealliance/wasmtime | | | zephyr | unspecified | v2.5.0 | https://www.zephyrproject.org/ | https://www.cvedetails.com/vendor/19255/Zephyrproject.html | | WebAssembly debugging patch for LLDB | unspecified | unspecified | https://reviews.llvm.org/D78801 | | +| libuv | v1.42.0 | v1.44.1 | https://github.com/libuv/libuv | https://www.cvedetails.com/vendor/15402/Libuv-Project.html | +| uvwasi | unspecified | v0.0.12 | https://github.com/nodejs/uvwasi | | ## Licenses @@ -69,3 +73,9 @@ The WAMR fast interpreter is a clean room development. We would acknowledge the ### wac [LICENSE](./tests/wamr-test-suites/spec-test-script/LICENSE) + +### libuv +[LICENSE](./core/iwasm/libraries/libc-uvwasi/LICENSE_LIBUV) + +### uvwasi +[LICENSE](./core/iwasm/libraries/libc-uvwasi/LICENSE_UVWASI) diff --git a/core/iwasm/libraries/libc-uvwasi/LICENSE_LIBUV b/core/iwasm/libraries/libc-uvwasi/LICENSE_LIBUV new file mode 100644 index 000000000..eb126dab3 --- /dev/null +++ b/core/iwasm/libraries/libc-uvwasi/LICENSE_LIBUV @@ -0,0 +1,66 @@ +libuv is licensed for use as follows: + +==== +Copyright (c) 2015-present libuv project contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. +==== + +This license applies to parts of libuv originating from the +https://github.com/joyent/libuv repository: + +==== + +Copyright Joyent, Inc. and other Node contributors. All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + +==== + +This license applies to all parts of libuv that are not externally +maintained libraries. + +The externally maintained libraries used by libuv are: + + - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license. + + - inet_pton and inet_ntop implementations, contained in src/inet.c, are + copyright the Internet Systems Consortium, Inc., and licensed under the ISC + license. + + - stdint-msvc2008.h (from msinttypes), copyright Alexander Chemeris. Three + clause BSD license. + + - pthread-fixes.c, copyright Google Inc. and Sony Mobile Communications AB. + Three clause BSD license. diff --git a/core/iwasm/libraries/libc-uvwasi/LICENSE_UVWASI b/core/iwasm/libraries/libc-uvwasi/LICENSE_UVWASI new file mode 100644 index 000000000..dfb8546af --- /dev/null +++ b/core/iwasm/libraries/libc-uvwasi/LICENSE_UVWASI @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Colin Ihrig and Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.