Custom Query (1145 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (355 - 357 of 1145)

Ticket Resolution Summary Owner Reporter
#367 fixed nss-nonlocal should disallow numeric group names andersk

Reported by andersk, 15 years ago.

Description

Currently, chown 0:0 file or chgrp 0 file causes the file to end up with gid 68499, which is the Moira group with name “0”. So nss_nonlocal should probably be filtering that group.

(This causes problems with dh_fixperms when building Debian packages. There is probably also a dh_fixperms bug here that should be reported upstream.)

#986 fixed nss_nonlocal race condition andersk andersk

Reported by andersk, 13 years ago.

Description

There’s a race here because fct_start could be written before startp. Should throw up some memory barriers or something.

    static service_user *startp = NULL;
    static void *fct_start = NULL;
    …
    if (fct_start == NULL &&
        w.lookup(&startp, w.fct_name, &fct_start) != 0) {
        *w.status = NSS_STATUS_UNAVAIL;
        goto walk_nss_out;
    }
#1596 fixed nss_nonlocal needs surgery for glibc 2.27 andersk

Reported by andersk, 7 years ago.

Description

nss_nonlocal needs to be updated for a recent spree of glibc internal ABI changes:

Note: See TracQuery for help on using queries.