Unix utility to monitor process usage and system statistics in a terminal window.
Warning: For general use, top must have suid status for the file's owner, root, which could be a security problem for some sites.
KNOWN PROBLEMS AND FIXES:
NEXTSTEP - v0.5 11/26/96 tpugh
1) Fixed missing command name for every process when running top on OPENSTEP 4.1 Black hardware. Problem occurred due to a kernal task data structure change.
NEXTSTEP - v0.4 2/29/96 tpugh
1) Second attempt to eliminated the text artifact in the command column.
2) When quiting the program, a message "nobody" was printed and the cursor was not placed at the bottom of the screen. The hash_table was corrupting memory when hashit(uid=-2) = -2 or any negative number.
3) Fixed incorrect load average display. Incorrect scaling of the kernel load average fixed-point values.
NEXTSTEP - v0.3 2/15/96 tpugh
This release fixes the problems in release v0.2.
1) Command name not showing in the display. This problem occurs for hppa and sparc machines, and NS4.0 alpha machines. NeXT changed the task structure, so top could not find utask structure which contains the command name. <mach/task.h> is not shipped with any NEXTSTEP systems.
2) Removed all C++ style comments from machine.c to be ANSI C compatible.
3) Removed the %WCPU field, no support for it.
4) Reduced line length to less than 80 columns. Some commands are long and will extend beyond 80 colums.
5) Fixed "top -U" fails with bus error. In special cases where only a specific user is displayed, the process index variable was being improperly advanced, resulting in zero process address values and bus errors.
6) Eliminated the text artifact in the command column.
NEXTSTEP - v0.2 9/1/95 tpugh
This release fixes two problems.
1) new processes were not showing up in the display.
2) compiling problems. The compiler flags are now correctly inserted into the makefile without user action. Continue to use the Configure script to setup and install the software. When it asks for compiler flags, use the defaults listed.
NEXTSTEP - v0.1 8/2/95 tpugh
This is the first release for NEXTSTEP, so beware. It's working nicely on my NeXTstation Turbo Color running NEXTSTEP v3.2.
Please let me know of any problem so we can fix them. Let me know if it works.
Tim Pugh
Oregon State University
tpugh@oce.orst.edu
COMPATIBILITY - next32
This is the machine-dependent module for NEXTSTEP v3.x
Reported to work for NEXTSTEP v3.0, v3.2, and v3.3 Mach OS:
NEXTSTEP v3.0 on Motorola machines.
NEXTSTEP v3.2 on Intel and Motorola machines.
NEXTSTEP v3.3 on Intel and Motorola machines.
Problem with command column for (Choose next40 for fix):
NEXTSTEP v3.2 on HP machines.
NEXTSTEP v3.3 on HP and Sparc machines.
Has not been tested for NEXTSTEP v2.x machines, although it should work.
Has not been tested for NEXTSTEP v3.1 machines, although it should work.
COMPATIBILITY - next33
This is the machine-dependent module for NEXTSTEP v3.x
Reported to work for:
NEXTSTEP v3.2 on HP machines.
NEXTSTEP v3.3 on HP and Sparc machines.
COMPATIBILITY - next40
This is the machine-dependent module for NEXTSTEP v4.x
Reported to work for NEXTSTEP v4.x Mach OS:
NEXTSTEP v4.0 on NeXTstation machines.
NEXTSTEP v4.1 on NeXTstation machines.
Has not been tested for NEXTSTEP v4.x Intel or SPARC machines.
FREQUENTLY ASKED QUESTIONS
#1: top 3.3 (after configuring for next32 with all defaults) on my i386 running NEXTSTEP 3.3, I get: Error calling task_by_unix_pid(): failure(5)
The call is failing because you do not have permission. You must be the superuser, root, or the program must have root privledges to work properly. It's been reported that setting the group sticky bit for kmem does not work, and the fix is to set the user sticky bit for root. So install "top" with the permissions 4755.
As root, do the following:
tsunami# chown root.kmem top
tsunami# chmod 4755 top
tsunami# ls -lg top
-rwsr-xr-x 1 root kmem 121408 Sep 1 10:14 top*
With the kmem group sticky bit set, we can read kernal memory without problems, but to communicate with the Mach kernal for task and thread info, it requires root privileges.
#2: How to compile top to create a multiple binary file or FAT?
Add the -arch <machine> flags to line 64 of the Makefile. i.e.
$(CC) $(CFLAGS) -o top $(OBJS) -ltermcap -lm $(LIBS)
#3: I installed 'top' chmod 4711, chown root.kmem, but cannot use the '-q'
flag unless I am logged in as 'root'
"top: warning: `-q' option can only be used by root"
This seems to indicate that the setuid to root isn't being recognized
correctly.
In order to run top with the "-q" command, top currently requires the user to be logged in a root because top checks the uid of the user logged in, not the effective uid of the file. Why? To not allow a regular users to swamp the system with a high-priority process. Imagine what a regular user could do with "top -q -s0 all"!