/usr/include/OpenIPMI/lanserv.h is in libopenipmi-dev 2.0.22-1.1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | /*
* lanserv.h
*
* MontaVista IPMI LAN server include file
*
* Author: MontaVista Software, Inc.
* Corey Minyard <minyard@mvista.com>
* source@mvista.com
*
* Copyright 2003,2004,2005 MontaVista Software Inc.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* Lesser General Public License (GPL) Version 2 or the modified BSD
* license below. The following disclamer applies to both licenses:
*
* THIS SOFTWARE IS PROVIDED ``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 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.
*
* GNU Lesser General Public Licence
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Modified BSD Licence
*
* 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.
* 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.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*/
#ifndef __LANSERV_H
#define __LANSERV_H
#include <OpenIPMI/ipmi_auth.h>
#include <OpenIPMI/serv.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* Restrictions: <=64 sessions
*/
#define SESSION_BITS_REQ 6 /* Bits required to hold a session. */
#define SESSION_MASK 0x3f
typedef struct session_s session_t;
typedef struct lanserv_data_s lanserv_data_t;
typedef struct integ_handlers_s
{
int (*init)(lanserv_data_t *lan, session_t *session);
void (*cleanup)(lanserv_data_t *lan, session_t *session);
int (*add)(lanserv_data_t *lan, session_t *session,
unsigned char *pos,
unsigned int *data_len, unsigned int data_size);
int (*check)(lanserv_data_t *lan, session_t *session, msg_t *msg);
} integ_handlers_t;
typedef struct conf_handlers_s
{
int (*init)(lanserv_data_t *lan, session_t *session);
void (*cleanup)(lanserv_data_t *lan, session_t *session);
int (*encrypt)(lanserv_data_t *lan, session_t *session,
unsigned char **pos, unsigned int *hdr_left,
unsigned int *data_len, unsigned int *data_size);
int (*decrypt)(lanserv_data_t *lan, session_t *session, msg_t *msg);
} conf_handlers_t;
typedef struct auth_handlers_s
{
int (*init)(lanserv_data_t *lan, session_t *session);
int (*set2)(lanserv_data_t *lan, session_t *session,
unsigned char *data, unsigned int *data_len,
unsigned int max_len);
int (*check3)(lanserv_data_t *lan, session_t *session,
unsigned char *data, unsigned int *data_len);
int (*set4)(lanserv_data_t *lan, session_t *session,
unsigned char *data, unsigned int *data_len,
unsigned int max_len);
} auth_handlers_t;
typedef struct auth_data_s
{
unsigned char rand[16];
unsigned char rem_rand[16];
unsigned char role;
unsigned char username_len;
unsigned char username[16];
unsigned char sik[20];
unsigned char k1[20];
unsigned char k2[20];
unsigned int akey_len;
unsigned int integ_len;
void *adata;
const void *akey;
unsigned int ikey_len;
void *idata;
const void *ikey;
const void *ikey2;
unsigned int ckey_len;
void *cdata;
const void *ckey;
} auth_data_t;
#define LANSERV_NUM_CLOSERS 3
struct session_s
{
unsigned int active : 1;
unsigned int in_startup : 1;
unsigned int rmcpplus : 1;
int handle; /* My index in the table. */
uint32_t recv_seq;
uint32_t xmit_seq;
uint32_t sid;
unsigned char userid;
/* RMCP data */
unsigned char authtype;
ipmi_authdata_t authdata;
/* RMCP+ data */
uint32_t unauth_recv_seq;
uint32_t unauth_xmit_seq;
uint32_t rem_sid;
unsigned int auth;
unsigned int conf;
unsigned int integ;
integ_handlers_t *integh;
conf_handlers_t *confh;
auth_handlers_t *authh;
auth_data_t auth_data;
unsigned char priv;
unsigned char max_priv;
/* The number of seconds left before the session is shut down. */
unsigned int time_left;
/* Address of the message that started the sessions. */
void *src_addr;
int src_len;
struct {
/* Function to call when the session closes */
void (*close_cb)(lmc_data_t *mc, uint32_t session_id, void *cb_data);
void *close_cb_data;
/* The MC associated with the RMCP session activation, used for SOL. */
lmc_data_t *mc;
} closers[3];
};
typedef struct lanparm_data_s lanparm_data_t;
struct lanparm_data_s
{
unsigned int set_in_progress : 2;
unsigned int num_destinations : 4; /* Read-only */
unsigned char ip_addr_src;
unsigned char ip_addr[4];
unsigned char mac_addr[6];
unsigned char subnet_mask[4];
unsigned char default_gw_ip_addr[4];
unsigned char default_gw_mac_addr[6];
unsigned char backup_gw_ip_addr[4];
unsigned char backup_gw_mac_addr[6];
/* FIXME - we don't handle these now. */
unsigned char ipv4_hdr_parms[3];
unsigned char vlan_id[2];
unsigned char vlan_priority;
unsigned int num_cipher_suites : 4;
unsigned char cipher_suite_entry[17];
unsigned char max_priv_for_cipher_suite[9];
};
enum lanread_e {
ip_addr_o,
ip_addr_src_o,
mac_addr_o,
subnet_mask_o,
default_gw_ip_addr_o,
default_gw_mac_addr_o,
backup_gw_ip_addr_o,
backup_gw_mac_addr_o,
lanread_len
};
struct lanserv_data_s
{
sys_data_t *sysinfo;
ipmi_tick_handler_t tick_handler;
unsigned char *guid;
channel_t channel;
/* user 0 is not used. */
user_t *users;
pef_data_t *pef;
/* The amount of time in seconds before a session will be shut
down if there is no activity. */
unsigned int default_session_timeout;
unsigned char *bmc_key;
void *user_info;
/* Set by the user code, used to actually send a raw message out
the UDP socket */
void (*send_out)(lanserv_data_t *lan,
struct iovec *data, int vecs,
void *addr, int addr_len);
/* Generate 'size' bytes of random data into 'data'. */
int (*gen_rand)(lanserv_data_t *lan, void *data, int size);
/* Don't fill in the below in the user code. */
/* session 0 is not used. */
session_t sessions[MAX_SESSIONS+1];
/* Used to make the sid somewhat unique. */
uint32_t sid_seq;
ipmi_authdata_t challenge_auth;
unsigned int next_challenge_seq;
lanparm_data_t lanparm;
unsigned char lanparm_changed[lanread_len];
unsigned int persist_changed;
lanparm_data_t lanparm_rollback;
/* Used to access and set the external LAN config items. */
const char *config_prog;
lan_addr_t lan_addr;
int lan_addr_set;
uint16_t port;
};
void handle_asf(lanserv_data_t *lan,
unsigned char *data, int len,
void *from_addr, int from_len);
void ipmi_handle_lan_msg(lanserv_data_t *lan,
unsigned char *data, int len,
void *from_addr, int from_len);
/* Read in a configuration file and fill in the lan and address info. */
int lanserv_read_config(sys_data_t *sys,
FILE *f,
int *line,
unsigned int channel_num);
int ipmi_lan_init(lanserv_data_t *lan);
typedef void (*ipmi_payload_handler_cb)(lanserv_data_t *lan, msg_t *msg);
int ipmi_register_payload(unsigned int payload_id,
ipmi_payload_handler_cb handler);
#ifdef __cplusplus
}
#endif
#endif /* __LANSERV_H */
|