1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
if (typeof Components !== "undefined") {
/* global OS */
Cc["@mozilla.org/net/osfileconstantsservice;1"]
.getService(Ci.nsIOSFileConstantsService)
.init();
}
/* exported LIBC, libc */
// ctypes is either already available in the chrome worker scope, or defined
// in scope via loadSubScript.
/* global ctypes */
// This file is loaded into the same scope as subprocess_shared.js.
/* import-globals-from subprocess_shared.js */
var LIBC = OS.Constants.libc;
const LIBC_CHOICES = ["libc.so", "libSystem.B.dylib", "a.out"];
const unix = {
pid_t: ctypes.int32_t,
pollfd: new ctypes.StructType("pollfd", [
{ fd: ctypes.int },
{ events: ctypes.short },
{ revents: ctypes.short },
]),
WEXITSTATUS(status) {
return (status >> 8) & 0xff;
},
WTERMSIG(status) {
return status & 0x7f;
},
};
var libc = new Library("libc", LIBC_CHOICES, {
environ: [ctypes.char.ptr.ptr],
// Darwin-only.
_NSGetEnviron: [ctypes.default_abi, ctypes.char.ptr.ptr.ptr],
setenv: [
ctypes.default_abi,
ctypes.int,
ctypes.char.ptr,
ctypes.char.ptr,
ctypes.int,
],
chdir: [ctypes.default_abi, ctypes.int, ctypes.char.ptr /* path */],
close: [ctypes.default_abi, ctypes.int, ctypes.int /* fildes */],
fcntl: [
ctypes.default_abi,
ctypes.int,
ctypes.int /* fildes */,
ctypes.int /* cmd */,
ctypes.int /* ... */,
],
getcwd: [
ctypes.default_abi,
ctypes.char.ptr,
ctypes.char.ptr /* buf */,
ctypes.size_t /* size */,
],
kill: [
ctypes.default_abi,
ctypes.int,
unix.pid_t /* pid */,
ctypes.int /* signal */,
],
pipe: [ctypes.default_abi, ctypes.int, ctypes.int.array(2) /* pipefd */],
poll: [
ctypes.default_abi,
ctypes.int,
unix.pollfd.array() /* fds */,
ctypes.unsigned_int /* nfds */,
ctypes.int /* timeout */,
],
read: [
ctypes.default_abi,
ctypes.ssize_t,
ctypes.int /* fildes */,
ctypes.char.ptr /* buf */,
ctypes.size_t /* nbyte */,
],
waitpid: [
ctypes.default_abi,
unix.pid_t,
unix.pid_t /* pid */,
ctypes.int.ptr /* status */,
ctypes.int /* options */,
],
write: [
ctypes.default_abi,
ctypes.ssize_t,
ctypes.int /* fildes */,
ctypes.char.ptr /* buf */,
ctypes.size_t /* nbyte */,
],
});
unix.Fd = function (fd) {
return ctypes.CDataFinalizer(ctypes.int(fd), libc.close);
};
|