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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
/******************************************************************************/
/* THE BEER-WARE LICENSE (Revision 42): */
/* As long as you retain this notice you can do whatever you want with this */
/* stuff. If we meet some day, and you think this stuff is worth it, */
/* you can buy me a beer in return. Ned Ludd. --solarx */
/******************************************************************************/
/*
* normal compile.
* cc -o pspax pspax.c
* or with libcap.
* cc -o pspax pspax.c -DWANT_SYSCAP -lcap
*/
const char argv0[] = "pspax";
#include "paxinc.h"
#include <grp.h>
#ifdef WANT_SYSCAP
# undef _POSIX_SOURCE
# include <sys/capability.h>
# define WRAP_SYSCAP(x) x
#else
# define WRAP_SYSCAP(x)
#endif
#define PROC_DIR "/proc"
/* variables to control behavior */
static char show_all = 0;
static char verbose = 0;
static char show_banner = 1;
static char show_phdr = 0;
static char show_addr = 0;
static char noexec = 1;
static char writeexec = 1;
static char wide_output = 0;
static pid_t show_pid = 0;
static uid_t show_uid = (uid_t)-1;
static gid_t show_gid = (gid_t)-1;
static elfobj *proc_readelf(int pfd)
{
int fd;
elfobj *elf;
fd = openat(pfd, "exe", O_RDONLY|O_CLOEXEC);
if (fd == -1)
return NULL;
elf = readelf_fd("proc/exe", fd, 0);
close(fd);
return elf;
}
static const char *get_proc_name_cmdline(int pfd)
{
FILE *fp;
static char str[1024];
fp = fopenat_r(pfd, "cmdline");
if (fp == NULL)
return NULL;
if (fscanf(fp, "%1023s", str) != 1) {
fclose(fp);
return NULL;
}
fclose(fp);
return (str);
}
static const char *get_proc_name(int pfd)
{
FILE *fp;
/*
* The stat file says process names are truncated to TASK_COMM_LEN (16) bytes.
* That includes the trailing NUL (\0) byte. This is true for userspace, but
* kernel processes seem to be unlimited. We don't care about those in this
* program though, so truncating them all the time is fine.
*/
static char str[16];
if (wide_output)
return get_proc_name_cmdline(pfd);
fp = fopenat_r(pfd, "stat");
if (fp == NULL)
return NULL;
/*
* The format is:
* <pid> (<name>) ...more fields...
* For example:
* 1234 (bash) R ...
*
* Match the leading (, then read 15 bytes (since scanf writes, but doesn't count,
* NUL bytes, so it will write up to 16 bytes to str). Ignore the rest rather than
* look for closing ) since kernel processes can be longer.
*/
if (fscanf(fp, "%*d (%15s", str) != 1) {
fclose(fp);
return NULL;
}
if (*str) {
/* Discard trailing ) if it exists. */
size_t len = strlen(str);
if (str[len - 1] == ')')
str[len - 1] = '\0';
}
fclose(fp);
return str;
}
static int get_proc_maps(int pfd)
{
FILE *fp;
static char *str = NULL;
static size_t len = 0;
if ((fp = fopenat_r(pfd, "maps")) == NULL)
return -1;
while (getline(&str, &len, fp) != -1) {
char *p;
if ((p = strchr(str, ' ')) != NULL) {
if (strlen(p) < 6)
continue;
/* 0x0-0x0 rwxp fffff000 00:00 0 */
/* 0x0-0x0 R+W+XP fffff000 00:00 0 */
++p; /* ' ' */
++p; /* r */
if (*p == '+')
++p;
/* FIXME: all of wx, w+, +x, ++ indicate w|x */
if (tolower(*p) == 'w') {
++p;
if (*p == '+')
++p;
if (tolower(*p) == 'x') {
fclose(fp);
return 1;
}
}
}
}
fclose(fp);
return 0;
}
static int print_executable_mappings(int pfd)
{
FILE *fp;
static char *str = NULL;
static size_t len = 0;
if ((fp = fopenat_r(pfd, "maps")) == NULL)
return -1;
while (getline(&str, &len, fp) != -1) {
char *p;
if ((p = strchr(str, ' ')) != NULL) {
if (strlen(p) < 6)
continue;
/* 0x0-0x0 rwxp fffff000 00:00 0 */
/* 0x0-0x0 R+W+XP fffff000 00:00 0 */
++p; /* ' ' */
++p; /* r */
if (*p == '+')
++p;
/* FIXME: all of wx, w+, +x, ++ indicate w|x */
if (tolower(*p) == 'w') {
++p;
if (*p == '+')
++p;
if (tolower(*p) == 'x')
printf(" %s", str);
}
}
}
fclose(fp);
return 0;
}
static const struct passwd *get_proc_passwd(int pfd)
{
struct stat st;
const struct passwd *pwd = NULL;
if (fstatat(pfd, "stat", &st, AT_SYMLINK_NOFOLLOW) != -1)
pwd = getpwuid(st.st_uid);
return pwd;
}
static const char *get_proc_status(int pfd, const char *name)
{
FILE *fp;
size_t name_len;
static char *str = NULL;
static size_t len = 0;
if ((fp = fopenat_r(pfd, "status")) == NULL)
return NULL;
name_len = strlen(name);
while (getline(&str, &len, fp) != -1) {
if (strncasecmp(str, name, name_len) != 0)
continue;
if (str[name_len] == ':') {
fclose(fp);
str[strlen(str) - 1] = 0;
return (str + name_len + 2);
}
}
fclose(fp);
return NULL;
}
static const char *get_pid_attr(int pfd)
{
FILE *fp;
char *p;
static char *buf = NULL;
static size_t len = 0;
if ((fp = fopenat_r(pfd, "attr/current")) == NULL)
return NULL;
if (getline(&buf, &len, fp) == -1) {
fclose(fp);
return NULL;
}
if ((p = strchr(buf, '\n')) != NULL)
*p = 0;
fclose(fp);
return buf;
}
static const char *get_pid_addr(int pfd)
{
FILE *fp;
char *p;
static char *buf = NULL;
static size_t len = 0;
if ((fp = fopenat_r(pfd, "ipaddr")) == NULL)
return NULL;
if (getline(&buf, &len, fp) == -1) {
fclose(fp);
return NULL;
}
if ((p = strchr(buf, '\n')) != NULL)
*p = 0;
fclose(fp);
return buf;
}
static const char *get_proc_type(int pfd)
{
elfobj *elf;
const char *ret;
elf = proc_readelf(pfd);
if (elf == NULL)
return NULL;
ret = get_elfetype(elf);
unreadelf(elf);
return ret;
}
static const char *scanelf_file_phdr(elfobj *elf)
{
static char ret[8];
unsigned long i, off, multi_stack, multi_load;
memcpy(ret, "--- ---\0", 8);
multi_stack = multi_load = 0;
if (elf->phdr) {
uint32_t flags;
#define SHOW_PHDR(B) \
if (elf->elf_class == ELFCLASS ## B) { \
const Elf ## B ## _Ehdr *ehdr = EHDR ## B (elf->ehdr); \
const Elf ## B ## _Phdr *phdr = PHDR ## B (elf->phdr); \
for (i = 0; i < EGET(ehdr->e_phnum); i++) { \
if (EGET(phdr[i].p_type) == PT_GNU_STACK) { \
if (multi_stack++) warnf("%s: multiple PT_GNU_STACK's !?", elf->filename); \
off = 0; \
} else if (EGET(phdr[i].p_type) == PT_LOAD) { \
off = 4; \
} else \
continue; \
flags = EGET(phdr[i].p_flags); \
memcpy(ret+off, gnu_short_stack_flags(flags), 3); \
} \
}
SHOW_PHDR(32)
SHOW_PHDR(64)
}
return ret;
}
/* we scan the elf file two times when the -e flag is given. But we don't need -e very often so big deal */
static const char *get_proc_phdr(int pfd)
{
elfobj *elf;
const char *ret;
elf = proc_readelf(pfd);
if (elf == NULL)
return NULL;
ret = scanelf_file_phdr(elf);
unreadelf(elf);
return ret;
}
static void pspax(const char *find_name)
{
register DIR *dir;
register struct dirent *de;
pid_t pid;
pid_t ppid = show_pid;
int have_attr, have_addr, wx;
const struct passwd *pwd;
const char *pax, *type, *name, *attr, *addr;
char *caps;
int pfd;
WRAP_SYSCAP(ssize_t length; cap_t cap_d;)
dir = opendir(PROC_DIR);
if (dir == NULL || chdir(PROC_DIR))
errp(PROC_DIR);
if (access("/proc/self/attr/current", R_OK) != -1)
have_attr = 1;
else
have_attr = 0;
if ((access("/proc/self/ipaddr", R_OK) != -1) && show_addr)
have_addr = 1;
else
have_addr = 0;
if (show_banner)
printf("%-8s %-6s %-6s %-4s %-10s %-16s %-4s %-4s %s %s\n",
"USER", "PID", "PAX", "MAPS", "ETYPE", "NAME", "CAPS", have_attr ? "ATTR" : "",
have_addr ? "IPADDR" : "", show_phdr ? "STACK LOAD" : "");
while ((de = readdir(dir))) {
/* Check the name first if it's an int as it's faster. */
pid = atoi(de->d_name);
if (pid == 0)
continue;
/* Get an open handle so the kernel won't reap on us later. */
pfd = open(de->d_name, O_RDONLY|O_CLOEXEC|O_PATH|O_DIRECTORY);
if (pfd == -1)
continue;
if (find_name && pid) {
const char *str = get_proc_name(pfd);
if (!str)
goto next_pid;
if (strcmp(str, find_name) != 0)
pid = 0;
}
if (ppid > 0 && pid != ppid)
goto next_pid;
wx = get_proc_maps(pfd);
if (noexec != writeexec) {
if (wx == 1 && writeexec != wx)
goto next_pid;
if (wx == 0 && writeexec)
goto next_pid;
}
pwd = get_proc_passwd(pfd);
pax = get_proc_status(pfd, "PAX");
type = get_proc_type(pfd);
name = get_proc_name(pfd);
attr = (have_attr ? get_pid_attr(pfd) : NULL);
addr = (have_addr ? get_pid_addr(pfd) : NULL);
if (pwd) {
if (show_uid != (uid_t)-1)
if (pwd->pw_uid != show_uid)
goto next_pid;
if (show_gid != (gid_t)-1)
if (pwd->pw_gid != show_gid)
goto next_pid;
}
/* this is a non-POSIX function */
caps = NULL;
WRAP_SYSCAP(cap_d = cap_get_pid(pid));
WRAP_SYSCAP(caps = cap_to_text(cap_d, &length));
if (pwd && strlen(pwd->pw_name) >= 8)
pwd->pw_name[8] = 0;
if (show_all || type) {
printf("%-8s %-6d %-6s %-4s %-10s %-16s %-4s %s %s %s\n",
pwd ? pwd->pw_name : "--------",
pid,
pax ? pax : "---",
(wx == 1) ? "w|x" : (wx == -1) ? "---" : "w^x",
type ? type : "-------",
name ? name : "-----",
caps ? caps : " = ",
attr ? attr : "",
addr ? addr : "",
show_phdr ? get_proc_phdr(pfd) : "");
if (verbose && wx)
print_executable_mappings(pfd);
}
WRAP_SYSCAP(cap_free(cap_d));
WRAP_SYSCAP(cap_free(caps));
next_pid:
close(pfd);
}
closedir(dir);
}
/* usage / invocation handling functions */
#define PARSE_FLAGS "aeip:u:g:nwWvCBhV"
static struct option const long_opts[] = {
{"all", no_argument, NULL, 'a'},
{"header", no_argument, NULL, 'e'},
{"ipaddr", no_argument, NULL, 'i'},
{"pid", a_argument, NULL, 'p'},
{"user", a_argument, NULL, 'u'},
{"group", a_argument, NULL, 'g'},
{"nx", no_argument, NULL, 'n'},
{"wx", no_argument, NULL, 'w'},
{"wide", no_argument, NULL, 'W'},
{"verbose", no_argument, NULL, 'v'},
{"nocolor", no_argument, NULL, 'C'},
{"nobanner", no_argument, NULL, 'B'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, no_argument, NULL, 0x0}
};
static const char * const opts_help[] = {
"Show all processes",
"Print GNU_STACK/PT_LOAD markings",
"Print ipaddr info if supported",
"Process ID/pid #",
"Process user/uid #",
"Process group/gid #",
"Only display w^x processes",
"Only display w|x processes",
"Wide output display of cmdline",
"Be verbose about executable mappings",
"Don't emit color in output",
"Don't display the header",
"Print this help and exit",
"Print version and exit",
NULL
};
/* display usage and exit */
static void usage(int status)
{
pax_usage(
"List ELF/PaX information about running processes",
"",
PARSE_FLAGS,
long_opts,
opts_help,
status);
}
/* parse command line arguments and perform needed actions */
static void parseargs(int argc, char *argv[])
{
int flag;
const struct passwd *pwd = NULL;
const struct group *gwd = NULL;
opterr = 0;
while ((flag=getopt_long(argc, argv, PARSE_FLAGS, long_opts, NULL)) != -1) {
switch (flag) {
case 'V': /* version info */
printf("pax-utils-%s: %s\n"
"%s written for Gentoo by <solar and vapier @ gentoo.org>\n",
VERSION, VCSID, argv0);
exit(EXIT_SUCCESS);
break;
case 'h': usage(EXIT_SUCCESS); break;
case 'C': color_init(true); break;
case 'B': show_banner = 0; break;
case 'a': show_all = 1; break;
case 'e': show_phdr = 1; break;
case 'i': show_addr = 1; break;
case 'p': show_pid = atoi(optarg); break;
case 'n': noexec = 1; writeexec = 0; break;
case 'w': noexec = 0; writeexec = 1; break;
case 'W': wide_output = 1; break;
case 'v': verbose++; break;
case 'u':
show_uid = atoi(optarg);
if (show_uid == 0 && (strcmp(optarg, "0") != 0)) {
pwd = getpwnam(optarg);
if (pwd)
show_uid = pwd->pw_uid;
else
err("unknown uid");
}
break;
case 'g':
show_gid = atoi(optarg);
if (show_gid == 0 && (strcmp(optarg, "0") != 0)) {
gwd = getgrnam(optarg);
if (gwd)
show_gid = gwd->gr_gid;
else
err("unknown gid");
}
break;
case ':':
case '?':
warn("Unknown option or missing parameter");
usage(EXIT_FAILURE);
break;
default:
err("Unhandled option '%c'", flag);
break;
}
}
}
int main(int argc, char *argv[])
{
const char *name = NULL;
/* We unshare pidns but don't actually enter it. That means
* we still get to scan /proc, but just not fork children. */
security_init(false);
color_init(false);
parseargs(argc, argv);
if ((optind < argc) && (show_pid == 0))
name = argv[optind];
pspax(name);
return EXIT_SUCCESS;
}
|