Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
advLigoRTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CDS
software
advLigoRTS
Commits
5855552c
Commit
5855552c
authored
2 years ago
by
Erik von Reis
Browse files
Options
Downloads
Patches
Plain Diff
awgtpman: testpoint.c now checks for bad node points
parent
0b238071
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!439
RCG 5.0 release fro deb 10
,
!351
make some changes to awg interface files needed for use in CDS-CRTOOLS
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/gds/awgtpman/testpoint.c
+28
-6
28 additions, 6 deletions
src/gds/awgtpman/testpoint.c
with
28 additions
and
6 deletions
src/gds/awgtpman/testpoint.c
+
28
−
6
View file @
5855552c
...
...
@@ -291,7 +291,15 @@ int tpClear (int node, const testpoint_t tp[], int tplen)
target
=
tp
;
}
for
(
int
i
=
0
;
i
<
testpoints
.
TP_r_len
;
++
i
)
testpoints
.
TP_r_val
=
malloc
(
testpoints
.
TP_r_len
*
sizeof
(
testpoints
.
TP_r_val
[
0
]));
if
(
testpoints
.
TP_r_val
==
NULL
)
{
gdsError
(
GDS_ERR_MEM
,
"unable to allocate memory for RPC struct"
);
return
-
5
;
}
int
i
;
for
(
i
=
0
;
i
<
testpoints
.
TP_r_len
;
++
i
)
{
testpoints
.
TP_r_val
[
i
]
=
target
[
i
];
}
...
...
@@ -299,6 +307,7 @@ int tpClear (int node, const testpoint_t tp[], int tplen)
/* make client handle */
clnt
=
tpMakeHandle
(
node
);
if
(
clnt
==
NULL
)
{
free
(
testpoints
.
TP_r_val
);
return
-
3
;
}
...
...
@@ -306,11 +315,13 @@ int tpClear (int node, const testpoint_t tp[], int tplen)
if
((
cleartp_1
(
tpNode
[
node
].
id
,
node
,
testpoints
,
&
result
,
clnt
)
!=
RPC_SUCCESS
)
||
(
result
<
0
))
{
gdsError
(
GDS_ERR_PROG
,
"unable to clear test points"
);
free
(
testpoints
.
TP_r_val
);
result
=
-
4
;
}
/* free handle */
clnt_destroy
(
clnt
);
free
(
testpoints
.
TP_r_val
);
return
result
;
}
...
...
@@ -414,7 +425,8 @@ int tpRequest (int node, const testpoint_t tp[], int tplen,
return
-
5
;
}
for
(
int
i
=
0
;
i
<
tplen
;
++
i
)
int
i
;
for
(
i
=
0
;
i
<
tplen
;
++
i
)
{
testpoints
.
TP_r_val
[
i
]
=
tp
[
i
];
}
...
...
@@ -754,10 +766,12 @@ char* tpCommand (const char* cmd)
}
else
{
node
=
atoi
(
p
);
if
((
node
<
0
)
||
(
node
>=
TP_MAX_NODE
)
||
(
!
tpNode
[
node
].
valid
))
{
printf
(
"node %d valid=%d
\n
"
,
node
,
tpNode
[
node
].
valid
);
return
cmdreply
(
"error: invalid node number"
);
if
((
node
<
0
)
||
(
node
>=
TP_MAX_NODE
))
{
printf
(
"invalid node number: 0 < node <= %d
\n
"
,
TP_MAX_NODE
);
return
cmdreply
(
"error: node number out of range"
);
}
if
((
!
tpNode
[
node
].
valid
))
{
return
cmdreply
(
"error: node number invalid"
);
}
buf
=
malloc
(
2000
);
if
(
!
buf
)
/* JCB */
...
...
@@ -790,6 +804,10 @@ char* tpCommand (const char* cmd)
}
else
{
p
=
endptr
;
if
((
node
<
0
)
||
(
node
>=
TP_MAX_NODE
))
{
printf
(
"invalid node number: 0 < node <= %d
\n
"
,
TP_MAX_NODE
);
return
cmdreply
(
"error: node number out of range"
);
}
/* assume test point numbers are specified */
if
(
!
tpNode
[
node
].
valid
)
{
return
cmdreply
(
"error: invalid node number"
);
...
...
@@ -846,6 +864,10 @@ char* tpCommand (const char* cmd)
}
else
{
p
=
endptr
;
if
((
node
<
0
)
||
(
node
>=
TP_MAX_NODE
))
{
printf
(
"invalid node number: 0 < node <= %d
\n
"
,
TP_MAX_NODE
);
return
cmdreply
(
"error: node number out of range"
);
}
/* assume test point numbers are specified */
if
(
!
tpNode
[
node
].
valid
)
{
return
cmdreply
(
"error: invalid node number"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment