This is an archive of the discontinued LLVM Phabricator instance.

[Support/FileSystem] Use st_atimespec only when __APPLE__ is defined
Needs RevisionPublic

Authored by MaskRay on Nov 25 2018, 7:24 PM.

Details

Summary

st_atim is required by POSIX 2008 and has very good support across POSIX platforms (glibc 2.12, FreeBSD 9, OpenBSD 4.5, NetBSD (since 2013-04-07), illumos (likely from the beginning), ...). We can simplify the code by fallbacking to st_atimespec only when APPLE is defined.

Diff Detail

Event Timeline

MaskRay created this revision.Nov 25 2018, 7:24 PM
MaskRay updated this revision to Diff 175191.Nov 25 2018, 7:33 PM

Update description

Well, as long as there is need for a special code path under __APPLE__ I prefer to stick to autodetection.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

MaskRay updated this revision to Diff 175287.Nov 26 2018, 10:16 AM
MaskRay edited the summary of this revision. (Show Details)

.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Do you mean that someone reinvented build scripts in bazel? If so, it sounds like a downstream problem not relevant to the LLVM codebase. I consider this new version as inferior as every OS check shall be ideally replaced with a check against feature. For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

krytarowski requested changes to this revision.Nov 26 2018, 10:47 AM
This revision now requires changes to proceed.Nov 26 2018, 10:47 AM

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Do you mean that someone reinvented build scripts in bazel? If so, it sounds like a downstream problem not relevant to the LLVM codebase. I consider this new version as inferior as every OS check shall be ideally replaced with a check against feature. For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Have you read the description? illumos usr/src/uts/common/sys/stat.h has had st_atim for probably 14 years. typedef struct timespec timestruc_t;

We are here discussing this specific feature of POSIX.1-2008, not overall POSIX.1-2008.

For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Of course, but they are irrelevant here as we don't use these SmartOS/Linux specific features.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Do you mean that someone reinvented build scripts in bazel? If so, it sounds like a downstream problem not relevant to the LLVM codebase. I consider this new version as inferior as every OS check shall be ideally replaced with a check against feature. For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Have you read the description? illumos usr/src/uts/common/sys/stat.h has had st_atim for probably 14 years. typedef struct timespec timestruc_t;

We are here discussing this specific feature of POSIX.1-2008, not overall POSIX.1-2008.

For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Of course, but they are irrelevant here as we don't use these SmartOS/Linux specific features.

This is an example of a mentioned OS in description when feature checks are plain wrong by design (even if this particular example might work for all illumos distributions). Another example, Minix keeps importing a lot of code from NetBSD, I don't intend to hardcode minix here or there and keep iterating over 3rd party projects for every new feature in the OS.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Do you mean that someone reinvented build scripts in bazel? If so, it sounds like a downstream problem not relevant to the LLVM codebase. I consider this new version as inferior as every OS check shall be ideally replaced with a check against feature. For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Have you read the description? illumos usr/src/uts/common/sys/stat.h has had st_atim for probably 14 years. typedef struct timespec timestruc_t;

We are here discussing this specific feature of POSIX.1-2008, not overall POSIX.1-2008.

For example mentioned Illumos - SmartOS has a lot of APIs from Linux in order to host Linux-KVM and this is different to other Illumos distributions (and different to Solaris).

Of course, but they are irrelevant here as we don't use these SmartOS/Linux specific features.

This is an example of a mentioned OS in description when feature checks are plain wrong by design (even if this particular example might work for all illumos distributions). Another example, Minix keeps importing a lot of code from NetBSD, I don't intend to hardcode minix here or there and keep iterating over 3rd party projects for every new feature in the OS.

Sorry if I didn't specify the NetBSD date when the st_atim support is added in the first revision, but I think i've added that before you made your first comment. Do you think a minix that is modern enough and the rest of the community should care about doesn't support st_atim? If it doesn't, I can extend the #ifdef __APPLE__ check to include it. I have a feeling that some of our discussion may have diverged from the original purpose of this revision. It tries to simplify the various cmake feature detection and preprocessor detection. If the minix community cares if someone else may inadvertently break their builds, they should contribute a buildbot, otherwise, it is up to luck that nobody would break theirs. We should also not emphasize more on hypothetical platforms that don't have good POSIX.1-2008 support without a clear proof. At the least, for the platforms that are not widely used, it is not rare that people inadvertently break them but usually they can be fixed soon.

Do our minimum system requirements for building LLVM include requiring POSIX 2008 conformance (perhaps indirectly, through the minimum toolchain requirements)?

There are almost no OSes having conformance with UNIX/POSIX. UNIXv6 (or similar) is Solaris only.

