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 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
|
/*
* libpulp - User-space Livepatching Library
*
* Copyright (C) 2017-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/>.
*/
#define _GNU_SOURCE
#include <dlfcn.h>
#include <elf.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <link.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <unistd.h>
#include "arch_common.h"
#include "config.h"
#include "error.h"
#include "insn_queue_lib.h"
#include "interpose.h"
#include "symbol_loader.h"
#include "msg_queue.h"
#include "ulp.h"
/* ulp data structures */
struct ulp_patching_state __ulp_state = { 0, NULL };
char __ulp_metadata_buffer[ULP_METADATA_BUF_LEN] = { 0 };
struct ulp_metadata *__ulp_metadata_ref = NULL;
struct ulp_detour_root *__ulp_root = NULL;
/* current libpulp version. */
const char __ulp_version[] = VERSION;
unsigned int __ulp_root_index_counter = 0;
unsigned long __ulp_global_universe = 0;
__attribute__((constructor)) void
begin(void)
{
__ulp_state.load_state = 1;
msgq_push("libpulp loaded...\n");
}
/** @brief Write into memory bypassing memory protections
*
* The process may be launched with mprotect through seccomp, which
* will block certain addresses to be written. This function
* circunvent this by queuing up an instruction to the ulp insn queue
* for the `ulp` tool to process later.
*
* @param dest Destination address
* @param src Source address
* @param n number of bytes
* @return dest on success, NULL if error.
*/
void *
memwrite(void *dest, const void *src, size_t n)
{
error_t e = insnq_insert_write(dest, n, src);
if (e != ENONE) {
return NULL;
}
return dest;
}
/** @brief Revert all live patches associated with library `lib_name`
*
* The user may have applied a series of live patches on a library named
* `lib_name` in the program. This function will revert every patch so
* that all functions are reverted into their original state.
*
* @param lib_name Base name of the library.
* @return 0 on success, anything else on failure.
*/
static int
revert_all_patches_from_lib(const char *lib_name)
{
struct ulp_applied_patch *patch = __ulp_state.patches;
struct ulp_applied_patch *next;
const char *lib_basename = get_basename(lib_name);
int ret = ENOTARGETLIB;
/* Paranoid: check if the path buffer didn't overflow. */
if ((ptrdiff_t)(lib_basename - lib_name) >= ULP_PATH_LEN) {
WARN("Path buffer overflow, aborting revert...");
return EOVERFLOW;
}
while (patch) {
next = patch->next;
if (!strncmp(lib_basename, patch->lib_name, ULP_PATH_LEN)) {
ret = ulp_can_revert_patch(patch->patch_id);
if (ret) {
continue;
}
ret = ulp_revert_patch(patch->patch_id);
if (ret)
return ret;
}
patch = next;
}
/* In case there is no patch, then check if the target library is indeed
loaded. */
if (ret == ENOTARGETLIB &&
get_loaded_library_base_addr(lib_basename) != (void *)0xFF) {
return ENOPATCH;
}
return ret;
}
/** @brief Entry point for libulp -- remove all patches associated with lib.
*
* This function is called from ulp_interface.S `__ulp_revert_all` assembly
* routine that is called from the `trigger` ulp tool, which have set the
* library name parameter in the path buffer.
*
* @return 0 on success, anything else on failure.
*/
int
__ulp_revert_patches_from_lib()
{
int result;
/* If libpulp is in an error state, we cannot continue. */
if (libpulp_is_in_error_state())
return get_libpulp_error_state();
/* If the instruction queue is in an weird state, we cannot continue. */
if (insnq_ensure_emptiness())
return get_libpulp_error_state();
/*
* If the target process is busy within functions from the malloc or
* dlopen implementations, applying a live patch could lead to a
* deadlock, thus give up.
*/
if (__ulp_asunsafe_trylock())
return EAGAIN;
__ulp_asunsafe_unlock();
/* Otherwise, try to apply the live patch. */
result = revert_all_patches_from_lib(__ulp_metadata_buffer);
/*
* Live patching could fail for a couple of different reasons, thus
* check the result and return either zero for success or one for
* failures (except for EAGAIN above).
*/
return result;
}
/* libpulp interfaces for livepatch trigger */
int
__ulp_apply_patch()
{
int result;
/* If libpulp is in an error state, we cannot continue. */
if (libpulp_is_in_error_state())
return get_libpulp_error_state();
/* If the instruction queue is in an weird state, we cannot continue. */
if (insnq_ensure_emptiness())
return get_libpulp_error_state();
/*
* If the target process is busy within functions from the malloc or
* dlopen implementations, applying a live patch could lead to a
* deadlock, thus give up.
*/
if (__ulp_asunsafe_trylock())
return EAGAIN;
__ulp_asunsafe_unlock();
/* Otherwise, try to apply the live patch. */
result = load_patch();
/*
* Live patching could fail for a couple of different reasons, thus
* check the result and return either zero for success or whatever
* error happened internally.
*/
return result;
}
int
__ulp_check_applied_patch()
{
struct ulp_applied_patch *patch;
/* If libpulp is in an error state, we cannot continue. */
if (libpulp_is_in_error_state())
return 0;
patch = ulp_get_applied_patch((unsigned char *)__ulp_metadata_buffer);
if (patch)
return 1;
else
return 0;
}
/** @brief Get ULP global universe.
*
* Every time a patch is applied or reverted, the global universe counter is
* incremented.
*
* @return current global universe counter.
*/
unsigned long
__ulp_get_global_universe_value()
{
return __ulp_global_universe;
}
/* TODO: unloading needs further testing */
int
unload_handlers(struct ulp_metadata *ulp)
{
int status = 1;
if (ulp->so_handler && dlclose(ulp->so_handler)) {
WARN("Error unloading patch so handler: %s", ulp->so_filename);
status = 0;
}
return status;
}
/** @brief Load symbol with name 'fname' from so in 'handler'.
*
* Given a dlopen 'handle', get the symbol which matches the 'fname'.
*
* @return Address to symbol.
*/
void *
load_so_symbol(char *fname, void *handle)
{
void *func;
char *error;
func = dlsym(handle, fname);
error = dlerror();
if (error) {
WARN("Unable to load function %s: %s.", fname, error);
return NULL;
}
return func;
}
/** @brief Load the .so file handle from the ulp metadata object.
*
* Livepatches code are stored in shared object (.so) files. This function
* will open the .so file and store its handler in the ulp object as well.
*
* @param ulp The ulp metadata object.
*
* @return 0 if error, 1 if success.
*/
int
load_so_handlers(struct ulp_metadata *ulp)
{
ulp->so_handler = load_so(ulp->so_filename);
if (!ulp->so_handler) {
WARN("Unable to load patch dl handler.");
unload_handlers(ulp);
return 0;
}
return 1;
}
/** @brief undload the loaded metadata object.
*
* Free its resources and set the global metadata object to NULL.
*/
int
unload_metadata(struct ulp_metadata *ulp)
{
free_metadata(ulp);
__ulp_metadata_ref = NULL;
return 0;
}
struct ulp_metadata *
load_metadata(int *err)
{
struct ulp_metadata *ulp;
if (__ulp_metadata_ref) {
*err = 0;
return __ulp_metadata_ref;
}
ulp = calloc(1, sizeof(struct ulp_metadata));
if (!ulp) {
WARN("Unable to allocate memory for ulp metadata");
*err = errno;
return NULL;
}
__ulp_metadata_ref = ulp;
*err = parse_metadata(ulp);
if (*err) {
unload_metadata(ulp);
WARN("Error in metadata load: %s.", libpulp_strerror(*err));
return NULL;
};
*err = 0;
return ulp;
}
int
read_data(int from, void *to, size_t count, int line)
{
size_t done;
ssize_t ret;
for (done = 0;;) {
errno = 0;
ret = read(from, to + done, count - done);
if (ret == 0)
break; /* EOF or read called with count set to zero. */
else if (ret > 0) {
done += ret;
if (done == count)
break; /* Done. */
else
continue; /* More to read. */
}
else if (errno == EINTR || errno == EAGAIN) {
continue; /* Try again. */
}
else {
WARN("Error in call to read()");
return 1;
}
}
if (done != count) {
WARN("line %d: Not enough data to read()", line);
return 1;
}
return 0;
}
/*
* Read one line from FD into BUF, which must be pre-allocated and large
* enough to hold LEN characteres. The offset into FD is advanced by the
* amount of bytes read.
*
* @return -1 on error, 0 on End-of-file, or the amount of bytes read.
*/
int
read_line(int fd, char *buf, size_t len)
{
char *ptr;
int retcode;
size_t offset;
/* Read one byte at a time, until a newline is found. */
offset = 0;
while (offset < len) {
ptr = buf + offset;
/* Read one byte. */
retcode = read(fd, ptr, 1);
/* Error with read syscall. */
if (retcode == -1) {
if (errno == EINTR || errno == EAGAIN)
continue;
else
return -1;
}
/* Stop at EOF or EOL. */
if (retcode == 0 || *ptr == '\n') {
return offset;
}
offset++; /* Reading one byte at a time. */
}
/* EOL not found. */
return -1;
}
/** @brief call dlopen and check for errors. */
void *
load_so(char *obj)
{
void *patch_obj;
patch_obj = dlopen(obj, RTLD_NOW);
if (!patch_obj) {
WARN("Unable to load shared object %s: %s.", obj, dlerror());
return NULL;
}
return patch_obj;
}
/** @brief Parse metadata file in __ulp_metadata_buffer.
*
* When trigger command is issued, the metadata is written in
* __ulp_metadata_buffer. Parse this metadata.
*
* @param ulp The metadata output object
* @return 0 0 if success, anything else if failure.
*/
int
parse_metadata(struct ulp_metadata *ulp)
{
/* Initialize pointer and counter to keep track of metadata buffer parsing.
*/
void *src = __ulp_metadata_buffer;
size_t meta_size = ULP_METADATA_BUF_LEN;
int ret;
ret = parse_metadata_from_mem(ulp, src, meta_size);
if (ret != ENONE || ulp->type == 2)
goto metadata_clean;
ret = check_patch_sanity(ulp);
if (ret)
goto metadata_clean;
if (!load_so_handlers(ulp)) {
ret = EDLOPEN;
goto metadata_clean;
}
metadata_clean:
memset(src, 0, ULP_METADATA_BUF_LEN);
return ret;
}
/** @brief Load patch from metadata buffer and apply its content.
*
* When a livepatch is issued, this function will parse the patch from the
* patch buffer and apply its content, either revert or apply.
*
* @return 0 if success, anything else if error.
*/
int
load_patch()
{
struct ulp_metadata *ulp = NULL;
struct ulp_applied_patch *patch_entry;
int patch;
int ret = 0;
ulp = load_metadata(&ret);
if (ulp == NULL)
return ret;
patch = ulp->type;
switch (patch) {
case 1: /* apply patch */
patch_entry = ulp_state_update(ulp);
if (!patch_entry) {
ret = ESTATE;
break;
}
ret = ulp_apply_all_units(ulp);
if (ret) {
WARN("FATAL ERROR while applying patch units\n");
libpulp_exit(ret);
}
goto load_patch_success;
case 2: /* revert patch */
ret = ulp_can_revert_patch(ulp->patch_id);
if (ret) {
break;
}
ret = ulp_revert_patch(ulp->patch_id);
if (ret) {
WARN("Unable to revert patch.");
break;
}
goto load_patch_success;
default: /* load patch metadata error */
if (!patch) {
WARN("load patch metadata error");
ret = ENOMETA;
}
else {
WARN("Unknown load metadata status");
ret = EUNKNOWN;
}
}
load_patch_success:
unload_metadata(ulp);
return ret;
}
/** @brief Check if a patch with patchid = `id` can be reverted.
*
* Check if the patch with its id = `id` can be reverted.
*
* @param id The id of patch to analyze.
* @return 0 if success, anything else if error.
*/
int
ulp_can_revert_patch(const unsigned char *id)
{
int i;
struct ulp_applied_patch *patch, *applied_patch;
struct ulp_dependency *dep;
/* check if patch exists */
applied_patch = ulp_get_applied_patch(id);
if (!applied_patch) {
WARN("Can't revert because patch was not applied");
return ENOTAPPLIED;
}
/* check if someone depends on the patch */
for (patch = __ulp_state.patches; patch != NULL; patch = patch->next) {
for (dep = patch->deps; dep != NULL; dep = dep->next) {
if (memcmp(dep->dep_id, id, 32) == 0) {
msgq_push("Can't revert. Dependency:\n PATCH 0x");
for (i = 0; i < 32; i++) {
msgq_push("%x ", id[i]);
}
msgq_push("\n");
return EDEPEND;
}
}
}
return 0;
}
/** @brief Get the detour root (patched function) by index.
*
* @param idx Index to querry.
* @return NULL if not found, pointer to root object if found.
*/
struct ulp_detour_root *
get_detour_root_by_index(unsigned int idx)
{
struct ulp_detour_root *r;
for (r = __ulp_root; r != NULL && r->index != idx; r = r->next)
;
return r;
}
/** @brief Get the detour root (patched function) by its address.
*
* @param addr Address of function to querry.
* @return NULL if not found, pointer to root object if found.
*/
struct ulp_detour_root *
get_detour_root_by_address(void *addr)
{
struct ulp_detour_root *r;
for (r = __ulp_root; r != NULL && r->patched_addr != addr; r = r->next)
;
return r;
}
/** @brief Push a new empty detour object to the beginning to detour list.
*
* @return New detour object.
*/
struct ulp_detour_root *
push_new_root()
{
struct ulp_detour_root *root, *root_aux;
root = calloc(1, sizeof(struct ulp_detour_root));
if (!root) {
WARN("unable to allocate memory for ulp detour root");
return NULL;
}
/* Append the new root into the start of the chain. */
root_aux = __ulp_root;
__ulp_root = root;
root->next = root_aux;
return root;
}
/** @brief Apply parsed metadata object content.
*
* This function will apply all units (function replacements) in the
* livepatch, as well as the private data references.
*
* @param ulp The parsed ulp_metadata object.
* @return 0 if success, anything else if error.
*/
int
ulp_apply_all_units(struct ulp_metadata *ulp)
{
int retcode;
void *old_fun, *new_fun;
void *patch_so = ulp->so_handler;
struct ulp_object *obj = ulp->objs;
struct ulp_unit *unit;
struct ulp_detour_root *root;
struct ulp_reference *ref;
__ulp_global_universe++;
/* only shared objs have units, this loop never runs for main obj */
unit = obj->units;
while (unit) {
old_fun = get_loaded_symbol_addr(get_basename(obj->name), unit->old_fname,
unit->old_faddr);
if (!old_fun)
return ENOOLDFUNC;
new_fun = load_so_symbol(unit->new_fname, patch_so);
if (!new_fun)
return ENONEWFUNC;
root = get_detour_root_by_address(old_fun);
if (!root) {
root = push_new_root();
if (!root)
return EUNKNOWN;
root->index = get_next_function_index();
root->patched_addr = old_fun;
}
if (!(push_new_detour(__ulp_global_universe, ulp->patch_id, root,
new_fun))) {
WARN("error setting ulp data structure\n");
return EUNKNOWN;
}
if ((retcode = ulp_patch_addr(old_fun, new_fun, true)) > 0) {
WARN("error patching address %p", old_fun);
return retcode;
}
unit = unit->next;
}
/*
* Each live patch loads a new shared object into the target process. If the
* live patch references static data from the target library, the references
* must be fixed so that they point to the actual address where the target
* library has been loaded, so find the base address.
*
* XXX: The metadata file and its corresponding data structures within
* libpulp seem to allow more than one live patch object per live patch.
* However, the implementation is incomplete, so assume that there is a
* single object, and access ulp->objs directly.
*/
struct link_map map_data;
struct link_map *map_ptr;
uintptr_t target_base;
int tls_idx;
uintptr_t patch_base;
const char *target_basename = get_basename(ulp->objs->name);
target_base = (uintptr_t)get_loaded_library_base_addr(target_basename);
tls_idx = get_loaded_library_tls_index(target_basename);
if (target_base == 0xFF) {
WARN("Unable to find target library load address of %s", target_basename);
return ENOADDRESS;
}
map_ptr = &map_data;
memset(map_ptr, 0, sizeof(struct link_map));
retcode = dlinfo(ulp->so_handler, RTLD_DI_LINKMAP, &map_ptr);
if (retcode == -1) {
WARN("Error in call to dlinfo: %s", dlerror());
return EUNKNOWN;
}
if (map_ptr->l_addr == 0) {
WARN("Unable to find target library load address: %s", dlerror());
return ENOADDRESS;
}
patch_base = map_ptr->l_addr;
/* Now patch static data references in the live patch object */
ref = ulp->refs;
while (ref) {
uintptr_t patch_address;
if (ref->patch_offset == 0) {
/* In case the user did not specify the patch offset, try to find the
symbol's address by its name. */
patch_address =
(uintptr_t)load_so_symbol(ref->reference_name, ulp->so_handler);
if (patch_address == 0) {
return ENONEWFUNC;
}
ref->patch_offset = patch_address - patch_base;
}
else {
patch_address = patch_base + ref->patch_offset;
}
if (ref->tls) {
tls_index ti = { .ti_module = tls_idx,
.ti_offset = ref->target_offset - TLS_DTV_OFFSET };
memwrite((void *)patch_address, &ti, sizeof(ti));
}
else {
uintptr_t target_address = target_base + ref->target_offset;
memwrite((void *)patch_address, &target_address, sizeof(void *));
}
ref = ref->next;
}
return 0;
}
/** @brief TODO: merge with ulp_apply_all_units. There seems to be no reason
why these two things are separated. */
struct ulp_applied_patch *
ulp_state_update(struct ulp_metadata *ulp)
{
struct ulp_applied_patch *a_patch, *prev_patch = NULL;
struct ulp_applied_unit *a_unit, *prev_unit = NULL;
struct ulp_object *obj;
struct ulp_unit *unit;
struct ulp_dependency *dep, *a_dep;
const char *basename_target;
a_patch = calloc(1, sizeof(struct ulp_applied_patch));
if (!a_patch) {
WARN("Unable to allocate memory to update ulp state.");
return 0;
}
memcpy(a_patch->patch_id, ulp->patch_id, 32);
a_patch->lib_name = strndup(get_basename(ulp->objs->name), ULP_PATH_LEN);
if (!a_patch->lib_name) {
WARN("Unable to allocate filename buffer state.");
return 0;
}
a_patch->container_name = strndup(ulp->so_filename, ULP_PATH_LEN);
if (!a_patch->container_name) {
WARN("Unable to allocate filename buffer state.");
return 0;
}
for (dep = ulp->deps; dep != NULL; dep = dep->next) {
a_dep = calloc(1, sizeof(struct ulp_dependency));
if (!a_dep) {
WARN("Unable to allocate memory to ulp state dependency.");
return 0;
}
*a_dep = *dep;
a_dep->next = a_patch->deps;
a_patch->deps = a_dep;
}
obj = ulp->objs;
unit = obj->units;
basename_target = get_basename(obj->name);
/* only shared objs have units, this loop never runs for main obj */
while (unit != NULL) {
a_unit = calloc(1, sizeof(struct ulp_applied_unit));
if (!a_unit) {
WARN("Unable to allocate memory to update ulp state (unit).");
return 0;
}
a_unit->patched_addr = get_loaded_symbol_addr(
basename_target, unit->old_fname, unit->old_faddr);
if (!a_unit->patched_addr) {
WARN("Symbol %s not found in %s.", unit->old_fname, basename_target);
return 0;
}
a_unit->target_addr = load_so_symbol(unit->new_fname, ulp->so_handler);
if (!a_unit->target_addr) {
return 0;
}
memcpy(a_unit->overwritten_bytes, a_unit->patched_addr, 14);
if (a_patch->units == NULL) {
a_patch->units = a_unit;
prev_unit = a_unit;
}
else {
prev_unit->next = a_unit;
prev_unit = a_unit;
}
unit = unit->next;
}
/* Insert timestamp. */
struct timespec t;
clock_gettime(CLOCK_REALTIME, &t);
a_patch->timestamp = t.tv_sec;
/* leave last on top of list to optmize revert */
prev_patch = __ulp_state.patches;
__ulp_state.patches = a_patch;
a_patch->next = prev_patch;
return a_patch;
}
/* @brief Retrieves the memory protection bits of the page containing ADDR.
*
* @param addr Address of the page.
* @return If errors ocurred, return -1.
*/
int
memory_protection_get(uintptr_t addr)
{
char line[LINE_MAX];
char *str;
char *end;
int fd;
int result;
int retcode;
uintptr_t addr1;
uintptr_t addr2;
fd = open("/proc/self/maps", O_RDONLY);
if (fd == -1)
return -1;
/* Iterate over /proc/self/maps lines. */
result = -1;
for (;;) {
/* Read one line. */
retcode = read_line(fd, line, LINE_MAX);
if (retcode <= 0)
break;
/* Parse the address range in the current line. */
str = line;
addr1 = strtoul(str, &end, 16);
str = end + 1; /* Skip the dash used in the range output. */
addr2 = strtoul(str, &end, 16);
/* Skip line if target address not within range. */
if (addr < addr1 || addr >= addr2)
continue;
/* Otherwise, parse the memory protection bits. */
result = 0;
if (*(end + 1) == 'r')
result |= PROT_READ;
if (*(end + 2) == 'w')
result |= PROT_WRITE;
if (*(end + 3) == 'x')
result |= PROT_EXEC;
break;
}
close(fd);
return result;
}
/** @brief Check if the patch metadata object is sane.
*
* This function checks if the given metadata object in `ulp` is sane in order
* to procceed with the patching.
*
* @param ulp The metadata object.
* @return 0 if success, anything else if error.
*/
int
check_patch_sanity(struct ulp_metadata *ulp)
{
int ret;
if (!check_build_id(ulp))
return EBUILDID;
ret = check_patch_dependencies(ulp);
if (ret)
return ret;
if (ulp_get_applied_patch(ulp->patch_id)) {
return EAPPLIED;
}
return 0;
}
/** @brief Check the dependencies of the livepatch given in metadata.
*
* This function will check if the patch given in the parsed ulp_metadata
* object have its dependencies fullfiled.
*
* @param ulp The parsed ulp_metadata object.
*
* @return 0 if success, EDEPEND if dependencies are not met.
*/
int
check_patch_dependencies(struct ulp_metadata *ulp)
{
struct ulp_applied_patch *patch;
struct ulp_dependency *dep;
for (dep = ulp->deps; dep != NULL; dep = dep->next) {
for (patch = __ulp_state.patches; patch != NULL; patch = patch->next) {
if (memcmp(patch->patch_id, dep->dep_id, 32) == 0) {
dep->patch_id_check = 1;
break;
}
}
}
for (dep = ulp->deps; dep != NULL; dep = dep->next) {
if (dep->patch_id_check == 0) {
WARN("Patch does not match dependencies.");
return EDEPEND;
}
}
return 0;
}
/** build_id_note structure, holding information about the build id. */
struct build_id_note
{
/* The NHdr ELF. See elf.h for more information. */
/** Size of the name structure. */
uint32_t namesz;
/** Length of the build id. */
uint32_t descsz;
/** Unknown. */
uint32_t type;
/** Name. */
char name[4]; /* Note name for build-id is "GNU\0" */
/** Build id. */
unsigned char build_id[0];
};
/** @brief Function used by dl_iterate_phdr to check if there are some library
* that matches the buildid in the `data` ulp_metadata object.
*/
int
compare_build_ids(struct dl_phdr_info *info,
size_t __attribute__((unused)) size, void *data)
{
/** Align `val` to `align` bytes. */
#define ALIGN(val, align) (((val) + (align) - 1) & ~((align) - 1))
struct ulp_metadata *ulp = (struct ulp_metadata *)data;
for (unsigned i = 0; i < info->dlpi_phnum; ++i) {
if (info->dlpi_phdr[i].p_type != PT_NOTE)
continue;
struct build_id_note *note =
(struct build_id_note *)(info->dlpi_addr + info->dlpi_phdr[i].p_vaddr);
ptrdiff_t size = info->dlpi_phdr[i].p_filesz;
while (size >= (ptrdiff_t)sizeof(struct build_id_note)) {
if (note->type == NT_GNU_BUILD_ID && note->namesz == 4 &&
note->descsz >= 16) {
/* Check if build matches. */
if (note->descsz == ulp->objs->build_id_len &&
memcmp(ulp->objs->build_id, note->build_id, note->descsz)) {
ulp->objs->build_id_check = 1;
return 1;
}
/* Does not match. Go to another lib. */
break;
}
size_t offset = (sizeof(uint32_t) * 3 + ALIGN(note->namesz, 4) +
ALIGN(note->descsz, 4));
note = (struct build_id_note *)((char *)note + offset);
size -= offset;
}
}
return 0;
#undef ALIGN
}
/** @brief Check if the build id in the patch matches some .
*
* Check if the build id in the patch was already compared and it is safe to
* continue with livepatching.
*
* @param ulp The parsed ulp_metadata object.
* @return 1 if success, 0 if error.
*/
int
check_build_id(struct ulp_metadata *ulp)
{
dl_iterate_phdr(compare_build_ids, ulp);
if (!ulp->objs->build_id_check) {
WARN("Could not match patch target build id %s.", ulp->objs->name);
return 0;
}
return 1;
}
/** @brief Get patched address of function with universe index = idx.
*
* This function will get the function address (plus 2) of the function whose
* universe index equals `idx`. Every time a function is livepatched or
* reverted this index number increases. It will save this address in register
* r11.
*/
void
__ulp_manage_universes(unsigned long idx)
{
struct ulp_detour_root *root;
struct ulp_detour *d;
void *target;
root = get_detour_root_by_index((unsigned int)idx);
if (!root) {
WARN("FATAL ERROR While Live Patching.");
libpulp_exit(-1);
}
target = NULL;
// since universes are kept in order, this is a top-down search
for (d = root->detours; d != NULL; d = d->next) {
if (d->active) {
target = d->target_addr;
break;
}
}
if (!target)
target = root->patched_addr + 2;
}
/** @brief Get next root index and update the global counter.
*
* Every time a livepatch function is updated, this counter gets updated.
*/
unsigned int
get_next_function_index()
{
return __ulp_root_index_counter++;
}
/** @brief Push new detour object into root object.
*
* This function will push a new detour object (reference to new function)
* into the root object (old function).
*
* @param universe Global index state.
* @param patch_id ID of patch.
* @param root Root object representing old function.
* @param new_faddr New function whose detour object will be created.
*
* @return 0 if error 1 if success.
*/
unsigned int
push_new_detour(unsigned long universe, unsigned char *patch_id,
struct ulp_detour_root *root, void *new_faddr)
{
struct ulp_detour *detour, *detour_aux;
detour = calloc(1, sizeof(struct ulp_detour));
if (!detour) {
WARN("Unable to allocate memory for ulp detour");
return 0;
}
detour_aux = root->detours;
root->detours = detour;
detour->next = detour_aux;
detour->target_addr = new_faddr;
detour->universe = universe;
detour->active = 1;
memcpy(detour->patch_id, patch_id, 32);
return 1;
}
struct ulp_applied_patch *
ulp_get_applied_patch(const unsigned char *id)
{
struct ulp_applied_patch *patch;
for (patch = __ulp_state.patches; patch != NULL; patch = patch->next)
if (memcmp(patch->patch_id, id, 32) == 0)
return patch;
return NULL;
}
/** @brief Remove applied patch and its units..
*
* If a patch removal is issued, this function will remove the patch from the
* patch list and also every unit that is associated with it.
*
* @brief id Patch id to remove.
*
* @return 0 if success, ESTATE if error.
*
*/
int
ulp_revert_patch(unsigned char *id)
{
__ulp_global_universe++;
if (ulp_revert_all_units(id)) {
if (!ulp_state_remove(id)) {
WARN("Problem updating state. Program may be inconsistent.");
return ESTATE;
}
}
return 0;
}
/** @brief Remove applied patch from the patches list.
*
* If a patch removal is issued, this function will remove the patch from the
* patch list.
*
* @brief id Patch id to remove.
*
* @return 0 if no patch to remove, 1 if patch found.
*
*/
int
ulp_state_remove(unsigned char *id)
{
struct ulp_applied_patch **patch, *patch_to_remove = NULL;
struct ulp_applied_unit *unit, *next_unit;
struct ulp_dependency *dep, *next_dep;
/* take it out from applied patches list */
/* Find the patch in the patch chain*/
for (patch = &__ulp_state.patches; *patch != NULL; patch = &(*patch)->next) {
/* Check if this is the patch we want. */
if (memcmp((*patch)->patch_id, id, 32) == 0) {
/* Remove it from the patch chain. */
patch_to_remove = *patch;
*patch = (*patch)->next;
/* We have found what we need. */
break;
}
}
if (!patch_to_remove) {
return 0;
}
/* Free all units from it. */
for (unit = patch_to_remove->units; unit != NULL; unit = next_unit) {
next_unit = unit->next;
FREE_AND_NULLIFY(unit);
}
/* Free all deps from it. */
for (dep = patch_to_remove->deps; dep != NULL; dep = next_dep) {
next_dep = dep->next;
FREE_AND_NULLIFY(dep);
}
FREE_AND_NULLIFY(patch_to_remove->lib_name);
FREE_AND_NULLIFY(patch_to_remove);
return 1;
}
/** @brief Revert all units applied to given patch id.
*
* This function will revert all units applied by a patch which matches the
* given patch id, applying the units from a previous patch if available.
*
* @param patch_id ID of the patch to revert.
*
* @return 1 if success or failure.
*/
int
ulp_revert_all_units(unsigned char *patch_id)
{
struct ulp_detour_root *r;
struct ulp_detour *d;
struct ulp_detour *d2;
struct ulp_detour *dactive;
for (r = __ulp_root; r != NULL; r = r->next)
for (d = r->detours; d != NULL; d = d->next)
if (memcmp(d->patch_id, patch_id, 32) == 0) {
/* Deactivate this patch. */
d->active = 0;
/* Find the most recent live patch that is active. */
dactive = NULL;
for (d2 = r->detours; d2 != NULL; d2 = d2->next) {
if (d2->active) {
dactive = d2;
/* Newest elements of the list come first. */
break;
}
}
/* Update the function prologue. */
if (!dactive) {
/* There is no previous patch in this function. */
ulp_patch_addr(r->patched_addr, NULL, false);
}
else {
ulp_patch_addr(r->patched_addr, dactive->target_addr, true);
}
}
return 1;
}
/** @brief Enable or disable livepatching in this process.
*
* This function enables or disables livepatching according to libpulp's error
* state. If libpulp is not in a error state, it sets it to EUSRBLOCKED, which
* flags that the user requested this process to not be livepatched anymore.
* In case current state is EUSRBLOCKED, it sets to ENONE, thus re-enabling
* livepatching.
*
* If libpulp is in an error state outside of EUSRBLOCKED or ENONE, then
* changing this state is blocked as it is in a real error state, thus
* patching is blocked.
*
* @return error state after change.
**/
int
ulp_enable_or_disable_patching(void)
{
ulp_error_t state = get_libpulp_error_state();
switch (state) {
case ENONE:
/* Block livepatching. */
set_libpulp_error_state(EUSRBLOCKED);
break;
case EUSRBLOCKED:
/* Unblock livepatching. */
set_libpulp_error_state(ENONE);
break;
default:
/* Libpulp is in an error state and we can not continue. */
break;
}
/* Return the current state. */
return get_libpulp_error_state();
}
/* these are here for debugging reasons :) */
void
dump_ulp_patching_state(void)
{
struct ulp_applied_patch *a_patch;
struct ulp_applied_unit *a_unit;
struct ulp_dependency *dep;
int i;
fprintf(stderr, "----- ULP state dump -----\n");
fprintf(stderr, "__ulp_state address: %lx\n", (unsigned long)&__ulp_state);
for (a_patch = __ulp_state.patches; a_patch != NULL;
a_patch = a_patch->next) {
fprintf(stderr, "* libname: %s\n", a_patch->lib_name);
fprintf(stderr, "* container: %s\n", a_patch->container_name);
fprintf(stderr, "* PATCH 0x");
for (i = 0; i < 32; i++) {
fprintf(stderr, "%x.", a_patch->patch_id[i]);
}
fprintf(stderr, "\n");
for (dep = a_patch->deps; dep != NULL; dep = dep->next) {
fprintf(stderr, "* DEPENDs 0x");
for (i = 0; i < 32; i++) {
fprintf(stderr, "%x.", dep->dep_id[i]);
}
fprintf(stderr, "\n");
}
for (a_unit = a_patch->units; a_unit != NULL; a_unit = a_unit->next)
fprintf(stderr, "** %p %p\n", a_unit->patched_addr, a_unit->target_addr);
}
fprintf(stderr, "----- End of dump ------\n");
}
void
dump_ulp_detours(void)
{
struct ulp_detour_root *r;
struct ulp_detour *d;
int i;
fprintf(stderr, "====== ULP Roots ======\n");
for (r = __ulp_root; r != NULL; r = r->next) {
fprintf(stderr, "* ROOT:\n");
fprintf(stderr, "* Index: %d\n", r->index);
fprintf(stderr, "* Patched addr: %p\n", r->patched_addr);
fprintf(stderr, "----- ULP DETOURS -----\n");
for (d = r->detours; d != NULL; d = d->next) {
fprintf(stderr, " * DETOUR:\n");
fprintf(stderr, " * Universe: %ld\n", d->universe);
fprintf(stderr, " * Target addr: %p\n", d->target_addr);
fprintf(stderr, " * Active: ");
if (d->active)
fprintf(stderr, "yep\n");
else
fprintf(stderr, "nop\n");
fprintf(stderr, " * Patch ID: ");
for (i = 0; i < 16; i++)
fprintf(stderr, "%x.", d->patch_id[i]);
fprintf(stderr, "\n ");
for (i = 16; i < 32; i++)
fprintf(stderr, "%x.", d->patch_id[i]);
fprintf(stderr, "\n========================\n");
}
}
}
|