d25d32db
Göran Krampe
Fixed README
|
1
|
# SqueakNim - Squeak and Nim interop via FFI
|
70473583
Göran Krampe
First sample and ...
|
2
|
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
3
4
5
|
Nim can produce dynamically loaded libraries that follow the C conventions.
Squeak/Pharo has over the years developed several FFI mechanisms, and we can
also make VM plugins, but for now this code uses the old "true and tested"
|
d25d32db
Göran Krampe
Fixed README
|
6
|
Squeak FFI.
|
70473583
Göran Krampe
First sample and ...
|
7
|
|
d25d32db
Göran Krampe
Fixed README
|
8
|
## How to use it
|
70473583
Göran Krampe
First sample and ...
|
9
|
|
d25d32db
Göran Krampe
Fixed README
|
10
11
12
|
You write a Nim module and use some macros to generate a .st file on the side
containing the Smalltalk glue code. When you compile the Nim code the .st file
is automatically generated. You then file that into the image.
|
70473583
Göran Krampe
First sample and ...
|
13
|
|
2d42c9d5
Göran Krampe
Fixed README
|
14
15
|
See full example in tests directory.
|
70473583
Göran Krampe
First sample and ...
|
16
17
|
## Squeak FFI
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
18
19
|
What follows is a text written by Sean DeNigris describing the FFI. You can
also see the code in the client image of course, with tests and class comments
|
d25d32db
Göran Krampe
Fixed README
|
20
|
etc.
|
70473583
Göran Krampe
First sample and ...
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
## How does FFI work?
Technically what happens is:
* you define what the interface is - the parameters, types etc.
* when you make the call, the FFI logic assembles the data from the Squeak
Objects into the proper structures according to the routine calling
conventions for your architecture, and of course manages the return values.
So no magic but perhaps just a little assembler in the plugin to properly
deal with all the registers and condition flags.
How do I use it?
1. make a method (whose structure is similar to a named primitive method)
Example:
```
|
24d7cba1
Göran Krampe
Fixing README
|
40
|
system: aString
|
70473583
Göran Krampe
First sample and ...
|
41
42
43
44
45
46
|
"Some kind of comment"
<apicall: long 'system' (char*) module: 'libSystem.dylib'>
^self externalCallFailed.
```
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
47
48
49
50
51
52
53
|
`system: aString` above is the Smalltalk signature. Each named parameter is
separated with a keyword. Smalltalk messages are normally camelCase, so if
a nim proc was called `drink(bottles: int, brand: string)` then we could
typically turn that into `drinkBottles: bottles brand: brand`. The unique
(per class) so called `selector` (=name) of such a method in Smalltalk would
be `drinkBottles:brand:`. Thus Nim overloading would not work (but we don't
need that here).
|
70473583
Göran Krampe
First sample and ...
|
54
55
56
57
58
59
|
Then comes the so called pragma that describes the C function to call:
```
<apicall: long 'system' (char*) module: 'libSystem.dylib'>
```
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
60
61
|
Function specification should be the first line in the method and enclosed in
angle brackets: < > containing:
|
24d7cba1
Göran Krampe
Fixing README
|
62
63
64
65
66
67
68
69
|
1. Calling Convention, either apicall: (Pascal convention) or cdecl: (C convention)
- Mac - use either one
- Unix - use cdecl
- Windows - use apical
2. Return Type (see types)
3. External Function Name (literal string)
4. Argument Types (a literal array)
5. Module - "module: " + [filename of the external library (literal string)] (see below).
|
70473583
Göran Krampe
First sample and ...
|
70
71
72
73
74
|
```
^self externalCallFailed.
```
|
24d7cba1
Göran Krampe
Fixing README
|
75
|
Failure handler:
|
70473583
Göran Krampe
First sample and ...
|
76
|
|
24d7cba1
Göran Krampe
Fixing README
|
77
78
79
80
81
82
83
|
* normal smalltalk code
* executed if the linking to or calling the external function fails
* API calls don't know how to communicate failure like Squeak primitives do, so:
* it does not tell you whether the external function succeeded
* the most common code is simply '^self externalCallFailed.'
Argument Types must be names of ExternalTypes, either:
|
70473583
Göran Krampe
First sample and ...
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
- atomic types (see ExternalType class>>initializeFFIConstants and ExternalType class>>initializeAtomicTypes):
void
bool
byte (unsigned)
sbyte (signed)
ushort (16-bit unsigned)
short (16-bit signed)
ulong (32-bit unsigned)
long (32-bit signed)
ulonglong (64-bit unsigned)
longlong (64-bit signed)
char (unsigned)
schar (signed)
float (single-precision float)
double (double-precision float)
Structure Types [4]
|
24d7cba1
Göran Krampe
Fixing README
|
101
102
103
104
105
106
|
* subclass of ExternalStructure
* class>>fields that returns an array of field descriptions (see below), example:
fields
^#((red 'byte')(green 'byte')(blue 'byte'))
* class>>initialize which includes "self defineFields" (which must be called before using the class)
* refer to as MyExternalStructure* (to indicate that the argument or return is a pointer to that structure)
|
70473583
Göran Krampe
First sample and ...
|
107
108
|
Field description [4]
|
24d7cba1
Göran Krampe
Fixing README
|
109
110
111
|
* 2-element array (or three but that does something else, I'm not sure what):
* first element is the field name
* second is the type
|
70473583
Göran Krampe
First sample and ...
|
112
113
114
115
116
117
118
119
120
121
122
|
Module Name
- depends on the platform
- Mac
- pre Snow Leopard: flexible, can eliminate leading lib or extension e.g. 'libc.dylib' becomes 'libc', 'c.dylib', or 'c'
- Snow Leopard
- file name must be exact including extension (unless Info.plist is altered as in 'Library Location' below)
- With pre-mach-o VMs
- For Classic applications, use 'InterfaceLib'
- For Carbon libs, use 'CarbonLib'
|
24d7cba1
Göran Krampe
Fixing README
|
123
124
125
126
127
128
129
130
131
132
|
Module Location, where the external library file lives
- depends on the platform
- Mac
- pre Snow Leopard
- checks VM path and common library paths
- Snow Leopard
- only looks in VM bundle's Resources file, you must either [5]:
- store all external libraries there
- ln -s path/to/library path/to/VM/Resources/library_name
- Change the VM's Info.plist "SqueakPluginsBuiltInOrLocalOnly" key from "true" to "false."
|
70473583
Göran Krampe
First sample and ...
|
133
|
Caveats
|
24d7cba1
Göran Krampe
Fixing README
|
134
|
- security
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
135
136
|
- malicious users could call arbitrary functions in the OS e.g.
"format c:" from "system.dll" [7]
|
24d7cba1
Göran Krampe
Fixing README
|
137
138
139
|
- VMs do not protect against buffer overflow from bad parameters [8]:
"this would require an attacker to execute arbitrary Smalltalk
code on your server. Of course if they can do that they own you
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
140
141
|
anyway, especially if you allow FFi or use the OSProcess plugin"
- John McIntosh
|
70473583
Göran Krampe
First sample and ...
|
142
143
|
* difficulty
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
144
145
146
147
|
- if you make a mistake you'll not drop into the debugger but Squeak
will just crash [2]
- If you crash Squeak when it is running the garbage collector, then
you know your FFI code is leaking bits into object memory [2]
|
70473583
Göran Krampe
First sample and ...
|
148
149
150
151
152
153
154
155
156
157
158
159
160
|
What do I need to use FFI with Squeak?
You need the FFI plugin, which is included with most VM's as of Squeak 3.6
or so.
You can also build the plugin yourself. See VMMaker.
References:
[1] http://wiki.squeak.org/squeak/1414
[2] http://wiki.squeak.org/squeak/2424
[3] http://wiki.squeak.org/squeak/5716
[4] http://wiki.squeak.org/squeak/2426
|
f149dc12
Andreas Rumpf
first somewhat wo...
|
161
|
[5] http://forum.world.st/squeak-dev-Alien-Squeak-FFI-issues-on-Snow-Leopard-td85608.html
|
70473583
Göran Krampe
First sample and ...
|
162
163
164
|
[6] http://wiki.squeak.org/squeak/5846
[7] http://forum.world.st/FFI-Callbacks-td54056.html#a54073
[8] http://forum.world.st/Security-td99624.html#a99635:
|