/*
 * livepatch_main.c - kernel live patch main infrastructure
 *
 * Copyright (c) 2014 SUSE
 *  Author: Miroslav Benes <mbenes@suse.cz>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/livepatch.h>
#include <linux/module.h>
#include <linux/types.h>

#include "uname_patch/livepatch_uname.h"

/* Auto expanded KLP_PATCHES_INCLUDES: */
#include "bsc1244235/livepatch_bsc1244235.h"
#include "bsc1245505/livepatch_bsc1245505.h"
#include "bsc1245509/livepatch_bsc1245509.h"
#include "bsc1245685/livepatch_bsc1245685.h"
#include "bsc1246001/livepatch_bsc1246001.h"
#include "bsc1246030/livepatch_bsc1246030.h"
#include "bsc1247315/livepatch_bsc1247315.h"
#include "bsc1247351/livepatch_bsc1247351.h"
#include "bsc1247499/livepatch_bsc1247499.h"
#include "bsc1248298/livepatch_bsc1248298.h"


static struct klp_object objs[] = {
	/* Auto expanded KLP_PATCHES_OBJS: */
	{
		.name = NULL,
		.funcs = (struct klp_func[]) {
			{
			  .old_name = __stringify(KLP_SYSCALL_SYM(newuname)),
			  .new_func = KLP_SYSCALL_SYM(klp_newuname),
			},
#ifdef KLP_ARCH_HAS_SYSCALL_COMPAT_STUBS
			{
			  .old_name = __stringify(KLP_SYSCALL_COMPAT_STUB_SYM(newuname)),
			  .new_func = KLP_SYSCALL_COMPAT_STUB_SYM(klp_newuname),
			},
#endif
			{ .old_name = __stringify(calipso_req_setattr), .new_func = klpp_calipso_req_setattr, .old_sympos = 1, },
			{ .old_name = __stringify(calipso_req_delattr), .new_func = klpp_calipso_req_delattr, .old_sympos = 1, },
			{ .old_name = __stringify(shm_destroy_orphaned), .new_func = klpp_shm_destroy_orphaned, },
#if IS_ENABLED(CONFIG_HID)
			{ .old_name = __stringify(hid_alloc_report_buf), .new_func = klpp_hid_alloc_report_buf, },
			{ .old_name = __stringify(__hid_request), .new_func = klpp___hid_request, },
#endif
			{ .old_name = __stringify(path_mount), .new_func = klpp_path_mount, },
			{ }
		}
	},
#if IS_ENABLED(CONFIG_USB_LIBCOMPOSITE)
	{
		.name = "libcomposite",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(composite_os_desc_req_prepare), .new_func = klpp_composite_os_desc_req_prepare, },
			{ }
		}
	},
#endif
	{
		.name = "mlx5_core",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(mlx5_eswitch_enable_pf_vf_vports), .new_func = klpp_mlx5_eswitch_enable_pf_vf_vports, },
			{ .old_name = __stringify(mlx5_eswitch_disable_pf_vf_vports), .new_func = klpp_mlx5_eswitch_disable_pf_vf_vports, },
			{ }
		}
	},
	{
		.name = "sch_hfsc",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(hfsc_change_class), .new_func = klpp_hfsc_change_class, },
			{ .old_name = __stringify(hfsc_enqueue), .new_func = klpp_hfsc_enqueue, },
			{ }
		}
	},
	{
		.name = "sch_qfq",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(qfq_change_class), .new_func = klpp_qfq_change_class, },
			{ .old_name = __stringify(qfq_delete_class), .new_func = klpp_qfq_delete_class, },
			{ .old_name = __stringify(qfq_dump_class), .new_func = klpp_qfq_dump_class, },
			{ .old_name = __stringify(qfq_dump_class_stats), .new_func = klpp_qfq_dump_class_stats, },
			{ .old_name = __stringify(qfq_destroy_qdisc), .new_func = klpp_qfq_destroy_qdisc, },
			{ }
		}
	},
	{
		.name = "sch_taprio",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(taprio_dev_notifier), .new_func = klpp_taprio_dev_notifier, },
			{ }
		}
	},
	{
		.name = "sunrpc",
		.funcs = (struct klp_func[]) {
			{ .old_name = __stringify(svc_process_common), .new_func = klpp_svc_process_common, },
			{ }
		}
	},
	{ }
};

static struct klp_patch patch = {
	.mod = THIS_MODULE,
	.objs = objs,
	.replace = true,
};

static int __init klp_patch_init(void)
{
	int retval;

	pr_info("livepatch: initializing\n");

	/* Auto expanded KLP_PATCHES_INIT_CALLS: */
	retval = livepatch_bsc1244235_init();
	if (retval)
		goto err_bsc1244235;

	retval = livepatch_bsc1245505_init();
	if (retval)
		goto err_bsc1245505;

	retval = livepatch_bsc1245509_init();
	if (retval)
		goto err_bsc1245509;

	retval = livepatch_bsc1245685_init();
	if (retval)
		goto err_bsc1245685;

	retval = livepatch_bsc1246001_init();
	if (retval)
		goto err_bsc1246001;

	retval = livepatch_bsc1246030_init();
	if (retval)
		goto err_bsc1246030;

	retval = livepatch_bsc1247315_init();
	if (retval)
		goto err_bsc1247315;

	retval = livepatch_bsc1247351_init();
	if (retval)
		goto err_bsc1247351;

	retval = livepatch_bsc1247499_init();
	if (retval)
		goto err_bsc1247499;

	retval = livepatch_bsc1248298_init();
	if (retval)
		goto err_bsc1248298;

	retval = klp_enable_patch(&patch);
	if (!retval)
		return retval;

	/* Auto expanded KLP_PATCHES_INIT_ERR_HANDLERS: */
	livepatch_bsc1248298_cleanup();
err_bsc1248298:
	livepatch_bsc1247499_cleanup();
err_bsc1247499:
	livepatch_bsc1247351_cleanup();
err_bsc1247351:
	livepatch_bsc1247315_cleanup();
err_bsc1247315:
	livepatch_bsc1246030_cleanup();
err_bsc1246030:
	livepatch_bsc1246001_cleanup();
err_bsc1246001:
	livepatch_bsc1245685_cleanup();
err_bsc1245685:
	livepatch_bsc1245509_cleanup();
err_bsc1245509:
	livepatch_bsc1245505_cleanup();
err_bsc1245505:
	livepatch_bsc1244235_cleanup();
err_bsc1244235:

	return retval;
}

static void __exit klp_patch_cleanup(void)
{
	pr_info("livepatch: removed\n");

	/* Auto expanded KLP_PATCHES_CLEANUP_CALLS: */
	livepatch_bsc1244235_cleanup();
	livepatch_bsc1245505_cleanup();
	livepatch_bsc1245509_cleanup();
	livepatch_bsc1245685_cleanup();
	livepatch_bsc1246001_cleanup();
	livepatch_bsc1246030_cleanup();
	livepatch_bsc1247315_cleanup();
	livepatch_bsc1247351_cleanup();
	livepatch_bsc1247499_cleanup();
	livepatch_bsc1248298_cleanup();

}

module_init(klp_patch_init);
module_exit(klp_patch_cleanup);

MODULE_LICENSE("GPL");
MODULE_INFO(livepatch, "Y");
MODULE_INFO(klpgitrev, "48abc280470c83cb8ddcae85146ac4a78da82ce3");
