On Mon, Mar 27, 2023 at 7:15 PM Josh Triplett <josh@xxxxxxxxxxxxxxxx> wrote: > > If there are no users of this and we can clean up the semantics, is > there a strong reason *not* to make `O_DIRECTORY | O_CREATE` actually > create a directory and atomically return a file descriptor for that > directory? That seems like genuinely useful behavior that we don't > currently have a syscall for. I didn't see any suggestion in the thread > for reasons why we can't or shouldn't do that. Absolutely not. For one thing, it is clearly not "genuinely useful behavior". It's just stupid. Name a *single* real situation where that would be a big improvement? Point to code, and point to a reason, and point to why it would make a difference. No made-up hypotheticals. If you want to open a directory, just do that fd = open(.., O_DIRECTORY); and if that directory doesn't exist, and you still want to create it, then just do mkdir(...); on it. Done. And mkdir() is atomic, so there's no race there with somebody else doing something else to that path. And no, there is no race with a subsequent open of that mkdir case, because you already know the result empty, so what would you do with the fd you just got? Absolutely nothing. It's useless. Edwin Starr sang a song all about it. So there is *zero* real reasons for that "open a directory and create it atomically". It's a nonsensical operation. Ok, just to play along - maybe you can make it slightly less nonsensical by throwing O_PATH into the mix, and now an empty directory file descriptor at least has *some* use. But even *if* you can point to such a thing being useful (and I'm really doubtful), it would *still* be stupid. Now your code would not only be specific to Linux, it would be specific to some very new version of Linux, and do something completely different on older versions. Because those older versions will do random things, ranging from "always return an error" to "create a regular file - not a directory - and then return an error anyway" and finally "create a regular file - not a directory - and return that resulting fd". So no. We're not adding a *fourth* set of semantics to something that is silly and useless to do in the first place, and that has already had three existing semantics. The reason it has had three different behaviors over the years is *literally* that nobody has ever wanted to do it, and so the fact that it has been broken for years hasn't even mattered. Don't try to make that situation worse by then making up new pointless meanings for it and try to come up with excuses why somebody would want to do that operation. Linus