mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 08:28:50 +00:00 
			
		
		
		
	Reduce or eliminate use of global zebra_ns structs in a couple of netlink/kernel code paths, so that those paths can potentially be made asynch eventually. Signed-off-by: Mark Stapp <mjs@voltanet.io> Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Zebra dataplane layer api interfaces.
 | 
						|
 * Copyright (c) 2018 Volta Networks, Inc.
 | 
						|
 *
 | 
						|
 * 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; see the file COPYING; if not, write to the Free Software
 | 
						|
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ZEBRA_DPLANE_H
 | 
						|
#define _ZEBRA_DPLANE_H 1
 | 
						|
 | 
						|
#include "zebra.h"
 | 
						|
#include "zserv.h"
 | 
						|
#include "prefix.h"
 | 
						|
#include "nexthop.h"
 | 
						|
#include "nexthop_group.h"
 | 
						|
 | 
						|
 | 
						|
/*
 | 
						|
 * API between the zebra dataplane system and the main zebra processing
 | 
						|
 * context.
 | 
						|
 */
 | 
						|
 | 
						|
/* Key netlink info from zebra ns */
 | 
						|
struct zebra_dplane_info {
 | 
						|
	ns_id_t ns_id;
 | 
						|
 | 
						|
#if defined(HAVE_NETLINK)
 | 
						|
	uint32_t nl_pid;
 | 
						|
	bool is_cmd;
 | 
						|
#endif
 | 
						|
};
 | 
						|
 | 
						|
/* Utility to fill in zns info from main zns struct */
 | 
						|
static inline void
 | 
						|
zebra_dplane_info_from_zns(struct zebra_dplane_info *zns_info,
 | 
						|
			   const struct zebra_ns *zns, bool is_cmd)
 | 
						|
{
 | 
						|
	zns_info->ns_id = zns->ns_id;
 | 
						|
 | 
						|
#if defined(HAVE_NETLINK)
 | 
						|
	zns_info->is_cmd = is_cmd;
 | 
						|
	if (is_cmd) {
 | 
						|
		zns_info->nl_pid = zns->netlink_cmd.snl.nl_pid;
 | 
						|
	} else {
 | 
						|
		zns_info->nl_pid = zns->netlink.snl.nl_pid;
 | 
						|
	}
 | 
						|
#endif /* NETLINK */
 | 
						|
}
 | 
						|
 | 
						|
/*
 | 
						|
 * Enqueue a route install or update for the dataplane.
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * Enqueue a route removal for the dataplane.
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * Result codes used when returning status back to the main zebra context.
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * Philosophy Note:
 | 
						|
 *
 | 
						|
 * Flags being SET/UNSET do not belong in the South Bound
 | 
						|
 * Interface.  This Setting belongs at the calling level
 | 
						|
 * because we can and will have multiple different interfaces
 | 
						|
 * and we will have potentially multiple different
 | 
						|
 * modules/filters to call.  As such Setting/Unsetting
 | 
						|
 * success failure should be handled by the caller.
 | 
						|
 */
 | 
						|
enum zebra_dplane_status {
 | 
						|
	ZEBRA_DPLANE_STATUS_NONE = 0,
 | 
						|
	ZEBRA_DPLANE_INSTALL_SUCCESS,
 | 
						|
	ZEBRA_DPLANE_INSTALL_FAILURE,
 | 
						|
	ZEBRA_DPLANE_DELETE_SUCCESS,
 | 
						|
	ZEBRA_DPLANE_DELETE_FAILURE,
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
enum zebra_dplane_result {
 | 
						|
	ZEBRA_DPLANE_REQUEST_QUEUED,
 | 
						|
	ZEBRA_DPLANE_REQUEST_SUCCESS,
 | 
						|
	ZEBRA_DPLANE_REQUEST_FAILURE,
 | 
						|
};
 | 
						|
 | 
						|
#endif	/* _ZEBRA_DPLANE_H */
 |