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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3046df9216d3ed07a55828695525d493d12e7ff3c5e114ca124727d9e97a67e
4
- data.tar.gz: 28b1d67f0bebab2e8bd98b923f5d2b3a5e55b4bd486860a9143526653fddd463
3
+ metadata.gz: cec5fa74547da5f4ce7a8e1fd42719076270bd0941aae521bf5c649eeee5f9e1
4
+ data.tar.gz: 3740e000a56441dc9bfaa414e88b0aff9424e7e1d95b4a53ffbda213384f79bc
5
5
  SHA512:
6
- metadata.gz: e5eb3dc2cf9c3cf31b5feb317d0ec983502a2ddccef87f73a998cfe584e2a0d69b61d0025d765961f507da204206a0149cd8c47e0b97599dee6287f197e0a440
7
- data.tar.gz: a5ae1408d0f90691d3bbe471877c3e76645a23e5c5da68805e6b549b544a600620bce49b8deb6cf89a574ad7e85f1ea5879a390d2d78675dd3ba5a0a07853cfc
6
+ metadata.gz: b487956c7c148d05a61ef80d2097b4f62e74946405fe84f15fb3c674f3fd48fcf0baa35aeaedf04ec85900e53ccd0e520e149988c5d0d5c7d8e10ad0d340fe15
7
+ data.tar.gz: 2cd9e9fda96f20a0b2340da12fbcc774034f20b5295ab89cf273707f59f32f52921667ad75eefd87a873beec1b236eac36fd6a5c6b8760f70d969ae8c77277c3
data/README.md CHANGED
@@ -1,39 +1,35 @@
1
1
  # Unsafe
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/unsafe`. To experiment with that code, run `bin/console` for an interactive prompt.
6
-
7
- ## Installation
8
-
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
- Install the gem and add to the application's Gemfile by executing:
12
-
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
-
15
- If bundler is not being used to manage dependencies, install the gem by executing:
16
-
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Development
24
-
25
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
-
27
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
-
29
- ## Contributing
30
-
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/jhawthorn/unsafe. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jhawthorn/unsafe/blob/main/CODE_OF_CONDUCT.md).
32
-
33
- ## License
34
-
35
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
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
- task default: %i[clobber compile]
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
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Unsafe
4
- VERSION = "0.1.0"
4
+ VERSION = "1.0.0"
5
5
  end
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: 0.1.0
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: 2024-07-17 00:00:00.000000000 Z
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.5.9
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: []