ruby-changes:22432
From: emboss <ko1@a...>
Date: Wed, 8 Feb 2012 13:19:45 +0900 (JST)
Subject: [ruby-changes:22432] emboss:r34481 (trunk): * ext/openssl/ossl_x509name.c: Use the numerical representation of
emboss 2012-02-08 13:19:33 +0900 (Wed, 08 Feb 2012) New Revision: 34481 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34481 Log: * ext/openssl/ossl_x509name.c: Use the numerical representation of unrecognized OIDs instead of the sn "UNDEF". * test/openssl/test_x509name.rb: Add tests for the fixed behavior. Patch provided by Paul Kehrer, than?\225?\184?\177 you! [ruby-core:41769] [Feature #5787] Modified files: trunk/ChangeLog trunk/ext/openssl/ossl_x509name.c trunk/test/openssl/test_x509name.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 34480) +++ ChangeLog (revision 34481) @@ -1,3 +1,13 @@ +Wed Feb 8 13:12:02 2012 Martin Bosslet <Martin.Bosslet@g...> + + * ext/openssl/ossl_x509name.c: Use the numerical representation of + unrecognized OIDs instead of the sn "UNDEF". + + * test/openssl/test_x509name.rb: Add tests for the fixed behavior. + + Patch provided by Paul Kehrer, thank you! + [ruby-core:41769] [Feature #5787] + Wed Feb 8 09:49:58 2012 NARUSE, Yui <naruse@r...> * tool/merger.rb: don't abort, update first. @@ -2,3 +12,3 @@ -Wed Feb 08 09:57:33 2012 Martin Bosslet <Martin.Bosslet@g...> +Wed Feb 8 09:47:33 2012 Martin Bosslet <Martin.Bosslet@g...> @@ -8,7 +18,7 @@ Thanks to Mantas Mikulenas for noticing and providing a patch! [ruby-core:42358] [Bug #5972] -Wed Feb 08 09:19:00 2012 Martin Bosslet <Martin.Bosslet@g...> +Wed Feb 8 09:19:00 2012 Martin Bosslet <Martin.Bosslet@g...> * ext/openssl/ossl_cipher.c: Add warning about key as IV. Index: ext/openssl/ossl_x509name.c =================================================================== --- ext/openssl/ossl_x509name.c (revision 34480) +++ ext/openssl/ossl_x509name.c (revision 34481) @@ -227,10 +227,10 @@ { X509_NAME *name; X509_NAME_ENTRY *entry; - int i,entries; + int i,entries,nid; char long_name[512]; const char *short_name; - VALUE ary, ret; + VALUE ary, vname, ret; GetX509Name(self, name); entries = X509_NAME_entry_count(name); @@ -246,8 +246,15 @@ if (!i2t_ASN1_OBJECT(long_name, sizeof(long_name), entry->object)) { ossl_raise(eX509NameError, NULL); } - short_name = OBJ_nid2sn(OBJ_ln2nid(long_name)); - ary = rb_ary_new3(3, rb_str_new2(short_name), + nid = OBJ_ln2nid(long_name); + if (nid == NID_undef) { + vname = rb_str_new2((const char *) &long_name); + } else { + short_name = OBJ_nid2sn(nid); + vname = rb_str_new2(short_name); /*do not free*/ + } + ary = rb_ary_new3(3, + vname, rb_str_new((const char *)entry->value->data, entry->value->length), INT2FIX(entry->value->type)); rb_ary_push(ret, ary); Index: test/openssl/test_x509name.rb =================================================================== --- test/openssl/test_x509name.rb (revision 34480) +++ test/openssl/test_x509name.rb (revision 34481) @@ -100,6 +100,57 @@ assert_equal(name_from_der.to_der, name.to_der) end + def test_unrecognized_oid + dn = [ ["1.2.3.4.5.6.7.8.9.7.5.3.1", "Unknown OID 1"], + ["1.1.2.3.5.8.13.21.34", "Unknown OID 2"], + ["C", "US"], + ["postalCode", "60602"], + ["ST", "Illinois"], + ["L", "Chicago"], + ["street", "123 Fake St"], + ["O", "Some Company LLC"], + ["CN", "mydomain.com"] ] + + name = OpenSSL::X509::Name.new(dn) + ary = name.to_a + assert_equal("/1.2.3.4.5.6.7.8.9.7.5.3.1=Unknown OID 1/1.1.2.3.5.8.13.21.34=Unknown OID 2/C=US/postalCode=60602/ST=Illinois/L=Chicago/street=123 Fake St/O=Some Company LLC/CN=mydomain.com", name.to_s) + assert_equal("1.2.3.4.5.6.7.8.9.7.5.3.1", ary[0][0]) + assert_equal("1.1.2.3.5.8.13.21.34", ary[1][0]) + assert_equal("C", ary[2][0]) + assert_equal("postalCode", ary[3][0]) + assert_equal("ST", ary[4][0]) + assert_equal("L", ary[5][0]) + assert_equal("street", ary[6][0]) + assert_equal("O", ary[7][0]) + assert_equal("CN", ary[8][0]) + assert_equal("Unknown OID 1", ary[0][1]) + assert_equal("Unknown OID 2", ary[1][1]) + assert_equal("US", ary[2][1]) + assert_equal("60602", ary[3][1]) + assert_equal("Illinois", ary[4][1]) + assert_equal("Chicago", ary[5][1]) + assert_equal("123 Fake St", ary[6][1]) + assert_equal("Some Company LLC", ary[7][1]) + assert_equal("mydomain.com", ary[8][1]) + end + + def test_unrecognized_oid_parse_encode_equality + dn = [ ["1.2.3.4.5.6.7.8.9.7.5.3.2", "Unknown OID1"], + ["1.1.2.3.5.8.13.21.35", "Unknown OID2"], + ["C", "US"], + ["postalCode", "60602"], + ["ST", "Illinois"], + ["L", "Chicago"], + ["street", "123 Fake St"], + ["O", "Some Company LLC"], + ["CN", "mydomain.com"] ] + + name1 = OpenSSL::X509::Name.new(dn) + name2 = OpenSSL::X509::Name.parse(name1.to_s) + assert_equal(name1.to_s, name2.to_s) + assert_equal(name1.to_a, name2.to_a) + end + def test_s_parse dn = "/DC=org/DC=ruby-lang/CN=www.ruby-lang.org" name = OpenSSL::X509::Name.parse(dn) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/