Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
dCache
cta
Commits
35be0073
Commit
35be0073
authored
7 years ago
by
Michael Davis
Browse files
Options
Downloads
Patches
Plain Diff
[XrdSsi] Fixes Metadata corruption bug
parent
89ef6607
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/XrdSsiPbRequest.h
+0
-3
0 additions, 3 deletions
frontend/XrdSsiPbRequest.h
frontend/XrdSsiPbRequestProc.h
+13
-14
13 additions, 14 deletions
frontend/XrdSsiPbRequestProc.h
with
13 additions
and
17 deletions
frontend/XrdSsiPbRequest.h
+
0
−
3
View file @
35be0073
...
...
@@ -140,9 +140,6 @@ bool XrdSsiPbRequest<RequestType, ResponseType, MetadataType, AlertType>::Proces
if
(
metadata_len
>
0
)
{
// Temporary workaround for XrdSsi bug #537:
++
metadata_buffer
;
--
metadata_len
;
// Deserialize the metadata
const
std
::
string
metadata_str
(
metadata_buffer
,
metadata_len
);
...
...
This diff is collapsed.
Click to expand it.
frontend/XrdSsiPbRequestProc.h
+
13
−
14
View file @
35be0073
...
...
@@ -31,7 +31,6 @@ public:
private
:
void
Alert
(
const
AlertType
&
alert
)
{
// Encapsulate the Alert protocol buffer inside a XrdSsiRespInfoMsg object. Alert message objects
...
...
@@ -50,6 +49,11 @@ private:
ResponseType
m_response
;
AlertType
m_alert
;
MetadataType
m_metadata
;
// Metadata and response buffers must stay in scope until Finished() is called, so they need to be member variables
std
::
string
m_response_str
;
std
::
string
m_metadata_str
;
};
...
...
@@ -95,35 +99,30 @@ void RequestProc<RequestType, ResponseType, MetadataType, AlertType>::Execute()
// Serialize the Metadata
std
::
string
response_str
;
if
(
!
m_metadata
.
SerializeToString
(
&
response_str
))
if
(
!
m_metadata
.
SerializeToString
(
&
m_metadata_str
))
{
throw
XrdSsiException
(
"metadata.SerializeToString() failed"
);
throw
XrdSsiException
(
"
m_
metadata.SerializeToString() failed"
);
}
// Send the Metadata
if
(
response
_str
.
size
()
>
0
)
if
(
m_metadata
_str
.
size
()
>
0
)
{
// Temporary workaround for XrdSsi bug #537:
response_str
=
" "
+
response_str
;
SetMetadata
(
response_str
.
c_str
(),
response_str
.
size
());
SetMetadata
(
m_metadata_str
.
c_str
(),
m_metadata_str
.
size
());
}
// Serialize the Response
if
(
!
m_response
.
SerializeToString
(
&
response_str
))
if
(
!
m_response
.
SerializeToString
(
&
m_
response_str
))
{
throw
XrdSsiException
(
"response.SerializeToString() failed"
);
throw
XrdSsiException
(
"
m_
response.SerializeToString() failed"
);
}
// Send the response
if
(
response_str
.
size
()
>
0
)
if
(
m_
response_str
.
size
()
>
0
)
{
SetResponse
(
response_str
.
c_str
(),
response_str
.
size
());
SetResponse
(
m_
response_str
.
c_str
(),
m_
response_str
.
size
());
}
}
...
...
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