Project

General

Profile

Actions

Bug #19112

closed

unlink of non existing lockfiles generates warnings in frontend

Added by Typoheads GmbH almost 16 years ago. Updated about 13 years ago.

Status:
Closed
Priority:
Should have
Category:
Communication
Target version:
-
Start date:
2008-07-16
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Warning: unlink(<stipped>/typo3temp/locks/489893f2c580c9c27eefb8733ad52a36) [function.unlink]:  
No such file or directory in <stipped>/t3lib/class.t3lib_lock.php on line 216

in line 216 of t3lib/class.t3lib_lock.php a lockfile is removed without checking. If the lockfile doesn't exist a php warning is generated.
(issue imported from #M8980)


Files

locking_fe_warning.diff (428 Bytes) locking_fe_warning.diff Administrator Admin, 2008-07-16 10:42
8980.patch (774 Bytes) 8980.patch Administrator Admin, 2009-06-09 19:57
t3lib_lock.patch (1.63 KB) t3lib_lock.patch Administrator Admin, 2009-09-25 11:20
bug_8980.diff (1.62 KB) bug_8980.diff Administrator Admin, 2010-09-09 16:38
8980_v5.diff (1.51 KB) 8980_v5.diff Administrator Admin, 2010-10-06 12:14

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #32282: typo3temp/locks warning. unlink function returns warningClosed2011-12-03

Actions
Actions #1

Updated by Franz Holzinger about 15 years ago

I confirm this bug in the most current svn 4.3:

( ! ) Warning: unlink(/var/www/html/mike/typo3temp/locks/f9669f0b1ad272ade2dcaa4388b2d185) [function.unlink]: No such file or directory in /var/www/html/trunk/t3lib/class.t3lib_lock.php on line 216
Call Stack
  1. Time Memory Function Location
    1 0.0159 131016 {main}( ) ../index.php:0
    2 0.0239 376896 require( '/var/www/html/trunk/typo3/sysext/cms/tslib/index_ts.php' ) ../index.php:76
    3 3134.2897 62672096 tslib_fe->generatePage_postProcessing( ) ../index_ts.php:421
    4 3135.1756 62690864 tslib_fe->releasePageGenerationLock( ) ../class.tslib_fe.php:3065
    5 3135.1757 62690864 t3lib_lock->release( ) ../class.tslib_fe.php:2895
    6 3135.1838 62690864 unlink ( ) ../class.t3lib_lock.php:216
Actions #2

Updated by Martin Holtz almost 15 years ago

i had that error too

with configuration:
$TYPO3_CONF_VARS['SYS']['lockingMode'] = 'flock'

and
$TYPO3_CONF_VARS['SYS']['lockingMode'] = 'simple'

Warning: unlink(/var/www/html/testsystem/typo3temp/locks/d412726f8e33176eab8b7e9f568ecf9f) [function.unlink]: No such file or directory in /var/www/html/typo3_src-4.2.6/t3lib/class.t3lib_lock.php on line 225

Warning: unlink(/var/www/html/testsystem/typo3temp/locks/d885c3dbc400d55d9df937b870d164a3) [function.unlink]: No such file or directory in /var/www/html/typo3_src-4.2.6/t3lib/class.t3lib_lock.php on line 225

i am wondering why there are two differen locks while rendering one page?

fyi: there is no file left in typo3temp/locks/

Actions #3

Updated by Leonhard Wimmer almost 15 years ago

I can confirm this problem on servers with error_reporting=On.
This should be quite easy to fix but is "New" nearly a year now. Is there a chance this is going to be fixed soon?

Actions #4

Updated by Benni Mack almost 15 years ago

Can somebody please point me on how to reproduce this issue?

Actions #5

Updated by Thomas Schröder almost 15 years ago

Playing arround with APC and memcached I also get such errors. I did a wget -m several times over the website. After a few runs for some pages the http-request took some minutes before the error was logged.
Right now I can not reproduce it exactly.

Actions #6

Updated by Tobias Eichelberger over 14 years ago

I just deleted every image in the typo3temp folder and the warning occured.

Actions #7

Updated by Martin Holtz over 14 years ago

Reproduce this issue:

1. Clear cache
2. request the same page twice

But: you need a page which takes some times to render, it helps if you put a lot of typoscript on that page, perhaps use cal and powermail etc. So there is a higher chance to get a collision.

Actions #8

Updated by Andy Kittner over 14 years ago

I believe this is a race-condition when acquiring the lock: In the time between is_file() returning False and touch creating the lock another process does the same. In the end two processes try to unlink the lockfile (beside the fact that whatever uses the lock isn't protected against parallel access).

I can reproduce this even with a simple hello-world dummy page, just set config.no_cache = 1 in the template and hammer the server with request (20 processes repeatedly starting curl to fetch the url worked well on my old P4)

If I change the algorithm to use fopen("x") instead of is_file & touch everything works as expected
(see attached patch)

Actions #9

Updated by Dierk Scharbert over 14 years ago

I patched class.t3lib_lock.php as follows in the T3 System I use. The existance of the resource should be checked first:

if (file_exists($this->resource))
{
if (unlink($this->resource) == false) {
$success = false;
}
}
else {
$success = false;
}
Actions #10

Updated by Andre almost 14 years ago

Patch "t3lib_lock.patch" works for me.

Actions #11

Updated by Susanne Moog over 13 years ago

trunk rev 9063

Actions #12

Updated by Susanne Moog about 13 years ago

  • Target version deleted (4.5.0)
Actions

Also available in: Atom PDF