Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
linux
Commits
a734b95c
Commit
a734b95c
authored
May 22, 2004
by
Nathan Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Fix a use-after-free during transaction commit when the log
is in error state. SGI Modid: xfs-linux:xfs-kern:172041a
parent
233dc581
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
14 deletions
+25
-14
fs/xfs/xfs_log.c
fs/xfs/xfs_log.c
+5
-10
fs/xfs/xfs_trans.c
fs/xfs/xfs_trans.c
+20
-4
No files found.
fs/xfs/xfs_log.c
View file @
a734b95c
...
...
@@ -337,13 +337,11 @@ xfs_log_force(xfs_mount_t *mp,
}
/* xfs_log_force */
/*
* This function will take a log sequence number and check to see if that
* lsn has been flushed to disk. If it has, then the callback function is
* called with the callback argument. If the relevant in-core log has not
* been synced to disk, we add the callback to the callback list of the
* in-core log.
* Attaches a new iclog I/O completion callback routine during
* transaction commit. If the log is in error state, a non-zero
* return code is handed back and the caller is responsible for
* executing the callback at an appropriate time.
*/
int
xfs_log_notify
(
xfs_mount_t
*
mp
,
/* mount of partition */
...
...
@@ -369,10 +367,7 @@ xfs_log_notify(xfs_mount_t *mp, /* mount of partition */
iclog
->
ic_callback_tail
=
&
(
cb
->
cb_next
);
}
LOG_UNLOCK
(
log
,
spl
);
if
(
abortflg
)
{
cb
->
cb_func
(
cb
->
cb_arg
,
abortflg
);
}
return
0
;
return
abortflg
;
}
/* xfs_log_notify */
int
...
...
fs/xfs/xfs_trans.c
View file @
a734b95c
...
...
@@ -855,15 +855,18 @@ xfs_trans_commit(
tp
->
t_logcb
.
cb_func
=
(
void
(
*
)(
void
*
,
int
))
xfs_trans_committed
;
tp
->
t_logcb
.
cb_arg
=
tp
;
/* We need to pass the iclog buffer which was used for the
/*
* We need to pass the iclog buffer which was used for the
* transaction commit record into this function, and attach
* the callback to it. The callback must be attached before
* the items are unlocked to avoid racing with other threads
* waiting for an item to unlock.
*/
error
=
xfs_log_notify
(
mp
,
commit_iclog
,
&
(
tp
->
t_logcb
));
shutdown
=
xfs_log_notify
(
mp
,
commit_iclog
,
&
(
tp
->
t_logcb
));
/* mark this thread as no longer being in a transaction */
/*
* Mark this thread as no longer being in a transaction
*/
PFLAGS_RESTORE_FSTRANS
(
&
tp
->
t_pflags
);
/*
...
...
@@ -881,6 +884,19 @@ xfs_trans_commit(
*/
xfs_trans_unlock_items
(
tp
,
commit_lsn
);
/*
* If we detected a log error earlier, finish committing
* the transaction now (unpin log items, etc).
*
* Order is critical here, to avoid using the transaction
* pointer after its been freed (by xfs_trans_committed
* either here now, or as a callback). We cannot do this
* step inside xfs_log_notify as was done earlier because
* of this issue.
*/
if
(
shutdown
)
xfs_trans_committed
(
tp
,
XFS_LI_ABORTED
);
/*
* Now that the xfs_trans_committed callback has been attached,
* and the items are released we can finally allow the iclog to
...
...
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