summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-04-17 10:42:33 +0100
committerSimon MacMullen <simon@rabbitmq.com>2013-04-17 10:42:33 +0100
commit09b1c58de56787f5834974fb84cb234af38ee4c0 (patch)
treeb94b05afff295f4b3b2d3acd72d2c237a6a84455
parent160573b71c48e05a32965e287fe9b184b5fa8da1 (diff)
parentcfa98cd3073cac972721c0884ae05189dda6a0f1 (diff)
downloadrabbitmq-server-09b1c58de56787f5834974fb84cb234af38ee4c0.tar.gz
Merge bug25517
-rw-r--r--src/rabbit_mnesia.erl46
1 files changed, 34 insertions, 12 deletions
diff --git a/src/rabbit_mnesia.erl b/src/rabbit_mnesia.erl
index c39e898c..95182a7c 100644
--- a/src/rabbit_mnesia.erl
+++ b/src/rabbit_mnesia.erl
@@ -404,7 +404,7 @@ cluster_status(WhichNodes) ->
node_info() ->
{erlang:system_info(otp_release), rabbit_misc:version(),
- cluster_status_from_mnesia()}.
+ delegate_beam_hash(), cluster_status_from_mnesia()}.
node_type() ->
DiscNodes = cluster_nodes(disc),
@@ -562,10 +562,13 @@ check_cluster_consistency(Node) ->
case rpc:call(Node, rabbit_mnesia, node_info, []) of
{badrpc, _Reason} ->
{error, not_found};
- {_OTP, _Rabbit, {error, _}} ->
+ {_OTP, _Rabbit, _Hash, {error, _}} ->
{error, not_found};
- {OTP, Rabbit, {ok, Status}} ->
- case check_consistency(OTP, Rabbit, Node, Status) of
+ {_OTP, Rabbit, _Status} ->
+ %% pre-2013/04 format implies version mismatch
+ version_error("Rabbit", rabbit_misc:version(), Rabbit);
+ {OTP, Rabbit, Hash, {ok, Status}} ->
+ case check_consistency(OTP, Rabbit, Hash, Node, Status) of
{error, _} = E -> E;
{ok, Res} -> {ok, Res}
end
@@ -732,14 +735,17 @@ change_extra_db_nodes(ClusterNodes0, CheckOtherNodes) ->
Nodes
end.
-check_consistency(OTP, Rabbit) ->
+check_consistency(OTP, Rabbit, Hash) ->
rabbit_misc:sequence_error(
- [check_otp_consistency(OTP), check_rabbit_consistency(Rabbit)]).
+ [check_otp_consistency(OTP),
+ check_rabbit_consistency(Rabbit),
+ check_beam_compatibility(Hash)]).
-check_consistency(OTP, Rabbit, Node, Status) ->
+check_consistency(OTP, Rabbit, Hash, Node, Status) ->
rabbit_misc:sequence_error(
[check_otp_consistency(OTP),
check_rabbit_consistency(Rabbit),
+ check_beam_compatibility(Hash),
check_nodes_consistency(Node, Status)]).
check_nodes_consistency(Node, RemoteStatus = {RemoteAllNodes, _, _}) ->
@@ -780,6 +786,21 @@ check_rabbit_consistency(Remote) ->
rabbit_misc:version(), Remote, "Rabbit",
fun rabbit_misc:version_minor_equivalent/2).
+check_beam_compatibility(RemoteHash) ->
+ case RemoteHash == delegate_beam_hash() of
+ true -> ok;
+ false -> {error, {incompatible_bytecode,
+ "Incompatible Erlang bytecode found on nodes"}}
+ end.
+
+%% The delegate module sends functions across the cluster; if it is
+%% out of sync (say due to mixed compilers), we will get badfun
+%% exceptions when trying to do so. Let's detect that at startup.
+delegate_beam_hash() ->
+ DelegateBeamLocation = code:which(delegate),
+ {ok, {delegate, Hash}} = beam_lib:md5(DelegateBeamLocation),
+ Hash.
+
%% This is fairly tricky. We want to know if the node is in the state
%% that a `reset' would leave it in. We cannot simply check if the
%% mnesia tables aren't there because restarted RAM nodes won't have
@@ -805,11 +826,12 @@ find_good_node([]) ->
none;
find_good_node([Node | Nodes]) ->
case rpc:call(Node, rabbit_mnesia, node_info, []) of
- {badrpc, _Reason} -> find_good_node(Nodes);
- {OTP, Rabbit, _} -> case check_consistency(OTP, Rabbit) of
- {error, _} -> find_good_node(Nodes);
- ok -> {ok, Node}
- end
+ {badrpc, _Reason} -> find_good_node(Nodes);
+ {_OTP, _Rabbit, _} -> find_good_node(Nodes);
+ {OTP, Rabbit, Hash, _} -> case check_consistency(OTP, Rabbit, Hash) of
+ {error, _} -> find_good_node(Nodes);
+ ok -> {ok, Node}
+ end
end.
is_only_clustered_disc_node() ->