1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
require 'sys/proctable/version'
require 'ffi'
module Sys
class ProcTable
extend FFI::Library
# Error typically raised if the ProcTable.ps method fails.
class Error < StandardError; end
# There is no constructor
private_class_method :new
PROC_PIDTASKALLINFO = 2
PROC_PIDTHREADINFO = 5
PROC_PIDLISTTHREADS = 6
private_constant :PROC_PIDTASKALLINFO
private_constant :PROC_PIDTHREADINFO
private_constant :PROC_PIDLISTTHREADS
CTL_KERN = 1
KERN_PROCARGS = 38
KERN_PROCARGS2 = 49
MAXCOMLEN = 16
MAXPATHLEN = 256
private_constant :CTL_KERN
private_constant :KERN_PROCARGS
private_constant :KERN_PROCARGS2
private_constant :MAXCOMLEN
private_constant :MAXPATHLEN
MAXTHREADNAMESIZE = 64
PROC_PIDPATHINFO_MAXSIZE = MAXPATHLEN * 4
private_constant :MAXTHREADNAMESIZE
private_constant :PROC_PIDPATHINFO_MAXSIZE
# JRuby/Truffleruby on Mac
unless defined? FFI::StructLayout::CharArray
if defined? FFI::StructLayout::CharArrayProxy
FFI::StructLayout::CharArray = FFI::StructLayout::CharArrayProxy
else
FFI::StructLayout::CharArray = FFI::Struct::CharArray
end
end
class ProcBsdInfo < FFI::Struct
layout(
:pbi_flags, :uint32_t,
:pbi_status, :uint32_t,
:pbi_xstatus, :uint32_t,
:pbi_pid, :uint32_t,
:pbi_ppid, :uint32_t,
:pbi_uid, :uid_t,
:pbi_gid, :uid_t,
:pbi_ruid, :uid_t,
:pbi_rgid, :gid_t,
:pbi_svuid, :uid_t,
:pbi_svgid, :gid_t,
:rfu1, :uint32_t,
:pbi_comm, [:char, MAXCOMLEN],
:pbi_name, [:char, MAXCOMLEN * 2],
:pbi_nfiles, :uint32_t,
:pbi_pgid, :uint32_t,
:pbi_pjobc, :uint32_t,
:e_tdev, :uint32_t,
:e_tpgid, :uint32_t,
:pbi_nice, :int32_t,
:pbi_start_tvsec, :uint64_t,
:pbi_start_tvusec, :uint64_t
)
end
private_constant :ProcBsdInfo
class ProcTaskInfo < FFI::Struct
layout(
:pti_virtual_size, :uint64_t,
:pti_resident_size, :uint64_t,
:pti_total_user, :uint64_t,
:pti_total_system, :uint64_t,
:pti_threads_user, :uint64_t,
:pti_threads_system, :uint64_t,
:pti_policy, :int32_t,
:pti_faults, :int32_t,
:pti_pageins, :int32_t,
:pti_cow_faults, :int32_t,
:pti_messages_sent, :int32_t,
:pti_messages_received, :int32_t,
:pti_syscalls_mach, :int32_t,
:pti_syscalls_unix, :int32_t,
:pti_csw, :int32_t,
:pti_threadnum, :int32_t,
:pti_numrunning, :int32_t,
:pti_priority, :int32_t
)
end
private_constant :ProcTaskInfo
class ProcThreadInfo < FFI::Struct
layout(
:pth_user_time, :uint64_t,
:pth_system_time, :uint64_t,
:pth_cpu_usage, :int32_t,
:pth_policy, :int32_t,
:pth_run_state, :int32_t,
:pth_flags, :int32_t,
:pth_sleep_time, :int32_t,
:pth_curpri, :int32_t,
:pth_priority, :int32_t,
:pth_maxpriority, :int32_t,
:pth_name, [:char, MAXTHREADNAMESIZE]
)
end
private_constant :ProcThreadInfo
# Map the fields from the FFI::Structs to the Sys::ProcTable struct on
# class load to reduce the amount of objects needing to be generated for
# each invocation of Sys::ProcTable.ps
all_members = ProcBsdInfo.members + ProcTaskInfo.members + ProcThreadInfo.members
PROC_STRUCT_FIELD_MAP = all_members.map do |member|
temp = member.to_s.split('_')
sproperty = temp.size > 1 ? temp[1..-1].join('_') : temp.first
[member, sproperty.to_sym]
end.to_h
class ProcTaskAllInfo < FFI::Struct
layout(:pbsd, ProcBsdInfo, :ptinfo, ProcTaskInfo)
end
private_constant :ProcTaskAllInfo
ffi_lib 'proc'
attach_function :proc_listallpids, %i[pointer int], :int
attach_function :proc_pidinfo, %i[int int uint64_t pointer int], :int
ffi_lib FFI::Library::LIBC
attach_function :sysctl, %i[pointer uint pointer pointer pointer size_t], :int
private_class_method :proc_listallpids
private_class_method :proc_pidinfo
private_class_method :sysctl
# These mostly mimic the struct members, but we've added a few custom ones as well.
@fields = %w[
flags status xstatus pid ppid uid gid ruid rgid svuid svgid rfu1 comm
name nfiles pgid pjobc tdev tpgid nice start_tvsec start_tvusec
virtual_size resident_size total_user total_system threads_user
threads_system policy faults pageins cow_faults messages_sent
messages_received syscalls_mach syscalls_unix csw threadnum numrunning
priority cmdline exe environ threadinfo
]
# Add a couple aliases to make it similar to Linux
ProcTableStruct = Struct.new("ProcTableStruct", *@fields) do
alias_method :vsize, :virtual_size
alias_method :rss, :resident_size
end
private_constant :ProcTableStruct
ThreadInfoStruct = Struct.new("ThreadInfo", :user_time, :system_time,
:cpu_usage, :policy, :run_state, :flags, :sleep_time, :curpri,
:priority, :maxpriority, :name
)
private_constant :ThreadInfoStruct
# Returns an array of fields that each ProcTableStruct will contain. This
# may be useful if you want to know in advance what fields are available
# without having to perform at least one read of the process table.
#
# Example:
#
# Sys::ProcTable.fields.each{ |field|
# puts "Field: #{field}"
# }
#
def self.fields
@fields
end
# In block form, yields a ProcTableStruct for each process entry that you
# have rights to. This method returns an array of ProcTableStruct's in
# non-block form.
#
# If a +pid+ is provided, then only a single ProcTableStruct is yielded or
# returned, or nil if no process information is found for that +pid+.
#
# Example:
#
# # Iterate over all processes
# ProcTable.ps do |proc_info|
# p proc_info
# end
#
# # Print process table information for only pid 1001
# p ProcTable.ps(pid: 1001)
#
# # Same as above, but do not include thread information
# p ProcTable.ps(pid: 1001, thread_info: false)
#
def self.ps(**kwargs)
pid = kwargs[:pid]
thread_info = kwargs[:thread_info]
if pid
raise TypeError unless pid.is_a?(Numeric)
info = ProcTaskAllInfo.new
nb = proc_pidinfo(pid, PROC_PIDTASKALLINFO, 0, info, info.size)
if nb <= 0
if [Errno::EPERM::Errno, Errno::ESRCH::Errno].include?(FFI.errno)
return # Either we don't have permission, or the pid no longer exists
else
raise SystemCallError.new('proc_pidinfo', FFI.errno)
end
end
return nil if nb != info.size # Invalid data
struct = ProcTableStruct.new
# Pass by reference
get_cmd_args_and_env(pid, struct)
get_thread_info(pid, struct, info[:ptinfo]) unless thread_info == false
apply_info_to_struct(info, struct)
struct.freeze
yield struct if block_given?
struct
else
num = proc_listallpids(nil, 0)
ptr = FFI::MemoryPointer.new(:pid_t, num)
num = proc_listallpids(ptr, ptr.size)
raise SystemCallError.new('proc_listallpids', FFI.errno) if num == 0
pids = ptr.get_array_of_int32(0, num).sort
array = block_given? ? nil : []
pids.each do |lpid|
next if pid && pid != lpid
info = ProcTaskAllInfo.new
nb = proc_pidinfo(lpid, PROC_PIDTASKALLINFO, 0, info, info.size)
if nb <= 0
if [Errno::EPERM::Errno, Errno::ESRCH::Errno].include?(FFI.errno)
next # Either we don't have permission, or the pid no longer exists
else
raise SystemCallError.new('proc_pidinfo', FFI.errno)
end
end
# Avoid potentially invalid data
next if nb != info.size
struct = ProcTableStruct.new
# Pass by reference
get_cmd_args_and_env(lpid, struct)
get_thread_info(lpid, struct, info[:ptinfo]) unless thread_info == false
apply_info_to_struct(info, struct)
struct.freeze
if block_given?
yield struct
else
array << struct
end
end
array
end
end
# Pass by reference method that updates the Ruby struct based on the FFI struct.
#
def self.apply_info_to_struct(info, struct)
# Chop the leading xx_ from the FFI struct members for our ruby struct.
info.members.each do |nested|
info[nested].members.each do |member|
if info[nested][member].is_a?(FFI::StructLayout::CharArray)
struct[PROC_STRUCT_FIELD_MAP[member]] = info[nested][member].to_s
else
struct[PROC_STRUCT_FIELD_MAP[member]] = info[nested][member]
end
end
end
end
private_class_method :apply_info_to_struct
# Returns an array of ThreadInfo objects for the given pid.
#
def self.get_thread_info(pid, struct, ptinfo)
buf = FFI::MemoryPointer.new(:uint64_t, ptinfo[:pti_threadnum])
num = proc_pidinfo(pid, PROC_PIDLISTTHREADS, 0, buf, buf.size)
if num <= 0
if [Errno::EPERM::Errno, Errno::ESRCH::Errno].include?(FFI.errno)
return # Either we don't have permission, or the pid no longer exists
else
raise SystemCallError.new('proc_pidinfo', FFI.errno)
end
end
max = ptinfo[:pti_threadnum]
struct[:threadinfo] = []
0.upto(max - 1) do |index|
tinfo = ProcThreadInfo.new
# Use read_array_of_uint64 for compatibility with JRuby if necessary.
if buf[index].respond_to?(:read_uint64)
nb = proc_pidinfo(pid, PROC_PIDTHREADINFO, buf[index].read_uint64, tinfo, tinfo.size)
else
nb = proc_pidinfo(pid, PROC_PIDTHREADINFO, buf[index].read_array_of_uint64(1).first, tinfo, tinfo.size)
end
if nb <= 0
if [Errno::EPERM::Errno, Errno::ESRCH::Errno].include?(FFI.errno)
next # Either we don't have permission, or the pid no longer exists
else
raise SystemCallError.new('proc_pidinfo', FFI.errno)
end
end
tinfo_struct = ThreadInfoStruct.new(
tinfo[:pth_user_time],
tinfo[:pth_system_time],
tinfo[:pth_cpu_usage],
tinfo[:pth_policy],
tinfo[:pth_run_state],
tinfo[:pth_flags],
tinfo[:pth_sleep_time],
tinfo[:pth_curpri],
tinfo[:pth_priority],
tinfo[:pth_maxpriority],
tinfo[:pth_name].to_s
)
struct[:threadinfo] << tinfo_struct
end
end
private_class_method :get_thread_info
# Get the command line arguments, as well as the environment settings,
# for the given PID.
#--
# Note that on Big Sur and later it seems that you cannot get environment
# variable information on spawned processes except in certain circumstances,
# e.g. SIP has been disabled, the kernel is in debug mode, etc.
#
def self.get_cmd_args_and_env(pid, struct)
len = FFI::MemoryPointer.new(:size_t)
mib = FFI::MemoryPointer.new(:int, 3)
# Since we may not have access to the process information due
# to improper privileges, just bail if we see a failure here.
# First use KERN_PROCARGS2 to discover the argc value of the running process.
mib.write_array_of_int([CTL_KERN, KERN_PROCARGS2, pid])
return if sysctl(mib, 3, nil, len, nil, 0) < 0
buf = FFI::MemoryPointer.new(:char, len.read_ulong)
return if sysctl(mib, 3, buf, len, nil, 0) < 0
# The argc value is located in the first byte of buf
argc = buf.read_bytes(1).ord
buf.free
# Now use KERN_PROCARGS to fetch the rest of the process information
mib.write_array_of_int([CTL_KERN, KERN_PROCARGS, pid])
return if sysctl(mib, 3, nil, len, nil, 0) < 0
buf = FFI::MemoryPointer.new(:char, len.read_ulong)
return if sysctl(mib, 3, buf, len, nil, 0) < 0
exe = buf.read_string # Read up to first null, does not include args
struct[:exe] = exe
# Parse the rest of the information out of a big, ugly string
array = buf.read_bytes(len.read_ulong).split(0.chr)
array.delete('') # Delete empty strings
# The format that sysctl outputs is as follows:
#
# [full executable path]
# [executable name]
# [arguments]
# [environment variables]
# ...
# \FF\BF
# [full executable path]
#
# Strip the first executable path and the last two entries from the array.
# What is left is the name, arguments, and environment variables
array = array[1..-3]
# It seems that argc sometimes returns a bogus value. In that case, delete
# any environment variable strings, and reset the argc value.
#
if argc > array.size
array.delete_if{ |e| e.include?('=') }
argc = array.size
end
cmdline = ''
# Extract the full command line and its arguments from the array
argc.times do
cmdline << ' ' << array.shift
end
struct[:cmdline] = cmdline.strip
# Anything remaining at this point is a collection of key=value
# pairs which we convert into a hash.
environ = array.each_with_object({}) do |string, hash|
if string && string.include?('=')
key, value = string.split('=')
hash[key] = value
end
end
struct[:environ] = environ
end
private_class_method :get_cmd_args_and_env
end
end
|