RSS Feed/News Style archive import may not update files atomically

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
27,123
Points
823

Reputation:

When importing a style archive, XenForo may copy files over existing files.
This operation is not atomic and thus those files may be accessed by a client in an inconsistent state (eg. half-written).

XF\Service\Style\ArchiveImport::copyAssetFiles
Code:

Code:
if ($this->rewriteAssetPaths)
{
    File::copyFileToAbstractedPath($pathname, $dataUriPrefix . $stdPath);
}
else
{
    $newPathPrefix = \XF::getRootDirectory() . $DS;
    File::copyFile($pathname, $newPathPrefix . $stdPath);
}

While there...

Read more

Continue reading...
 
Status
Not open for further replies.
Top