-
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.
Add
livepatchable
command to check if a library is livepatchable
The new command: $ ulp livepatchable <library> can be used to check if a certain library is livepatchable. Signed-off-by: Giuliano Belinassi <gbelinassi@suse.de>
- Loading branch information
1 parent
8ec3c8d
commit 8b112ae
Showing
10 changed files
with
179 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/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 | ||
|
||
if testsuite.is_library_livepatchable('.libs/libexception.so') == True: | ||
exit(0) | ||
|
||
exit(1) |
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 |
---|---|---|
|
@@ -37,6 +37,7 @@ typedef enum | |
ULP_POST, | ||
ULP_REVERSE, | ||
ULP_MESSAGES, | ||
ULP_LIVEPATCHABLE, | ||
} command_t; | ||
|
||
struct arguments | ||
|
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,72 @@ | ||
/* | ||
* 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/>. | ||
*/ | ||
|
||
#include <err.h> | ||
#include <errno.h> | ||
#include <fcntl.h> | ||
#include <libelf.h> | ||
#include <stdio.h> | ||
#include <unistd.h> | ||
|
||
#include "arguments.h" | ||
#include "config.h" | ||
#include "introspection.h" | ||
#include "livepatchable.h" | ||
#include "msg_queue.h" | ||
#include "post.h" | ||
#include "ulp_common.h" | ||
|
||
int | ||
run_livepatchable(struct arguments *arguments) | ||
{ | ||
int ret = 0; | ||
int fd; | ||
|
||
/* Set the verbosity level in the common introspection infrastructure. */ | ||
ulp_verbose = arguments->verbose; | ||
ulp_quiet = arguments->quiet; | ||
|
||
fd = open(arguments->args[0], 0); | ||
if (fd == -1) | ||
errx(EXIT_FAILURE, "Unable to open file '%s': %s.\n", arguments->args[0], | ||
strerror(errno)); | ||
|
||
elf_version(EV_CURRENT); | ||
Elf *elf = elf_begin(fd, ELF_C_READ, NULL); | ||
|
||
struct Elf_Scn *scn = | ||
find_section_by_name(elf, "__patchable_function_entries"); | ||
if (scn == NULL) { | ||
WARN("file '%s' is not livepatchable: Missing " | ||
"__patchable_function_entries section.", | ||
arguments->args[0]); | ||
ret = 1; | ||
} | ||
else { | ||
WARN("file '%s' is livepatchable.", arguments->args[0]); | ||
ret = 0; | ||
} | ||
|
||
elf_end(elf); | ||
close(fd); | ||
|
||
return ret; | ||
} |
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,29 @@ | ||
/* | ||
* libpulp - User-space Livepatching Library | ||
* | ||
* Copyright (C) 2017-2022 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/>. | ||
*/ | ||
|
||
#ifndef LIVEPATCHABLE_H | ||
#define LIVEPATCHABLE_H | ||
|
||
struct arguments; | ||
|
||
int run_livepatchable(struct arguments *); | ||
|
||
#endif /* LIVEPATCHABLE.H */ |
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