sandboxedjs 0.1.65 → 0.1.67

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.
Binary file
@@ -18,9 +18,9 @@
18
18
  "artifacts": {
19
19
  "moduleUrl": "./python.js",
20
20
  "hashes": {
21
- "python.js": "sha256-8aa6c9dc836a51372d8b90c751022ddbf07ddd17414d3e5b061ba7badbf0a8af",
22
- "python.wasm": "sha256-5295ddb8307d328d0c06ebbd6deb4b1ea9c165a913efb3c76eca9bcd502a1ebb",
23
- "python.data": "sha256-ff88d80cf4e210c9f8963a5f1a134ddeaa5a1f14c699075ee668fb844c553144",
21
+ "python.js": "sha256-114d024dc91e6795c7e89a8828e7c4e236a2667c21e8055232913f122cdb0a2f",
22
+ "python.wasm": "sha256-3e16bdb125a90e6fdb9ba0968ea4bd1b2763deec11b8d2d8582ebcbe5e7037ee",
23
+ "python.data": "sha256-2c7635b24b5026667f02872a9cf83d13e6d3260a9bb3a3058a1603ca635e7c4b",
24
24
  "python.worker.js": "sha256-63bb1df52c4e3a95eae7b2d77c98554188fcc5925e72628ea0c34d5c573977a5"
25
25
  }
26
26
  },
@@ -86,6 +86,7 @@ var Errno = {
86
86
  ELOOP: 40,
87
87
  ENODATA: 61,
88
88
  ENOTSOCK: 88,
89
+ EPROTONOSUPPORT: 93,
89
90
  EAFNOSUPPORT: 97,
90
91
  EADDRINUSE: 98,
91
92
  EADDRNOTAVAIL: 99,
@@ -1269,6 +1270,12 @@ var SocketDescription = class _SocketDescription {
1269
1270
 
1270
1271
  // src/runtime/python/syscall-server.ts
1271
1272
  var MAX_TRANSFER = 8 * 1024 * 1024;
1273
+ var POLLIN = 1;
1274
+ var POLLOUT = 4;
1275
+ var POLLHUP = 16;
1276
+ var AF_INET = 2;
1277
+ var SOCK_STREAM = 1;
1278
+ var IPPROTO_TCP = 6;
1272
1279
  function createHostAbiServer(proc) {
1273
1280
  const files = new FileService(proc.vfs, proc.cred);
1274
1281
  const started = Date.now();
@@ -1518,7 +1525,8 @@ function createHostAbiServer(proc) {
1518
1525
  const family = r.u32();
1519
1526
  const type = r.u32();
1520
1527
  const protocol = r.i32();
1521
- if (family !== 2 || (type & 15) !== 1 || protocol !== 0) throw new PosixError(Errno.EAFNOSUPPORT);
1528
+ if (family !== AF_INET || (type & 15) !== SOCK_STREAM) throw new PosixError(Errno.EAFNOSUPPORT);
1529
+ if (protocol !== 0 && protocol !== IPPROTO_TCP) throw new PosixError(Errno.EPROTONOSUPPORT);
1522
1530
  if (!proc.sockets) throw new PosixError(Errno.ENOSYS);
1523
1531
  return { status: proc.table.add(new SocketDescription(new VirtualTcpSocket(proc.sockets))) };
1524
1532
  }
@@ -1631,9 +1639,6 @@ function createHostAbiServer(proc) {
1631
1639
  if (proc.signal.aborted) throw new PosixError(Errno.EINTR);
1632
1640
  }
1633
1641
  }
1634
- const POLLIN = 1;
1635
- const POLLOUT = 4;
1636
- const POLLHUP = 16;
1637
1642
  async function poll(requests, timeoutMs) {
1638
1643
  const deadline = timeoutMs < 0 ? Infinity : Date.now() + timeoutMs;
1639
1644
  for (; ; ) {