mongo 2.13.2 → 2.15.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
- checksums.yaml.gz.sig +1 -2
- data.tar.gz.sig +0 -0
- data/README.md +5 -2
- data/Rakefile +46 -18
- data/lib/mongo.rb +35 -0
- data/lib/mongo/active_support.rb +3 -0
- data/lib/mongo/address.rb +3 -0
- data/lib/mongo/address/ipv4.rb +4 -1
- data/lib/mongo/address/ipv6.rb +4 -1
- data/lib/mongo/address/unix.rb +3 -0
- data/lib/mongo/address/validator.rb +3 -0
- data/lib/mongo/auth.rb +4 -1
- data/lib/mongo/auth/aws.rb +3 -0
- data/lib/mongo/auth/aws/conversation.rb +4 -4
- data/lib/mongo/auth/aws/credentials_retriever.rb +3 -0
- data/lib/mongo/auth/aws/request.rb +3 -0
- data/lib/mongo/auth/base.rb +17 -8
- data/lib/mongo/auth/conversation_base.rb +35 -0
- data/lib/mongo/auth/cr.rb +3 -0
- data/lib/mongo/auth/cr/conversation.rb +9 -29
- data/lib/mongo/auth/credential_cache.rb +3 -0
- data/lib/mongo/auth/gssapi.rb +3 -0
- data/lib/mongo/auth/gssapi/conversation.rb +7 -15
- data/lib/mongo/auth/ldap.rb +3 -0
- data/lib/mongo/auth/ldap/conversation.rb +6 -14
- data/lib/mongo/auth/roles.rb +3 -0
- data/lib/mongo/auth/sasl_conversation_base.rb +4 -13
- data/lib/mongo/auth/scram.rb +5 -2
- data/lib/mongo/auth/scram/conversation.rb +3 -0
- data/lib/mongo/auth/scram256.rb +3 -0
- data/lib/mongo/auth/scram256/conversation.rb +3 -0
- data/lib/mongo/auth/scram_conversation_base.rb +10 -34
- data/lib/mongo/auth/stringprep.rb +4 -1
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +3 -0
- data/lib/mongo/auth/stringprep/tables.rb +3 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +2 -2
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1 -1
- data/lib/mongo/auth/user.rb +3 -0
- data/lib/mongo/auth/user/view.rb +19 -9
- data/lib/mongo/auth/x509.rb +3 -0
- data/lib/mongo/auth/x509/conversation.rb +7 -25
- data/lib/mongo/background_thread.rb +16 -2
- data/lib/mongo/bson.rb +3 -0
- data/lib/mongo/bulk_write.rb +41 -18
- data/lib/mongo/bulk_write/combineable.rb +3 -0
- data/lib/mongo/bulk_write/ordered_combiner.rb +3 -0
- data/lib/mongo/bulk_write/result.rb +3 -0
- data/lib/mongo/bulk_write/result_combiner.rb +3 -0
- data/lib/mongo/bulk_write/transformable.rb +3 -0
- data/lib/mongo/bulk_write/unordered_combiner.rb +3 -0
- data/lib/mongo/bulk_write/validatable.rb +3 -0
- data/lib/mongo/caching_cursor.rb +77 -0
- data/lib/mongo/client.rb +133 -15
- data/lib/mongo/client_encryption.rb +3 -0
- data/lib/mongo/cluster.rb +32 -38
- data/lib/mongo/cluster/periodic_executor.rb +3 -0
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +9 -2
- data/lib/mongo/cluster/reapers/socket_reaper.rb +3 -0
- data/lib/mongo/cluster/sdam_flow.rb +17 -0
- data/lib/mongo/cluster/topology.rb +3 -0
- data/lib/mongo/cluster/topology/base.rb +3 -0
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +3 -0
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +3 -0
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +3 -0
- data/lib/mongo/cluster/topology/sharded.rb +3 -0
- data/lib/mongo/cluster/topology/single.rb +4 -1
- data/lib/mongo/cluster/topology/unknown.rb +3 -0
- data/lib/mongo/cluster_time.rb +3 -0
- data/lib/mongo/collection.rb +74 -17
- data/lib/mongo/collection/view.rb +27 -20
- data/lib/mongo/collection/view/aggregation.rb +29 -5
- data/lib/mongo/collection/view/builder.rb +3 -0
- data/lib/mongo/collection/view/builder/aggregation.rb +3 -0
- data/lib/mongo/collection/view/builder/find_command.rb +41 -18
- data/lib/mongo/collection/view/builder/flags.rb +3 -0
- data/lib/mongo/collection/view/builder/map_reduce.rb +3 -0
- data/lib/mongo/collection/view/builder/modifiers.rb +3 -0
- data/lib/mongo/collection/view/builder/op_query.rb +3 -0
- data/lib/mongo/collection/view/change_stream.rb +5 -2
- data/lib/mongo/collection/view/change_stream/retryable.rb +3 -0
- data/lib/mongo/collection/view/explainable.rb +30 -8
- data/lib/mongo/collection/view/immutable.rb +3 -0
- data/lib/mongo/collection/view/iterable.rb +76 -13
- data/lib/mongo/collection/view/map_reduce.rb +5 -2
- data/lib/mongo/collection/view/readable.rb +68 -23
- data/lib/mongo/collection/view/writable.rb +32 -15
- data/lib/mongo/crypt.rb +3 -0
- data/lib/mongo/crypt/auto_decryption_context.rb +3 -0
- data/lib/mongo/crypt/auto_encrypter.rb +4 -1
- data/lib/mongo/crypt/auto_encryption_context.rb +3 -0
- data/lib/mongo/crypt/binary.rb +3 -0
- data/lib/mongo/crypt/binding.rb +4 -1
- data/lib/mongo/crypt/context.rb +3 -0
- data/lib/mongo/crypt/data_key_context.rb +3 -0
- data/lib/mongo/crypt/encryption_io.rb +9 -6
- data/lib/mongo/crypt/explicit_decryption_context.rb +3 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +3 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +3 -0
- data/lib/mongo/crypt/handle.rb +3 -0
- data/lib/mongo/crypt/hooks.rb +3 -0
- data/lib/mongo/crypt/kms_context.rb +3 -0
- data/lib/mongo/crypt/status.rb +3 -0
- data/lib/mongo/cursor.rb +22 -5
- data/lib/mongo/cursor/builder.rb +3 -0
- data/lib/mongo/cursor/builder/get_more_command.rb +3 -0
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +3 -0
- data/lib/mongo/cursor/builder/op_get_more.rb +3 -0
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +3 -0
- data/lib/mongo/database.rb +32 -6
- data/lib/mongo/database/view.rb +4 -1
- data/lib/mongo/dbref.rb +3 -0
- data/lib/mongo/distinguishing_semaphore.rb +3 -0
- data/lib/mongo/error.rb +14 -1
- data/lib/mongo/error/auth_error.rb +3 -0
- data/lib/mongo/error/bulk_write_error.rb +20 -3
- data/lib/mongo/error/change_stream_resumable.rb +3 -0
- data/lib/mongo/error/closed_stream.rb +3 -0
- data/lib/mongo/error/connection_check_out_timeout.rb +3 -0
- data/lib/mongo/error/connection_perished.rb +3 -0
- data/lib/mongo/error/credential_check_error.rb +3 -0
- data/lib/mongo/error/crypt_error.rb +3 -0
- data/lib/mongo/error/extra_file_chunk.rb +3 -0
- data/lib/mongo/error/failed_string_prep_validation.rb +3 -0
- data/lib/mongo/error/file_not_found.rb +3 -0
- data/lib/mongo/error/handshake_error.rb +3 -0
- data/lib/mongo/error/insufficient_iteration_count.rb +3 -0
- data/lib/mongo/error/internal_driver_error.rb +25 -0
- data/lib/mongo/error/invalid_address.rb +3 -0
- data/lib/mongo/error/invalid_application_name.rb +3 -0
- data/lib/mongo/error/invalid_bulk_operation.rb +3 -0
- data/lib/mongo/error/invalid_bulk_operation_type.rb +3 -0
- data/lib/mongo/error/invalid_collection_name.rb +3 -0
- data/lib/mongo/error/invalid_cursor_operation.rb +3 -0
- data/lib/mongo/error/invalid_database_name.rb +3 -0
- data/lib/mongo/error/invalid_document.rb +3 -0
- data/lib/mongo/error/invalid_file.rb +3 -0
- data/lib/mongo/error/invalid_file_revision.rb +3 -0
- data/lib/mongo/error/invalid_min_pool_size.rb +3 -0
- data/lib/mongo/error/invalid_nonce.rb +3 -0
- data/lib/mongo/error/invalid_read_concern.rb +31 -0
- data/lib/mongo/error/invalid_read_option.rb +3 -0
- data/lib/mongo/error/invalid_replacement_document.rb +3 -0
- data/lib/mongo/error/invalid_server_auth_host.rb +3 -0
- data/lib/mongo/error/invalid_server_auth_response.rb +3 -0
- data/lib/mongo/error/invalid_server_preference.rb +3 -0
- data/lib/mongo/error/invalid_session.rb +3 -0
- data/lib/mongo/error/invalid_signature.rb +3 -0
- data/lib/mongo/error/invalid_transaction_operation.rb +3 -0
- data/lib/mongo/error/invalid_txt_record.rb +3 -0
- data/lib/mongo/error/invalid_update_document.rb +3 -0
- data/lib/mongo/error/invalid_uri.rb +3 -0
- data/lib/mongo/error/invalid_write_concern.rb +3 -0
- data/lib/mongo/error/kms_error.rb +3 -0
- data/lib/mongo/error/lint_error.rb +3 -0
- data/lib/mongo/error/max_bson_size.rb +3 -0
- data/lib/mongo/error/max_message_size.rb +3 -0
- data/lib/mongo/error/mismatched_domain.rb +3 -0
- data/lib/mongo/error/missing_file_chunk.rb +3 -0
- data/lib/mongo/error/missing_password.rb +3 -0
- data/lib/mongo/error/missing_resume_token.rb +3 -0
- data/lib/mongo/error/missing_scram_server_signature.rb +3 -0
- data/lib/mongo/error/mongocryptd_spawn_error.rb +3 -0
- data/lib/mongo/error/multi_index_drop.rb +3 -0
- data/lib/mongo/error/need_primary_server.rb +3 -0
- data/lib/mongo/error/no_server_available.rb +3 -0
- data/lib/mongo/error/no_srv_records.rb +3 -0
- data/lib/mongo/error/notable.rb +3 -0
- data/lib/mongo/error/operation_failure.rb +26 -4
- data/lib/mongo/error/parser.rb +69 -13
- data/lib/mongo/error/pool_closed_error.rb +3 -0
- data/lib/mongo/error/raise_original_error.rb +3 -0
- data/lib/mongo/error/sdam_error_detection.rb +16 -5
- data/lib/mongo/error/server_api_conflict.rb +26 -0
- data/lib/mongo/error/server_api_not_supported.rb +27 -0
- data/lib/mongo/error/server_certificate_revoked.rb +25 -0
- data/lib/mongo/error/session_ended.rb +3 -0
- data/lib/mongo/error/sessions_not_supported.rb +3 -0
- data/lib/mongo/error/socket_error.rb +3 -0
- data/lib/mongo/error/socket_timeout_error.rb +3 -0
- data/lib/mongo/error/unchangeable_collection_option.rb +3 -0
- data/lib/mongo/error/unexpected_chunk_length.rb +3 -0
- data/lib/mongo/error/unexpected_response.rb +3 -0
- data/lib/mongo/error/unknown_payload_type.rb +3 -0
- data/lib/mongo/error/unmet_dependency.rb +24 -0
- data/lib/mongo/error/unsupported_array_filters.rb +3 -0
- data/lib/mongo/error/unsupported_collation.rb +3 -0
- data/lib/mongo/error/unsupported_features.rb +3 -0
- data/lib/mongo/error/unsupported_message_type.rb +3 -0
- data/lib/mongo/error/unsupported_option.rb +17 -12
- data/lib/mongo/error/write_retryable.rb +3 -0
- data/lib/mongo/event.rb +3 -0
- data/lib/mongo/event/base.rb +3 -0
- data/lib/mongo/event/listeners.rb +3 -0
- data/lib/mongo/event/publisher.rb +3 -0
- data/lib/mongo/event/subscriber.rb +3 -0
- data/lib/mongo/grid.rb +3 -0
- data/lib/mongo/grid/file.rb +3 -0
- data/lib/mongo/grid/file/chunk.rb +4 -1
- data/lib/mongo/grid/file/info.rb +3 -0
- data/lib/mongo/grid/fs_bucket.rb +65 -44
- data/lib/mongo/grid/stream.rb +3 -0
- data/lib/mongo/grid/stream/read.rb +22 -7
- data/lib/mongo/grid/stream/write.rb +3 -0
- data/lib/mongo/id.rb +3 -0
- data/lib/mongo/index.rb +3 -0
- data/lib/mongo/index/view.rb +24 -11
- data/lib/mongo/lint.rb +5 -1
- data/lib/mongo/loggable.rb +3 -0
- data/lib/mongo/logger.rb +6 -3
- data/lib/mongo/monitoring.rb +20 -8
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/command_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/event.rb +3 -0
- data/lib/mongo/monitoring/event/cmap.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/base.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +3 -0
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +3 -0
- data/lib/mongo/monitoring/event/command_failed.rb +32 -5
- data/lib/mongo/monitoring/event/command_started.rb +20 -2
- data/lib/mongo/monitoring/event/command_succeeded.rb +29 -3
- data/lib/mongo/monitoring/event/secure.rb +39 -5
- data/lib/mongo/monitoring/event/server_closed.rb +3 -0
- data/lib/mongo/monitoring/event/server_description_changed.rb +4 -1
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +32 -18
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +3 -0
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +30 -16
- data/lib/mongo/monitoring/event/server_opening.rb +3 -0
- data/lib/mongo/monitoring/event/topology_changed.rb +3 -0
- data/lib/mongo/monitoring/event/topology_closed.rb +3 -0
- data/lib/mongo/monitoring/event/topology_opening.rb +3 -0
- data/lib/mongo/monitoring/publishable.rb +32 -10
- data/lib/mongo/monitoring/sdam_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/server_closed_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +3 -0
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +3 -0
- data/lib/mongo/operation.rb +7 -2
- data/lib/mongo/operation/aggregate.rb +3 -0
- data/lib/mongo/operation/aggregate/command.rb +3 -0
- data/lib/mongo/operation/aggregate/op_msg.rb +3 -0
- data/lib/mongo/operation/aggregate/result.rb +12 -8
- data/lib/mongo/operation/collections_info.rb +21 -1
- data/lib/mongo/operation/collections_info/command.rb +5 -2
- data/lib/mongo/operation/collections_info/result.rb +5 -0
- data/lib/mongo/operation/command.rb +3 -0
- data/lib/mongo/operation/command/command.rb +3 -0
- data/lib/mongo/operation/command/op_msg.rb +3 -0
- data/lib/mongo/operation/context.rb +102 -0
- data/lib/mongo/operation/count.rb +3 -0
- data/lib/mongo/operation/count/command.rb +3 -0
- data/lib/mongo/operation/count/op_msg.rb +3 -0
- data/lib/mongo/operation/create.rb +3 -0
- data/lib/mongo/operation/create/command.rb +3 -0
- data/lib/mongo/operation/create/op_msg.rb +3 -0
- data/lib/mongo/operation/create_index.rb +3 -0
- data/lib/mongo/operation/create_index/command.rb +3 -0
- data/lib/mongo/operation/create_index/op_msg.rb +3 -0
- data/lib/mongo/operation/create_user.rb +3 -0
- data/lib/mongo/operation/create_user/command.rb +3 -0
- data/lib/mongo/operation/create_user/op_msg.rb +3 -0
- data/lib/mongo/operation/delete.rb +3 -0
- data/lib/mongo/operation/delete/bulk_result.rb +5 -0
- data/lib/mongo/operation/delete/command.rb +3 -0
- data/lib/mongo/operation/delete/legacy.rb +3 -0
- data/lib/mongo/operation/delete/op_msg.rb +3 -0
- data/lib/mongo/operation/delete/result.rb +6 -0
- data/lib/mongo/operation/distinct.rb +3 -0
- data/lib/mongo/operation/distinct/command.rb +3 -0
- data/lib/mongo/operation/distinct/op_msg.rb +3 -0
- data/lib/mongo/operation/drop.rb +3 -0
- data/lib/mongo/operation/drop/command.rb +3 -0
- data/lib/mongo/operation/drop/op_msg.rb +3 -0
- data/lib/mongo/operation/drop_database.rb +3 -0
- data/lib/mongo/operation/drop_database/command.rb +3 -0
- data/lib/mongo/operation/drop_database/op_msg.rb +3 -0
- data/lib/mongo/operation/drop_index.rb +3 -0
- data/lib/mongo/operation/drop_index/command.rb +3 -0
- data/lib/mongo/operation/drop_index/op_msg.rb +3 -0
- data/lib/mongo/operation/explain.rb +3 -0
- data/lib/mongo/operation/explain/command.rb +7 -0
- data/lib/mongo/operation/explain/legacy.rb +7 -0
- data/lib/mongo/operation/explain/op_msg.rb +9 -0
- data/lib/mongo/operation/explain/result.rb +6 -0
- data/lib/mongo/operation/find.rb +3 -0
- data/lib/mongo/operation/find/command.rb +3 -0
- data/lib/mongo/operation/find/legacy.rb +3 -0
- data/lib/mongo/operation/find/legacy/result.rb +5 -0
- data/lib/mongo/operation/find/op_msg.rb +3 -0
- data/lib/mongo/operation/find/result.rb +16 -0
- data/lib/mongo/operation/get_more.rb +3 -0
- data/lib/mongo/operation/get_more/command.rb +3 -0
- data/lib/mongo/operation/get_more/legacy.rb +3 -0
- data/lib/mongo/operation/get_more/op_msg.rb +3 -0
- data/lib/mongo/operation/get_more/result.rb +6 -0
- data/lib/mongo/operation/indexes.rb +18 -1
- data/lib/mongo/operation/indexes/command.rb +3 -0
- data/lib/mongo/operation/indexes/legacy.rb +3 -0
- data/lib/mongo/operation/indexes/op_msg.rb +3 -0
- data/lib/mongo/operation/indexes/result.rb +8 -0
- data/lib/mongo/operation/insert.rb +3 -0
- data/lib/mongo/operation/insert/bulk_result.rb +8 -0
- data/lib/mongo/operation/insert/command.rb +5 -2
- data/lib/mongo/operation/insert/legacy.rb +5 -2
- data/lib/mongo/operation/insert/op_msg.rb +5 -2
- data/lib/mongo/operation/insert/result.rb +8 -0
- data/lib/mongo/operation/kill_cursors.rb +3 -0
- data/lib/mongo/operation/kill_cursors/command.rb +3 -0
- data/lib/mongo/operation/kill_cursors/legacy.rb +3 -0
- data/lib/mongo/operation/kill_cursors/op_msg.rb +3 -0
- data/lib/mongo/operation/list_collections.rb +3 -0
- data/lib/mongo/operation/list_collections/command.rb +3 -0
- data/lib/mongo/operation/list_collections/op_msg.rb +3 -0
- data/lib/mongo/operation/list_collections/result.rb +12 -1
- data/lib/mongo/operation/map_reduce.rb +3 -0
- data/lib/mongo/operation/map_reduce/command.rb +3 -0
- data/lib/mongo/operation/map_reduce/op_msg.rb +3 -0
- data/lib/mongo/operation/map_reduce/result.rb +13 -0
- data/lib/mongo/operation/op_msg_base.rb +3 -0
- data/lib/mongo/operation/parallel_scan.rb +3 -0
- data/lib/mongo/operation/parallel_scan/command.rb +4 -2
- data/lib/mongo/operation/parallel_scan/op_msg.rb +3 -0
- data/lib/mongo/operation/parallel_scan/result.rb +7 -0
- data/lib/mongo/operation/remove_user.rb +3 -0
- data/lib/mongo/operation/remove_user/command.rb +3 -0
- data/lib/mongo/operation/remove_user/op_msg.rb +3 -0
- data/lib/mongo/operation/result.rb +40 -6
- data/lib/mongo/operation/shared/bypass_document_validation.rb +4 -0
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +4 -0
- data/lib/mongo/operation/shared/executable.rb +25 -14
- data/lib/mongo/operation/shared/executable_no_validate.rb +5 -2
- data/lib/mongo/operation/shared/executable_transaction_label.rb +3 -0
- data/lib/mongo/operation/shared/idable.rb +5 -1
- data/lib/mongo/operation/shared/limited.rb +4 -0
- data/lib/mongo/operation/shared/object_id_generator.rb +4 -0
- data/lib/mongo/operation/shared/op_msg_or_command.rb +4 -7
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +4 -7
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +3 -0
- data/lib/mongo/operation/shared/polymorphic_operation.rb +42 -0
- data/lib/mongo/operation/shared/polymorphic_result.rb +3 -0
- data/lib/mongo/operation/shared/read_preference_supported.rb +41 -36
- data/lib/mongo/operation/shared/response_handling.rb +26 -23
- data/lib/mongo/operation/shared/result/aggregatable.rb +4 -0
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +3 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +20 -4
- data/lib/mongo/operation/shared/specifiable.rb +4 -0
- data/lib/mongo/operation/shared/write.rb +12 -18
- data/lib/mongo/operation/shared/write_concern_supported.rb +4 -0
- data/lib/mongo/operation/update.rb +3 -0
- data/lib/mongo/operation/update/bulk_result.rb +3 -0
- data/lib/mongo/operation/update/command.rb +3 -0
- data/lib/mongo/operation/update/legacy.rb +3 -0
- data/lib/mongo/operation/update/legacy/result.rb +10 -0
- data/lib/mongo/operation/update/op_msg.rb +3 -0
- data/lib/mongo/operation/update/result.rb +11 -0
- data/lib/mongo/operation/update_user.rb +3 -0
- data/lib/mongo/operation/update_user/command.rb +3 -0
- data/lib/mongo/operation/update_user/op_msg.rb +3 -0
- data/lib/mongo/operation/users_info.rb +3 -0
- data/lib/mongo/operation/users_info/command.rb +3 -0
- data/lib/mongo/operation/users_info/op_msg.rb +3 -0
- data/lib/mongo/operation/users_info/result.rb +6 -0
- data/lib/mongo/options.rb +3 -0
- data/lib/mongo/options/mapper.rb +3 -0
- data/lib/mongo/options/redacted.rb +3 -0
- data/lib/mongo/protocol.rb +3 -0
- data/lib/mongo/protocol/bit_vector.rb +3 -0
- data/lib/mongo/protocol/compressed.rb +54 -5
- data/lib/mongo/protocol/delete.rb +3 -0
- data/lib/mongo/protocol/get_more.rb +3 -0
- data/lib/mongo/protocol/insert.rb +3 -0
- data/lib/mongo/protocol/kill_cursors.rb +3 -0
- data/lib/mongo/protocol/message.rb +23 -2
- data/lib/mongo/protocol/msg.rb +39 -16
- data/lib/mongo/protocol/query.rb +18 -14
- data/lib/mongo/protocol/registry.rb +3 -0
- data/lib/mongo/protocol/reply.rb +3 -0
- data/lib/mongo/protocol/serializers.rb +3 -0
- data/lib/mongo/protocol/update.rb +3 -0
- data/lib/mongo/query_cache.rb +275 -0
- data/lib/mongo/retryable.rb +12 -2
- data/lib/mongo/semaphore.rb +3 -0
- data/lib/mongo/server.rb +29 -16
- data/lib/mongo/server/app_metadata.rb +89 -33
- data/lib/mongo/server/connection.rb +9 -1
- data/lib/mongo/server/connection_base.rb +35 -20
- data/lib/mongo/server/connection_common.rb +36 -3
- data/lib/mongo/server/connection_pool.rb +14 -6
- data/lib/mongo/server/connection_pool/populator.rb +3 -0
- data/lib/mongo/server/context.rb +3 -0
- data/lib/mongo/server/description.rb +35 -11
- data/lib/mongo/server/description/features.rb +13 -9
- data/lib/mongo/server/monitor.rb +27 -14
- data/lib/mongo/server/monitor/app_metadata.rb +4 -1
- data/lib/mongo/server/monitor/connection.rb +60 -50
- data/lib/mongo/server/pending_connection.rb +39 -22
- data/lib/mongo/server/push_monitor.rb +33 -18
- data/lib/mongo/server/push_monitor/connection.rb +3 -0
- data/lib/mongo/server/round_trip_time_averager.rb +6 -3
- data/lib/mongo/server_selector.rb +3 -0
- data/lib/mongo/server_selector/base.rb +11 -4
- data/lib/mongo/server_selector/nearest.rb +6 -4
- data/lib/mongo/server_selector/primary.rb +6 -4
- data/lib/mongo/server_selector/primary_preferred.rb +6 -4
- data/lib/mongo/server_selector/secondary.rb +6 -4
- data/lib/mongo/server_selector/secondary_preferred.rb +8 -11
- data/lib/mongo/session.rb +23 -12
- data/lib/mongo/session/server_session.rb +3 -0
- data/lib/mongo/session/session_pool.rb +7 -2
- data/lib/mongo/socket.rb +42 -10
- data/lib/mongo/socket/ocsp_cache.rb +100 -0
- data/lib/mongo/socket/ocsp_verifier.rb +376 -0
- data/lib/mongo/socket/ssl.rb +56 -24
- data/lib/mongo/socket/tcp.rb +3 -0
- data/lib/mongo/socket/unix.rb +3 -0
- data/lib/mongo/srv.rb +3 -0
- data/lib/mongo/srv/monitor.rb +10 -24
- data/lib/mongo/srv/resolver.rb +17 -10
- data/lib/mongo/srv/result.rb +3 -0
- data/lib/mongo/timeout.rb +5 -0
- data/lib/mongo/topology_version.rb +4 -1
- data/lib/mongo/uri.rb +24 -390
- data/lib/mongo/uri/options_mapper.rb +623 -0
- data/lib/mongo/uri/srv_protocol.rb +6 -2
- data/lib/mongo/utils.rb +57 -1
- data/lib/mongo/version.rb +4 -1
- data/lib/mongo/write_concern.rb +3 -0
- data/lib/mongo/write_concern/acknowledged.rb +3 -0
- data/lib/mongo/write_concern/base.rb +3 -0
- data/lib/mongo/write_concern/unacknowledged.rb +3 -0
- data/spec/NOTES.aws-auth.md +12 -7
- data/spec/README.md +87 -2
- data/spec/atlas/atlas_connectivity_spec.rb +3 -0
- data/spec/atlas/operations_spec.rb +3 -0
- data/spec/integration/auth_spec.rb +28 -15
- data/spec/integration/awaited_ismaster_spec.rb +8 -5
- data/spec/integration/aws_auth_request_spec.rb +3 -0
- data/spec/integration/aws_credentials_retriever_spec.rb +3 -0
- data/spec/integration/bson_symbol_spec.rb +4 -1
- data/spec/integration/bulk_insert_spec.rb +3 -0
- data/spec/integration/bulk_write_error_message_spec.rb +41 -0
- data/spec/integration/bulk_write_spec.rb +51 -0
- data/spec/integration/change_stream_examples_spec.rb +3 -0
- data/spec/integration/change_stream_spec.rb +8 -5
- data/spec/integration/check_clean_slate_spec.rb +3 -0
- data/spec/integration/client_authentication_options_spec.rb +76 -36
- data/spec/integration/client_connectivity_spec.rb +4 -1
- data/spec/integration/client_construction_aws_auth_spec.rb +3 -0
- data/spec/integration/client_construction_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +3 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +3 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +3 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +4 -1
- data/spec/integration/client_side_encryption/client_close_spec.rb +3 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +3 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +3 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +3 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +3 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +3 -0
- data/spec/integration/client_side_encryption/views_spec.rb +3 -0
- data/spec/integration/client_spec.rb +5 -2
- data/spec/integration/client_update_spec.rb +3 -0
- data/spec/integration/collection_indexes_prose_spec.rb +3 -0
- data/spec/integration/command_monitoring_spec.rb +63 -25
- data/spec/integration/command_spec.rb +3 -0
- data/spec/integration/connect_single_rs_name_spec.rb +6 -3
- data/spec/integration/connection_pool_populator_spec.rb +7 -2
- data/spec/integration/connection_spec.rb +12 -7
- data/spec/integration/crud_spec.rb +31 -0
- data/spec/integration/cursor_reaping_spec.rb +57 -18
- data/spec/integration/docs_examples_spec.rb +11 -1
- data/spec/integration/error_detection_spec.rb +3 -0
- data/spec/integration/fork_reconnect_spec.rb +64 -3
- data/spec/integration/get_more_spec.rb +3 -0
- data/spec/integration/grid_fs_bucket_spec.rb +4 -1
- data/spec/integration/heartbeat_events_spec.rb +7 -4
- data/spec/integration/mmapv1_spec.rb +3 -0
- data/spec/integration/mongos_pinning_spec.rb +3 -0
- data/spec/integration/ocsp_connectivity_spec.rb +29 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +191 -0
- data/spec/integration/ocsp_verifier_spec.rb +355 -0
- data/spec/integration/operation_failure_code_spec.rb +4 -1
- data/spec/integration/operation_failure_message_spec.rb +90 -0
- data/spec/integration/query_cache_spec.rb +1048 -0
- data/spec/integration/query_cache_transactions_spec.rb +193 -0
- data/spec/integration/read_concern_spec.rb +3 -0
- data/spec/integration/read_preference_spec.rb +3 -0
- data/spec/integration/reconnect_spec.rb +4 -1
- data/spec/integration/retryable_errors_spec.rb +3 -0
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +3 -0
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +4 -0
- data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +3 -0
- data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +5 -0
- data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/performs_no_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +3 -0
- data/spec/integration/retryable_writes/shared/supports_retries.rb +3 -0
- data/spec/integration/retryable_writes_errors_spec.rb +3 -0
- data/spec/integration/sdam_error_handling_spec.rb +74 -3
- data/spec/integration/sdam_events_spec.rb +14 -10
- data/spec/integration/sdam_prose_spec.rb +4 -1
- data/spec/integration/secondary_reads_spec.rb +102 -0
- data/spec/integration/server_description_spec.rb +3 -0
- data/spec/integration/server_monitor_spec.rb +4 -1
- data/spec/integration/server_selection_spec.rb +39 -0
- data/spec/integration/server_selector_spec.rb +3 -0
- data/spec/integration/server_spec.rb +3 -0
- data/spec/integration/shell_examples_spec.rb +3 -0
- data/spec/integration/size_limit_spec.rb +3 -0
- data/spec/integration/snappy_compression_spec.rb +28 -0
- data/spec/integration/srv_monitoring_spec.rb +42 -4
- data/spec/integration/srv_spec.rb +59 -0
- data/spec/integration/ssl_uri_options_spec.rb +3 -0
- data/spec/integration/step_down_spec.rb +3 -0
- data/spec/integration/time_zone_querying_spec.rb +3 -0
- data/spec/integration/transactions_api_examples_spec.rb +3 -0
- data/spec/integration/transactions_examples_spec.rb +26 -7
- data/spec/integration/truncated_utf8_spec.rb +26 -0
- data/spec/integration/versioned_api_examples_spec.rb +69 -0
- data/spec/integration/x509_auth_spec.rb +4 -1
- data/spec/integration/zlib_compression_spec.rb +4 -1
- data/spec/integration/zstd_compression_spec.rb +29 -0
- data/spec/kerberos/kerberos_spec.rb +3 -0
- data/spec/lite_spec_helper.rb +18 -4
- data/spec/mongo/address/ipv4_spec.rb +3 -0
- data/spec/mongo/address/ipv6_spec.rb +3 -0
- data/spec/mongo/address/unix_spec.rb +3 -0
- data/spec/mongo/address/validator_spec.rb +3 -0
- data/spec/mongo/address_spec.rb +19 -12
- data/spec/mongo/auth/aws/request_region_spec.rb +3 -0
- data/spec/mongo/auth/aws/request_spec.rb +3 -0
- data/spec/mongo/auth/cr_spec.rb +3 -0
- data/spec/mongo/auth/gssapi/conversation_spec.rb +3 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +3 -0
- data/spec/mongo/auth/ldap/conversation_spec.rb +4 -1
- data/spec/mongo/auth/ldap_spec.rb +8 -1
- data/spec/mongo/auth/scram/conversation_spec.rb +3 -0
- data/spec/mongo/auth/scram256/conversation_spec.rb +3 -0
- data/spec/mongo/auth/scram_negotiation_spec.rb +4 -1
- data/spec/mongo/auth/scram_spec.rb +4 -1
- data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +3 -0
- data/spec/mongo/auth/stringprep_spec.rb +3 -0
- data/spec/mongo/auth/user/view_spec.rb +3 -0
- data/spec/mongo/auth/user_spec.rb +4 -1
- data/spec/mongo/auth/x509/conversation_spec.rb +6 -3
- data/spec/mongo/auth/x509_spec.rb +3 -0
- data/spec/mongo/auth_spec.rb +3 -0
- data/spec/mongo/bson_spec.rb +3 -0
- data/spec/mongo/bulk_write/ordered_combiner_spec.rb +3 -0
- data/spec/mongo/bulk_write/result_spec.rb +3 -0
- data/spec/mongo/bulk_write/unordered_combiner_spec.rb +3 -0
- data/spec/mongo/bulk_write_spec.rb +5 -2
- data/spec/mongo/caching_cursor_spec.rb +73 -0
- data/spec/mongo/client_construction_spec.rb +268 -36
- data/spec/mongo/client_encryption_spec.rb +3 -0
- data/spec/mongo/client_spec.rb +67 -0
- data/spec/mongo/cluster/cursor_reaper_spec.rb +3 -0
- data/spec/mongo/cluster/periodic_executor_spec.rb +3 -0
- data/spec/mongo/cluster/socket_reaper_spec.rb +3 -0
- data/spec/mongo/cluster/topology/replica_set_spec.rb +13 -10
- data/spec/mongo/cluster/topology/sharded_spec.rb +6 -3
- data/spec/mongo/cluster/topology/single_spec.rb +20 -8
- data/spec/mongo/cluster/topology/unknown_spec.rb +4 -1
- data/spec/mongo/cluster/topology_spec.rb +4 -1
- data/spec/mongo/cluster_spec.rb +10 -18
- data/spec/mongo/cluster_time_spec.rb +3 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/find_command_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/flags_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/modifiers_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/op_query_spec.rb +3 -0
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +8 -3
- data/spec/mongo/collection/view/change_stream_spec.rb +16 -0
- data/spec/mongo/collection/view/explainable_spec.rb +90 -4
- data/spec/mongo/collection/view/immutable_spec.rb +3 -0
- data/spec/mongo/collection/view/iterable_spec.rb +3 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +5 -0
- data/spec/mongo/collection/view/readable_spec.rb +69 -0
- data/spec/mongo/collection/view/writable_spec.rb +3 -0
- data/spec/mongo/collection/view_spec.rb +3 -0
- data/spec/mongo/collection_crud_spec.rb +4360 -0
- data/spec/mongo/collection_ddl_spec.rb +537 -0
- data/spec/mongo/collection_spec.rb +8 -4787
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +4 -1
- data/spec/mongo/crypt/auto_encrypter_spec.rb +3 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +4 -1
- data/spec/mongo/crypt/binary_spec.rb +3 -5
- data/spec/mongo/crypt/binding/binary_spec.rb +3 -5
- data/spec/mongo/crypt/binding/context_spec.rb +4 -6
- data/spec/mongo/crypt/binding/helpers_spec.rb +3 -5
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +4 -6
- data/spec/mongo/crypt/binding/status_spec.rb +3 -5
- data/spec/mongo/crypt/binding/version_spec.rb +3 -5
- data/spec/mongo/crypt/binding_unloaded_spec.rb +3 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +3 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +3 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +4 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +4 -1
- data/spec/mongo/crypt/handle_spec.rb +3 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +3 -0
- data/spec/mongo/crypt/status_spec.rb +3 -5
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +7 -2
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +7 -2
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +7 -2
- data/spec/mongo/cursor_spec.rb +74 -7
- data/spec/mongo/database_spec.rb +119 -10
- data/spec/mongo/dbref_spec.rb +3 -0
- data/spec/mongo/distinguishing_semaphore_spec.rb +3 -0
- data/spec/mongo/error/bulk_write_error_spec.rb +6 -3
- data/spec/mongo/error/crypt_error_spec.rb +3 -0
- data/spec/mongo/error/max_bson_size_spec.rb +3 -0
- data/spec/mongo/error/no_server_available_spec.rb +4 -1
- data/spec/mongo/error/notable_spec.rb +3 -0
- data/spec/mongo/error/operation_failure_heavy_spec.rb +3 -0
- data/spec/mongo/error/operation_failure_spec.rb +94 -31
- data/spec/mongo/error/parser_spec.rb +40 -6
- data/spec/mongo/error/unsupported_option_spec.rb +3 -0
- data/spec/mongo/event/publisher_spec.rb +3 -0
- data/spec/mongo/event/subscriber_spec.rb +3 -0
- data/spec/mongo/grid/file/chunk_spec.rb +7 -4
- data/spec/mongo/grid/file/info_spec.rb +3 -0
- data/spec/mongo/grid/file_spec.rb +4 -1
- data/spec/mongo/grid/fs_bucket_spec.rb +22 -5
- data/spec/mongo/grid/stream/read_spec.rb +33 -10
- data/spec/mongo/grid/stream/write_spec.rb +3 -0
- data/spec/mongo/grid/stream_spec.rb +3 -0
- data/spec/mongo/id_spec.rb +3 -0
- data/spec/mongo/index/view_spec.rb +11 -2
- data/spec/mongo/lint_spec.rb +3 -0
- data/spec/mongo/logger_spec.rb +16 -11
- data/spec/mongo/monitoring/command_log_subscriber_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +3 -0
- data/spec/mongo/monitoring/event/command_failed_spec.rb +59 -2
- data/spec/mongo/monitoring/event/command_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/command_succeeded_spec.rb +46 -6
- data/spec/mongo/monitoring/event/secure_spec.rb +28 -4
- data/spec/mongo/monitoring/event/server_closed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_opening_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_changed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_closed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_opening_spec.rb +4 -1
- data/spec/mongo/monitoring_spec.rb +3 -0
- data/spec/mongo/operation/aggregate/result_spec.rb +7 -2
- data/spec/mongo/operation/aggregate_spec.rb +5 -1
- data/spec/mongo/operation/collections_info_spec.rb +7 -1
- data/spec/mongo/operation/command_spec.rb +11 -5
- data/spec/mongo/operation/create_index_spec.rb +9 -3
- data/spec/mongo/operation/create_user_spec.rb +9 -3
- data/spec/mongo/operation/delete/bulk_spec.rb +12 -6
- data/spec/mongo/operation/delete/command_spec.rb +3 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +6 -3
- data/spec/mongo/operation/delete_spec.rb +14 -7
- data/spec/mongo/operation/drop_index_spec.rb +9 -2
- data/spec/mongo/operation/find/legacy_spec.rb +7 -2
- data/spec/mongo/operation/get_more_spec.rb +6 -1
- data/spec/mongo/operation/indexes_spec.rb +8 -1
- data/spec/mongo/operation/insert/bulk_spec.rb +13 -7
- data/spec/mongo/operation/insert/command_spec.rb +5 -2
- data/spec/mongo/operation/insert/op_msg_spec.rb +6 -3
- data/spec/mongo/operation/insert_spec.rb +18 -12
- data/spec/mongo/operation/kill_cursors_spec.rb +3 -0
- data/spec/mongo/operation/limited_spec.rb +3 -0
- data/spec/mongo/operation/map_reduce_spec.rb +8 -2
- data/spec/mongo/operation/read_preference_legacy_spec.rb +35 -42
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +7 -4
- data/spec/mongo/operation/remove_user_spec.rb +9 -3
- data/spec/mongo/operation/result_spec.rb +10 -5
- data/spec/mongo/operation/specifiable_spec.rb +3 -0
- data/spec/mongo/operation/update/bulk_spec.rb +12 -6
- data/spec/mongo/operation/update/command_spec.rb +5 -2
- data/spec/mongo/operation/update/op_msg_spec.rb +6 -3
- data/spec/mongo/operation/update_spec.rb +13 -7
- data/spec/mongo/operation/update_user_spec.rb +7 -1
- data/spec/mongo/options/redacted_spec.rb +3 -0
- data/spec/mongo/protocol/compressed_spec.rb +29 -12
- data/spec/mongo/protocol/delete_spec.rb +3 -0
- data/spec/mongo/protocol/get_more_spec.rb +3 -0
- data/spec/mongo/protocol/insert_spec.rb +3 -0
- data/spec/mongo/protocol/kill_cursors_spec.rb +3 -0
- data/spec/mongo/protocol/msg_spec.rb +4 -1
- data/spec/mongo/protocol/query_spec.rb +6 -3
- data/spec/mongo/protocol/registry_spec.rb +3 -0
- data/spec/mongo/protocol/reply_spec.rb +3 -0
- data/spec/mongo/protocol/update_spec.rb +3 -0
- data/spec/mongo/query_cache_middleware_spec.rb +55 -0
- data/spec/mongo/query_cache_spec.rb +283 -0
- data/spec/mongo/retryable_spec.rb +6 -2
- data/spec/mongo/semaphore_spec.rb +3 -0
- data/spec/mongo/server/app_metadata_spec.rb +46 -21
- data/spec/mongo/server/connection_auth_spec.rb +6 -9
- data/spec/mongo/server/connection_common_spec.rb +24 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +6 -1
- data/spec/mongo/server/connection_pool_spec.rb +11 -4
- data/spec/mongo/server/connection_spec.rb +48 -25
- data/spec/mongo/server/description/features_spec.rb +3 -0
- data/spec/mongo/server/description_query_methods_spec.rb +4 -1
- data/spec/mongo/server/description_spec.rb +625 -594
- data/spec/mongo/server/monitor/app_metadata_spec.rb +3 -1
- data/spec/mongo/server/monitor/connection_spec.rb +57 -7
- data/spec/mongo/server/monitor_spec.rb +22 -11
- data/spec/mongo/server/round_trip_time_averager_spec.rb +3 -0
- data/spec/mongo/server_selector/nearest_spec.rb +8 -2
- data/spec/mongo/server_selector/primary_preferred_spec.rb +8 -2
- data/spec/mongo/server_selector/primary_spec.rb +8 -2
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +14 -8
- data/spec/mongo/server_selector/secondary_spec.rb +8 -2
- data/spec/mongo/server_selector_spec.rb +7 -3
- data/spec/mongo/server_spec.rb +18 -2
- data/spec/mongo/session/server_session_spec.rb +3 -0
- data/spec/mongo/session/session_pool_spec.rb +3 -0
- data/spec/mongo/session_spec.rb +3 -0
- data/spec/mongo/session_transaction_spec.rb +7 -12
- data/spec/mongo/socket/ssl_spec.rb +47 -4
- data/spec/mongo/socket/tcp_spec.rb +3 -0
- data/spec/mongo/socket/unix_spec.rb +3 -0
- data/spec/mongo/socket_spec.rb +5 -2
- data/spec/mongo/srv/monitor_spec.rb +3 -0
- data/spec/mongo/srv/result_spec.rb +3 -0
- data/spec/mongo/timeout_spec.rb +3 -0
- data/spec/mongo/tls_context_hooks_spec.rb +40 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +68 -33
- data/spec/mongo/uri_option_parsing_spec.rb +14 -11
- data/spec/mongo/uri_spec.rb +71 -41
- data/spec/mongo/utils_spec.rb +56 -0
- data/spec/mongo/write_concern/acknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern/unacknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern_spec.rb +3 -0
- data/spec/runners/auth.rb +25 -1
- data/spec/runners/change_streams/outcome.rb +3 -0
- data/spec/runners/change_streams/spec.rb +3 -0
- data/spec/runners/change_streams/test.rb +4 -1
- data/spec/runners/cmap.rb +3 -0
- data/spec/runners/cmap/verifier.rb +3 -0
- data/spec/runners/command_monitoring.rb +3 -0
- data/spec/runners/connection_string.rb +34 -124
- data/spec/runners/crud.rb +22 -0
- data/spec/runners/crud/context.rb +3 -0
- data/spec/runners/crud/operation.rb +3 -0
- data/spec/runners/crud/outcome.rb +3 -0
- data/spec/runners/crud/requirement.rb +67 -3
- data/spec/runners/crud/spec.rb +3 -0
- data/spec/runners/crud/test.rb +3 -0
- data/spec/runners/crud/test_base.rb +3 -19
- data/spec/runners/crud/verifier.rb +11 -0
- data/spec/runners/gridfs.rb +3 -0
- data/spec/runners/read_write_concern_document.rb +3 -0
- data/spec/runners/sdam.rb +6 -3
- data/spec/runners/sdam/verifier.rb +3 -0
- data/spec/runners/server_selection.rb +4 -1
- data/spec/runners/server_selection_rtt.rb +4 -1
- data/spec/runners/transactions.rb +3 -0
- data/spec/runners/transactions/operation.rb +16 -2
- data/spec/runners/transactions/spec.rb +3 -0
- data/spec/runners/transactions/test.rb +6 -2
- data/spec/runners/unified.rb +99 -0
- data/spec/runners/unified/assertions.rb +282 -0
- data/spec/runners/unified/change_stream_operations.rb +29 -0
- data/spec/runners/unified/crud_operations.rb +206 -0
- data/spec/runners/unified/ddl_operations.rb +106 -0
- data/spec/runners/unified/entity_map.rb +42 -0
- data/spec/runners/unified/error.rb +28 -0
- data/spec/runners/unified/event_subscriber.rb +104 -0
- data/spec/runners/unified/exceptions.rb +24 -0
- data/spec/runners/unified/grid_fs_operations.rb +58 -0
- data/spec/runners/unified/support_operations.rb +253 -0
- data/spec/runners/unified/test.rb +423 -0
- data/spec/runners/unified/test_group.rb +31 -0
- data/spec/runners/unified/using_hash.rb +34 -0
- data/spec/shared/bin/get-mongodb-download-url +17 -0
- data/spec/shared/bin/s3-copy +45 -0
- data/spec/shared/bin/s3-upload +69 -0
- data/spec/shared/lib/mrss/cluster_config.rb +226 -0
- data/spec/shared/lib/mrss/constraints.rb +82 -6
- data/spec/shared/lib/mrss/docker_runner.rb +271 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +16 -0
- data/spec/shared/lib/mrss/server_version_registry.rb +115 -0
- data/spec/shared/lib/mrss/spec_organizer.rb +32 -2
- data/spec/shared/lib/mrss/utils.rb +15 -0
- data/spec/shared/share/Dockerfile.erb +322 -0
- data/spec/shared/share/haproxy-1.conf +16 -0
- data/spec/shared/share/haproxy-2.conf +17 -0
- data/spec/shared/shlib/distro.sh +73 -0
- data/spec/shared/shlib/server.sh +317 -0
- data/spec/shared/shlib/set_env.sh +131 -0
- data/spec/solo/clean_exit_spec.rb +24 -0
- data/spec/spec_helper.rb +11 -4
- data/spec/spec_tests/auth_spec.rb +30 -13
- data/spec/spec_tests/change_streams_spec.rb +3 -0
- data/spec/spec_tests/change_streams_unified_spec.rb +13 -0
- data/spec/spec_tests/client_side_encryption_spec.rb +3 -0
- data/spec/spec_tests/cmap_spec.rb +10 -3
- data/spec/spec_tests/collection_management_spec.rb +13 -0
- data/spec/spec_tests/command_monitoring_spec.rb +31 -26
- data/spec/spec_tests/command_monitoring_unified_spec.rb +13 -0
- data/spec/spec_tests/connection_string_spec.rb +3 -0
- data/spec/spec_tests/crud_spec.rb +3 -0
- data/spec/spec_tests/crud_unified_spec.rb +13 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +5 -6
- data/spec/spec_tests/data/change_streams/{change-streams-resume-whitelist.yml → change-streams-resume-allowlist.yml} +58 -58
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +46 -46
- data/spec/spec_tests/data/change_streams/change-streams.yml +0 -2
- data/spec/spec_tests/data/change_streams_unified/change-streams.yml +72 -0
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
- data/spec/spec_tests/data/collection_management/timeseries-collection.yml +129 -0
- data/spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml +340 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -0
- data/spec/spec_tests/data/crud/write/bulkWrite.yml +26 -22
- data/spec/spec_tests/data/crud/write/insertMany.yml +26 -22
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +267 -0
- data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +305 -0
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +1 -0
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +1 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +6 -5
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +1 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +6 -5
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +1 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +6 -5
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +1 -0
- data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount.yml → estimatedDocumentCount-pre4.9.yml} +2 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +146 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors.yml → estimatedDocumentCount-serverErrors-pre4.9.yml} +3 -1
- data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +1 -1
- data/spec/spec_tests/data/retryable_writes/bulkWrite.yml +30 -24
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +5 -4
- data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMasterOrSecondary.yml → non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMaster.yml → non-stale-topologyVersion-greater-NotWritablePrimary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMasterOrSecondary.yml → non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMaster.yml → non-stale-topologyVersion-missing-NotWritablePrimary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml → non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMaster.yml → non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/{post-42-NotMasterNoSlaveOk.yml → post-42-NotPrimaryNoSecondaryOk.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{post-42-NotMasterOrSecondary.yml → post-42-NotPrimaryOrSecondary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{post-42-NotMaster.yml → post-42-NotWritablePrimary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/{pre-42-NotMaster.yml → pre-42-LegacyNotPrimary.yml} +6 -5
- data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/{pre-42-NotMasterOrSecondary.yml → pre-42-NotPrimaryOrSecondary.yml} +5 -4
- data/spec/spec_tests/data/sdam/errors/{pre-42-NotMasterNoSlaveOk.yml → pre-42-NotWritablePrimary.yml} +6 -5
- data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +54 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMasterNoSlaveOk.yml → stale-generation-NotPrimaryNoSecondaryOk.yml} +7 -5
- data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMasterOrSecondary.yml → stale-generation-NotPrimaryOrSecondary.yml} +7 -5
- data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMaster.yml → stale-generation-NotWritablePrimary.yml} +7 -5
- data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMaster.yml → stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml} +8 -6
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml → stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml} +7 -5
- data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml → stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml} +8 -6
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +6 -4
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +6 -4
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMaster.yml → stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml} +8 -6
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml → stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml} +7 -5
- data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml → stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml} +8 -6
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +4 -2
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +6 -4
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +6 -4
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMasterNoSlaveOk.yml → stale-topologyVersion-NotPrimaryNoSecondaryOk.yml} +7 -6
- data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMasterOrSecondary.yml → stale-topologyVersion-NotPrimaryOrSecondary.yml} +7 -6
- data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMaster.yml → stale-topologyVersion-NotWritablePrimary.yml} +7 -6
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +2 -1
- data/spec/spec_tests/data/sdam/errors/write_errors_ignored.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/compatible.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_passives.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/discovery.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +3 -1
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +3 -1
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +3 -1
- data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +12 -6
- data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/member_standalone.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/new_primary.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +1 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/null_election_id.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +10 -5
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +10 -5
- data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +5 -3
- data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/repeated.yml +9 -5
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/too_new.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/too_old.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +10 -5
- data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/sharded/compatible.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +2 -1
- data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +9 -5
- data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +6 -3
- data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/too_new.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/too_old.yml +4 -2
- data/spec/spec_tests/data/sdam/single/compatible.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/single/discover_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/single/not_ok_response.yml +5 -3
- data/spec/spec_tests/data/sdam/single/standalone_removed.yml +2 -1
- data/spec/spec_tests/data/sdam/single/{direct_connection_slave.yml → standalone_using_legacy_hello.yml} +3 -3
- data/spec/spec_tests/data/sdam/single/too_new.yml +2 -1
- data/spec/spec_tests/data/sdam/single/too_old.yml +2 -1
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +4 -2
- data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +1 -1
- data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +2 -2
- data/spec/spec_tests/data/sdam_integration/{isMaster-command-error.yml → hello-command-error.yml} +19 -29
- data/spec/spec_tests/data/sdam_integration/{isMaster-network-error.yml → hello-network-error.yml} +9 -15
- data/spec/spec_tests/data/sdam_integration/{isMaster-timeout.yml → hello-timeout.yml} +7 -13
- data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +14 -3
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +2 -4
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +3 -2
- data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +3 -3
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +4 -4
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
- data/spec/spec_tests/data/transactions/error-labels.yml +3 -0
- data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +3 -0
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +2 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +6 -3
- data/spec/spec_tests/data/transactions_unified/mongos-unpin.yml +172 -0
- data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +220 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +170 -0
- data/spec/spec_tests/data/uri_options/auth-options.yml +25 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +7 -4
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -0
- data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +1 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +160 -4
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +417 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +411 -0
- data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +75 -0
- data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
- data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +46 -0
- data/spec/spec_tests/data/versioned_api/transaction-handling.yml +128 -0
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +12 -1
- data/spec/spec_tests/gridfs_spec.rb +3 -0
- data/spec/spec_tests/max_staleness_spec.rb +3 -0
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +3 -0
- data/spec/spec_tests/read_write_concern_document_spec.rb +3 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +3 -0
- data/spec/spec_tests/retryable_reads_spec.rb +3 -0
- data/spec/spec_tests/retryable_writes_spec.rb +9 -6
- data/spec/spec_tests/sdam_integration_spec.rb +3 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +4 -1
- data/spec/spec_tests/sdam_spec.rb +4 -1
- data/spec/spec_tests/server_selection_rtt_spec.rb +3 -0
- data/spec/spec_tests/server_selection_spec.rb +3 -0
- data/spec/spec_tests/transactions_api_spec.rb +3 -0
- data/spec/spec_tests/transactions_spec.rb +3 -0
- data/spec/spec_tests/transactions_unified_spec.rb +13 -0
- data/spec/spec_tests/unified_spec.rb +18 -0
- data/spec/spec_tests/uri_options_spec.rb +50 -33
- data/spec/spec_tests/versioned_api_spec.rb +13 -0
- data/spec/stress/cleanup_spec.rb +3 -0
- data/spec/stress/connection_pool_stress_spec.rb +3 -0
- data/spec/stress/connection_pool_timing_spec.rb +3 -0
- data/spec/stress/fork_reconnect_stress_spec.rb +7 -4
- data/spec/support/authorization.rb +3 -0
- data/spec/support/aws_utils.rb +3 -0
- data/spec/support/aws_utils/base.rb +3 -0
- data/spec/support/aws_utils/inspector.rb +3 -0
- data/spec/support/aws_utils/orchestrator.rb +3 -0
- data/spec/support/aws_utils/provisioner.rb +3 -0
- data/spec/support/background_thread_registry.rb +4 -1
- data/spec/support/certificates/README.md +3 -2
- data/spec/support/certificates/atlas-ocsp-ca.crt +118 -0
- data/spec/support/certificates/atlas-ocsp.crt +152 -0
- data/spec/support/client_registry.rb +12 -5
- data/spec/support/client_registry_macros.rb +17 -5
- data/spec/support/cluster_tools.rb +4 -1
- data/spec/support/common_shortcuts.rb +84 -6
- data/spec/support/constraints.rb +9 -253
- data/spec/support/crypt.rb +3 -0
- data/spec/support/dns.rb +3 -0
- data/spec/support/event_subscriber.rb +9 -0
- data/spec/support/json_ext_formatter.rb +3 -0
- data/spec/support/keyword_struct.rb +3 -0
- data/spec/support/local_resource_registry.rb +3 -0
- data/spec/support/matchers.rb +20 -1
- data/spec/support/monitoring_ext.rb +3 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/primary_socket.rb +3 -0
- data/spec/support/sdam_formatter_integration.rb +3 -0
- data/spec/support/session_registry.rb +55 -0
- data/spec/{mongo/server/app_metadata_shared.rb → support/shared/app_metadata.rb} +39 -8
- data/spec/support/shared/protocol.rb +3 -0
- data/spec/support/shared/scram_conversation.rb +3 -0
- data/spec/support/shared/server_selector.rb +6 -3
- data/spec/support/shared/session.rb +5 -2
- data/spec/support/spec_config.rb +111 -12
- data/spec/support/spec_setup.rb +51 -38
- data/spec/support/utils.rb +106 -5
- metadata +1177 -982
- metadata.gz.sig +3 -2
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +0 -56
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +0 -47
- data/spec/support/child_process_helper.rb +0 -78
- data/spec/support/cluster_config.rb +0 -207
- data/spec/support/lite_constraints.rb +0 -141
- data/spec/support/spec_organizer.rb +0 -129
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
1
4
|
# Copyright (C) 2014-2020 MongoDB Inc.
|
|
2
5
|
#
|
|
3
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -39,13 +42,12 @@ module Mongo
|
|
|
39
42
|
:secondary_preferred
|
|
40
43
|
end
|
|
41
44
|
|
|
42
|
-
# Whether the
|
|
45
|
+
# Whether the secondaryOk bit should be set on wire protocol messages.
|
|
43
46
|
# I.e. whether the operation can be performed on a secondary server.
|
|
44
47
|
#
|
|
45
48
|
# @return [ true ] true
|
|
46
|
-
#
|
|
47
|
-
|
|
48
|
-
def slave_ok?
|
|
49
|
+
# @api private
|
|
50
|
+
def secondary_ok?
|
|
49
51
|
true
|
|
50
52
|
end
|
|
51
53
|
|
|
@@ -86,13 +88,8 @@ module Mongo
|
|
|
86
88
|
#
|
|
87
89
|
# @since 2.0.0
|
|
88
90
|
def to_mongos
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
# selector if there are no tag sets, for maximum backwards compatibility.
|
|
92
|
-
nil
|
|
93
|
-
else
|
|
94
|
-
to_doc
|
|
95
|
-
end
|
|
91
|
+
# Always send the read preference to mongos: DRIVERS-1642.
|
|
92
|
+
to_doc
|
|
96
93
|
end
|
|
97
94
|
|
|
98
95
|
private
|
data/lib/mongo/session.rb
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
1
4
|
# Copyright (C) 2017-2020 MongoDB Inc.
|
|
2
5
|
#
|
|
3
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -366,7 +369,7 @@ module Mongo
|
|
|
366
369
|
# @since 2.7.0
|
|
367
370
|
def with_transaction(options=nil)
|
|
368
371
|
# Non-configurable 120 second timeout for the entire operation
|
|
369
|
-
deadline =
|
|
372
|
+
deadline = Utils.monotonic_time + 120
|
|
370
373
|
transaction_in_progress = false
|
|
371
374
|
loop do
|
|
372
375
|
commit_options = {}
|
|
@@ -379,11 +382,12 @@ module Mongo
|
|
|
379
382
|
rv = yield self
|
|
380
383
|
rescue Exception => e
|
|
381
384
|
if within_states?(STARTING_TRANSACTION_STATE, TRANSACTION_IN_PROGRESS_STATE)
|
|
385
|
+
log_warn("Aborting transaction due to #{e.class}: #{e}")
|
|
382
386
|
abort_transaction
|
|
383
387
|
transaction_in_progress = false
|
|
384
388
|
end
|
|
385
389
|
|
|
386
|
-
if
|
|
390
|
+
if Utils.monotonic_time >= deadline
|
|
387
391
|
transaction_in_progress = false
|
|
388
392
|
raise
|
|
389
393
|
end
|
|
@@ -405,7 +409,7 @@ module Mongo
|
|
|
405
409
|
return rv
|
|
406
410
|
rescue Mongo::Error => e
|
|
407
411
|
if e.label?('UnknownTransactionCommitResult')
|
|
408
|
-
if
|
|
412
|
+
if Utils.monotonic_time >= deadline ||
|
|
409
413
|
e.is_a?(Error::OperationFailure) && e.max_time_ms_expired?
|
|
410
414
|
then
|
|
411
415
|
transaction_in_progress = false
|
|
@@ -422,7 +426,7 @@ module Mongo
|
|
|
422
426
|
commit_options[:write_concern] = wc_options.merge(w: :majority)
|
|
423
427
|
retry
|
|
424
428
|
elsif e.label?('TransientTransactionError')
|
|
425
|
-
if
|
|
429
|
+
if Utils.monotonic_time >= deadline
|
|
426
430
|
transaction_in_progress = false
|
|
427
431
|
raise
|
|
428
432
|
end
|
|
@@ -443,7 +447,7 @@ module Mongo
|
|
|
443
447
|
true
|
|
444
448
|
ensure
|
|
445
449
|
if transaction_in_progress
|
|
446
|
-
log_warn('with_transaction callback
|
|
450
|
+
log_warn('with_transaction callback broke out of with_transaction loop, aborting transaction')
|
|
447
451
|
begin
|
|
448
452
|
abort_transaction
|
|
449
453
|
rescue Error::OperationFailure, Error::InvalidTransactionOperation
|
|
@@ -534,6 +538,7 @@ module Mongo
|
|
|
534
538
|
#
|
|
535
539
|
# @since 2.6.0
|
|
536
540
|
def commit_transaction(options=nil)
|
|
541
|
+
QueryCache.clear
|
|
537
542
|
check_if_ended!
|
|
538
543
|
check_if_no_transaction!
|
|
539
544
|
|
|
@@ -580,7 +585,7 @@ module Mongo
|
|
|
580
585
|
txn_num: txn_num,
|
|
581
586
|
write_concern: write_concern,
|
|
582
587
|
}
|
|
583
|
-
Operation::Command.new(spec).execute(server, client: @client)
|
|
588
|
+
Operation::Command.new(spec).execute(server, context: Operation::Context.new(client: @client, session: self))
|
|
584
589
|
end
|
|
585
590
|
end
|
|
586
591
|
ensure
|
|
@@ -602,6 +607,8 @@ module Mongo
|
|
|
602
607
|
#
|
|
603
608
|
# @since 2.6.0
|
|
604
609
|
def abort_transaction
|
|
610
|
+
QueryCache.clear
|
|
611
|
+
|
|
605
612
|
check_if_ended!
|
|
606
613
|
check_if_no_transaction!
|
|
607
614
|
|
|
@@ -620,12 +627,16 @@ module Mongo
|
|
|
620
627
|
unless starting_transaction?
|
|
621
628
|
@aborting_transaction = true
|
|
622
629
|
write_with_retry(self, txn_options[:write_concern], true) do |server, txn_num|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
630
|
+
begin
|
|
631
|
+
Operation::Command.new(
|
|
632
|
+
selector: { abortTransaction: 1 },
|
|
633
|
+
db_name: 'admin',
|
|
634
|
+
session: self,
|
|
635
|
+
txn_num: txn_num
|
|
636
|
+
).execute(server, context: Operation::Context.new(client: @client, session: self))
|
|
637
|
+
ensure
|
|
638
|
+
unpin
|
|
639
|
+
end
|
|
629
640
|
end
|
|
630
641
|
end
|
|
631
642
|
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
1
4
|
# Copyright (C) 2017-2020 MongoDB Inc.
|
|
2
5
|
#
|
|
3
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -119,8 +122,10 @@ module Mongo
|
|
|
119
122
|
},
|
|
120
123
|
db_name: Database::ADMIN,
|
|
121
124
|
)
|
|
122
|
-
|
|
123
|
-
|
|
125
|
+
context = Operation::Context.new(options: {
|
|
126
|
+
server_api: server.options[:server_api],
|
|
127
|
+
})
|
|
128
|
+
op.execute(server, context: context)
|
|
124
129
|
end
|
|
125
130
|
rescue Mongo::Error, Error::AuthError
|
|
126
131
|
end
|
data/lib/mongo/socket.rb
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
1
4
|
# Copyright (C) 2014-2020 MongoDB Inc.
|
|
2
5
|
#
|
|
3
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -15,6 +18,8 @@
|
|
|
15
18
|
require 'mongo/socket/ssl'
|
|
16
19
|
require 'mongo/socket/tcp'
|
|
17
20
|
require 'mongo/socket/unix'
|
|
21
|
+
require 'mongo/socket/ocsp_verifier'
|
|
22
|
+
require 'mongo/socket/ocsp_cache'
|
|
18
23
|
|
|
19
24
|
module Mongo
|
|
20
25
|
|
|
@@ -25,10 +30,11 @@ module Mongo
|
|
|
25
30
|
class Socket
|
|
26
31
|
include ::Socket::Constants
|
|
27
32
|
|
|
28
|
-
# Error message for
|
|
33
|
+
# Error message for TLS related exceptions.
|
|
29
34
|
#
|
|
30
35
|
# @since 2.0.0
|
|
31
|
-
|
|
36
|
+
# @deprecated
|
|
37
|
+
SSL_ERROR = 'MongoDB may not be configured with TLS support'.freeze
|
|
32
38
|
|
|
33
39
|
# Error message for timeouts on socket calls.
|
|
34
40
|
#
|
|
@@ -129,7 +135,7 @@ module Mongo
|
|
|
129
135
|
sock_arr = [ @socket ]
|
|
130
136
|
if Kernel::select(sock_arr, nil, sock_arr, 0)
|
|
131
137
|
# The eof? call is supposed to return immediately since select
|
|
132
|
-
# indicated the socket is readable. However, if @socket is
|
|
138
|
+
# indicated the socket is readable. However, if @socket is a TLS
|
|
133
139
|
# socket, eof? can block anyway - see RUBY-2140.
|
|
134
140
|
begin
|
|
135
141
|
Timeout.timeout(0.1) do
|
|
@@ -152,7 +158,14 @@ module Mongo
|
|
|
152
158
|
#
|
|
153
159
|
# @since 2.0.0
|
|
154
160
|
def close
|
|
155
|
-
|
|
161
|
+
begin
|
|
162
|
+
# Sometimes it seems the close call can hang for a long time
|
|
163
|
+
::Timeout.timeout(5) do
|
|
164
|
+
@socket.close
|
|
165
|
+
end
|
|
166
|
+
rescue
|
|
167
|
+
# Silence all errors
|
|
168
|
+
end
|
|
156
169
|
true
|
|
157
170
|
end
|
|
158
171
|
|
|
@@ -223,6 +236,8 @@ module Mongo
|
|
|
223
236
|
#
|
|
224
237
|
# @return [ Integer ] The length of bytes written to the socket.
|
|
225
238
|
#
|
|
239
|
+
# @raise [ Error::SocketError | Error::SocketTimeoutError ] When there is a network error during the write.
|
|
240
|
+
#
|
|
226
241
|
# @since 2.0.0
|
|
227
242
|
def write(*args)
|
|
228
243
|
map_exceptions do
|
|
@@ -259,7 +274,7 @@ module Mongo
|
|
|
259
274
|
_timeout = timeout || self.timeout
|
|
260
275
|
if _timeout
|
|
261
276
|
if _timeout > 0
|
|
262
|
-
deadline =
|
|
277
|
+
deadline = Utils.monotonic_time + _timeout
|
|
263
278
|
elsif _timeout < 0
|
|
264
279
|
raise Errno::ETIMEDOUT, "Negative timeout #{_timeout} given to socket"
|
|
265
280
|
end
|
|
@@ -314,7 +329,7 @@ module Mongo
|
|
|
314
329
|
# reading from a TLS socket may require writing which may raise WaitWritable
|
|
315
330
|
rescue IO::WaitReadable, IO::WaitWritable => exc
|
|
316
331
|
if deadline
|
|
317
|
-
select_timeout = deadline -
|
|
332
|
+
select_timeout = deadline - Utils.monotonic_time
|
|
318
333
|
if select_timeout <= 0
|
|
319
334
|
raise Errno::ETIMEDOUT, "Took more than #{_timeout} seconds to receive data"
|
|
320
335
|
end
|
|
@@ -324,8 +339,21 @@ module Mongo
|
|
|
324
339
|
else
|
|
325
340
|
select_args = [nil, [@socket], [@socket], select_timeout]
|
|
326
341
|
end
|
|
327
|
-
|
|
328
|
-
|
|
342
|
+
rv = Kernel.select(*select_args)
|
|
343
|
+
if BSON::Environment.jruby?
|
|
344
|
+
# Ignore the return value of Kernel.select.
|
|
345
|
+
# On JRuby, select appears to return nil prior to timeout expiration
|
|
346
|
+
# (apparently due to a EAGAIN) which then causes us to fail the read
|
|
347
|
+
# even though we could have retried it.
|
|
348
|
+
# Check the deadline ourselves.
|
|
349
|
+
if deadline
|
|
350
|
+
select_timeout = deadline - Utils.monotonic_time
|
|
351
|
+
if select_timeout <= 0
|
|
352
|
+
raise Errno::ETIMEDOUT, "Took more than #{_timeout} seconds to receive data"
|
|
353
|
+
end
|
|
354
|
+
end
|
|
355
|
+
elsif rv.nil?
|
|
356
|
+
raise Errno::ETIMEDOUT, "Took more than #{_timeout} seconds to receive data (select call timed out)"
|
|
329
357
|
end
|
|
330
358
|
retry
|
|
331
359
|
end
|
|
@@ -342,7 +370,7 @@ module Mongo
|
|
|
342
370
|
end
|
|
343
371
|
|
|
344
372
|
def read_buffer_size
|
|
345
|
-
# Buffer size for non-
|
|
373
|
+
# Buffer size for non-TLS reads
|
|
346
374
|
# 64kb
|
|
347
375
|
65536
|
|
348
376
|
end
|
|
@@ -396,6 +424,10 @@ module Mongo
|
|
|
396
424
|
set_option(sock, :TCP_KEEPCNT, DEFAULT_TCP_KEEPCNT)
|
|
397
425
|
set_option(sock, :TCP_KEEPIDLE, DEFAULT_TCP_KEEPIDLE)
|
|
398
426
|
rescue
|
|
427
|
+
# JRuby 9.2.13.0 and lower do not define TCP_KEEPINTVL etc. constants.
|
|
428
|
+
# JRuby 9.2.14.0 defines the constants but does not allow to get or
|
|
429
|
+
# set them with this error:
|
|
430
|
+
# Errno::ENOPROTOOPT: Protocol not available - Protocol not available
|
|
399
431
|
end
|
|
400
432
|
|
|
401
433
|
def set_option(sock, option, default)
|
|
@@ -420,7 +452,7 @@ module Mongo
|
|
|
420
452
|
rescue IOError, SystemCallError => e
|
|
421
453
|
raise Error::SocketError, "#{e.class}: #{e} (for #{human_address})"
|
|
422
454
|
rescue OpenSSL::SSL::SSLError => e
|
|
423
|
-
raise Error::SocketError, "#{e.class}: #{e} (for #{human_address})
|
|
455
|
+
raise Error::SocketError, "#{e.class}: #{e} (for #{human_address})"
|
|
424
456
|
end
|
|
425
457
|
end
|
|
426
458
|
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
4
|
+
# Copyright (C) 2020 MongoDB Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
|
|
18
|
+
module Mongo
|
|
19
|
+
class Socket
|
|
20
|
+
|
|
21
|
+
# This module caches OCSP responses for their indicated validity time.
|
|
22
|
+
#
|
|
23
|
+
# The key is the CertificateId used for the OCSP request.
|
|
24
|
+
# The value is the SingleResponse on Ruby 2.4+, or the OpenStruct
|
|
25
|
+
# emulation of it on Ruby 2.3.
|
|
26
|
+
#
|
|
27
|
+
# @api private
|
|
28
|
+
module OcspCache
|
|
29
|
+
module_function def set(cert_id, response)
|
|
30
|
+
delete(cert_id)
|
|
31
|
+
responses << response
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# Retrieves a cached SingleResponse for the specified CertificateId.
|
|
35
|
+
#
|
|
36
|
+
# This method may return expired responses if they are revoked.
|
|
37
|
+
# Such responses were valid when they were first received.
|
|
38
|
+
#
|
|
39
|
+
# This method may also return responses that are valid but that may
|
|
40
|
+
# expire by the time caller uses them. The caller should not perform
|
|
41
|
+
# update time checks on the returned response.
|
|
42
|
+
#
|
|
43
|
+
# @return [ OpenSSL::OCSP::SingleResponse | OpenStruct ] The previously
|
|
44
|
+
# retrieved response.
|
|
45
|
+
module_function def get(cert_id)
|
|
46
|
+
resp = responses.detect do |resp|
|
|
47
|
+
resp.certid.cmp(cert_id)
|
|
48
|
+
end
|
|
49
|
+
if resp
|
|
50
|
+
# Only expire responses with good status.
|
|
51
|
+
# Once a certificate is revoked, it should stay revoked forever,
|
|
52
|
+
# hence we should be able to cache revoked responses indefinitely.
|
|
53
|
+
if resp.cert_status == OpenSSL::OCSP::V_CERTSTATUS_GOOD &&
|
|
54
|
+
resp.next_update < Time.now
|
|
55
|
+
then
|
|
56
|
+
responses.delete(resp)
|
|
57
|
+
resp = nil
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# If we have connected to a server and cached the OCSP response for it,
|
|
62
|
+
# and then never connect to that server again, the cached OCSP response
|
|
63
|
+
# is going to remain in memory indefinitely. Periodically remove all
|
|
64
|
+
# expired OCSP responses, not just the ones matching the certificate id
|
|
65
|
+
# we are querying by.
|
|
66
|
+
if rand < 0.01
|
|
67
|
+
responses.delete_if do |resp|
|
|
68
|
+
resp.next_update < Time.now
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
resp
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
module_function def delete(cert_id)
|
|
76
|
+
responses.delete_if do |resp|
|
|
77
|
+
resp.certid.cmp(cert_id)
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Clears the driver's OCSP response cache.
|
|
82
|
+
#
|
|
83
|
+
# @note Use Mongo.clear_ocsp_cache from applications instead of invoking
|
|
84
|
+
# this method directly.
|
|
85
|
+
module_function def clear
|
|
86
|
+
responses.replace([])
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
private
|
|
90
|
+
|
|
91
|
+
LOCK = Mutex.new
|
|
92
|
+
|
|
93
|
+
module_function def responses
|
|
94
|
+
LOCK.synchronize do
|
|
95
|
+
@responses ||= []
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
4
|
+
# Copyright (C) 2020 MongoDB Inc.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
|
|
18
|
+
module Net
|
|
19
|
+
autoload :HTTP, 'net/http'
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
module Mongo
|
|
23
|
+
class Socket
|
|
24
|
+
|
|
25
|
+
# OCSP endpoint verifier.
|
|
26
|
+
#
|
|
27
|
+
# After a TLS connection is established, this verifier inspects the
|
|
28
|
+
# certificate presented by the server, and if the certificate contains
|
|
29
|
+
# an OCSP URI, performs the OCSP status request to the specified URI
|
|
30
|
+
# (following up to 5 redirects) to verify the certificate status.
|
|
31
|
+
#
|
|
32
|
+
# @see https://ruby-doc.org/stdlib/libdoc/openssl/rdoc/OpenSSL/OCSP.html
|
|
33
|
+
#
|
|
34
|
+
# @api private
|
|
35
|
+
class OcspVerifier
|
|
36
|
+
include Loggable
|
|
37
|
+
|
|
38
|
+
# @param [ String ] host_name The host name being verified, for
|
|
39
|
+
# diagnostic output.
|
|
40
|
+
# @param [ OpenSSL::X509::Certificate ] cert The certificate presented by
|
|
41
|
+
# the server at host_name.
|
|
42
|
+
# @param [ OpenSSL::X509::Certificate ] ca_cert The CA certificate
|
|
43
|
+
# presented by the server or resolved locally from the server
|
|
44
|
+
# certificate.
|
|
45
|
+
# @param [ OpenSSL::X509::Store ] cert_store The certificate store to
|
|
46
|
+
# use for verifying OCSP response. This should be the same store as
|
|
47
|
+
# used in SSLContext used with the SSLSocket that we are verifying the
|
|
48
|
+
# certificate for. This must NOT be the CA certificate provided by
|
|
49
|
+
# the server (i.e. anything taken out of peer_cert) - otherwise the
|
|
50
|
+
# server would dictate which CA authorities the client trusts.
|
|
51
|
+
def initialize(host_name, cert, ca_cert, cert_store, **opts)
|
|
52
|
+
@host_name = host_name
|
|
53
|
+
@cert = cert
|
|
54
|
+
@ca_cert = ca_cert
|
|
55
|
+
@cert_store = cert_store
|
|
56
|
+
@options = opts
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
attr_reader :host_name
|
|
60
|
+
attr_reader :cert
|
|
61
|
+
attr_reader :ca_cert
|
|
62
|
+
attr_reader :cert_store
|
|
63
|
+
attr_reader :options
|
|
64
|
+
|
|
65
|
+
def timeout
|
|
66
|
+
options[:timeout] || 5
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# @return [ Array<String> ] OCSP URIs in the specified server certificate.
|
|
70
|
+
def ocsp_uris
|
|
71
|
+
@ocsp_uris ||= begin
|
|
72
|
+
# https://tools.ietf.org/html/rfc3546#section-2.3
|
|
73
|
+
# prohibits multiple extensions with the same oid.
|
|
74
|
+
ext = cert.extensions.detect do |ext|
|
|
75
|
+
ext.oid == 'authorityInfoAccess'
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
if ext
|
|
79
|
+
# Our test certificates have multiple OCSP URIs.
|
|
80
|
+
ext.value.split("\n").select do |line|
|
|
81
|
+
line.start_with?('OCSP - URI:')
|
|
82
|
+
end.map do |line|
|
|
83
|
+
line.split(':', 2).last
|
|
84
|
+
end
|
|
85
|
+
else
|
|
86
|
+
[]
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
def cert_id
|
|
92
|
+
@cert_id ||= OpenSSL::OCSP::CertificateId.new(
|
|
93
|
+
cert,
|
|
94
|
+
ca_cert,
|
|
95
|
+
OpenSSL::Digest::SHA1.new,
|
|
96
|
+
)
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
def verify_with_cache
|
|
100
|
+
handle_exceptions do
|
|
101
|
+
return false if ocsp_uris.empty?
|
|
102
|
+
|
|
103
|
+
resp = OcspCache.get(cert_id)
|
|
104
|
+
if resp
|
|
105
|
+
return return_ocsp_response(resp)
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
resp, errors = do_verify
|
|
109
|
+
|
|
110
|
+
if resp
|
|
111
|
+
OcspCache.set(cert_id, resp)
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
return_ocsp_response(resp, errors)
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# @return [ true | false ] Whether the certificate was verified.
|
|
119
|
+
#
|
|
120
|
+
# @raise [ Error::ServerCertificateRevoked ] If the certificate was
|
|
121
|
+
# definitively revoked.
|
|
122
|
+
def verify
|
|
123
|
+
handle_exceptions do
|
|
124
|
+
return false if ocsp_uris.empty?
|
|
125
|
+
|
|
126
|
+
resp, errors = do_verify
|
|
127
|
+
return_ocsp_response(resp, errors)
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
private
|
|
132
|
+
|
|
133
|
+
def do_verify
|
|
134
|
+
# This synchronized array contains definitive pass/fail responses
|
|
135
|
+
# obtained from the responders. We'll take the first one but due to
|
|
136
|
+
# concurrency multiple responses may be produced and queued.
|
|
137
|
+
@resp_queue = Queue.new
|
|
138
|
+
|
|
139
|
+
# This synchronized array contains strings, one per responder, that
|
|
140
|
+
# explain why each responder hasn't produced a definitive response.
|
|
141
|
+
# These are concatenated and logged if none of the responders produced
|
|
142
|
+
# a definitive respnose, or if the main thread times out waiting for
|
|
143
|
+
# a definitive response (in which case some of the worker threads'
|
|
144
|
+
# diagnostics may be logged and some may not).
|
|
145
|
+
@resp_errors = Queue.new
|
|
146
|
+
|
|
147
|
+
@req = OpenSSL::OCSP::Request.new
|
|
148
|
+
@req.add_certid(cert_id)
|
|
149
|
+
@req.add_nonce
|
|
150
|
+
@serialized_req = @req.to_der
|
|
151
|
+
|
|
152
|
+
@outstanding_requests = ocsp_uris.count
|
|
153
|
+
@outstanding_requests_lock = Mutex.new
|
|
154
|
+
|
|
155
|
+
threads = ocsp_uris.map do |uri|
|
|
156
|
+
Thread.new do
|
|
157
|
+
verify_one_responder(uri)
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
resp = begin
|
|
162
|
+
::Timeout.timeout(timeout) do
|
|
163
|
+
@resp_queue.shift
|
|
164
|
+
end
|
|
165
|
+
rescue ::Timeout::Error
|
|
166
|
+
nil
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
threads.map(&:kill)
|
|
170
|
+
threads.map(&:join)
|
|
171
|
+
|
|
172
|
+
[resp, @resp_errors]
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
def verify_one_responder(uri)
|
|
176
|
+
original_uri = uri
|
|
177
|
+
redirect_count = 0
|
|
178
|
+
http_response = nil
|
|
179
|
+
loop do
|
|
180
|
+
http_response = begin
|
|
181
|
+
uri = URI(uri)
|
|
182
|
+
Net::HTTP.start(uri.hostname, uri.port) do |http|
|
|
183
|
+
path = uri.path
|
|
184
|
+
if path.empty?
|
|
185
|
+
path = '/'
|
|
186
|
+
end
|
|
187
|
+
http.post(path, @serialized_req,
|
|
188
|
+
'content-type' => 'application/ocsp-request')
|
|
189
|
+
end
|
|
190
|
+
rescue IOError, SystemCallError => e
|
|
191
|
+
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed: #{e.class}: #{e}"
|
|
192
|
+
return false
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
code = http_response.code.to_i
|
|
196
|
+
if (300..399).include?(code)
|
|
197
|
+
redirected_uri = http_response.header['location']
|
|
198
|
+
uri = ::URI.join(uri, redirected_uri)
|
|
199
|
+
redirect_count += 1
|
|
200
|
+
if redirect_count > 5
|
|
201
|
+
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed: too many redirects (6)"
|
|
202
|
+
return false
|
|
203
|
+
end
|
|
204
|
+
next
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
if code >= 400
|
|
208
|
+
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed with HTTP status code #{http_response.code}" + report_response_body(http_response.body)
|
|
209
|
+
return false
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
if code != 200
|
|
213
|
+
# There must be a body provided with the response, if one isn't
|
|
214
|
+
# provided the response cannot be verified.
|
|
215
|
+
@resp_errors << "OCSP request to #{report_uri(original_uri, uri)} failed with unexpected HTTP status code #{http_response.code}" + report_response_body(http_response.body)
|
|
216
|
+
return false
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
break
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
resp = OpenSSL::OCSP::Response.new(http_response.body)
|
|
223
|
+
unless resp.basic
|
|
224
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} is #{resp.status}: #{resp.status_string}"
|
|
225
|
+
return false
|
|
226
|
+
end
|
|
227
|
+
resp = resp.basic
|
|
228
|
+
unless resp.verify([ca_cert], cert_store)
|
|
229
|
+
# Ruby's OpenSSL binding discards error information - see
|
|
230
|
+
# https://github.com/ruby/openssl/issues/395
|
|
231
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} failed signature verification; set `OpenSSL.debug = true` to see why"
|
|
232
|
+
return false
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
if @req.check_nonce(resp) == 0
|
|
236
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} included invalid nonce"
|
|
237
|
+
return false
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
if resp.respond_to?(:find_response)
|
|
241
|
+
# Ruby 2.4+
|
|
242
|
+
resp = resp.find_response(cert_id)
|
|
243
|
+
# TODO make a new class instead of patching the stdlib one?
|
|
244
|
+
resp.instance_variable_set('@uri', uri)
|
|
245
|
+
resp.instance_variable_set('@original_uri', original_uri)
|
|
246
|
+
class << resp
|
|
247
|
+
attr_reader :uri, :original_uri
|
|
248
|
+
end
|
|
249
|
+
else
|
|
250
|
+
# Ruby 2.3
|
|
251
|
+
found = nil
|
|
252
|
+
resp.status.each do |_cert_id, cert_status, revocation_reason, revocation_time, this_update, next_update, extensions|
|
|
253
|
+
if _cert_id.cmp(cert_id)
|
|
254
|
+
found = OpenStruct.new(
|
|
255
|
+
cert_status: cert_status,
|
|
256
|
+
certid: _cert_id,
|
|
257
|
+
next_update: next_update,
|
|
258
|
+
this_update: this_update,
|
|
259
|
+
revocation_reason: revocation_reason,
|
|
260
|
+
revocation_time: revocation_time,
|
|
261
|
+
extensions: extensions,
|
|
262
|
+
uri: uri,
|
|
263
|
+
original_uri: original_uri,
|
|
264
|
+
)
|
|
265
|
+
class << found
|
|
266
|
+
# Unlike the stdlib method, this one doesn't accept
|
|
267
|
+
# any arguments.
|
|
268
|
+
def check_validity
|
|
269
|
+
now = Time.now
|
|
270
|
+
this_update <= now && next_update >= now
|
|
271
|
+
end
|
|
272
|
+
end
|
|
273
|
+
break
|
|
274
|
+
end
|
|
275
|
+
end
|
|
276
|
+
resp = found
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
unless resp
|
|
280
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} did not include information about the requested certificate"
|
|
281
|
+
return false
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
unless resp.check_validity
|
|
285
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} was invalid: this_update was in the future or next_update time has passed"
|
|
286
|
+
return false
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
unless [
|
|
290
|
+
OpenSSL::OCSP::V_CERTSTATUS_GOOD,
|
|
291
|
+
OpenSSL::OCSP::V_CERTSTATUS_REVOKED,
|
|
292
|
+
].include?(resp.cert_status)
|
|
293
|
+
@resp_errors << "OCSP response from #{report_uri(original_uri, uri)} had a non-definitive status: #{resp.cert_status}"
|
|
294
|
+
return false
|
|
295
|
+
end
|
|
296
|
+
|
|
297
|
+
# Note this returns the redirected URI
|
|
298
|
+
@resp_queue << resp
|
|
299
|
+
rescue => exc
|
|
300
|
+
Utils.warn_bg_exception("Error performing OCSP verification for '#{host_name}' via '#{uri}'", exc,
|
|
301
|
+
logger: options[:logger],
|
|
302
|
+
log_prefix: options[:log_prefix],
|
|
303
|
+
bg_error_backtrace: options[:bg_error_backtrace],
|
|
304
|
+
)
|
|
305
|
+
false
|
|
306
|
+
ensure
|
|
307
|
+
@outstanding_requests_lock.synchronize do
|
|
308
|
+
@outstanding_requests -= 1
|
|
309
|
+
if @outstanding_requests == 0
|
|
310
|
+
@resp_queue << nil
|
|
311
|
+
end
|
|
312
|
+
end
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
def return_ocsp_response(resp, errors = nil)
|
|
316
|
+
if resp
|
|
317
|
+
if resp.cert_status == OpenSSL::OCSP::V_CERTSTATUS_REVOKED
|
|
318
|
+
raise_revoked_error(resp)
|
|
319
|
+
end
|
|
320
|
+
true
|
|
321
|
+
else
|
|
322
|
+
reasons = []
|
|
323
|
+
errors.length.times do
|
|
324
|
+
reasons << errors.shift
|
|
325
|
+
end
|
|
326
|
+
if reasons.empty?
|
|
327
|
+
msg = "No responses from responders: #{ocsp_uris.join(', ')} within #{timeout} seconds"
|
|
328
|
+
else
|
|
329
|
+
msg = "For responders #{ocsp_uris.join(', ')} with a timeout of #{timeout} seconds: #{reasons.join(', ')}"
|
|
330
|
+
end
|
|
331
|
+
log_warn("TLS certificate of '#{host_name}' could not be definitively verified via OCSP: #{msg}")
|
|
332
|
+
false
|
|
333
|
+
end
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
def handle_exceptions
|
|
337
|
+
begin
|
|
338
|
+
yield
|
|
339
|
+
rescue Error::ServerCertificateRevoked
|
|
340
|
+
raise
|
|
341
|
+
rescue => exc
|
|
342
|
+
Utils.warn_bg_exception(
|
|
343
|
+
"Error performing OCSP verification for '#{host_name}'",
|
|
344
|
+
exc,
|
|
345
|
+
**options)
|
|
346
|
+
false
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
def raise_revoked_error(resp)
|
|
351
|
+
if resp.uri == resp.original_uri
|
|
352
|
+
redirect = ''
|
|
353
|
+
else
|
|
354
|
+
redirect = " (redirected from #{resp.original_uri})"
|
|
355
|
+
end
|
|
356
|
+
raise Error::ServerCertificateRevoked, "TLS certificate of '#{host_name}' has been revoked according to '#{resp.uri}'#{redirect} for reason '#{resp.revocation_reason}' at '#{resp.revocation_time}'"
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
def report_uri(original_uri, uri)
|
|
360
|
+
if URI(uri) == URI(original_uri)
|
|
361
|
+
uri
|
|
362
|
+
else
|
|
363
|
+
"#{original_uri} (redirected to #{uri})"
|
|
364
|
+
end
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
def report_response_body(body)
|
|
368
|
+
if body
|
|
369
|
+
": #{body}"
|
|
370
|
+
else
|
|
371
|
+
''
|
|
372
|
+
end
|
|
373
|
+
end
|
|
374
|
+
end
|
|
375
|
+
end
|
|
376
|
+
end
|