unsafe 0.1.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +33 -37
- data/Rakefile +4 -1
- data/ext/unsafe/unsafe.c +19 -0
- data/lib/unsafe/version.rb +1 -1
- data/lib/unsafe.rb +19 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cec5fa74547da5f4ce7a8e1fd42719076270bd0941aae521bf5c649eeee5f9e1
|
4
|
+
data.tar.gz: 3740e000a56441dc9bfaa414e88b0aff9424e7e1d95b4a53ffbda213384f79bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b487956c7c148d05a61ef80d2097b4f62e74946405fe84f15fb3c674f3fd48fcf0baa35aeaedf04ec85900e53ccd0e520e149988c5d0d5c7d8e10ad0d340fe15
|
7
|
+
data.tar.gz: 2cd9e9fda96f20a0b2340da12fbcc774034f20b5295ab89cf273707f59f32f52921667ad75eefd87a873beec1b236eac36fd6a5c6b8760f70d969ae8c77277c3
|
data/README.md
CHANGED
@@ -1,39 +1,35 @@
|
|
1
1
|
# Unsafe
|
2
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
|
-
## Code of Conduct
|
38
|
-
|
39
|
-
Everyone interacting in the Unsafe project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jhawthorn/unsafe/blob/main/CODE_OF_CONDUCT.md).
|
3
|
+
Have you ever been annoyed that Ruby prevents you from accessing out of bounds elements from Strings or Arrays?
|
4
|
+
|
5
|
+
`unsafe` unlocks the full potential of your Ruby programs by allowing accessing and modifying out of bounds memory!
|
6
|
+
|
7
|
+
```
|
8
|
+
$ gem i unsafe
|
9
|
+
$ irb
|
10
|
+
>> require "unsafe"
|
11
|
+
>> arr = [1,2,3]
|
12
|
+
=> [1, 2, 3]
|
13
|
+
>> unsafe { arr[1] }
|
14
|
+
=> 2
|
15
|
+
>> unsafe { arr[2] }
|
16
|
+
=> 3
|
17
|
+
>> unsafe { arr[3] }
|
18
|
+
=> 2.000000000000003
|
19
|
+
>> unsafe { arr[-1] }
|
20
|
+
=> Array
|
21
|
+
>> unsafe { arr[1000000000] }
|
22
|
+
[BUG] Segmentation fault at 0x00000002f89824d0
|
23
|
+
|
24
|
+
-- Crash Report log information --------------------------------------------
|
25
|
+
See Crash Report log file in one of the following locations:
|
26
|
+
```
|
27
|
+
|
28
|
+
```
|
29
|
+
>> str = "hello, world"
|
30
|
+
=> "hello, world"
|
31
|
+
>> unsafe { str[-8, 8] }.unpack1("Q")
|
32
|
+
=> 12
|
33
|
+
>> str.length
|
34
|
+
=> 12
|
35
|
+
```
|
data/Rakefile
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require "bundler/gem_tasks"
|
4
4
|
require "rake/extensiontask"
|
5
|
+
require "minitest/test_task"
|
5
6
|
|
6
7
|
task build: :compile
|
7
8
|
|
@@ -11,4 +12,6 @@ Rake::ExtensionTask.new("unsafe", GEMSPEC) do |ext|
|
|
11
12
|
ext.lib_dir = "lib/unsafe"
|
12
13
|
end
|
13
14
|
|
14
|
-
|
15
|
+
Minitest::TestTask.create
|
16
|
+
|
17
|
+
task default: %i[clobber compile test]
|
data/ext/unsafe/unsafe.c
CHANGED
@@ -6,10 +6,29 @@ VALUE array_aref(VALUE self, VALUE array, VALUE idx) {
|
|
6
6
|
return RARRAY_PTR(array)[FIX2LONG(idx)];
|
7
7
|
}
|
8
8
|
|
9
|
+
VALUE array_aset(VALUE self, VALUE array, VALUE idx, VALUE value) {
|
10
|
+
return RARRAY_PTR(array)[FIX2LONG(idx)] = value;
|
11
|
+
}
|
12
|
+
|
13
|
+
VALUE string_aref(int argc, VALUE *argv, VALUE self) {
|
14
|
+
long idx, len = 1;
|
15
|
+
if (argc == 3) {
|
16
|
+
len = NUM2INT(argv[2]);
|
17
|
+
} else {
|
18
|
+
rb_check_arity(argc, 2, 3);
|
19
|
+
}
|
20
|
+
VALUE string = argv[0];
|
21
|
+
idx = NUM2INT(argv[1]);
|
22
|
+
|
23
|
+
return rb_str_new(RSTRING_PTR(string) + idx, len);
|
24
|
+
}
|
25
|
+
|
9
26
|
RUBY_FUNC_EXPORTED void
|
10
27
|
Init_unsafe(void)
|
11
28
|
{
|
12
29
|
rb_mUnsafe = rb_define_module("Unsafe");
|
13
30
|
|
14
31
|
rb_define_singleton_method(rb_mUnsafe, "array_aref", array_aref, 2);
|
32
|
+
rb_define_singleton_method(rb_mUnsafe, "array_aset", array_aset, 3);
|
33
|
+
rb_define_singleton_method(rb_mUnsafe, "string_aref", string_aref, -1);
|
15
34
|
}
|
data/lib/unsafe/version.rb
CHANGED
data/lib/unsafe.rb
CHANGED
@@ -25,5 +25,24 @@ Module.new do
|
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
+
def []=(...)
|
29
|
+
if Thread.current[:__unsafe]
|
30
|
+
Unsafe.array_aset(self, ...)
|
31
|
+
else
|
32
|
+
super
|
33
|
+
end
|
34
|
+
end
|
28
35
|
Array.prepend self
|
29
36
|
end
|
37
|
+
|
38
|
+
Module.new do
|
39
|
+
def [](...)
|
40
|
+
if Thread.current[:__unsafe]
|
41
|
+
Unsafe.string_aref(self, ...)
|
42
|
+
else
|
43
|
+
super
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
String.prepend self
|
48
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unsafe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- John Hawthorn
|
8
|
-
autorequire:
|
7
|
+
- John "Danger" Hawthorn
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: unsafe {} blocks. Just like in Rust
|
14
13
|
email:
|
@@ -34,7 +33,6 @@ metadata:
|
|
34
33
|
homepage_uri: https://github.com/jhawthorn/unsafe
|
35
34
|
source_code_uri: https://github.com/jhawthorn/unsafe
|
36
35
|
changelog_uri: https://github.com/jhawthorn/unsafe
|
37
|
-
post_install_message:
|
38
36
|
rdoc_options: []
|
39
37
|
require_paths:
|
40
38
|
- lib
|
@@ -49,8 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
47
|
- !ruby/object:Gem::Version
|
50
48
|
version: '0'
|
51
49
|
requirements: []
|
52
|
-
rubygems_version: 3.
|
53
|
-
signing_key:
|
50
|
+
rubygems_version: 3.6.2
|
54
51
|
specification_version: 4
|
55
52
|
summary: unsafe {} blocks. Just like in Rust
|
56
53
|
test_files: []
|