mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
115 lines
3.1 KiB
C
115 lines
3.1 KiB
C
/* $Copyright: $
|
|
* Copyright (c) 1996 - 2023 by Steve Baker (ice@mama.indstate.edu)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#include "third_party/musl/passwd.h"
|
|
#include "third_party/tree/tree.h"
|
|
|
|
/* Faster uid/gid -> name lookup with hash(tm)(r)(c) tables! */
|
|
#define HASH(x) ((x)&255)
|
|
struct xtable *gtable[256], *utable[256];
|
|
|
|
#define inohash(x) ((x)&255)
|
|
struct inotable *itable[256];
|
|
|
|
char *uidtoname(uid_t uid)
|
|
{
|
|
struct xtable *o, *p, *t;
|
|
struct passwd *ent;
|
|
char ubuf[32];
|
|
int uent = HASH(uid);
|
|
|
|
for(o = p = utable[uent]; p ; p=p->nxt) {
|
|
if (uid == p->xid) return p->name;
|
|
else if (uid < p->xid) break;
|
|
o = p;
|
|
}
|
|
/* Not found, do a real lookup and add to table */
|
|
t = xmalloc(sizeof(struct xtable));
|
|
if ((ent = getpwuid(uid)) != NULL) t->name = scopy(ent->pw_name);
|
|
else {
|
|
snprintf(ubuf,30,"%d",uid);
|
|
ubuf[31] = 0;
|
|
t->name = scopy(ubuf);
|
|
}
|
|
t->xid = uid;
|
|
t->nxt = p;
|
|
if (p == utable[uent]) utable[uent] = t;
|
|
else o->nxt = t;
|
|
return t->name;
|
|
}
|
|
|
|
char *gidtoname(gid_t gid)
|
|
{
|
|
struct xtable *o, *p, *t;
|
|
struct group *ent;
|
|
char gbuf[32];
|
|
int gent = HASH(gid);
|
|
|
|
for(o = p = gtable[gent]; p ; p=p->nxt) {
|
|
if (gid == p->xid) return p->name;
|
|
else if (gid < p->xid) break;
|
|
o = p;
|
|
}
|
|
/* Not found, do a real lookup and add to table */
|
|
t = xmalloc(sizeof(struct xtable));
|
|
if ((ent = getgrgid(gid)) != NULL) t->name = scopy(ent->gr_name);
|
|
else {
|
|
snprintf(gbuf,30,"%d",gid);
|
|
gbuf[31] = 0;
|
|
t->name = scopy(gbuf);
|
|
}
|
|
t->xid = gid;
|
|
t->nxt = p;
|
|
if (p == gtable[gent]) gtable[gent] = t;
|
|
else o->nxt = t;
|
|
return t->name;
|
|
}
|
|
|
|
/* Record inode numbers of followed sym-links to avoid refollowing them */
|
|
void saveino(ino_t inode, dev_t device)
|
|
{
|
|
struct inotable *it, *ip, *pp;
|
|
int hp = inohash(inode);
|
|
|
|
for(pp = ip = itable[hp];ip;ip = ip->nxt) {
|
|
if (ip->inode > inode) break;
|
|
if (ip->inode == inode && ip->device >= device) break;
|
|
pp = ip;
|
|
}
|
|
|
|
if (ip && ip->inode == inode && ip->device == device) return;
|
|
|
|
it = xmalloc(sizeof(struct inotable));
|
|
it->inode = inode;
|
|
it->device = device;
|
|
it->nxt = ip;
|
|
if (ip == itable[hp]) itable[hp] = it;
|
|
else pp->nxt = it;
|
|
}
|
|
|
|
int findino(ino_t inode, dev_t device)
|
|
{
|
|
struct inotable *it;
|
|
|
|
for(it=itable[inohash(inode)]; it; it=it->nxt) {
|
|
if (it->inode > inode) break;
|
|
if (it->inode == inode && it->device >= device) break;
|
|
}
|
|
|
|
if (it && it->inode == inode && it->device == device) return TRUE;
|
|
return FALSE;
|
|
}
|