2012-06-28 03:12:08 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "crtools.h"
|
|
|
|
#include "image.h"
|
|
|
|
#include "eventpoll.h"
|
2012-08-02 12:26:35 +04:00
|
|
|
#include "signalfd.h"
|
2013-01-14 20:47:51 +04:00
|
|
|
#include "fsnotify.h"
|
2012-06-28 03:12:08 +04:00
|
|
|
#include "sockets.h"
|
|
|
|
#include "uts_ns.h"
|
|
|
|
#include "ipc_ns.h"
|
|
|
|
#include "sk-inet.h"
|
2012-08-09 16:17:41 +04:00
|
|
|
#include "sk-packet.h"
|
2012-06-28 03:12:08 +04:00
|
|
|
#include "mount.h"
|
2012-08-02 08:17:27 +04:00
|
|
|
#include "net.h"
|
2013-01-17 16:56:24 +04:00
|
|
|
#include "pstree.h"
|
2012-07-19 17:37:25 +04:00
|
|
|
#include "protobuf.h"
|
|
|
|
#include "protobuf/inventory.pb-c.h"
|
2013-03-12 21:00:05 +04:00
|
|
|
#include "protobuf/pagemap.pb-c.h"
|
2012-07-19 17:37:25 +04:00
|
|
|
|
2013-01-11 18:16:25 +04:00
|
|
|
bool fdinfo_per_id = false;
|
2013-01-17 18:10:29 +04:00
|
|
|
TaskKobjIdsEntry *root_ids;
|
2013-01-11 18:16:25 +04:00
|
|
|
|
2012-07-19 17:37:25 +04:00
|
|
|
int check_img_inventory(void)
|
|
|
|
{
|
2013-03-14 19:38:57 +04:00
|
|
|
int fd, ret = -1;
|
2012-07-19 17:37:25 +04:00
|
|
|
InventoryEntry *he;
|
|
|
|
|
2013-04-09 11:13:51 +04:00
|
|
|
fd = open_image(CR_FD_INVENTORY, O_RSTR);
|
2012-07-19 17:37:25 +04:00
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
2013-03-14 19:38:57 +04:00
|
|
|
if (pb_read_one(fd, &he, PB_INVENTORY) < 0)
|
|
|
|
goto out_close;
|
2012-07-19 17:37:25 +04:00
|
|
|
|
2013-01-11 18:16:25 +04:00
|
|
|
fdinfo_per_id = he->has_fdinfo_per_id ? he->fdinfo_per_id : false;
|
|
|
|
|
2013-01-17 18:46:42 +04:00
|
|
|
if (he->root_ids) {
|
|
|
|
root_ids = xmalloc(sizeof(*root_ids));
|
|
|
|
if (!root_ids)
|
2013-03-14 19:38:57 +04:00
|
|
|
goto out_err;
|
2013-01-17 18:46:42 +04:00
|
|
|
|
|
|
|
memcpy(root_ids, he->root_ids, sizeof(*root_ids));
|
|
|
|
}
|
2012-07-19 17:37:25 +04:00
|
|
|
|
2013-03-14 19:38:57 +04:00
|
|
|
if (he->img_version != CRTOOLS_IMAGES_V1) {
|
|
|
|
pr_err("Not supported images version %u\n", he->img_version);
|
|
|
|
goto out_err;
|
2012-07-19 17:37:25 +04:00
|
|
|
}
|
2013-03-14 19:38:57 +04:00
|
|
|
ret = 0;
|
2012-07-19 17:37:25 +04:00
|
|
|
|
2013-03-14 19:38:57 +04:00
|
|
|
out_err:
|
|
|
|
inventory_entry__free_unpacked(he, NULL);
|
|
|
|
out_close:
|
|
|
|
close(fd);
|
|
|
|
return ret;
|
2012-07-19 17:37:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int write_img_inventory(void)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
InventoryEntry he = INVENTORY_ENTRY__INIT;
|
2013-01-17 16:56:24 +04:00
|
|
|
struct pstree_item crt = { };
|
2012-07-19 17:37:25 +04:00
|
|
|
|
|
|
|
pr_info("Writing image inventory (version %u)\n", CRTOOLS_IMAGES_V1);
|
|
|
|
|
|
|
|
fd = open_image(CR_FD_INVENTORY, O_DUMP);
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
he.img_version = CRTOOLS_IMAGES_V1;
|
2013-01-11 18:16:25 +04:00
|
|
|
he.fdinfo_per_id = true;
|
|
|
|
he.has_fdinfo_per_id = true;
|
2012-07-19 17:37:25 +04:00
|
|
|
|
2013-03-14 20:56:00 +04:00
|
|
|
crt.state = TASK_ALIVE;
|
2013-01-17 16:56:24 +04:00
|
|
|
crt.pid.real = getpid();
|
|
|
|
if (get_task_ids(&crt))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
he.root_ids = crt.ids;
|
|
|
|
|
2012-08-07 02:26:50 +04:00
|
|
|
if (pb_write_one(fd, &he, PB_INVENTORY) < 0)
|
2012-07-19 17:37:25 +04:00
|
|
|
return -1;
|
|
|
|
|
2013-01-17 16:56:24 +04:00
|
|
|
xfree(crt.ids);
|
2012-07-19 17:37:25 +04:00
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-27 16:16:25 +04:00
|
|
|
void kill_inventory(void)
|
|
|
|
{
|
|
|
|
unlinkat(get_service_fd(IMG_FD_OFF),
|
|
|
|
fdset_template[CR_FD_INVENTORY].fmt, 0);
|
|
|
|
}
|
|
|
|
|
2012-07-19 17:37:25 +04:00
|
|
|
static void show_inventory(int fd, struct cr_options *o)
|
|
|
|
{
|
2013-01-15 20:42:57 +04:00
|
|
|
pb_show_vertical(fd, PB_INVENTORY);
|
2012-07-19 17:37:25 +04:00
|
|
|
}
|
2012-06-28 03:12:08 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The cr fd set is the set of files where the information
|
|
|
|
* about dumped processes is stored. Each file carries some
|
|
|
|
* small portion of info about the whole picture, see below
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FD_ENTRY(_name, _fmt, _show) \
|
|
|
|
[CR_FD_##_name] = { \
|
|
|
|
.fmt = _fmt ".img", \
|
|
|
|
.magic = _name##_MAGIC, \
|
|
|
|
.show = _show, \
|
|
|
|
}
|
|
|
|
|
2012-08-09 16:22:32 +04:00
|
|
|
static void show_raw_image(int fd, struct cr_options *opt) {};
|
|
|
|
|
2012-06-28 03:12:08 +04:00
|
|
|
struct cr_fd_desc_tmpl fdset_template[CR_FD_MAX] = {
|
2012-07-19 17:37:25 +04:00
|
|
|
FD_ENTRY(INVENTORY, "inventory", show_inventory),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(FDINFO, "fdinfo-%d", show_files),
|
2013-03-12 21:00:05 +04:00
|
|
|
FD_ENTRY(PAGEMAP, "pagemap-%ld", show_pagemap),
|
|
|
|
FD_ENTRY(SHMEM_PAGEMAP, "pagemap-shmem-%ld", show_pagemap),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(REG_FILES, "reg-files", show_reg_files),
|
|
|
|
FD_ENTRY(EVENTFD, "eventfd", show_eventfds),
|
|
|
|
FD_ENTRY(EVENTPOLL, "eventpoll", show_eventpoll),
|
|
|
|
FD_ENTRY(EVENTPOLL_TFD, "eventpoll-tfd", show_eventpoll_tfd),
|
2012-08-02 12:26:35 +04:00
|
|
|
FD_ENTRY(SIGNALFD, "signalfd", show_signalfd),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(INOTIFY, "inotify", show_inotify),
|
|
|
|
FD_ENTRY(INOTIFY_WD, "inotify-wd", show_inotify_wd),
|
2013-01-14 20:47:56 +04:00
|
|
|
FD_ENTRY(FANOTIFY, "fanotify", show_fanotify),
|
|
|
|
FD_ENTRY(FANOTIFY_MARK, "fanotify-mark", show_fanotify_mark),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(CORE, "core-%d", show_core),
|
2013-01-11 18:16:21 +04:00
|
|
|
FD_ENTRY(IDS, "ids-%d", show_ids),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(MM, "mm-%d", show_mm),
|
|
|
|
FD_ENTRY(VMAS, "vmas-%d", show_vmas),
|
|
|
|
FD_ENTRY(PIPES, "pipes", show_pipes),
|
|
|
|
FD_ENTRY(PIPES_DATA, "pipes-data", show_pipes_data),
|
2012-06-26 02:36:13 +04:00
|
|
|
FD_ENTRY(FIFO, "fifo", show_fifo),
|
|
|
|
FD_ENTRY(FIFO_DATA, "fifo-data", show_fifo_data),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(PSTREE, "pstree", show_pstree),
|
|
|
|
FD_ENTRY(SIGACT, "sigacts-%d", show_sigacts),
|
|
|
|
FD_ENTRY(UNIXSK, "unixsk", show_unixsk),
|
|
|
|
FD_ENTRY(INETSK, "inetsk", show_inetsk),
|
2012-08-09 16:17:41 +04:00
|
|
|
FD_ENTRY(PACKETSK, "packetsk", show_packetsk),
|
2013-03-25 19:28:44 +04:00
|
|
|
FD_ENTRY(NETLINKSK, "netlinksk", show_netlinksk),
|
2012-06-28 03:12:08 +04:00
|
|
|
FD_ENTRY(SK_QUEUES, "sk-queues", show_sk_queues),
|
|
|
|
FD_ENTRY(ITIMERS, "itimers-%d", show_itimers),
|
|
|
|
FD_ENTRY(CREDS, "creds-%d", show_creds),
|
|
|
|
FD_ENTRY(UTSNS, "utsns-%d", show_utsns),
|
|
|
|
FD_ENTRY(IPCNS_VAR, "ipcns-var-%d", show_ipc_var),
|
|
|
|
FD_ENTRY(IPCNS_SHM, "ipcns-shm-%d", show_ipc_shm),
|
|
|
|
FD_ENTRY(IPCNS_MSG, "ipcns-msg-%d", show_ipc_msg),
|
|
|
|
FD_ENTRY(IPCNS_SEM, "ipcns-sem-%d", show_ipc_sem),
|
|
|
|
FD_ENTRY(FS, "fs-%d", show_fs),
|
|
|
|
FD_ENTRY(REMAP_FPATH, "remap-fpath", show_remap_files),
|
|
|
|
FD_ENTRY(GHOST_FILE, "ghost-file-%x", show_ghost_file),
|
|
|
|
FD_ENTRY(TCP_STREAM, "tcp-stream-%x", show_tcp_stream),
|
|
|
|
FD_ENTRY(MOUNTPOINTS, "mountpoints-%d", show_mountpoints),
|
2012-08-02 08:17:27 +04:00
|
|
|
FD_ENTRY(NETDEV, "netdev-%d", show_netdevices),
|
2012-08-09 16:22:32 +04:00
|
|
|
FD_ENTRY(IFADDR, "ifaddr-%d", show_raw_image),
|
|
|
|
FD_ENTRY(ROUTE, "route-%d", show_raw_image),
|
2012-08-09 19:51:22 +04:00
|
|
|
FD_ENTRY(TMPFS, "tmpfs-%d.tar.gz", show_raw_image),
|
2012-09-12 20:00:55 +04:00
|
|
|
FD_ENTRY(TTY, "tty", show_tty),
|
|
|
|
FD_ENTRY(TTY_INFO, "tty-info", show_tty_info),
|
2013-01-17 16:09:30 +08:00
|
|
|
FD_ENTRY(FILE_LOCKS, "filelocks-%d", show_file_locks),
|
2013-03-29 19:40:23 +04:00
|
|
|
FD_ENTRY(RLIMIT, "rlimit-%d", show_rlimit),
|
2013-03-12 21:00:05 +04:00
|
|
|
FD_ENTRY(PAGES, "pages-%u", NULL),
|
2013-03-27 13:12:02 +04:00
|
|
|
FD_ENTRY(PAGES_OLD, "pages-%d", NULL),
|
|
|
|
FD_ENTRY(SHM_PAGES_OLD, "pages-shmem-%ld", NULL),
|
2013-03-25 23:39:47 +04:00
|
|
|
FD_ENTRY(SIGNAL, "signal-s-%d", show_siginfo), /* shared signals */
|
|
|
|
FD_ENTRY(PSIGNAL, "signal-p-%d", show_siginfo), /* private signals */
|
2012-06-28 03:12:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct cr_fdset *alloc_cr_fdset(int nr)
|
|
|
|
{
|
|
|
|
struct cr_fdset *cr_fdset;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
cr_fdset = xmalloc(sizeof(*cr_fdset));
|
|
|
|
if (cr_fdset == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cr_fdset->_fds = xmalloc(nr * sizeof(int));
|
|
|
|
if (cr_fdset->_fds == NULL) {
|
|
|
|
xfree(cr_fdset);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nr; i++)
|
|
|
|
cr_fdset->_fds[i] = -1;
|
|
|
|
cr_fdset->fd_nr = nr;
|
|
|
|
return cr_fdset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __close_cr_fdset(struct cr_fdset *cr_fdset)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!cr_fdset)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < cr_fdset->fd_nr; i++) {
|
|
|
|
if (cr_fdset->_fds[i] == -1)
|
|
|
|
continue;
|
|
|
|
close_safe(&cr_fdset->_fds[i]);
|
|
|
|
cr_fdset->_fds[i] = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void close_cr_fdset(struct cr_fdset **cr_fdset)
|
|
|
|
{
|
|
|
|
if (!cr_fdset || !*cr_fdset)
|
|
|
|
return;
|
|
|
|
|
|
|
|
__close_cr_fdset(*cr_fdset);
|
|
|
|
|
|
|
|
xfree((*cr_fdset)->_fds);
|
|
|
|
xfree(*cr_fdset);
|
|
|
|
*cr_fdset = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct cr_fdset *cr_fdset_open(int pid, int from, int to,
|
|
|
|
unsigned long flags)
|
|
|
|
{
|
|
|
|
struct cr_fdset *fdset;
|
|
|
|
unsigned int i;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
fdset = alloc_cr_fdset(to - from);
|
|
|
|
if (!fdset)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
from++;
|
|
|
|
fdset->fd_off = from;
|
|
|
|
for (i = from; i < to; i++) {
|
|
|
|
ret = open_image(i, flags, pid);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (!(flags & O_CREAT))
|
|
|
|
/* caller should check himself */
|
|
|
|
continue;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
fdset->_fds[i - from] = ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fdset;
|
|
|
|
|
|
|
|
err:
|
|
|
|
close_cr_fdset(&fdset);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cr_fdset *cr_task_fdset_open(int pid, int mode)
|
|
|
|
{
|
|
|
|
return cr_fdset_open(pid, _CR_FD_TASK_FROM, _CR_FD_TASK_TO, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cr_fdset *cr_ns_fdset_open(int pid, int mode)
|
|
|
|
{
|
|
|
|
return cr_fdset_open(pid, _CR_FD_NS_FROM, _CR_FD_NS_TO, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct cr_fdset *cr_glob_fdset_open(int mode)
|
|
|
|
{
|
|
|
|
return cr_fdset_open(-1 /* ignored */, _CR_FD_GLOB_FROM, _CR_FD_GLOB_TO, mode);
|
|
|
|
}
|
|
|
|
|
2013-04-11 17:49:43 +04:00
|
|
|
int open_image_at(int dfd, int type, unsigned long flags, ...)
|
2012-06-28 03:12:08 +04:00
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
va_list args;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
va_start(args, flags);
|
|
|
|
vsnprintf(path, PATH_MAX, fdset_template[type].fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
if (flags & O_EXCL) {
|
2013-01-11 18:16:20 +04:00
|
|
|
ret = unlinkat(dfd, path, 0);
|
2012-06-28 03:12:08 +04:00
|
|
|
if (ret && errno != ENOENT) {
|
|
|
|
pr_perror("Unable to unlink %s", path);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-11 18:16:20 +04:00
|
|
|
ret = openat(dfd, path, flags, CR_FD_PERM);
|
2012-06-28 03:12:08 +04:00
|
|
|
if (ret < 0) {
|
|
|
|
pr_perror("Unable to open %s", path);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-08-02 07:42:41 +04:00
|
|
|
if (fdset_template[type].magic == RAW_IMAGE_MAGIC)
|
|
|
|
goto skip_magic;
|
|
|
|
|
2012-06-28 03:12:08 +04:00
|
|
|
if (flags == O_RDONLY) {
|
|
|
|
u32 magic;
|
|
|
|
|
|
|
|
if (read_img(ret, &magic) < 0)
|
|
|
|
goto err;
|
|
|
|
if (magic != fdset_template[type].magic) {
|
|
|
|
pr_err("Magic doesn't match for %s\n", path);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (write_img(ret, &fdset_template[type].magic))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-08-02 07:42:41 +04:00
|
|
|
skip_magic:
|
2012-06-28 03:12:08 +04:00
|
|
|
return ret;
|
|
|
|
err:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int open_image_dir(void)
|
|
|
|
{
|
2013-01-11 18:16:20 +04:00
|
|
|
int fd, ret;
|
2012-06-28 03:12:08 +04:00
|
|
|
|
|
|
|
fd = open(".", O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
pr_perror("Can't open cwd");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-01-11 18:16:20 +04:00
|
|
|
ret = install_service_fd(IMG_FD_OFF, fd);
|
|
|
|
|
|
|
|
close(fd);
|
2012-06-28 03:12:08 +04:00
|
|
|
|
2013-04-11 17:50:42 +04:00
|
|
|
if (opts.snap_parent) {
|
|
|
|
ret = symlink(opts.snap_parent, CR_PARENT_LINK);
|
|
|
|
if (ret < 0) {
|
|
|
|
pr_perror("Can't link parent snapshot.");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(CR_PARENT_LINK, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
pr_perror("Can't open parent snapshot.");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = install_service_fd(PARENT_FD_OFF, fd);
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2013-01-11 18:16:20 +04:00
|
|
|
return ret;
|
2013-04-11 17:50:42 +04:00
|
|
|
|
|
|
|
err:
|
|
|
|
close_image_dir();
|
|
|
|
return -1;
|
2012-06-28 03:12:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void close_image_dir(void)
|
|
|
|
{
|
2013-01-11 18:16:20 +04:00
|
|
|
close_service_fd(IMG_FD_OFF);
|
2012-06-28 03:12:08 +04:00
|
|
|
}
|
2013-03-12 21:00:05 +04:00
|
|
|
|
|
|
|
static unsigned long page_ids = 1;
|
|
|
|
|
2013-03-14 18:28:38 +04:00
|
|
|
void up_page_ids_base(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* When page server and crtools dump work on
|
|
|
|
* the same dir, the shmem pagemaps and regular
|
|
|
|
* pagemaps may have IDs conflicts. Fix this by
|
|
|
|
* making page server produce page images with
|
|
|
|
* higher IDs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
BUG_ON(page_ids != 1);
|
|
|
|
page_ids += 0x10000;
|
|
|
|
}
|
|
|
|
|
2013-04-11 17:49:43 +04:00
|
|
|
int open_pages_image_at(int dfd, unsigned long flags, int pm_fd)
|
2013-03-12 21:00:05 +04:00
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
|
|
|
|
if (flags == O_RDONLY) {
|
|
|
|
PagemapHead *h;
|
|
|
|
if (pb_read_one(pm_fd, &h, PB_PAGEMAP_HEAD) < 0)
|
|
|
|
return -1;
|
|
|
|
id = h->pages_id;
|
|
|
|
pagemap_head__free_unpacked(h, NULL);
|
|
|
|
} else {
|
|
|
|
PagemapHead h = PAGEMAP_HEAD__INIT;
|
|
|
|
id = h.pages_id = page_ids++;
|
|
|
|
if (pb_write_one(pm_fd, &h, PB_PAGEMAP_HEAD) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-04-11 17:49:43 +04:00
|
|
|
return open_image_at(dfd, CR_FD_PAGES, flags, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
int open_pages_image(unsigned long flags, int pm_fd)
|
|
|
|
{
|
|
|
|
return open_pages_image_at(get_service_fd(IMG_FD_OFF), flags, pm_fd);
|
2013-03-12 21:00:05 +04:00
|
|
|
}
|