corosync 3.1.7
totemknet.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2005 MontaVista Software, Inc.
3 * Copyright (c) 2006-2011 Red Hat, Inc.
4 *
5 * All rights reserved.
6 *
7 * Author: Steven Dake (sdake@redhat.com)
8 *
9 * This software licensed under BSD license, the text of which follows:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions are met:
13 *
14 * - Redistributions of source code must retain the above copyright notice,
15 * this list of conditions and the following disclaimer.
16 * - Redistributions in binary form must reproduce the above copyright notice,
17 * this list of conditions and the following disclaimer in the documentation
18 * and/or other materials provided with the distribution.
19 * - Neither the name of the MontaVista Software, Inc. nor the names of its
20 * contributors may be used to endorse or promote products derived from this
21 * software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGE.
34 */
35#ifndef TOTEMKNET_H_DEFINED
36#define TOTEMKNET_H_DEFINED
37
38#include <sys/types.h>
39#include <sys/socket.h>
40#include <qb/qbloop.h>
41
43
48 qb_loop_t *poll_handle,
49 void **knet_context,
51 totemsrp_stats_t *stats,
52 void *context,
53
54 void (*deliver_fn) (
55 void *context,
56 const void *msg,
57 unsigned int msg_len,
58 const struct sockaddr_storage *system_from),
59
60 void (*iface_change_fn) (
61 void *context,
62 const struct totem_ip_address *iface_address,
63 unsigned int ring_no),
64
65 void (*mtu_changed) (
66 void *context,
67 int net_mtu),
68
69 void (*target_set_completed) (
70 void *context));
71
72extern void *totemknet_buffer_alloc (void);
73
74extern void totemknet_buffer_release (void *ptr);
75
77 void *knet_context,
78 int processor_count);
79
80extern int totemknet_token_send (
81 void *knet_context,
82 const void *msg,
83 unsigned int msg_len);
84
86 void *knet_context,
87 const void *msg,
88 unsigned int msg_len);
89
91 void *knet_context,
92 const void *msg,
93 unsigned int msg_len);
94
95extern int totemknet_recv_flush (void *knet_context);
96
97extern int totemknet_send_flush (void *knet_context);
98
99extern int totemknet_iface_check (void *knet_context);
100
101extern int totemknet_finalize (void *knet_context);
102
103extern void totemknet_net_mtu_adjust (void *knet_context, struct totem_config *totem_config);
104
105extern int totemknet_nodestatus_get (void *knet_context, unsigned int nodeid,
106 struct totem_node_status *node_status);
107
108extern int totemknet_ifaces_get (void *net_context,
109 char ***status,
110 unsigned int *iface_count);
111
112extern int totemknet_iface_set (void *net_context,
113 const struct totem_ip_address *local_addr,
114 unsigned short ip_port,
115 unsigned int iface_no);
116
118 void *knet_context,
119 unsigned int nodeid);
120
121extern int totemknet_crypto_set (
122 void *knet_context,
123 const char *cipher_type,
124 const char *hash_type);
125
127 void *knet_context);
128
129extern int totemknet_member_add (
130 void *knet_context,
131 const struct totem_ip_address *local,
132 const struct totem_ip_address *member,
133 int ring_no);
134
135extern int totemknet_member_remove (
136 void *knet_context,
137 const struct totem_ip_address *member,
138 int ring_no);
139
141 void *knet_context,
142 const struct totem_ip_address *member_ip,
143 int active);
144
145extern int totemknet_reconfigure (
146 void *knet_context,
147 struct totem_config *totem_config);
148
150 void *knet_context,
153
154extern void totemknet_stats_clear (
155 void *knet_context);
156
157extern void totemknet_configure_log_level (void);
158
159#endif /* TOTEMKNET_H_DEFINED */
unsigned int nodeid
Definition: coroapi.h:0
The totem_ip_address struct.
Definition: coroapi.h:111
cfg_message_crypto_reconfig_phase_t
Definition: totem.h:154
int totemknet_mcast_flush_send(void *knet_context, const void *msg, unsigned int msg_len)
Definition: totemknet.c:1398
int totemknet_finalize(void *knet_context)
Definition: totemknet.c:664
int totemknet_recv_flush(void *knet_context)
Definition: totemknet.c:1376
int totemknet_member_remove(void *knet_context, const struct totem_ip_address *member, int ring_no)
Definition: totemknet.c:1647
int totemknet_member_add(void *knet_context, const struct totem_ip_address *local, const struct totem_ip_address *member, int ring_no)
Definition: totemknet.c:1525
void * totemknet_buffer_alloc(void)
Definition: totemknet.c:1358
int totemknet_processor_count_set(void *knet_context, int processor_count)
Definition: totemknet.c:1369
int totemknet_mcast_noflush_send(void *knet_context, const void *msg, unsigned int msg_len)
Definition: totemknet.c:1411
int totemknet_initialize(qb_loop_t *poll_handle, void **knet_context, struct totem_config *totem_config, totemsrp_stats_t *stats, void *context, void(*deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from), void(*iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int ring_no), void(*mtu_changed)(void *context, int net_mtu), void(*target_set_completed)(void *context))
Create an instance.
void totemknet_buffer_release(void *ptr)
Definition: totemknet.c:1364
int totemknet_iface_set(void *net_context, const struct totem_ip_address *local_addr, unsigned short ip_port, unsigned int iface_no)
Definition: totemknet.c:1508
int totemknet_crypto_set(void *knet_context, const char *cipher_type, const char *hash_type)
Definition: totemknet.c:363
int totemknet_token_send(void *knet_context, const void *msg, unsigned int msg_len)
Definition: totemknet.c:1386
int totemknet_nodestatus_get(void *knet_context, unsigned int nodeid, struct totem_node_status *node_status)
Definition: totemknet.c:491
int totemknet_ifaces_get(void *net_context, char ***status, unsigned int *iface_count)
Definition: totemknet.c:569
void totemknet_stats_clear(void *knet_context)
Definition: totemknet.c:1809
int totemknet_send_flush(void *knet_context)
Definition: totemknet.c:1381
int totemknet_member_set_active(void *knet_context, const struct totem_ip_address *member_ip, int active)
void totemknet_net_mtu_adjust(void *knet_context, struct totem_config *totem_config)
Definition: totemknet.c:1435
int totemknet_token_target_set(void *knet_context, unsigned int nodeid)
Definition: totemknet.c:1442
void totemknet_configure_log_level(void)
Definition: totemknet.c:888
int totemknet_reconfigure(void *knet_context, struct totem_config *totem_config)
Definition: totemknet.c:1720
int totemknet_crypto_reconfigure_phase(void *knet_context, struct totem_config *totem_config, cfg_message_crypto_reconfig_phase_t phase)
Definition: totemknet.c:1750
int totemknet_recv_mcast_empty(void *knet_context)
Definition: totemknet.c:1456
int totemknet_iface_check(void *knet_context)
Definition: totemknet.c:1425
struct srp_addr system_from
Definition: totemsrp.c:1