aboutsummaryrefslogtreecommitdiff
path: root/lib/libprocstat/Symbol.map
Commit message (Collapse)AuthorAgeFilesLines
* Bump SPECNAMELEN to MAXNAMLEN.Konstantin Belousov2019-01-271-1/+4
| | | | | | | | | | | | | | | | | This includes the bump for cdevsw d_version. Otherwise, the impact on the ABI (not KBI) is surprisingly low. The most important affected interface is devname(3) and ttyname(3) which already correctly handle long names (and ttyname(3) should not be affected at all). Still, due to the d_version bump, I argue that the change is not MFC-able. Requested by: mmacy Reviewed by: jhb Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D18932 Notes: svn path=/head/; revision=343485
* procstat(1): Add TCP socket send/recv buffer sizeConrad Meyer2017-05-261-1/+1
| | | | | | | | | | | Add TCP socket send and receive buffer size to procstat -f output. Reviewed by: kib, markj Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D10689 Notes: svn path=/head/; revision=318969
* Commit the 64-bit inode project.Konstantin Belousov2017-05-231-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend the ino_t, dev_t, nlink_t types to 64-bit ints. Modify struct dirent layout to add d_off, increase the size of d_fileno to 64-bits, increase the size of d_namlen to 16-bits, and change the required alignment. Increase struct statfs f_mntfromname[] and f_mntonname[] array length MNAMELEN to 1024. ABI breakage is mitigated by providing compatibility using versioned symbols, ingenious use of the existing padding in structures, and by employing other tricks. Unfortunately, not everything can be fixed, especially outside the base system. For instance, third-party APIs which pass struct stat around are broken in backward and forward incompatible ways. Kinfo sysctl MIBs ABI is changed in backward-compatible way, but there is no general mechanism to handle other sysctl MIBS which return structures where the layout has changed. It was considered that the breakage is either in the management interfaces, where we usually allow ABI slip, or is not important. Struct xvnode changed layout, no compat shims are provided. For struct xtty, dev_t tty device member was reduced to uint32_t. It was decided that keeping ABI compat in this case is more useful than reporting 64-bit dev_t, for the sake of pstat. Update note: strictly follow the instructions in UPDATING. Build and install the new kernel with COMPAT_FREEBSD11 option enabled, then reboot, and only then install new world. Credits: The 64-bit inode project, also known as ino64, started life many years ago as a project by Gleb Kurtsou (gleb). Kirk McKusick (mckusick) then picked up and updated the patch, and acted as a flag-waver. Feedback, suggestions, and discussions were carried by Ed Maste (emaste), John Baldwin (jhb), Jilles Tjoelker (jilles), and Rick Macklem (rmacklem). Kris Moore (kris) performed an initial ports investigation followed by an exp-run by Antoine Brodin (antoine). Essential and all-embracing testing was done by Peter Holm (pho). The heavy lifting of coordinating all these efforts and bringing the project to completion were done by Konstantin Belousov (kib). Sponsored by: The FreeBSD Foundation (emaste, kib) Differential revision: https://reviews.freebsd.org/D10439 Notes: svn path=/head/; revision=318736
* Add support for capturing 'struct ptrace_lwpinfo' for signalsTycho Nightingale2017-03-301-0/+5
| | | | | | | | | | | | resulting in a process dumping core in the corefile. Also extend procstat to view select members of 'struct ptrace_lwpinfo' from the contents of the note. Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=316286
* Similar to 233760 and 236717, export some more useful info about theJohn Baldwin2013-05-031-0/+1
| | | | | | | | | | | | | | | | | | kernel-based POSIX semaphore descriptors to userland via procstat(1) and fstat(1): - Change sem file descriptors to track the pathname they are associated with and add a ksem_info() method to copy the path out to a caller-supplied buffer. - Use the fo_stat() method of shared memory objects and ksem_info() to export the path, mode, and value of a semaphore via struct kinfo_file. - Add a struct semstat to the libprocstat(3) interface along with a procstat_get_sem_info() to export the mode and value of a semaphore. - Teach fstat about semaphores and to display their path, mode, and value. MFC after: 2 weeks Notes: svn path=/head/; revision=250223
* Add procstat_getkstack function to dump kernel stacks of a process.Mikolaj Golub2013-04-201-0/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249684
* Add procstat_getauxv function to retrieve a process auxiliary vector.Mikolaj Golub2013-04-201-0/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249681
* Extend libprocstat with functions to retrieve process command lineMikolaj Golub2013-04-201-0/+4
| | | | | | | | | | | arguments and environment variables. Suggested by: stas Reviewed by: jhb and stas (initial version) MFC after: 1 month Notes: svn path=/head/; revision=249679
* Add procstat_getosrel function to retrieve a process osrel info.Mikolaj Golub2013-04-201-0/+1
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249677
* Add procstat_getpathname function to retrieve a process executable.Mikolaj Golub2013-04-201-0/+1
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249676
* Add procstat_getrlimit function to retrieve a process resource limits info.Mikolaj Golub2013-04-201-0/+1
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249674
* Add procstat_getumask function to retrieve a process umask.Mikolaj Golub2013-04-201-0/+1
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249672
* Add procstat_getgroups function to retrieve process groups.Mikolaj Golub2013-04-201-0/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249670
* Add procstat_getvmmap function to get VM layout of a process.Mikolaj Golub2013-04-201-0/+2
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=249667
* Make libprocstat(3) extract procstat notes from a process core file.Mikolaj Golub2013-04-201-0/+1
| | | | | | | | | | PR: kern/173723 Suggested by: jhb Glanced by: kib MFC after: 1 month Notes: svn path=/head/; revision=249666
* Export some more useful info about shared memory objects to userlandJohn Baldwin2012-04-011-0/+4
| | | | | | | | | | | | | | | | | | | | | | via procstat(1) and fstat(1): - Change shm file descriptors to track the pathname they are associated with and add a shm_path() method to copy the path out to a caller-supplied buffer. - Use the fo_stat() method of shared memory objects and shm_path() to export the path, mode, and size of a shared memory object via struct kinfo_file. - Add a struct shmstat to the libprocstat(3) interface along with a procstat_get_shm_info() to export the mode and size of a shared memory object. - Change procstat to always print out the path for a given object if it is valid. - Teach fstat about shared memory objects and to display their path, mode, and size. MFC after: 2 weeks Notes: svn path=/head/; revision=233760
* - Add symbol versioning to libprocstat.Stanislav Sedov2011-05-141-0/+16
Suggested by: kib Notes: svn path=/head/; revision=221931