Lars Schneider <larsxschneider@xxxxxxxxx> wrote: > > On 06 Sep 2016, at 23:06, Eric Wong <e@xxxxxxxxx> wrote: > > larsxschneider@xxxxxxxxx wrote: > >> static int ce_compare_data(const struct cache_entry *ce, struct stat *st) > >> { > >> int match = -1; > >> - int fd = open(ce->name, O_RDONLY); > >> + int fd = open(ce->name, O_RDONLY | O_CLOEXEC); > >> > >> if (fd >= 0) { > >> unsigned char sha1[20]; > > > > Also, this needs to check EINVAL when O_CLOEXEC != 0 the same > > way create_tempfile currently does. Somebody could be building > > with modern headers but running an old kernel that doesn't > > understand O_CLOEXEC. > > > > There should probably be a open() wrapper for handling this case > > since we're now up to 3 places where open(... O_CLOEXEC) is > > used. > > Right! Actually "sha1_file.c:git_open_noatime()" is already a wrapper, no? > Can't we use this here? The O_NOATIME flag shouldn't hurt, right? For ce_compare_data (and other O_RDONLY users), I guess git_open_noatime is fine; and probably preferable because of O_NOATIME. We probably should be using O_NOATIME for all O_RDONLY cases to get the last bit of performance out (especially since non-modern-Linux systems probably still lack relatime). However, create_tempfile needs O_RDWR|O_CREAT|O_EXCL but I guess we can clean that up in another series.