-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Find address of reference to symbol by its name
Before this patch, the user could only specify ``` #target_symbol:target_symbol_ref:addr1:addr2 ``` however, those address can change when you modify the livepatch sourcecode. Therefore, we now support: ``` #target_symbol:target_symbol_ref ``` and now `addr1` and `addr2` will be collected analysing the target library and livepatch container automatically on packer time. Signed-off-by: Giuliano Belinassi <gbelinassi@suse.de>
- Loading branch information
1 parent
8b112ae
commit 4a0767f
Showing
10 changed files
with
247 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* libpulp - User-space Livepatching Library | ||
* | ||
* Copyright (C) 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 <errno.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
|
||
#include <libaccess.h> | ||
|
||
int | ||
main(void) | ||
{ | ||
char buffer[128]; | ||
|
||
/* Original banner. */ | ||
printf("Banner addr: 0x%lX\n", (unsigned long)banner_get()); | ||
printf("%s\n", banner_get()); | ||
|
||
/* Use original banner setting function. */ | ||
banner_set(strdup("Banner changed from main")); | ||
printf("%s\n", banner_get()); | ||
|
||
/* Wait for input. */ | ||
if (fgets(buffer, sizeof(buffer), stdin) == NULL) { | ||
if (errno) { | ||
perror("access"); | ||
return 1; | ||
} | ||
} | ||
|
||
/* | ||
* Use banner setting function again, which is supposed to have been | ||
* changed by the test driver. The patched function ignores the | ||
* argument, so 'String from main' should not be in the output. | ||
*/ | ||
banner_set("String from main"); | ||
printf("%s\n", banner_get()); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# libpulp - User-space Livepatching Library | ||
# | ||
# Copyright (C) 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/>. | ||
|
||
import testsuite | ||
|
||
child = testsuite.spawn('access') | ||
|
||
child.expect('Original banner') | ||
child.expect('Banner changed from main') | ||
|
||
child.livepatch('libaccess_livepatch2.ulp') | ||
|
||
child.sendline('') | ||
child.expect('String from live patch', | ||
reject=['String from main', | ||
'Live patch data references not initialized']) | ||
|
||
child.close(force=True) | ||
exit(0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* libpulp - User-space Livepatching Library | ||
* | ||
* Copyright (C) 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 <err.h> | ||
#include <stdlib.h> | ||
|
||
#include <libaccess.h> | ||
|
||
char **ulpr_banner = NULL; | ||
static char *ulpr_string = "String from live patch"; | ||
|
||
void | ||
new_banner_set(__attribute__((unused)) char *new) | ||
{ | ||
if (ulpr_banner == NULL) | ||
errx(EXIT_FAILURE, "Live patch data references not initialized"); | ||
|
||
*ulpr_banner = ulpr_string; | ||
} | ||
|
||
/* | ||
* Touch ulpr_banner so that it does not get optimized away or placed into | ||
* read-only sections. | ||
*/ | ||
void | ||
banner_disturb(void) | ||
{ | ||
ulpr_banner++; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__ABS_BUILDDIR__/.libs/libaccess_livepatch2.so | ||
@__ABS_BUILDDIR__/.libs/libaccess.so.0 | ||
banner_set:new_banner_set | ||
#banner:ulpr_banner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters