2 * Top users/processes display for Unix
4 * This program may be freely redistributed,
5 * but this entire comment MUST remain intact.
7 * Copyright (c) 1984, 1989, William LeFebvre, Rice University
8 * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
12 * Username translation code for top.
14 * These routines handle uid to username mapping.
15 * They use a hashing table scheme to reduce reading overhead.
16 * For the time being, these are very straightforward hashing routines.
17 * Maybe someday I'll put in something better. But with the advent of
18 * "random access" password files, it might not be worth the effort.
20 * Changes to these have been provided by John Gilmore (gnu@toad.com).
22 * The hash has been simplified in this release, to avoid the
23 * table overflow problems of previous releases. If the value
24 * at the initial hash location is not right, it is replaced
25 * by the right value. Collisions will cause us to call getpw*
26 * but hey, this is a cache, not the Library of Congress.
27 * This makes the table size independent of the passwd file size.
30 #include <sys/param.h>
43 char name
[MAXLOGNAME
];
46 #define is_empty_hash(x) (hash_table[x].name[0] == 0)
48 /* simple minded hashing function */
49 #define hashit(i) (abs(i) % Table_size)
51 /* K&R requires that statically declared tables be initialized to zero. */
52 /* We depend on that for hash_table and YOUR compiler had BETTER do it! */
53 static struct hash_el hash_table
[Table_size
];
61 hashindex
= hashit(uid
);
62 if (is_empty_hash(hashindex
) || (hash_table
[hashindex
].uid
!= uid
))
64 /* not here or not right -- get it out of passwd */
65 hashindex
= get_user(uid
);
67 return(hash_table
[hashindex
].name
);
71 userid(char username_
[])
75 /* Eventually we want this to enter everything in the hash table,
76 but for now we just do it simply and remember just the result.
79 if ((pwd
= getpwnam(username_
)) == NULL
)
84 /* enter the result in the hash table */
85 enter_user(pwd
->pw_uid
, username_
, 1);
87 /* return our result */
91 /* wecare 1 = enter it always, 0 = nice to have */
93 enter_user(int uid
, char name
[], bool wecare
)
98 fprintf(stderr
, "enter_hash(%d, %s, %d)\n", uid
, name
, wecare
);
101 hashindex
= hashit(uid
);
103 if (!is_empty_hash(hashindex
))
106 return (0); /* Don't clobber a slot for trash */
107 if (hash_table
[hashindex
].uid
== uid
)
108 return(hashindex
); /* Fortuitous find */
111 /* empty or wrong slot -- fill it with new value */
112 hash_table
[hashindex
].uid
= uid
;
113 (void) strncpy(hash_table
[hashindex
].name
, name
, MAXLOGNAME
- 1);
118 * Get a userid->name mapping from the system.
126 /* no performance penalty for using getpwuid makes it easy */
127 if ((pwd
= getpwuid(uid
)) != NULL
)
129 return(enter_user(pwd
->pw_uid
, pwd
->pw_name
, 1));
132 /* if we can't find the name at all, then use the uid as the name */
133 return(enter_user(uid
, itoa7(uid
), 1));