jaelis-node 1.3.2 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +97 -8
- package/lib/JAELIS-VM/lib/adapters/evm-adapter.js +454 -0
- package/lib/JAELIS-VM/lib/adapters/index.js +411 -0
- package/lib/JAELIS-VM/lib/adapters/svm-adapter.js +457 -0
- package/lib/JAELIS-VM/lib/compiler/jir-compiler.js +1097 -0
- package/lib/JAELIS-VM/lib/execution/engine.js +1183 -0
- package/lib/JAELIS-VM/lib/index.js +440 -0
- package/lib/JAELIS-VM/lib/integration/jaelis-integration.js +543 -0
- package/lib/JAELIS-VM/lib/serialization/serializer.js +819 -0
- package/lib/JAELIS-VM/lib/state/state-manager.js +1116 -0
- package/lib/JAELIS-VM/lib/translator/bytecode-translator.js +1222 -0
- package/lib/JAELIS-VM/lib/unified/cross-chain-state.js +836 -0
- package/lib/JAELIS-VM/lib/unified/dynamic-contracts.js +1127 -0
- package/lib/JAELIS-VM/lib/unified/index.js +378 -0
- package/lib/JAELIS-VM/lib/unified/jaelis-abi.js +1150 -0
- package/lib/JAELIS-VM/lib/unified/unified-compiler.js +1350 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-cbor-prebuilds +12 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-cbor-prebuilds.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-cbor-prebuilds.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-msgpackr-prebuilds +12 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-msgpackr-prebuilds.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/.bin/download-msgpackr-prebuilds.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages +12 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-optional +12 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-optional.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-optional.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-test +12 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-test.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages-test.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/.bin/node-gyp-build-optional-packages.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/.package-lock.json +127 -0
- package/lib/JAELIS-VM/node_modules/@cbor-extract/cbor-extract-win32-x64/README.md +1 -0
- package/lib/JAELIS-VM/node_modules/@cbor-extract/cbor-extract-win32-x64/index.js +0 -0
- package/lib/JAELIS-VM/node_modules/@cbor-extract/cbor-extract-win32-x64/node.abi115.node +0 -0
- package/lib/JAELIS-VM/node_modules/@cbor-extract/cbor-extract-win32-x64/node.napi.node +0 -0
- package/lib/JAELIS-VM/node_modules/@cbor-extract/cbor-extract-win32-x64/package.json +17 -0
- package/lib/JAELIS-VM/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/README.md +1 -0
- package/lib/JAELIS-VM/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/index.js +0 -0
- package/lib/JAELIS-VM/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/node.abi115.node +0 -0
- package/lib/JAELIS-VM/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/node.napi.node +0 -0
- package/lib/JAELIS-VM/node_modules/@msgpackr-extract/msgpackr-extract-win32-x64/package.json +17 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/README.md +5 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/bin/download-prebuilds.js +11 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/binding.gyp +60 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/index.js +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/package.json +50 -0
- package/lib/JAELIS-VM/node_modules/cbor-extract/src/extract.cpp +198 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/README.md +380 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/SECURITY.md +11 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/benchmark.md +73 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/browser.js +11 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/decode.d.ts +2 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/decode.js +1300 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/decode-no-eval.cjs +1244 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/decode-no-eval.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index-no-eval.cjs +2509 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index-no-eval.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index-no-eval.min.js +2 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index-no-eval.min.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index.js +2508 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index.min.js +2 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/index.min.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/node.cjs +2629 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/node.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/test.js +3343 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/dist/test.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/encode.d.ts +1 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/encode.js +1231 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/index.d.ts +79 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/index.js +3 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/iterators.js +85 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/node-index.js +24 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/package.json +94 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/rollup.config.js +88 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/stream.js +61 -0
- package/lib/JAELIS-VM/node_modules/cbor-x/webpack.config.js +19 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/LICENSE +201 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/README.md +163 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/index.d.ts +14 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/lib/elf.js +39 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/lib/process.js +24 -0
- package/lib/JAELIS-VM/node_modules/detect-libc/package.json +44 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/README.md +372 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/SECURITY.md +11 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/benchmark.md +67 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index-no-eval.cjs +2407 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index-no-eval.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index-no-eval.min.js +2 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index-no-eval.min.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index.js +2406 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index.min.js +2 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/index.min.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/node.cjs +3320 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/node.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/test.js +4540 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/test.js.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/unpack-no-eval.cjs +1250 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/dist/unpack-no-eval.cjs.map +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/index.d.cts +91 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/index.d.ts +91 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/index.js +5 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/iterators.js +87 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/node-index.js +25 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/pack.d.cts +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/pack.d.ts +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/pack.js +1141 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/package.json +104 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/rollup.config.js +88 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/stream.js +57 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/struct.js +815 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/test-worker.js +3 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/unpack.d.cts +2 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/unpack.d.ts +2 -0
- package/lib/JAELIS-VM/node_modules/msgpackr/unpack.js +1221 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/README.md +5 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/bin/download-prebuilds.js +13 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/binding.gyp +63 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/index.js +1 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages +12 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-optional +12 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-optional.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-optional.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-test +12 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-test.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages-test.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages.cmd +17 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/.bin/node-gyp-build-optional-packages.ps1 +28 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/README.md +58 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/bin.js +82 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/build-test.js +19 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/index.js +6 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/node-gyp-build.js +236 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/optional.js +7 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages/package.json +32 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/package.json +50 -0
- package/lib/JAELIS-VM/node_modules/msgpackr-extract/src/extract.cpp +274 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/LICENSE +21 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/README.md +58 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/bin.js +77 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/build-test.js +19 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/index.js +224 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/optional.js +7 -0
- package/lib/JAELIS-VM/node_modules/node-gyp-build-optional-packages/package.json +32 -0
- package/lib/JAELIS-VM/package-lock.json +284 -0
- package/lib/JAELIS-VM/package.json +38 -0
- package/lib/JAELIS-VM/test/comprehensive.test.js +267 -0
- package/lib/JAELIS-VM/test/cross-chain-test.js +470 -0
- package/lib/JAELIS-VM/test/unified-vm-test.js +459 -0
- package/lib/JAELIS-VM/test/unified.test.js +166 -0
- package/lib/JAELIS-VM/test/vm.test.js +599 -0
- package/lib/index.js +310 -4
- package/package.json +2 -2
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# detect-libc
|
|
2
|
+
|
|
3
|
+
Node.js module to detect details of the C standard library (libc)
|
|
4
|
+
implementation provided by a given Linux system.
|
|
5
|
+
|
|
6
|
+
Currently supports detection of GNU glibc and MUSL libc.
|
|
7
|
+
|
|
8
|
+
Provides asychronous and synchronous functions for the
|
|
9
|
+
family (e.g. `glibc`, `musl`) and version (e.g. `1.23`, `1.2.3`).
|
|
10
|
+
|
|
11
|
+
The version numbers of libc implementations
|
|
12
|
+
are not guaranteed to be semver-compliant.
|
|
13
|
+
|
|
14
|
+
For previous v1.x releases, please see the
|
|
15
|
+
[v1](https://github.com/lovell/detect-libc/tree/v1) branch.
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
npm install detect-libc
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## API
|
|
24
|
+
|
|
25
|
+
### GLIBC
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
const GLIBC: string = 'glibc';
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
A String constant containing the value `glibc`.
|
|
32
|
+
|
|
33
|
+
### MUSL
|
|
34
|
+
|
|
35
|
+
```ts
|
|
36
|
+
const MUSL: string = 'musl';
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
A String constant containing the value `musl`.
|
|
40
|
+
|
|
41
|
+
### family
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
function family(): Promise<string | null>;
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Resolves asychronously with:
|
|
48
|
+
|
|
49
|
+
* `glibc` or `musl` when the libc family can be determined
|
|
50
|
+
* `null` when the libc family cannot be determined
|
|
51
|
+
* `null` when run on a non-Linux platform
|
|
52
|
+
|
|
53
|
+
```js
|
|
54
|
+
const { family, GLIBC, MUSL } = require('detect-libc');
|
|
55
|
+
|
|
56
|
+
switch (await family()) {
|
|
57
|
+
case GLIBC: ...
|
|
58
|
+
case MUSL: ...
|
|
59
|
+
case null: ...
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### familySync
|
|
64
|
+
|
|
65
|
+
```ts
|
|
66
|
+
function familySync(): string | null;
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Synchronous version of `family()`.
|
|
70
|
+
|
|
71
|
+
```js
|
|
72
|
+
const { familySync, GLIBC, MUSL } = require('detect-libc');
|
|
73
|
+
|
|
74
|
+
switch (familySync()) {
|
|
75
|
+
case GLIBC: ...
|
|
76
|
+
case MUSL: ...
|
|
77
|
+
case null: ...
|
|
78
|
+
}
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### version
|
|
82
|
+
|
|
83
|
+
```ts
|
|
84
|
+
function version(): Promise<string | null>;
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Resolves asychronously with:
|
|
88
|
+
|
|
89
|
+
* The version when it can be determined
|
|
90
|
+
* `null` when the libc family cannot be determined
|
|
91
|
+
* `null` when run on a non-Linux platform
|
|
92
|
+
|
|
93
|
+
```js
|
|
94
|
+
const { version } = require('detect-libc');
|
|
95
|
+
|
|
96
|
+
const v = await version();
|
|
97
|
+
if (v) {
|
|
98
|
+
const [major, minor, patch] = v.split('.');
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### versionSync
|
|
103
|
+
|
|
104
|
+
```ts
|
|
105
|
+
function versionSync(): string | null;
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Synchronous version of `version()`.
|
|
109
|
+
|
|
110
|
+
```js
|
|
111
|
+
const { versionSync } = require('detect-libc');
|
|
112
|
+
|
|
113
|
+
const v = versionSync();
|
|
114
|
+
if (v) {
|
|
115
|
+
const [major, minor, patch] = v.split('.');
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### isNonGlibcLinux
|
|
120
|
+
|
|
121
|
+
```ts
|
|
122
|
+
function isNonGlibcLinux(): Promise<boolean>;
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Resolves asychronously with:
|
|
126
|
+
|
|
127
|
+
* `false` when the libc family is `glibc`
|
|
128
|
+
* `true` when the libc family is not `glibc`
|
|
129
|
+
* `false` when run on a non-Linux platform
|
|
130
|
+
|
|
131
|
+
```js
|
|
132
|
+
const { isNonGlibcLinux } = require('detect-libc');
|
|
133
|
+
|
|
134
|
+
if (await isNonGlibcLinux()) { ... }
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### isNonGlibcLinuxSync
|
|
138
|
+
|
|
139
|
+
```ts
|
|
140
|
+
function isNonGlibcLinuxSync(): boolean;
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Synchronous version of `isNonGlibcLinux()`.
|
|
144
|
+
|
|
145
|
+
```js
|
|
146
|
+
const { isNonGlibcLinuxSync } = require('detect-libc');
|
|
147
|
+
|
|
148
|
+
if (isNonGlibcLinuxSync()) { ... }
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
## Licensing
|
|
152
|
+
|
|
153
|
+
Copyright 2017 Lovell Fuller and others.
|
|
154
|
+
|
|
155
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
156
|
+
you may not use this file except in compliance with the License.
|
|
157
|
+
You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
|
|
158
|
+
|
|
159
|
+
Unless required by applicable law or agreed to in writing, software
|
|
160
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
161
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
162
|
+
See the License for the specific language governing permissions and
|
|
163
|
+
limitations under the License.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Copyright 2017 Lovell Fuller and others.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
export const GLIBC: 'glibc';
|
|
5
|
+
export const MUSL: 'musl';
|
|
6
|
+
|
|
7
|
+
export function family(): Promise<string | null>;
|
|
8
|
+
export function familySync(): string | null;
|
|
9
|
+
|
|
10
|
+
export function isNonGlibcLinux(): Promise<boolean>;
|
|
11
|
+
export function isNonGlibcLinuxSync(): boolean;
|
|
12
|
+
|
|
13
|
+
export function version(): Promise<string | null>;
|
|
14
|
+
export function versionSync(): string | null;
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
// Copyright 2017 Lovell Fuller and others.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
const childProcess = require('child_process');
|
|
7
|
+
const { isLinux, getReport } = require('./process');
|
|
8
|
+
const { LDD_PATH, SELF_PATH, readFile, readFileSync } = require('./filesystem');
|
|
9
|
+
const { interpreterPath } = require('./elf');
|
|
10
|
+
|
|
11
|
+
let cachedFamilyInterpreter;
|
|
12
|
+
let cachedFamilyFilesystem;
|
|
13
|
+
let cachedVersionFilesystem;
|
|
14
|
+
|
|
15
|
+
const command = 'getconf GNU_LIBC_VERSION 2>&1 || true; ldd --version 2>&1 || true';
|
|
16
|
+
let commandOut = '';
|
|
17
|
+
|
|
18
|
+
const safeCommand = () => {
|
|
19
|
+
if (!commandOut) {
|
|
20
|
+
return new Promise((resolve) => {
|
|
21
|
+
childProcess.exec(command, (err, out) => {
|
|
22
|
+
commandOut = err ? ' ' : out;
|
|
23
|
+
resolve(commandOut);
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return commandOut;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const safeCommandSync = () => {
|
|
31
|
+
if (!commandOut) {
|
|
32
|
+
try {
|
|
33
|
+
commandOut = childProcess.execSync(command, { encoding: 'utf8' });
|
|
34
|
+
} catch (_err) {
|
|
35
|
+
commandOut = ' ';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
return commandOut;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* A String constant containing the value `glibc`.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
const GLIBC = 'glibc';
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* A Regexp constant to get the GLIBC Version.
|
|
50
|
+
* @type {string}
|
|
51
|
+
*/
|
|
52
|
+
const RE_GLIBC_VERSION = /LIBC[a-z0-9 \-).]*?(\d+\.\d+)/i;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* A String constant containing the value `musl`.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
const MUSL = 'musl';
|
|
60
|
+
|
|
61
|
+
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-');
|
|
62
|
+
|
|
63
|
+
const familyFromReport = () => {
|
|
64
|
+
const report = getReport();
|
|
65
|
+
if (report.header && report.header.glibcVersionRuntime) {
|
|
66
|
+
return GLIBC;
|
|
67
|
+
}
|
|
68
|
+
if (Array.isArray(report.sharedObjects)) {
|
|
69
|
+
if (report.sharedObjects.some(isFileMusl)) {
|
|
70
|
+
return MUSL;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
return null;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
const familyFromCommand = (out) => {
|
|
77
|
+
const [getconf, ldd1] = out.split(/[\r\n]+/);
|
|
78
|
+
if (getconf && getconf.includes(GLIBC)) {
|
|
79
|
+
return GLIBC;
|
|
80
|
+
}
|
|
81
|
+
if (ldd1 && ldd1.includes(MUSL)) {
|
|
82
|
+
return MUSL;
|
|
83
|
+
}
|
|
84
|
+
return null;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
const familyFromInterpreterPath = (path) => {
|
|
88
|
+
if (path) {
|
|
89
|
+
if (path.includes('/ld-musl-')) {
|
|
90
|
+
return MUSL;
|
|
91
|
+
} else if (path.includes('/ld-linux-')) {
|
|
92
|
+
return GLIBC;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
return null;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
const getFamilyFromLddContent = (content) => {
|
|
99
|
+
content = content.toString();
|
|
100
|
+
if (content.includes('musl')) {
|
|
101
|
+
return MUSL;
|
|
102
|
+
}
|
|
103
|
+
if (content.includes('GNU C Library')) {
|
|
104
|
+
return GLIBC;
|
|
105
|
+
}
|
|
106
|
+
return null;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
const familyFromFilesystem = async () => {
|
|
110
|
+
if (cachedFamilyFilesystem !== undefined) {
|
|
111
|
+
return cachedFamilyFilesystem;
|
|
112
|
+
}
|
|
113
|
+
cachedFamilyFilesystem = null;
|
|
114
|
+
try {
|
|
115
|
+
const lddContent = await readFile(LDD_PATH);
|
|
116
|
+
cachedFamilyFilesystem = getFamilyFromLddContent(lddContent);
|
|
117
|
+
} catch (e) {}
|
|
118
|
+
return cachedFamilyFilesystem;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
const familyFromFilesystemSync = () => {
|
|
122
|
+
if (cachedFamilyFilesystem !== undefined) {
|
|
123
|
+
return cachedFamilyFilesystem;
|
|
124
|
+
}
|
|
125
|
+
cachedFamilyFilesystem = null;
|
|
126
|
+
try {
|
|
127
|
+
const lddContent = readFileSync(LDD_PATH);
|
|
128
|
+
cachedFamilyFilesystem = getFamilyFromLddContent(lddContent);
|
|
129
|
+
} catch (e) {}
|
|
130
|
+
return cachedFamilyFilesystem;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
const familyFromInterpreter = async () => {
|
|
134
|
+
if (cachedFamilyInterpreter !== undefined) {
|
|
135
|
+
return cachedFamilyInterpreter;
|
|
136
|
+
}
|
|
137
|
+
cachedFamilyInterpreter = null;
|
|
138
|
+
try {
|
|
139
|
+
const selfContent = await readFile(SELF_PATH);
|
|
140
|
+
const path = interpreterPath(selfContent);
|
|
141
|
+
cachedFamilyInterpreter = familyFromInterpreterPath(path);
|
|
142
|
+
} catch (e) {}
|
|
143
|
+
return cachedFamilyInterpreter;
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
const familyFromInterpreterSync = () => {
|
|
147
|
+
if (cachedFamilyInterpreter !== undefined) {
|
|
148
|
+
return cachedFamilyInterpreter;
|
|
149
|
+
}
|
|
150
|
+
cachedFamilyInterpreter = null;
|
|
151
|
+
try {
|
|
152
|
+
const selfContent = readFileSync(SELF_PATH);
|
|
153
|
+
const path = interpreterPath(selfContent);
|
|
154
|
+
cachedFamilyInterpreter = familyFromInterpreterPath(path);
|
|
155
|
+
} catch (e) {}
|
|
156
|
+
return cachedFamilyInterpreter;
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* Resolves with the libc family when it can be determined, `null` otherwise.
|
|
161
|
+
* @returns {Promise<?string>}
|
|
162
|
+
*/
|
|
163
|
+
const family = async () => {
|
|
164
|
+
let family = null;
|
|
165
|
+
if (isLinux()) {
|
|
166
|
+
family = await familyFromInterpreter();
|
|
167
|
+
if (!family) {
|
|
168
|
+
family = await familyFromFilesystem();
|
|
169
|
+
if (!family) {
|
|
170
|
+
family = familyFromReport();
|
|
171
|
+
}
|
|
172
|
+
if (!family) {
|
|
173
|
+
const out = await safeCommand();
|
|
174
|
+
family = familyFromCommand(out);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return family;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Returns the libc family when it can be determined, `null` otherwise.
|
|
183
|
+
* @returns {?string}
|
|
184
|
+
*/
|
|
185
|
+
const familySync = () => {
|
|
186
|
+
let family = null;
|
|
187
|
+
if (isLinux()) {
|
|
188
|
+
family = familyFromInterpreterSync();
|
|
189
|
+
if (!family) {
|
|
190
|
+
family = familyFromFilesystemSync();
|
|
191
|
+
if (!family) {
|
|
192
|
+
family = familyFromReport();
|
|
193
|
+
}
|
|
194
|
+
if (!family) {
|
|
195
|
+
const out = safeCommandSync();
|
|
196
|
+
family = familyFromCommand(out);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
return family;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Resolves `true` only when the platform is Linux and the libc family is not `glibc`.
|
|
205
|
+
* @returns {Promise<boolean>}
|
|
206
|
+
*/
|
|
207
|
+
const isNonGlibcLinux = async () => isLinux() && await family() !== GLIBC;
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Returns `true` only when the platform is Linux and the libc family is not `glibc`.
|
|
211
|
+
* @returns {boolean}
|
|
212
|
+
*/
|
|
213
|
+
const isNonGlibcLinuxSync = () => isLinux() && familySync() !== GLIBC;
|
|
214
|
+
|
|
215
|
+
const versionFromFilesystem = async () => {
|
|
216
|
+
if (cachedVersionFilesystem !== undefined) {
|
|
217
|
+
return cachedVersionFilesystem;
|
|
218
|
+
}
|
|
219
|
+
cachedVersionFilesystem = null;
|
|
220
|
+
try {
|
|
221
|
+
const lddContent = await readFile(LDD_PATH);
|
|
222
|
+
const versionMatch = lddContent.match(RE_GLIBC_VERSION);
|
|
223
|
+
if (versionMatch) {
|
|
224
|
+
cachedVersionFilesystem = versionMatch[1];
|
|
225
|
+
}
|
|
226
|
+
} catch (e) {}
|
|
227
|
+
return cachedVersionFilesystem;
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
const versionFromFilesystemSync = () => {
|
|
231
|
+
if (cachedVersionFilesystem !== undefined) {
|
|
232
|
+
return cachedVersionFilesystem;
|
|
233
|
+
}
|
|
234
|
+
cachedVersionFilesystem = null;
|
|
235
|
+
try {
|
|
236
|
+
const lddContent = readFileSync(LDD_PATH);
|
|
237
|
+
const versionMatch = lddContent.match(RE_GLIBC_VERSION);
|
|
238
|
+
if (versionMatch) {
|
|
239
|
+
cachedVersionFilesystem = versionMatch[1];
|
|
240
|
+
}
|
|
241
|
+
} catch (e) {}
|
|
242
|
+
return cachedVersionFilesystem;
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
const versionFromReport = () => {
|
|
246
|
+
const report = getReport();
|
|
247
|
+
if (report.header && report.header.glibcVersionRuntime) {
|
|
248
|
+
return report.header.glibcVersionRuntime;
|
|
249
|
+
}
|
|
250
|
+
return null;
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
const versionSuffix = (s) => s.trim().split(/\s+/)[1];
|
|
254
|
+
|
|
255
|
+
const versionFromCommand = (out) => {
|
|
256
|
+
const [getconf, ldd1, ldd2] = out.split(/[\r\n]+/);
|
|
257
|
+
if (getconf && getconf.includes(GLIBC)) {
|
|
258
|
+
return versionSuffix(getconf);
|
|
259
|
+
}
|
|
260
|
+
if (ldd1 && ldd2 && ldd1.includes(MUSL)) {
|
|
261
|
+
return versionSuffix(ldd2);
|
|
262
|
+
}
|
|
263
|
+
return null;
|
|
264
|
+
};
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Resolves with the libc version when it can be determined, `null` otherwise.
|
|
268
|
+
* @returns {Promise<?string>}
|
|
269
|
+
*/
|
|
270
|
+
const version = async () => {
|
|
271
|
+
let version = null;
|
|
272
|
+
if (isLinux()) {
|
|
273
|
+
version = await versionFromFilesystem();
|
|
274
|
+
if (!version) {
|
|
275
|
+
version = versionFromReport();
|
|
276
|
+
}
|
|
277
|
+
if (!version) {
|
|
278
|
+
const out = await safeCommand();
|
|
279
|
+
version = versionFromCommand(out);
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
return version;
|
|
283
|
+
};
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Returns the libc version when it can be determined, `null` otherwise.
|
|
287
|
+
* @returns {?string}
|
|
288
|
+
*/
|
|
289
|
+
const versionSync = () => {
|
|
290
|
+
let version = null;
|
|
291
|
+
if (isLinux()) {
|
|
292
|
+
version = versionFromFilesystemSync();
|
|
293
|
+
if (!version) {
|
|
294
|
+
version = versionFromReport();
|
|
295
|
+
}
|
|
296
|
+
if (!version) {
|
|
297
|
+
const out = safeCommandSync();
|
|
298
|
+
version = versionFromCommand(out);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
return version;
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
module.exports = {
|
|
305
|
+
GLIBC,
|
|
306
|
+
MUSL,
|
|
307
|
+
family,
|
|
308
|
+
familySync,
|
|
309
|
+
isNonGlibcLinux,
|
|
310
|
+
isNonGlibcLinuxSync,
|
|
311
|
+
version,
|
|
312
|
+
versionSync
|
|
313
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Copyright 2017 Lovell Fuller and others.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
const interpreterPath = (elf) => {
|
|
7
|
+
if (elf.length < 64) {
|
|
8
|
+
return null;
|
|
9
|
+
}
|
|
10
|
+
if (elf.readUInt32BE(0) !== 0x7F454C46) {
|
|
11
|
+
// Unexpected magic bytes
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
if (elf.readUInt8(4) !== 2) {
|
|
15
|
+
// Not a 64-bit ELF
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
if (elf.readUInt8(5) !== 1) {
|
|
19
|
+
// Not little-endian
|
|
20
|
+
return null;
|
|
21
|
+
}
|
|
22
|
+
const offset = elf.readUInt32LE(32);
|
|
23
|
+
const size = elf.readUInt16LE(54);
|
|
24
|
+
const count = elf.readUInt16LE(56);
|
|
25
|
+
for (let i = 0; i < count; i++) {
|
|
26
|
+
const headerOffset = offset + (i * size);
|
|
27
|
+
const type = elf.readUInt32LE(headerOffset);
|
|
28
|
+
if (type === 3) {
|
|
29
|
+
const fileOffset = elf.readUInt32LE(headerOffset + 8);
|
|
30
|
+
const fileSize = elf.readUInt32LE(headerOffset + 32);
|
|
31
|
+
return elf.subarray(fileOffset, fileOffset + fileSize).toString().replace(/\0.*$/g, '');
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return null;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
module.exports = {
|
|
38
|
+
interpreterPath
|
|
39
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// Copyright 2017 Lovell Fuller and others.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
const fs = require('fs');
|
|
7
|
+
|
|
8
|
+
const LDD_PATH = '/usr/bin/ldd';
|
|
9
|
+
const SELF_PATH = '/proc/self/exe';
|
|
10
|
+
const MAX_LENGTH = 2048;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Read the content of a file synchronous
|
|
14
|
+
*
|
|
15
|
+
* @param {string} path
|
|
16
|
+
* @returns {Buffer}
|
|
17
|
+
*/
|
|
18
|
+
const readFileSync = (path) => {
|
|
19
|
+
const fd = fs.openSync(path, 'r');
|
|
20
|
+
const buffer = Buffer.alloc(MAX_LENGTH);
|
|
21
|
+
const bytesRead = fs.readSync(fd, buffer, 0, MAX_LENGTH, 0);
|
|
22
|
+
fs.close(fd, () => {});
|
|
23
|
+
return buffer.subarray(0, bytesRead);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Read the content of a file
|
|
28
|
+
*
|
|
29
|
+
* @param {string} path
|
|
30
|
+
* @returns {Promise<Buffer>}
|
|
31
|
+
*/
|
|
32
|
+
const readFile = (path) => new Promise((resolve, reject) => {
|
|
33
|
+
fs.open(path, 'r', (err, fd) => {
|
|
34
|
+
if (err) {
|
|
35
|
+
reject(err);
|
|
36
|
+
} else {
|
|
37
|
+
const buffer = Buffer.alloc(MAX_LENGTH);
|
|
38
|
+
fs.read(fd, buffer, 0, MAX_LENGTH, 0, (_, bytesRead) => {
|
|
39
|
+
resolve(buffer.subarray(0, bytesRead));
|
|
40
|
+
fs.close(fd, () => {});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
module.exports = {
|
|
47
|
+
LDD_PATH,
|
|
48
|
+
SELF_PATH,
|
|
49
|
+
readFileSync,
|
|
50
|
+
readFile
|
|
51
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Copyright 2017 Lovell Fuller and others.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
|
|
4
|
+
'use strict';
|
|
5
|
+
|
|
6
|
+
const isLinux = () => process.platform === 'linux';
|
|
7
|
+
|
|
8
|
+
let report = null;
|
|
9
|
+
const getReport = () => {
|
|
10
|
+
if (!report) {
|
|
11
|
+
/* istanbul ignore next */
|
|
12
|
+
if (isLinux() && process.report) {
|
|
13
|
+
const orig = process.report.excludeNetwork;
|
|
14
|
+
process.report.excludeNetwork = true;
|
|
15
|
+
report = process.report.getReport();
|
|
16
|
+
process.report.excludeNetwork = orig;
|
|
17
|
+
} else {
|
|
18
|
+
report = {};
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return report;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
module.exports = { isLinux, getReport };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "detect-libc",
|
|
3
|
+
"version": "2.1.2",
|
|
4
|
+
"description": "Node.js module to detect the C standard library (libc) implementation family and version",
|
|
5
|
+
"main": "lib/detect-libc.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"lib/",
|
|
8
|
+
"index.d.ts"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "semistandard && nyc --reporter=text --check-coverage --branches=100 ava test/unit.js",
|
|
12
|
+
"changelog": "conventional-changelog -i CHANGELOG.md -s",
|
|
13
|
+
"bench": "node benchmark/detect-libc",
|
|
14
|
+
"bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git://github.com/lovell/detect-libc.git"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"libc",
|
|
22
|
+
"glibc",
|
|
23
|
+
"musl"
|
|
24
|
+
],
|
|
25
|
+
"author": "Lovell Fuller <npm@lovell.info>",
|
|
26
|
+
"contributors": [
|
|
27
|
+
"Niklas Salmoukas <niklas@salmoukas.com>",
|
|
28
|
+
"Vinícius Lourenço <vinyygamerlol@gmail.com>"
|
|
29
|
+
],
|
|
30
|
+
"license": "Apache-2.0",
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"ava": "^2.4.0",
|
|
33
|
+
"benchmark": "^2.1.4",
|
|
34
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
35
|
+
"eslint-config-standard": "^13.0.1",
|
|
36
|
+
"nyc": "^15.1.0",
|
|
37
|
+
"proxyquire": "^2.1.3",
|
|
38
|
+
"semistandard": "^14.2.3"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=8"
|
|
42
|
+
},
|
|
43
|
+
"types": "index.d.ts"
|
|
44
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Kris Zyp
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|