If our existing system requirements aren't sufficient to practically guarantee these fields are available, I'd prefer to keep the autodetect code and rely on that instead.

There are 2 pieces of autodetect code:

  1. preprocessor level detection #if defined(HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC)
  2. cmake detection CHECK_STRUCT_HAS_MEMBER

After this patch, they get simplified and become:

  1. preprocessor level detection #ifdef __APPLE__

I recognize that, but I don't think it's all that much more simple (we still have to test for __APPLE__) and worry that it is also more fragile because it removes the dynamic cmake detection.

On https://github.com/apple/darwin-xnu/blob/master/bsd/sys/stat.h , I cannot find a better feature macro to test so I have to use __APPLE__. When they start to support st_atim (which is widely available on other platforms) in a newer version, we can make the #ifdef __APPLE__ check more specific.

The patch directly tests for the necessary prerequisite and removes two cmake variables. This makes it substantially more build system agnostic (for people who use gn,bazel,... they don't need to re-invent the feature detection mechanism in their build systems) and probably (ironically) more portable.

Given that we already use feature detection rather heavily, I don't think deviating here buys us all that much in practice.

krytarowski added a comment.EditedNov 26 2018, 11:34 AM

I'm expressing that swapping feature detection to OS checks is inferior and makes this code worse, I gave two illustrations when it makes a lot of harm. I don't agree with this patch regardless of what OS in what version when adopted one or the another form (or none of them).

If you have problems replacing cmake with something else, it's not a problem in LLVM.

I agree with Aaron. The CMake feature is working correctly for all supported use cases, and buys us much more portability than the replacement. I'm yet to hear any actual advantage from not using CMake check.

Given that we already use feature detection rather heavily, I don't think deviating here buys us all that much in practice.

We do have lots of feature detection macros in use but each brings some maintenance cost and we should be cautious to introduce new ones. We definitely should take each case by case. For this particular case, we know that st_atim has good support for systems other than macOS.
If I have to write defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__), I'll start considering whether a HAVE_* macro can do a better job. But here, a simple check like #ifdef __APPLE__ suffices.

The CMake feature is working correctly for all supported use cases, and buys us much more portability than the replacement. I'm yet to hear any actual advantage from not using CMake check.

cmake variables and HAVE_* macros are easy to introduce but hard to remove. For this st_atim case, __APPLE__ is lacking behind but we can envision it will catch up later, and we can eventually remove the check. The check is also intentionally dichotomous instead of trichotomous as atime_nsec = mtime_nsec = 0; shouldn't happen. Readers will not stop here and wonder what happens if neither macros is defined.
Portability is considered with the universal set in mind. It does not buy us anything to extend our support unlimited to some unknown hypothetical platforms. If such platform does exist and this patch breaks it, I hope its users will stop for 1 second and think why their POSIX platform still hasn't be prepared for a standard released 10 years ago. On the other hand, the code is evolving. Though for portability it might not happen, if __APPLE__ removed st_atimespec or the hypothetical platform's users want to fix the code, I believe the case is simple enough for contributors to fix.

  1. Wrong. Specific checks are easier to find and remove because they can be easily found. Looking for __APPLE__ is going to yield much more results than anticipated.
  2. Expecting people to fix old releases because your fragile logic stopped working and they need the old version for some project is not nice.

Portability is about writing code that's portable right now, i.e. can work on many platforms, including platforms you didn't specifically anticipate. It's not only about specifically accounting for the platforms you care about, and deferring fixing the rest on somebody else. Or claiming that somebody's platform doesn't have to be supported because he doesn't have resources to contribute a buildbot.

Given that we already use feature detection rather heavily, I don't think deviating here buys us all that much in practice.

We do have lots of feature detection macros in use but each brings some maintenance cost and we should be cautious to introduce new ones.

Sure, but very little maintenance cost for us overall.

We definitely should take each case by case.

I think it's great to ask "is this the right way to do this" for new code. However, once we pick a way to do something, I prefer to use it consistently unless there's a strong reason to deviate.

For this particular case, we know that st_atim has good support for systems other than macOS.
If I have to write defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__), I'll start considering whether a HAVE_* macro can do a better job. But here, a simple check like #ifdef __APPLE__ suffices.

Except that the code being guarded has nothing to do with __APPLE__ or the behavior on that platform and everything to do with whether struct stat has the expected fields. The current conditional inclusion expression more closely relates to what's being guarded, which is one of the reasons why it's an improvement over the proposed change.

The CMake feature is working correctly for all supported use cases, and buys us much more portability than the replacement. I'm yet to hear any actual advantage from not using CMake check.

cmake variables and HAVE_* macros are easy to introduce but hard to remove.

