Annotation of libaitrpc/src/cli.c, revision 1.23.2.5
1.1 misho 1: /*************************************************************************
2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
3: * by Michael Pounov <misho@openbsd-bg.org>
4: *
5: * $Author: misho $
1.23.2.5! misho 6: * $Id: cli.c,v 1.23.2.4 2015/01/21 00:37:04 misho Exp $
1.1 misho 7: *
1.2 misho 8: **************************************************************************
9: The ELWIX and AITNET software is distributed under the following
10: terms:
11:
12: All of the documentation and software included in the ELWIX and AITNET
13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
14:
1.23.2.1 misho 15: Copyright 2004 - 2015
1.2 misho 16: by Michael Pounov <misho@elwix.org>. All rights reserved.
17:
18: Redistribution and use in source and binary forms, with or without
19: modification, are permitted provided that the following conditions
20: are met:
21: 1. Redistributions of source code must retain the above copyright
22: notice, this list of conditions and the following disclaimer.
23: 2. Redistributions in binary form must reproduce the above copyright
24: notice, this list of conditions and the following disclaimer in the
25: documentation and/or other materials provided with the distribution.
26: 3. All advertising materials mentioning features or use of this software
27: must display the following acknowledgement:
28: This product includes software developed by Michael Pounov <misho@elwix.org>
29: ELWIX - Embedded LightWeight unIX and its contributors.
30: 4. Neither the name of AITNET nor the names of its contributors
31: may be used to endorse or promote products derived from this software
32: without specific prior written permission.
33:
34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37: ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44: SUCH DAMAGE.
45: */
1.1 misho 46: #include "global.h"
47:
48:
49: /*
1.7 misho 50: * rpc_cli_openBLOBClient() - Connect to BLOB Server
51: *
1.2 misho 52: * @rpccli = RPC Client session
53: * @Port = Port for bind server, if Port == 0 default port is selected
54: * return: NULL == error or !=NULL connection to BLOB server established
55: */
56: rpc_cli_t *
57: rpc_cli_openBLOBClient(rpc_cli_t * __restrict rpccli, u_short Port)
58: {
59: rpc_cli_t *cli = NULL;
1.13 misho 60: int n;
1.4 misho 61:
1.10 misho 62: if (!rpccli) {
1.7 misho 63: rpc_SetErr(EINVAL, "Invalid parameters can`t connect to BLOB server");
1.2 misho 64: return NULL;
65: }
66:
1.14 misho 67: cli = e_malloc(sizeof(rpc_cli_t));
1.2 misho 68: if (!cli) {
69: LOGERR;
70: return NULL;
71: } else
72: memcpy(cli, rpccli, sizeof(rpc_cli_t));
73:
1.14 misho 74: memcpy(&cli->cli_sa, &rpccli->cli_sa, sizeof(sockaddr_t));
1.10 misho 75: switch (cli->cli_sa.sa.sa_family) {
1.4 misho 76: case AF_INET:
1.10 misho 77: cli->cli_sa.sin.sin_port =
78: htons(Port ? Port : ntohs(cli->cli_sa.sin.sin_port) + 1);
1.4 misho 79: break;
80: case AF_INET6:
1.10 misho 81: cli->cli_sa.sin6.sin6_port =
82: htons(Port ? Port : ntohs(cli->cli_sa.sin6.sin6_port) + 1);
1.4 misho 83: break;
84: case AF_LOCAL:
1.10 misho 85: strlcat(cli->cli_sa.sun.sun_path, ".blob", sizeof cli->cli_sa.sun.sun_path);
1.4 misho 86: break;
1.10 misho 87: default:
88: rpc_SetErr(EINVAL, "Invalid socket type %d", cli->cli_sa.sa.sa_family);
89: return NULL;
1.2 misho 90: }
1.10 misho 91:
92: AIT_COPY_VAL(&cli->cli_buf, &rpccli->cli_buf);
1.13 misho 93: n = AIT_LEN(&cli->cli_buf);
1.2 misho 94:
1.4 misho 95: /* connect to BLOB server */
1.6 misho 96: cli->cli_sock = socket(cli->cli_sa.sa.sa_family, SOCK_STREAM, 0);
1.2 misho 97: if (cli->cli_sock == -1) {
98: LOGERR;
1.14 misho 99: e_free(cli);
1.2 misho 100: return NULL;
101: }
1.13 misho 102: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_SNDBUF, &n, sizeof n) == -1) {
103: LOGERR;
104: close(cli->cli_sock);
1.14 misho 105: e_free(cli);
1.13 misho 106: return NULL;
107: }
108: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_RCVBUF, &n, sizeof n) == -1) {
109: LOGERR;
110: close(cli->cli_sock);
1.14 misho 111: e_free(cli);
1.13 misho 112: return NULL;
113: }
1.6 misho 114: if (connect(cli->cli_sock, &cli->cli_sa.sa, cli->cli_sa.sa.sa_len) == -1) {
1.2 misho 115: LOGERR;
1.5 misho 116: close(cli->cli_sock);
1.14 misho 117: e_free(cli);
1.2 misho 118: return NULL;
1.10 misho 119: } else
120: fcntl(cli->cli_sock, F_SETFL, fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
1.2 misho 121:
122: return cli;
123: }
124:
125: /*
1.7 misho 126: * rpc_cli_closeBLOBClient() - Close connection to BLOB server and free resources
127: *
1.2 misho 128: * @cli = BLOB Client session
129: * return: none
130: */
131: void
1.10 misho 132: rpc_cli_closeBLOBClient(rpc_cli_t ** __restrict cli)
1.2 misho 133: {
1.10 misho 134: if (!cli || !*cli)
1.2 misho 135: return;
136:
1.10 misho 137: shutdown((*cli)->cli_sock, SHUT_RDWR);
138: close((*cli)->cli_sock);
139:
140: AIT_FREE_VAL(&(*cli)->cli_buf);
1.2 misho 141:
1.14 misho 142: e_free(*cli);
1.10 misho 143: *cli = NULL;
1.2 misho 144: }
145:
1.10 misho 146: /* -------------------------------------------------------------- */
1.2 misho 147:
148: /*
1.7 misho 149: * rpc_cli_openClient() - Connect to RPC Server
150: *
1.15 misho 151: * @InstID = InstID for RPC session request
1.10 misho 152: * @netBuf = Network buffer length (min:512 bytes), if =0 == BUFSIZ (also meaning max RPC packet)
1.1 misho 153: * @csHost = Host name or IP address for bind server
154: * @Port = Port for bind server, if Port == 0 default port is selected
1.13 misho 155: * @proto = Protocol, if == 0 choose SOCK_STREAM
1.1 misho 156: * return: NULL == error or !=NULL connection to RPC server established
157: */
158: rpc_cli_t *
1.15 misho 159: rpc_cli_openClient(u_char InstID, int netBuf, const char *csHost, u_short Port, int proto)
1.1 misho 160: {
161: rpc_cli_t *cli = NULL;
1.14 misho 162: sockaddr_t sa = E_SOCKADDR_INIT;
1.1 misho 163:
1.14 misho 164: if (!e_gethostbyname(csHost, Port, &sa))
1.1 misho 165: return NULL;
166: if (!Port)
167: Port = RPC_DEFPORT;
1.13 misho 168: if (!proto)
169: proto = SOCK_STREAM;
1.10 misho 170: if (netBuf < RPC_MIN_BUFSIZ)
1.5 misho 171: netBuf = BUFSIZ;
1.10 misho 172: else
1.14 misho 173: netBuf = E_ALIGN(netBuf, 2); /* align netBuf length */
1.10 misho 174:
1.14 misho 175: cli = e_malloc(sizeof(rpc_cli_t));
1.1 misho 176: if (!cli) {
177: LOGERR;
178: return NULL;
179: } else
180: memset(cli, 0, sizeof(rpc_cli_t));
1.5 misho 181:
1.10 misho 182: /* build session */
1.14 misho 183: cli->cli_parent = e_malloc(sizeof(rpc_sess_t));
1.1 misho 184: if (!cli->cli_parent) {
185: LOGERR;
1.14 misho 186: e_free(cli);
1.1 misho 187: return NULL;
188: } else {
189: ((rpc_sess_t*) cli->cli_parent)->sess_version = RPC_VERSION;
1.15 misho 190: ((rpc_sess_t*) cli->cli_parent)->sess_instance = InstID;
1.1 misho 191: }
192:
1.13 misho 193: cli->cli_id = proto;
1.6 misho 194: memcpy(&cli->cli_sa, &sa, sizeof cli->cli_sa);
1.14 misho 195: AIT_SET_BUFSIZ(&cli->cli_buf, 0, netBuf);
1.4 misho 196:
197: /* connect to RPC server */
1.13 misho 198: cli->cli_sock = socket(cli->cli_sa.sa.sa_family, cli->cli_id, 0);
1.1 misho 199: if (cli->cli_sock == -1) {
200: LOGERR;
1.13 misho 201: goto err;
202: }
203: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_SNDBUF,
204: &netBuf, sizeof netBuf) == -1) {
205: LOGERR;
206: goto err;
1.5 misho 207: }
1.13 misho 208: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_RCVBUF,
209: &netBuf, sizeof netBuf) == -1) {
1.1 misho 210: LOGERR;
1.13 misho 211: goto err;
212: }
213: if (cli->cli_id == SOCK_STREAM)
214: if (connect(cli->cli_sock, &cli->cli_sa.sa, cli->cli_sa.sa.sa_len) == -1) {
215: LOGERR;
216: goto err;
217: }
1.1 misho 218:
1.13 misho 219: fcntl(cli->cli_sock, F_SETFL, fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
1.1 misho 220: return cli;
1.13 misho 221: err:
222: AIT_FREE_VAL(&cli->cli_buf);
223: if (cli->cli_sock > 2)
224: close(cli->cli_sock);
1.14 misho 225: e_free(cli->cli_parent);
226: e_free(cli);
1.13 misho 227: return NULL;
1.1 misho 228: }
229:
230: /*
1.21 misho 231: * rpc_cli_reconnectClient() - Reconnecting client to RPC server
232: *
233: * @cli = RPC Client session
234: * return: -1 error or 0 ok
235: */
236: int
237: rpc_cli_reconnectClient(rpc_cli_t * __restrict cli)
238: {
239: int netBuf;
240:
241: if (!cli)
242: return -1;
243: else
244: netBuf = AIT_LEN(&cli->cli_buf);
245:
246: close(cli->cli_sock);
247:
248: cli->cli_sock = socket(cli->cli_sa.sa.sa_family, cli->cli_id, 0);
249: if (cli->cli_sock == -1) {
250: LOGERR;
251: return -1;
252: }
253: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_SNDBUF,
254: &netBuf, sizeof netBuf) == -1) {
255: LOGERR;
256: close(cli->cli_sock);
257: return -1;
258: }
259: if (setsockopt(cli->cli_sock, SOL_SOCKET, SO_RCVBUF,
260: &netBuf, sizeof netBuf) == -1) {
261: LOGERR;
262: close(cli->cli_sock);
263: return -1;
264: }
265: if (cli->cli_id == SOCK_STREAM)
266: if (connect(cli->cli_sock, &cli->cli_sa.sa, cli->cli_sa.sa.sa_len) == -1) {
267: LOGERR;
268: close(cli->cli_sock);
269: return -1;
270: }
271:
272: fcntl(cli->cli_sock, F_SETFL, fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
273: return 0;
274: }
275:
276: /*
1.7 misho 277: * rpc_cli_closeClient() - Close connection to RPC server and free resources
278: *
1.1 misho 279: * @cli = RPC Client session
280: * return: none
281: */
282: void
1.10 misho 283: rpc_cli_closeClient(rpc_cli_t ** __restrict cli)
1.1 misho 284: {
1.23 misho 285: if (!cli || !*cli || (*cli)->cli_id == SOCK_BPF)
1.1 misho 286: return;
287:
1.13 misho 288: if ((*cli)->cli_id == SOCK_STREAM)
289: shutdown((*cli)->cli_sock, SHUT_RDWR);
1.10 misho 290: close((*cli)->cli_sock);
291:
292: AIT_FREE_VAL(&(*cli)->cli_buf);
293:
294: if ((*cli)->cli_parent)
1.14 misho 295: e_free((*cli)->cli_parent);
1.1 misho 296:
1.14 misho 297: e_free(*cli);
1.10 misho 298: *cli = NULL;
1.1 misho 299: }
300:
301: /*
1.14 misho 302: * rpc_pkt_Send() - Send RPC packet
1.7 misho 303: *
1.14 misho 304: * @sock = Socket
305: * @type = Type of socket
306: * @sa = Server address
307: * @pkt = RPC packet
308: * @len = Length of packet
1.21 misho 309: * return: -1 error, 0 EOF or >0 sended bytes
1.1 misho 310: */
311: int
1.14 misho 312: rpc_pkt_Send(int sock, int type, sockaddr_t * __restrict sa, ait_val_t * __restrict pkt, int len)
1.1 misho 313: {
1.10 misho 314: u_char *buf;
1.1 misho 315:
1.14 misho 316: if (!pkt) {
317: rpc_SetErr(EINVAL, "Invalid argument(s)!");
1.1 misho 318: return -1;
1.10 misho 319: } else
1.14 misho 320: buf = AIT_GET_BUF(pkt);
1.7 misho 321:
1.18 misho 322: return rpc_Write(sock, type, MSG_NOSIGNAL, sa, buf, len);
1.14 misho 323: }
324:
325: /*
326: * rpc_pkt_Receive() - Receive RPC packet
327: *
328: * @sock = Socket
329: * @type = Type of socket
330: * @sa = Server address
331: * @pkt = RPC packet
1.21 misho 332: * return: -1 error, 0 EOF or >0 received bytes
1.14 misho 333: */
334: int
335: rpc_pkt_Receive(int sock, int type, sockaddr_t * __restrict sa, ait_val_t * __restrict pkt)
336: {
1.18 misho 337: int ret, estlen = 0, blen = sizeof(struct tagRPCCall);
1.14 misho 338: u_char *buf;
1.17 misho 339: struct tagRPCCall *rpc;
1.14 misho 340:
341: if (!pkt) {
342: rpc_SetErr(EINVAL, "Invalid argument(s)!");
343: return -1;
1.20 misho 344: } else {
1.14 misho 345: buf = AIT_GET_BUF(pkt);
1.20 misho 346: rpc = (struct tagRPCCall*) buf;
347: }
1.10 misho 348:
349: /* reply from RPC server */
350: do {
1.18 misho 351: if (type == SOCK_STREAM)
352: ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, NULL, buf, blen);
1.23.2.4 misho 353: else if (type == SOCK_EXT) {
1.23.2.5! misho 354: ret = rpc_Read(sock, type, 0, NULL, AIT_GET_BUF(pkt), AIT_LEN(pkt));
1.23.2.4 misho 355: if (ret > 0)
356: estlen = ret;
357: } else if (type == SOCK_BPF) {
1.23 misho 358: ret = rpc_Read(sock, type, 0, sa, AIT_GET_BUF(pkt), AIT_LEN(pkt));
359: if (ret > 0)
360: estlen = ret;
361: } else
1.20 misho 362: ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, sa, buf, blen);
363: if (ret < 1)
1.21 misho 364: return ret;
1.13 misho 365:
1.23.2.4 misho 366: /* 1st read for RPC header */
367: if (ret < sizeof(struct tagRPCCall)) {
368: rpc_SetErr(ERPCMISMATCH, "Short RPC packet %d bytes", ret);
369: return -1;
370: }
371:
372: /* check for loop request */
373: if (!(rpc->call_io & RPC_ACK))
374: continue;
375:
1.14 misho 376: /* check for response from known address */
1.20 misho 377: if (!estlen) {
1.18 misho 378: /* calc estimated length */
379: estlen = ntohl(rpc->call_len);
380: if (estlen > AIT_LEN(pkt))
381: AIT_RE_BUF(pkt, estlen);
382: buf = AIT_GET_BUF(pkt);
1.20 misho 383: rpc = (struct tagRPCCall*) buf;
1.18 misho 384: blen = estlen;
385: continue;
1.17 misho 386: }
1.18 misho 387:
388: /* compiler optimize loop if while(0) and stop working 'continue' on some platforms */
389: break;
390: } while (42);
1.17 misho 391:
1.23.2.4 misho 392: if (estlen != ret) {
1.20 misho 393: rpc_SetErr(ERPCMISMATCH, "RPC packet mismatch estimate %d bytes, but received %d\n",
394: estlen, ret);
1.8 misho 395: return -1;
1.7 misho 396: }
1.8 misho 397:
1.14 misho 398: return ret;
399: }
400:
401: /*
402: * rpc_pkt_Request() - Build RPC Request packet
403: *
404: * @pkt = Packet buffer
405: * @sess = RPC session info
406: * @tag = Function tag for execution
407: * @vars = Function argument array of values, may be NULL
408: * @noreply = We not want RPC reply
1.15 misho 409: * @nocrc = Without CRC calculation
1.14 misho 410: * return: -1 error or != -1 prepared bytes into packet
411: */
412: int
413: rpc_pkt_Request(ait_val_t * __restrict pkt, rpc_sess_t * __restrict sess, u_short tag,
1.15 misho 414: array_t * __restrict vars, int noreply, int nocrc)
1.14 misho 415: {
416: struct tagRPCCall *rpc;
1.17 misho 417: int ret = 0, estlen, len = sizeof(struct tagRPCCall);
1.14 misho 418: u_char *buf;
419:
420: if (!pkt || !sess) {
421: rpc_SetErr(EINVAL, "Invalid argument(s)!");
422: return -1;
1.17 misho 423: }
424:
425: /* calc estimated length */
426: estlen = ait_resideVars(vars) + len;
427: if (estlen > AIT_LEN(pkt))
428: AIT_RE_BUF(pkt, estlen);
429: buf = AIT_GET_BUF(pkt);
1.14 misho 430:
431: /* prepare RPC call */
432: rpc = (struct tagRPCCall*) buf;
433: rpc_addPktSession(&rpc->call_session, sess);
434: rpc->call_tag = htons(tag);
435: if (!vars)
436: rpc->call_argc = 0;
437: else
1.23.2.4 misho 438: rpc->call_argc = (u_char) array_Size(vars);
1.14 misho 439:
440: /* set reply */
1.19 misho 441: rpc->call_req.flags = (uint64_t) htonl(noreply ? RPC_NOREPLY : RPC_REPLY);
1.14 misho 442:
443: if (array_Size(vars)) {
444: /* marshaling variables */
445: ret = ait_vars2buffer(buf + len, AIT_LEN(pkt) - len, vars);
446: if (ret == -1) {
447: rpc_SetErr(EBADRPC, "Failed to prepare RPC packet values");
448: return -1;
449: } else
450: len += ret;
451: }
452:
453: /* total packet length */
1.17 misho 454: rpc->call_len = htonl(len);
1.23.2.4 misho 455: rpc->call_io = RPC_REQ;
1.14 misho 456:
1.15 misho 457: if (!nocrc) {
458: /* calculate CRC */
459: rpc->call_crc ^= rpc->call_crc;
460: rpc->call_crc = htons(crcFletcher16((u_short*) buf, len / 2));
461: }
1.14 misho 462:
463: return len;
464: }
465:
466: /*
467: * rpc_pkt_Replay() - Decode RPC Replay packet
468: *
469: * @pkt = Packet buffer
1.23 misho 470: * @sess = RPC session info, if =NULL don't check session
1.14 misho 471: * @tag = Function tag
472: * @vars = Function argument array of values, may be NULL
1.15 misho 473: * @nocrc = Without CRC calculation
1.14 misho 474: * return: -1 error or != -1 return value from function
475: */
476: int
477: rpc_pkt_Replay(ait_val_t * __restrict pkt, rpc_sess_t * __restrict sess, u_short tag,
1.15 misho 478: array_t ** __restrict vars, int nocrc)
1.14 misho 479: {
480: struct tagRPCCall *rpc;
481: int len;
482: u_char *buf;
483: uint16_t crc;
484:
1.23 misho 485: if (!pkt) {
1.14 misho 486: rpc_SetErr(EINVAL, "Invalid argument(s)!");
487: return -1;
488: } else
489: buf = AIT_GET_BUF(pkt);
490:
491: rpc = (struct tagRPCCall*) buf;
1.15 misho 492: if (!nocrc) {
493: /* calculate CRC */
494: crc = ntohs(rpc->call_crc);
495: rpc->call_crc ^= rpc->call_crc;
1.17 misho 496: if (crc != crcFletcher16((u_short*) buf, ntohl(rpc->call_len) / 2)) {
1.15 misho 497: rpc_SetErr(ERPCMISMATCH, "Bad CRC RPC packet");
498: return -1;
499: }
1.8 misho 500: }
501:
1.3 misho 502: /* check RPC packet session info */
1.23 misho 503: if (sess && rpc_chkPktSession(&rpc->call_session, sess)) {
1.10 misho 504: rpc_SetErr(ERPCMISMATCH, "Get invalid RPC session");
1.8 misho 505: return -1;
1.14 misho 506: }
1.10 misho 507: if (ntohs(rpc->call_tag) != tag) {
508: rpc_SetErr(ERPCMISMATCH, "Get wrong RPC reply");
1.8 misho 509: return -1;
1.6 misho 510: }
1.10 misho 511: if (ntohl(rpc->call_rep.eno) && ntohl(rpc->call_rep.ret) == -1) {
1.8 misho 512: rpc_SetErr(ntohl(rpc->call_rep.eno), "Server side: retcode=%d #%d %s",
1.7 misho 513: ntohl(rpc->call_rep.ret), ntohl(rpc->call_rep.eno),
514: strerror(ntohl(rpc->call_rep.eno)));
1.8 misho 515: return -1;
1.1 misho 516: }
1.23.2.4 misho 517: len = rpc->call_argc * sizeof(ait_val_t);
1.14 misho 518: if (len > AIT_LEN(pkt) - sizeof(struct tagRPCCall)) {
519: rpc_SetErr(EMSGSIZE, "Reply RPC packet not enough buffer space ...");
520: return -1;
521: }
1.17 misho 522: if (len > ntohl(rpc->call_len) - sizeof(struct tagRPCCall)) {
1.14 misho 523: rpc_SetErr(EMSGSIZE, "Reply RPC packet is too short ...");
1.8 misho 524: return -1;
1.5 misho 525: }
526:
527: /* RPC is OK! Go de-marshaling variables ... */
1.23.2.4 misho 528: if (vars && rpc->call_argc) {
1.12 misho 529: #ifdef CLI_RES_ZCOPY
1.14 misho 530: *vars = ait_buffer2vars(buf + sizeof(struct tagRPCCall), len,
1.23.2.4 misho 531: rpc->call_argc, 42);
1.12 misho 532: #else
1.14 misho 533: *vars = ait_buffer2vars(buf + sizeof(struct tagRPCCall), len,
1.23.2.4 misho 534: rpc->call_argc, 0);
1.12 misho 535: #endif
1.14 misho 536: if (!*vars) {
537: rpc_SetErr(elwix_GetErrno(), "%s", elwix_GetError());
1.1 misho 538: return -1;
1.5 misho 539: }
1.1 misho 540: }
541:
1.14 misho 542: return ntohl(rpc->call_rep.ret);
543: }
544:
545: /*
546: * rpc_cli_execCall() - Execute RPC call
547: *
548: * @cli = RPC Client session
549: * @noreply = We not want RPC reply
550: * @tag = Function tag for execution
551: * @in_vars = IN function argument array of values, may be NULL
552: * @out_vars = OUT returned array of rpc values, if !=NULL must be free after use with ait_freeVars()
1.21 misho 553: * return: -1 error, 0 ok result or 1 closed rpc connection
1.14 misho 554: */
555: int
556: rpc_cli_execCall(rpc_cli_t *cli, int noreply, u_short tag,
557: array_t * __restrict in_vars, array_t ** __restrict out_vars)
558: {
1.15 misho 559: int type = 0, wlen;
1.14 misho 560: u_char *buf;
561:
562: if (!cli) {
563: rpc_SetErr(EINVAL, "Can`t execute call because parameter is null or invalid!");
564: return -1;
1.15 misho 565: } else {
1.23.2.5! misho 566: if (cli->cli_id == SOCK_STREAM || cli->cli_id == SOCK_EXT)
1.15 misho 567: type = cli->cli_id;
1.14 misho 568: buf = AIT_GET_BUF(&cli->cli_buf);
1.15 misho 569: }
1.14 misho 570: if (out_vars)
571: *out_vars = NULL;
572:
1.15 misho 573: if ((wlen = rpc_pkt_Request(&cli->cli_buf, cli->cli_parent, tag, in_vars, noreply, type)) == -1)
1.14 misho 574: return -1;
575:
1.21 misho 576: if ((wlen = rpc_pkt_Send(cli->cli_sock, cli->cli_id, &cli->cli_sa, &cli->cli_buf, wlen)) == -1)
1.14 misho 577: return -1;
1.21 misho 578: if (!wlen) /* closed rpc connection */
579: return 1;
1.14 misho 580:
581: if (noreply) /* we not want reply */
582: return 0;
583:
1.21 misho 584: if ((wlen = rpc_pkt_Receive(cli->cli_sock, cli->cli_id, &cli->cli_sa, &cli->cli_buf)) == -1)
1.14 misho 585: return -1;
1.21 misho 586: if (!wlen) /* closed rpc connection */
587: return 1;
1.14 misho 588:
1.15 misho 589: if ((wlen = rpc_pkt_Replay(&cli->cli_buf, cli->cli_parent, tag, out_vars, type)) == -1)
1.14 misho 590: return -1;
591:
1.15 misho 592: return 0;
1.10 misho 593: }
594:
595: /*
1.12 misho 596: * rpc_cli_freeCall() - Free resouce allocated by RPC call
597: *
598: * @out_vars = Returned array with variables from RPC call
599: * return: none
600: */
1.16 misho 601: void
1.12 misho 602: rpc_cli_freeCall(array_t ** __restrict out_vars)
603: {
604: #ifdef CLI_RES_ZCOPY
1.14 misho 605: array_Destroy(out_vars);
1.12 misho 606: #else
1.14 misho 607: ait_freeVars(out_vars);
1.12 misho 608: #endif
609: }
610:
611: /*
1.10 misho 612: * rpc_cli_ping() - Ping RPC server
613: *
614: * @cli = connected client
615: * return: -1 error or !=-1 ping seq id
616: */
1.16 misho 617: int
1.10 misho 618: rpc_cli_ping(rpc_cli_t *cli)
619: {
620: int ret = 0;
621: array_t *arr = NULL;
622:
623: if (!cli)
624: return -1;
625:
626: if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVPING, NULL, &arr))
627: return -1;
628: else
1.14 misho 629: ret = AIT_GET_U16(array(arr, 0, ait_val_t*));
1.12 misho 630: rpc_cli_freeCall(&arr);
1.10 misho 631:
1.5 misho 632: return ret;
1.1 misho 633: }
1.23 misho 634:
635:
636: /*
637: * rpc_cli_openClient2() - Connect to layer2 RPC Server
638: *
639: * @InstID = InstID for RPC session request
640: * @netBuf = Network buffer length (min:512 bytes), if =0 == BUFSIZ (also meaning max RPC packet)
641: * @csIface = Interface name for bind client, if NULL first interface on host
642: * @csHost = Host ethernet address
643: * return: NULL == error or !=NULL connection to RPC server established
644: */
645: rpc_cli_t *
646: rpc_cli_openClient2(u_char InstID, int netBuf, const char *csIface, const char *csHost)
647: {
648: rpc_cli_t *cli = NULL;
649: sockaddr_t sa = E_SOCKADDR_INIT, sal = E_SOCKADDR_INIT;
650: char szIface[64], szStr[STRSIZ];
651: register int i;
652: struct ifreq ifr;
653: int n = 1;
654: struct bpf_insn insns[] = {
655: BPF_STMT(BPF_LD + BPF_H + BPF_ABS, 12),
656: BPF_JUMP(BPF_JMP + BPF_JEQ + BPF_K, RPC_DEFPORT, 0, 1),
657: BPF_STMT(BPF_RET + BPF_K, -1),
658: BPF_STMT(BPF_RET + BPF_K, 0),
659: };
660: struct bpf_program fcode = {
661: .bf_len = sizeof(insns) / sizeof(struct bpf_insn),
662: .bf_insns = insns
663: };
664:
665: if (!csHost || !e_getlinkbyname(csHost, &sa))
666: return NULL;
667: if (!csIface) {
668: if (e_get1stiface(szIface, sizeof szIface))
669: return NULL;
670: } else
671: strlcpy(szIface, csIface, sizeof szIface);
672: if (!e_getifacebyname(szIface, &sal))
673: return NULL;
674:
675: cli = e_malloc(sizeof(rpc_cli_t));
676: if (!cli) {
677: LOGERR;
678: return NULL;
679: } else
680: memset(cli, 0, sizeof(rpc_cli_t));
681:
682: /* build session */
683: cli->cli_parent = e_malloc(sizeof(rpc_sess_t));
684: if (!cli->cli_parent) {
685: LOGERR;
686: e_free(cli);
687: return NULL;
688: } else {
689: ((rpc_sess_t*) cli->cli_parent)->sess_version = RPC_VERSION;
690: ((rpc_sess_t*) cli->cli_parent)->sess_instance = InstID;
691: }
692:
693: cli->cli_id = SOCK_BPF;
694: memcpy(&cli->cli_sa, &sa, sizeof cli->cli_sa);
695:
696: /* connect to RPC server */
697: for (i = 0; i < 10; i++) {
698: memset(szStr, 0, sizeof szStr);
699: snprintf(szStr, sizeof szStr, "/dev/bpf%d", i);
700: cli->cli_sock = open(szStr, O_RDWR);
701: if (cli->cli_sock > STDERR_FILENO)
702: break;
703: }
704: if (cli->cli_sock < 3) {
705: LOGERR;
706: e_free(cli->cli_parent);
707: e_free(cli);
708: return NULL;
709: }
710:
711: if (ioctl(cli->cli_sock, BIOCIMMEDIATE, &n) == -1) {
712: LOGERR;
713: goto err;
714: }
715: if (ioctl(cli->cli_sock, BIOCSETF, &fcode) == -1) {
716: LOGERR;
717: goto err;
718: }
719: n = (netBuf < RPC_MIN_BUFSIZ) ? getpagesize() : E_ALIGN(netBuf, 2);
720: if (ioctl(cli->cli_sock, BIOCSBLEN, &n) == -1) {
721: LOGERR;
722: goto err;
723: } else
724: AIT_SET_BUFSIZ(&cli->cli_buf, 0, n);
725:
726: memset(&ifr, 0, sizeof ifr);
727: strlcpy(ifr.ifr_name, szIface, sizeof ifr.ifr_name);
728: if (ioctl(cli->cli_sock, BIOCSETIF, &ifr) == -1) {
729: LOGERR;
730: goto err;
731: } else
732: fcntl(cli->cli_sock, F_SETFL,
733: fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
734:
735: return cli;
736: err:
737: AIT_FREE_VAL(&cli->cli_buf);
738: if (cli->cli_sock > 2)
739: close(cli->cli_sock);
740: e_free(cli->cli_parent);
741: e_free(cli);
742: return NULL;
743: }
744:
745: /*
746: * rpc_cli_closeClient2() - Close layer2 connection to RPC server and free resources
747: *
748: * @cli = RPC Client session
749: * return: none
750: */
751: void
752: rpc_cli_closeClient2(rpc_cli_t ** __restrict cli)
753: {
754: if (!cli || !*cli || (*cli)->cli_id != SOCK_BPF)
755: return;
756:
757: close((*cli)->cli_sock);
758:
759: AIT_FREE_VAL(&(*cli)->cli_buf);
760:
761: if ((*cli)->cli_parent)
762: e_free((*cli)->cli_parent);
763:
764: e_free(*cli);
765: *cli = NULL;
766: }
1.23.2.2 misho 767:
768: /*
769: * rpc_cli_openClientExt() - Connect to pipe RPC Server
770: *
771: * @InstID = InstID for RPC session request
772: * @netBuf = Network buffer length (min:512 bytes), if =0 == BUFSIZ (also meaning max RPC packet)
773: * @fd = File descriptor
774: * return: NULL == error or !=NULL connection to RPC server established
775: */
776: rpc_cli_t *
777: rpc_cli_openClientExt(u_char InstID, int netBuf, int fd)
778: {
779: rpc_cli_t *cli = NULL;
780: int n;
781:
782: cli = e_malloc(sizeof(rpc_cli_t));
783: if (!cli) {
784: LOGERR;
785: return NULL;
786: } else
787: memset(cli, 0, sizeof(rpc_cli_t));
788:
789: /* build session */
790: cli->cli_parent = e_malloc(sizeof(rpc_sess_t));
791: if (!cli->cli_parent) {
792: LOGERR;
793: e_free(cli);
794: return NULL;
795: } else {
796: ((rpc_sess_t*) cli->cli_parent)->sess_version = RPC_VERSION;
797: ((rpc_sess_t*) cli->cli_parent)->sess_instance = InstID;
798: }
799:
800: cli->cli_id = SOCK_EXT;
801: cli->cli_sock = fd;
802:
803: n = (netBuf < RPC_MIN_BUFSIZ) ? getpagesize() : E_ALIGN(netBuf, 2);
804: AIT_SET_BUFSIZ(&cli->cli_buf, 0, n);
805:
806: fcntl(cli->cli_sock, F_SETFL,
807: fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
808:
809: return cli;
810: }
811:
812: /*
813: * rpc_cli_closeClientExt() - Close pipe connection to RPC server and free resources
814: *
815: * @cli = RPC Client session
816: * return: none
817: */
818: void
819: rpc_cli_closeClientExt(rpc_cli_t ** __restrict cli)
820: {
821: if (!cli || !*cli || (*cli)->cli_id != SOCK_EXT)
822: return;
823:
824: AIT_FREE_VAL(&(*cli)->cli_buf);
825:
826: if ((*cli)->cli_parent)
827: e_free((*cli)->cli_parent);
828:
829: e_free(*cli);
830: *cli = NULL;
831: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>