Project

General

Profile

Actions

Bug #14582

closed

lstat in Ubuntu 20.04 LX zones reporting incorrect values

Added by Ian Collins over 1 year ago. Updated over 1 year ago.

Status:
Closed
Priority:
High
Assignee:
-
Category:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Difficulty:
Medium
Tags:
Gerrit CR:
External Bug:

Description

I noticed that my build zones that use ccache were filling up despite there being a configured limit to the cache size. Despite the filesystem being full, ccache reporting was showing a much smaller size.

Ccache is using lstat to get the block count for the cache files (st_blocks) which is multiplied by 512 to approximate the size.

Picking a random cache file I see the following on a 16.04 zone:

  1. stat /home/.ccache/7/5/e446e54e52e11df06f2f588aae4c35-2994365.o
    File: '/home/.ccache/7/5/e446e54e52e11df06f2f588aae4c35-2994365.o'
    Size: 602072 Blocks: 1285 IO Block: 131072 regular file

which would give the size as 657920.

However, on a 20.04 zone:

  1. stat /home/.ccache/e/5/6a9c5k5jfcncsj97gmtmr4f6vc2vgeqR
    File: /home/.ccache/e/5/6a9c5k5jfcncsj97gmtmr4f6vc2vgeqR
    Size: 1130311 Blocks: 662 IO Block: 131072 regular file

which would give the size as 318464, about 28% of the actual size!

Changing the ccache code to just use st_size, still gives accurate reporting elsewhere but now over reports the space used by ~3.5 (1/0.28)
times!

This also breaks du:

  1. ls -lh ccache
    -rwxr-xr-x 1 root root 1.8M Mar 21 02:43 ccache
  1. du -sh ccache
    971K ccache

So, it looks like lstat has a problem in Ubuntu 20.04 LX zones.

Actions #1

Updated by Dan McDonald over 1 year ago

  • Status changed from New to Closed

I will file this in SmartOS, as LX is not in illumos-gate, only in two downstreams (SmartOS and OmniOS).

Also see #7967

Actions

Also available in: Atom PDF