We have made passes over this file in the past and removed macros that were no longer required. The last time we did this was back in April.

For this st_atim case, __APPLE__ is lacking behind but we can envision it will catch up later, and we can eventually remove the check.

The same is true for the feature testing macros. For instance, once we updated our minimum system requirements such that stdint.h was provided everywhere, we removed the corresponding feature test macro.

The check is also intentionally dichotomous instead of trichotomous as atime_nsec = mtime_nsec = 0; shouldn't happen. Readers will not stop here and wonder what happens if neither macros is defined.
Portability is considered with the universal set in mind. It does not buy us anything to extend our support unlimited to some unknown hypothetical platforms. If such platform does exist and this patch breaks it, I hope its users will stop for 1 second and think why their POSIX platform still hasn't be prepared for a standard released 10 years ago. On the other hand, the code is evolving. Though for portability it might not happen, if __APPLE__ removed st_atimespec or the hypothetical platform's users want to fix the code, I believe the case is simple enough for contributors to fix.

"It does not buy us anything" -- yes it does; it buys us exactly what we were sold: does the target architecture support this feature we're relying on? "There's good support for X everywhere *except for*" is exactly why I prefer the feature testing macro -- it means we don't have to guess where the feature is supported and it means that we can trivially identify WHY something is conditionally included rather than wondering why the platform is suddenly important. In this same file, check out getMainExecutable() for an example of what this kind of "look at the platform, not the functionality" turns into. I believe:

#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) ||   \
    defined(__minix) || defined(__DragonFly__) ||                              \
    defined(__FreeBSD_kernel__) || defined(_AIX)

should be spelled #elif defined(HAVE_GETPROGPATH); saving the platform identification checks for times when the behavior of the same API differs between platforms.

thakis added a subscriber: thakis.Dec 1 2018, 7:23 PM

I don't really have an opinion on this patch, but I'd like to mention a few things.

  • The feature test macros generally do have two downsides:
    1. They can have false positives. We had one bug where the feature detection for mmap() was accidentally true on Windows which lead to pretty bad behavior.
    2. They slow down cmake. Every single check probably not a ton, but running cmake on my system takes minutes, much of this time doing feature checks that return the same every time.
  • maskray somewhere says that this helps the gn build, but a) the gn build explicitly shouldn't be an argument for making changes in the cmake build, see llvm/utils/gn/README.rst, so please don't do that b) this was very easy to merge to the gn build (see r347530).

I personally think doing something like

if (APPLE)
  (set HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC 1)
  (set HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 0)
else()
  (set HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC 1)
  (set HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 0)
endif()

if that's what the check computes on every system makes a lot of sense, but it's in the end a philosophical decision on if you want your systems to be fast, predictable, and inflexible, or slow, unpredictable, and flexible.

krytarowski added a comment.EditedDec 2 2018, 7:01 AM
  • The feature test macros generally do have two downsides:
    1. They can have false positives. We had one bug where the feature detection for mmap() was accidentally true on Windows which lead to pretty bad behavior.

This is a sign that feature detection was done wrongly, not that it's inferior to hardcoding.

There are narrow cases when it's difficult to detect some features with feature detection rules, but it's not this case.

  1. They slow down cmake. Every single check probably not a ton, but running cmake on my system takes minutes, much of this time doing feature checks that return the same every time.

It's a marginal cost of compatibility.

mgorny added a comment.Dec 2 2018, 7:04 AM

Machine time is cheap, human time isn't. Saving time on CMake checks in no way justifies wasting somebody else's time when the hardcoded values mismatch at least once.

thakis added a comment.Dec 2 2018, 7:45 AM

Machine time is cheap, human time isn't. Saving time on CMake checks in no way justifies wasting somebody else's time when the hardcoded values mismatch at least once.

Isn't machine time that humans have to wait on human time too? 🤔

In order to push this forward I recommend to:

  • report to Apple developers to fix this compliance nit with POSIX 2008,
  • enhance gn/bazel/any to handle detection of members in structures (it's elementary feature for a build system that intends to be portable).

In order to push this forward I recommend to:

  • report to Apple developers to fix this compliance nit with POSIX 2008,
  • enhance gn/bazel/any to handle detection of members in structures (it's elementary feature for a build system that intends to be portable).

(As said,the gn build shouldn't inform what LLVM does, but this is an explicit non-goal for gn, which chooses fast, predictable, and inflexible. utils/gn/README.rst's "Philosophy" section has some words on this.)

labath resigned from this revision.Aug 9 2019, 2:02 AM
Herald added a project: Restricted Project. · View Herald TranscriptAug 9 2019, 2:02 AM
Herald added a subscriber: dexonsmith. · View Herald Transcript