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 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
|
/*
* libpulp - User-space Livepatching Library
*
* Copyright (C) 2019-2021 SUSE Software Solutions GmbH
*
* This file is part of libpulp.
*
* libpulp is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* libpulp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with libpulp. If not, see <http://www.gnu.org/licenses/>.
*/
#include <ctype.h>
#include <linux/limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/random.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "error_common.h"
#include "ulp_common.h"
/** @brief Get basename of a library in the path `name`
*
* This functions get the basename of a library, stripping away any path that
* may come in the input string `name`.
*
* Example:
*
* ../libs/.lib/libpulp.so
*
* This function will return:
*
* libpulp.so
*
* @param name Path to the library, or the name of the library itself.
* @return Basename of the library.
*/
const char *
get_basename(const char *name)
{
const char *base = (name) ? strrchr(name, '/') : name;
/* If strrchr returned non-null, it means that it found the last '/' in the
* path, so add one to get the base name. */
if (base)
return base + 1;
return name;
}
/** @brief Convert build id provided in `build_id` into string.
*
* Example:
*
* with buildid: 338aa4d16c98dda7af170cc8e2b59d259bd5d4f4
*
* it will return the string:
* "338aa4d16c98dda7af170cc8e2b59d259bd5d4f4"
*
* The string returned by this function is statically allocated and don't
* require `free`.
*
* @param build_id The build id
*
* @return String representing buildid in hexadecimal format.
*/
const char *
buildid_to_string(const unsigned char build_id[BUILDID_LEN])
{
static char build_id_str[2 * BUILDID_LEN + 1];
int i;
memset(build_id_str, '\0', sizeof(build_id_str));
for (i = 0; i < BUILDID_LEN; i++)
snprintf(&build_id_str[2 * i], 3, "%02x", (unsigned)build_id[i]);
return build_id_str;
}
const char *
libpulp_strerror(ulp_error_t errnum)
{
static const char *const libpulp_errlist[] = __ULP_ERRLIST;
if (0xFF < errnum &&
errnum < EUNKNOWN + (int)ARRAY_LENGTH(libpulp_errlist)) {
return libpulp_errlist[errnum & 0xFF];
}
else {
return strerror(errnum);
}
}
/** @brief Get target program name
*
* For instance, assume that the program is named "binary", which the
* user launched with "./binary". This function will return the string
* "binary".
*
* @return Target program binary's name.
*/
const char *
get_target_binary_name(int pid)
{
static __thread char binary_name[PATH_MAX];
char fname[PATH_MAX];
char cmdline[PATH_MAX];
snprintf(fname, sizeof(fname), "/proc/%d/comm", pid);
FILE *fp = fopen(fname, "r");
if (!fp) {
DEBUG("Unable to find name of process %d: %s", pid,
libpulp_strerror(errno));
return "(null)";
}
if (fgets(cmdline, sizeof(cmdline), fp) != NULL) {
strncpy(binary_name, get_basename(cmdline), PATH_MAX - 1);
/* Remove any newlines from the string. */
for (int i = 0; i < (PATH_MAX - 1) && binary_name[i] != '\0'; i++) {
if (binary_name[i] == '\n') {
binary_name[i] = '\0';
break;
}
}
}
fclose(fp);
return binary_name;
}
/** @brief Get current program name
*
* For instance, assume that the program is named "binary", which the
* user launched with "./binary". This function will return the string
* "binary".
*
* @return This program binary's name.
*/
const char *
get_current_binary_name()
{
return get_target_binary_name(getpid());
}
/** @brief Check if string is actually a number.
*
* @param str The string to check.
*
* @return True if `str` is a number, False if not.
*/
bool
isnumber(const char *str)
{
int i;
if (str == NULL || *str == '\0')
return false;
for (i = 0; str[i] != '\0'; i++) {
if (!isdigit(str[i]))
return false;
}
return true;
}
/** @brief Creates a path to a temporary file.
*
* This function creates a path to a temporary file. The string returned is not
* malloc'ed, so if you want to save the string somewhere you should `strdup`
* it.
*
* @return Path to a temporary file.
*
*/
const char *
create_path_to_tmp_file(void)
{
const char *tmp_prefix = "/tmp/ulp-";
static char buffer[24];
FILE *f;
/* Loop until we find an unused path. If we are running multiple packer
instances, we could eventually get a clash. */
bool conflict = false;
do {
unsigned token;
ssize_t n = getrandom(&token, sizeof(unsigned), 0);
if (n != sizeof(unsigned)) {
WARN("Failure in getrandom()");
return NULL;
}
snprintf(buffer, 24, "%s%u", tmp_prefix, token);
f = fopen(buffer, "r");
if (f) {
conflict = true;
fclose(f);
}
}
while (conflict);
/* Create file so other packer instances do not hold it. */
f = fopen(buffer, "w");
fwrite("", 1, 0, f);
fclose(f);
return buffer;
}
/** Used to keep track of how many bytes we have consumed. We cannot surpass
* ULP_METADATA_BUF_LEN. */
static long cur;
static long meta_len;
static long __attribute__((noinline))
read_from_mem(void *to, size_t size, long count, void *from)
{
#define REMAINING_BUF(x) (meta_len - x)
char *cfrom = from;
long final_cnt = count * size;
if (final_cnt > REMAINING_BUF(cur))
final_cnt = REMAINING_BUF(cur);
memcpy(to, cfrom + cur, final_cnt);
cur += final_cnt;
return final_cnt;
#undef REMAINING_BUF
}
int
parse_metadata_from_mem(struct ulp_metadata *ulp, void *src, size_t size)
{
meta_len = size;
cur = 0;
uint32_t c;
uint32_t i, j;
struct ulp_object *obj;
struct ulp_unit *unit, *prev_unit = NULL;
struct ulp_dependency *dep, *prev_dep = NULL;
struct ulp_reference *ref, *prev_ref = NULL;
/* read metadata header information */
ulp->objs = NULL;
if (read_from_mem(&ulp->type, sizeof(uint8_t), 1, src) < 1) {
WARN("Unable to read patch type.");
return EINVALIDULP;
}
if (read_from_mem(&ulp->patch_id, sizeof(char), 32, src) < 32) {
WARN("Unable to read patch id.");
return EINVALIDULP;
}
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read so filename length.");
return EINVALIDULP;
}
ulp->so_filename = calloc(c + 1, sizeof(char));
if (!ulp->so_filename) {
WARN("Unable to allocate so filename buffer.");
return EINVALIDULP;
}
if (read_from_mem(ulp->so_filename, sizeof(char), c, src) < c) {
WARN("Unable to read so filename.");
return EINVALIDULP;
}
if (*ulp->so_filename == '\0') {
WARN("livepatch container path is empty.");
return EINVALIDULP;
}
obj = calloc(1, sizeof(struct ulp_object));
if (!obj) {
WARN("Unable to allocate memory for the patch objects.");
return ENOMEM;
}
ulp->objs = obj;
obj->units = NULL;
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read build id length (trigger).");
return EINVALIDULP;
}
obj->build_id_len = c;
obj->build_id = calloc(c, sizeof(char));
if (!obj->build_id) {
WARN("Unable to allocate build id buffer.");
return EINVALIDULP;
}
if (read_from_mem(obj->build_id, sizeof(char), c, src) < c) {
WARN("Unable to read build id.");
return EINVALIDULP;
}
obj->build_id_check = 0;
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read object name length.");
return EINVALIDULP;
}
/* shared object: fill data + read patching units */
obj->name = calloc(c + 1, sizeof(char));
if (!obj->name) {
WARN("Unable to allocate object name buffer.");
return EINVALIDULP;
}
if (read_from_mem(obj->name, sizeof(char), c, src) < c) {
WARN("Unable to read object name.");
return EINVALIDULP;
}
if (ulp->type == 2) {
/*
* Reverse patches do not have patching units nor dependencies,
* so return right away.
*/
return 0;
}
if (read_from_mem(&obj->nunits, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read number of patching units.");
return 1;
}
/* read all patching units for object */
for (j = 0; j < obj->nunits; j++) {
unit = calloc(1, sizeof(struct ulp_unit));
if (!unit) {
WARN("Unable to allocate memory for the patch units.");
return ENOMEM;
}
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read unit old function name length.");
return EINVALIDULP;
}
unit->old_fname = calloc(c + 1, sizeof(char));
if (!unit->old_fname) {
WARN("Unable to allocate unit old function name buffer.");
return EINVALIDULP;
}
if (read_from_mem(unit->old_fname, sizeof(char), c, src) < c) {
WARN("Unable to read unit old function name.");
return EINVALIDULP;
}
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read unit new function name length.");
return EINVALIDULP;
}
unit->new_fname = calloc(c + 1, sizeof(char));
if (!unit->new_fname) {
WARN("Unable to allocate unit new function name buffer.");
return EINVALIDULP;
}
if (read_from_mem(unit->new_fname, sizeof(char), c, src) < c) {
WARN("Unable to read unit new function name.");
return EINVALIDULP;
}
if (read_from_mem(&unit->old_faddr, sizeof(void *), 1, src) < 1) {
WARN("Unable to read old function address.");
return EINVALIDULP;
}
if (obj->units) {
prev_unit->next = unit;
}
else {
obj->units = unit;
}
prev_unit = unit;
}
/* read dependencies */
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 1) {
WARN("Unable to read number of dependencies.");
return EINVALIDULP;
}
for (i = 0; i < c; i++) {
dep = calloc(1, sizeof(struct ulp_dependency));
if (!dep) {
WARN("Unable to allocate memory for dependency state.");
return ENOMEM;
}
if (read_from_mem(&dep->dep_id, sizeof(char), 32, src) < 32) {
WARN("Unable to read dependency patch id.");
return EINVALIDULP;
}
if (ulp->deps) {
prev_dep->next = dep;
}
else {
ulp->deps = dep;
}
prev_dep = dep;
}
/* read number of static data items */
if (read_from_mem(&ulp->nrefs, sizeof(uint32_t), 1, src) < 4) {
WARN("Unable to read the number of static data references in livepatch");
return EINVALIDULP;
}
/* read all static data reference items */
for (i = 0; i < ulp->nrefs; i++) {
ref = calloc(1, sizeof(struct ulp_reference));
if (!ref) {
WARN("Unable to allocate memory for static data reference.");
return errno;
}
/* read local variable name */
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 4) {
WARN("Unable to read local variable name.");
return EINVALIDULP;
}
ref->target_name = calloc(c, sizeof(char));
if (!ref->target_name) {
WARN("Unable to allocate memory for static data reference name.");
return errno;
}
if (read_from_mem(ref->target_name, sizeof(char), c, src) < c) {
WARN("Unable to read target variable name.");
return EINVALIDULP;
}
/* read reference name */
if (read_from_mem(&c, sizeof(uint32_t), 1, src) < 4) {
WARN("Unable to read reference name size");
return EINVALIDULP;
}
ref->reference_name = calloc(c, sizeof(char));
if (!ref->reference_name) {
WARN("Unable to allocate memory for static data reference name.");
return errno;
}
if (read_from_mem(ref->reference_name, sizeof(char), c, src) < c) {
WARN("Unable to read reference name.");
return EINVALIDULP;
}
/* read reference offset within the target library */
if (read_from_mem(&ref->target_offset, sizeof(uintptr_t), 1, src) < 8) {
WARN("Unable to read target offset within target library");
return EINVALIDULP;
}
/* read reference offset within the patch object */
if (read_from_mem(&ref->patch_offset, sizeof(uintptr_t), 1, src) < 8) {
WARN("Unable to read patch offset.");
return EINVALIDULP;
}
/* read if variable is tls within the patch object */
if (read_from_mem(&ref->tls, sizeof(bool), 1, src) < 1) {
WARN("Unable to read TLS field.");
return EINVALIDULP;
}
if (ulp->refs) {
prev_ref->next = ref;
}
else {
ulp->refs = ref;
}
prev_ref = ref;
}
if (ulp->so_filename) {
DEBUG("Patch path: %s", ulp->so_filename);
}
return 0;
}
void
free_metadata(struct ulp_metadata *ulp)
{
struct ulp_object *obj;
struct ulp_unit *unit, *next_unit;
struct ulp_reference *ref, *next_ref;
if (!ulp)
return;
if (ulp->so_filename)
free(ulp->so_filename);
if (ulp->comments) {
free(ulp->comments);
ulp->comments = NULL;
}
for (ref = ulp->refs; ref != NULL; ref = next_ref) {
if (ref->target_name)
free(ref->target_name);
if (ref->reference_name)
free(ref->reference_name);
next_ref = ref->next;
free(ref);
}
ulp->refs = NULL;
obj = ulp->objs;
if (obj) {
unit = obj->units;
while (unit) {
next_unit = unit->next;
if (unit->old_fname)
free(unit->old_fname);
if (unit->new_fname)
free(unit->new_fname);
free(unit);
unit = next_unit;
}
if (obj->name)
free(obj->name);
if (obj->build_id)
free(obj->build_id);
free(obj);
}
}
bool
is_directory(const char *path)
{
struct stat s;
if (stat(path, &s))
return false;
else
return S_ISDIR(s.st_mode);
}
uid_t
get_process_owner(pid_t pid)
{
char procpath[128];
snprintf(procpath, sizeof(procpath), "/proc/%d/loginuid", pid);
struct stat info;
if (stat(procpath, &info)) {
return 0;
}
return info.st_uid;
}
ulp_version_t
ulp_version_from_string(char *str)
{
ulp_version_t ver[3];
char *number;
for (int i = 0; i < 3; i++) {
number = strtok(str, ".");
str = NULL;
if (!isnumber(number)) {
/* Not a number?? */
return 0;
}
ver[i] = atoi(number);
if (ver[i] > 0xFFFF) {
/* Out of bound. */
return 0;
}
}
return ULP_VERSION_TRIPLET(ver[0], ver[1], ver[2]);
}
const char *
ulp_version_as_string(ulp_version_t ver)
{
static char str[18]; // 65535.65535.65535\0 has 18 bytes;
uint16_t a, b, c;
a = (ver & 0x0000FFFF00000000) >> 32;
b = (ver & 0x00000000FFFF0000) >> 16;
c = (ver & 0x000000000000FFFF);
sprintf(str, "%hu.%hu.%hu", a, b, c);
return str;
}
|