From: usa@... Date: 2014-07-07T03:58:32+00:00 Subject: [ruby-dev:48379] [ruby-trunk - Bug #9646] Infinite loop at Hash#each Issue #9646 has been updated by Usaku NAKAMURA. Backport changed from 2.0.0: REQUIRED, 2.1: DONE to 2.0.0: DONE, 2.1: DONE backported into `ruby_2_0_0` at r46747. ---------------------------------------- Bug #9646: Infinite loop at Hash#each https://bugs.ruby-lang.org/issues/9646#change-47629 * Author: Masaya Tarui * Status: Closed * Priority: Normal * Assignee: * Category: core * Target version: current: 2.2.0 * ruby -v: ruby 2.0.0p291 (2013-08-11 revision 42493) [x86_64-linux] * Backport: 2.0.0: DONE, 2.1: DONE ---------------------------------------- Hashでキーを同じにすると、無限ループしてしまいます。 再現コードは ruby -e 'h={};h[a=[]]=1;a<<1;h[[]] = 2;a.clear;h.each{|i| p i}' です。 `st_foreach_check`で`callcc`対応のために `find_packed_index`を毎回呼んでおり、そこで`i`が進まなくなっています。 そもそも、同じキーの状態を作り出せるのがどうなんだという話はあるかもしれませんが、 そちらを直すのは大きな変更になりそうなので、とりあえず以下のような感じでどうでしょうか? callccでの後戻りをあきらめています。 #または、callccでイテレータの中に戻るのを禁止した方がよいのかもしれません。 ~~~diff --- a/st.c +++ b/st.c @@ -394,9 +394,8 @@ find_entry(st_table *table, st_data_t key, st_index_t hash_val, st_index_t bin_p } static inline st_index_t -find_packed_index(st_table *table, st_index_t hash_val, st_data_t key) +find_packed_index_from(st_table *table, st_index_t hash_val, st_data_t key,st_index_t i) { - st_index_t i = 0; while (i < table->real_entries && (PHASH(table, i) != hash_val || !EQUAL(table, key, PKEY(table, i)))) { i++; @@ -404,6 +403,12 @@ find_packed_index(st_table *table, st_index_t hash_val, st_data_t key) return i; } +static inline st_index_t +find_packed_index(st_table *table, st_index_t hash_val, st_data_t key) +{ + return find_packed_index_from(table,hash_val,key,0); +} + #define collision_check 0 int @@ -963,8 +968,8 @@ st_foreach_check(st_table *table, int (*func)(ANYARGS), st_data_t arg, st_data_t if (PHASH(table, i) == 0 && PKEY(table, i) == never) { break; } - i = find_packed_index(table, hash, key); - if (i == table->real_entries) { + i = find_packed_index_from(table, hash, key, i); + if (i >= table->real_entries) { goto deleted; } /* fall through */ ~~~ -- https://bugs.ruby-lang.org/