summaryrefslogtreecommitdiff
path: root/pkgng/etckeeper.c
blob: 6c5438876a52af5ae3cb2bc1bf34a26bd57d404e (plain)
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
/*
 * Copyright (c) 2015 William Johansson <radar@radhuset.org>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer
 *    in this position and unchanged.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Based upon the pkg plugin zfssnap:
 * Copyright (c) 2012 Marin Atanasov Nikolov <dnaeon@gmail.com>
 */

#include <stdio.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <spawn.h>

#include <pkg.h>
#define PLUGIN_NAME "etckeeper"
/* TODO: make configuration param? */
#define ETCKEEPER_PATH "/usr/local/bin/etckeeper"

extern char **environ;

struct pkg_plugin *self;

static int pre_install_hook(void *data, struct pkgdb *db);
static int post_install_hook(void *data, struct pkgdb *db);

int
pkg_plugin_init(struct pkg_plugin *p)
{
	self = p;

	pkg_plugin_set(p, PKG_PLUGIN_NAME, PLUGIN_NAME);
	pkg_plugin_set(p, PKG_PLUGIN_DESC, "etckeeper plugin");
	pkg_plugin_set(p, PKG_PLUGIN_VERSION, "1.0.0");

	/* NOTE: upgrade/deinstall is regarded as install */

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_PRE_INSTALL, &pre_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_POST_INSTALL, &post_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_PRE_DEINSTALL, &pre_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_POST_DEINSTALL, &post_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_PRE_UPGRADE, &pre_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	if (pkg_plugin_hook_register(p, PKG_PLUGIN_HOOK_POST_UPGRADE, &post_install_hook) != EPKG_OK) {
		pkg_plugin_error(self, "failed to hook into the library");
		return (EPKG_FATAL);
	}

	return (EPKG_OK);
}

static int
call_etckeeper(char *arg)
{
	int error, pstat;
	pid_t pid;
	char *argv[] = {
		"etckeeper",
		arg,
		NULL,
	};

	if ((error = posix_spawn(&pid, ETCKEEPER_PATH, NULL, NULL,
		__DECONST(char **, argv), environ)) != 0) {
		errno = error;
		pkg_plugin_errno(self, "Failed to spawn process", arg);
		return (EPKG_FATAL);
	}
	while (waitpid(pid, &pstat, 0) == -1) {
		if (errno != EINTR)
			return (EPKG_FATAL);
	}

	if ((error = WEXITSTATUS(pstat)) != 0) {
		pkg_plugin_error(self, "etckeeper failed with exit code %d", error);
		return (EPKG_FATAL);
	}

	return (EPKG_OK);
}

static int
pre_install_hook(void *data, struct pkgdb *db)
{
	return call_etckeeper("pre-install");
}

static int
post_install_hook(void *data, struct pkgdb *db)
{
	return call_etckeeper("post-install");
}