Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
976086d3
Commit
976086d3
authored
Sep 09, 2004
by
tomas@poseidon.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better error printouts on cannot alloc node id
put ByteOrder config param back as depricated
parent
a34f63cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
10 deletions
+26
-10
ndb/src/common/mgmcommon/ConfigInfo.cpp
ndb/src/common/mgmcommon/ConfigInfo.cpp
+12
-0
ndb/src/mgmsrv/MgmtSrvr.cpp
ndb/src/mgmsrv/MgmtSrvr.cpp
+14
-10
No files found.
ndb/src/common/mgmcommon/ConfigInfo.cpp
View file @
976086d3
...
@@ -259,6 +259,18 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
...
@@ -259,6 +259,18 @@ const ConfigInfo::ParamInfo ConfigInfo::m_ParamInfo[] = {
MANDATORY
,
MANDATORY
,
0
,
0
,
MAX_INT_RNIL
},
MAX_INT_RNIL
},
{
KEY_INTERNAL
,
"ByteOrder"
,
"COMPUTER"
,
0
,
ConfigInfo
::
DEPRICATED
,
false
,
ConfigInfo
::
STRING
,
UNDEFINED
,
0
,
0
},
/****************************************************************************
/****************************************************************************
* SYSTEM
* SYSTEM
...
...
ndb/src/mgmsrv/MgmtSrvr.cpp
View file @
976086d3
...
@@ -2332,6 +2332,9 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
...
@@ -2332,6 +2332,9 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
bool
found_matching_id
=
false
;
bool
found_matching_id
=
false
;
bool
found_matching_type
=
false
;
bool
found_matching_type
=
false
;
bool
found_free_node
=
false
;
bool
found_free_node
=
false
;
const
char
*
config_hostname
=
0
;
struct
in_addr
config_addr
=
{
0
};
int
r_config_addr
=
-
1
;
unsigned
type_c
=
0
;
unsigned
type_c
=
0
;
ndb_mgm_configuration_iterator
iter
(
*
(
ndb_mgm_configuration
*
)
_config
->
m_configValues
,
ndb_mgm_configuration_iterator
iter
(
*
(
ndb_mgm_configuration
*
)
_config
->
m_configValues
,
...
@@ -2349,18 +2352,16 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
...
@@ -2349,18 +2352,16 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
if
(
connected_nodes
.
get
(
tmp
))
if
(
connected_nodes
.
get
(
tmp
))
continue
;
continue
;
found_free_node
=
true
;
found_free_node
=
true
;
const
char
*
config_hostname
=
0
;
if
(
iter
.
get
(
CFG_NODE_HOST
,
&
config_hostname
))
abort
();
if
(
iter
.
get
(
CFG_NODE_HOST
,
&
config_hostname
))
abort
();
if
(
config_hostname
&&
config_hostname
[
0
]
!=
0
&&
client_addr
)
{
if
(
config_hostname
&&
config_hostname
[
0
]
!=
0
&&
client_addr
)
{
// check hostname compatability
// check hostname compatability
struct
in_addr
config_addr
;
const
void
*
tmp_in
=
&
(((
sockaddr_in
*
)
client_addr
)
->
sin_addr
);
const
void
*
tmp
=
&
(((
sockaddr_in
*
)
client_addr
)
->
sin_addr
);
if
((
r_config_addr
=
Ndb_getInAddr
(
&
config_addr
,
config_hostname
))
!=
0
if
(
Ndb_getInAddr
(
&
config_addr
,
config_hostname
)
!=
0
||
memcmp
(
&
config_addr
,
tmp_in
,
sizeof
(
config_addr
))
!=
0
)
{
||
memcmp
(
&
config_addr
,
tmp
,
sizeof
(
config_addr
))
!=
0
)
{
struct
in_addr
tmp_addr
;
struct
in_addr
tmp_addr
;
if
(
Ndb_getInAddr
(
&
tmp_addr
,
"localhost"
)
!=
0
if
(
Ndb_getInAddr
(
&
tmp_addr
,
"localhost"
)
!=
0
||
memcmp
(
&
tmp_addr
,
tmp
,
sizeof
(
config_addr
))
!=
0
)
{
||
memcmp
(
&
tmp_addr
,
tmp
_in
,
sizeof
(
config_addr
))
!=
0
)
{
// not localhost
// not localhost
#if 0
#if 0
ndbout << "MgmtSrvr::getFreeNodeId compare failed for \"" << config_hostname
ndbout << "MgmtSrvr::getFreeNodeId compare failed for \"" << config_hostname
...
@@ -2402,7 +2403,7 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
...
@@ -2402,7 +2403,7 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
if
(
found_matching_id
)
if
(
found_matching_id
)
if
(
found_matching_type
)
if
(
found_matching_type
)
if
(
found_free_node
)
if
(
found_free_node
)
error_string
.
appfmt
(
"Connection done from wrong host %s."
,
error_string
.
appfmt
(
"Connection done from wrong host
ip
%s."
,
inet_ntoa
(((
struct
sockaddr_in
*
)(
client_addr
))
->
sin_addr
));
inet_ntoa
(((
struct
sockaddr_in
*
)(
client_addr
))
->
sin_addr
));
else
else
error_string
.
appfmt
(
"No free node id found for %s."
,
type_string
.
c_str
());
error_string
.
appfmt
(
"No free node id found for %s."
,
type_string
.
c_str
());
...
@@ -2413,10 +2414,13 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
...
@@ -2413,10 +2414,13 @@ MgmtSrvr::alloc_node_id(NodeId * nodeId,
}
else
{
}
else
{
if
(
found_matching_id
)
if
(
found_matching_id
)
if
(
found_matching_type
)
if
(
found_matching_type
)
if
(
found_free_node
)
if
(
found_free_node
)
{
error_string
.
appfmt
(
"Connection with id %d done from wrong host %s, expected host XX."
,
// have to split these into two since inet_ntoa overwrites itself
error_string
.
appfmt
(
"Connection with id %d done from wrong host ip %s,"
,
*
nodeId
,
inet_ntoa
(((
struct
sockaddr_in
*
)(
client_addr
))
->
sin_addr
));
*
nodeId
,
inet_ntoa
(((
struct
sockaddr_in
*
)(
client_addr
))
->
sin_addr
));
else
error_string
.
appfmt
(
" expected %s(%s)."
,
config_hostname
,
r_config_addr
?
"lookup failed"
:
inet_ntoa
(
config_addr
));
}
else
error_string
.
appfmt
(
"Id %d already allocated by another node."
,
*
nodeId
);
error_string
.
appfmt
(
"Id %d already allocated by another node."
,
*
nodeId
);
else
else
error_string
.
appfmt
(
"Id %d configured as %s, connect attempted as %s."
,
error_string
.
appfmt
(
"Id %d configured as %s, connect attempted as %s."
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment