blob: 4b048e039ecddbddf2834200e3ec8ee2aca9e93b [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef included_vppcom_h
17#define included_vppcom_h
18
19#include <netdb.h>
20#include <errno.h>
21
22/*
23 * VPPCOM Public API Definitions, Enums, and Data Structures
24 */
25#define INVALID_SESSION_ID (~0)
26#define VPPCOM_VRF_DEFAULT 0
27#define VPPCOM_CONF_ENV "VPPCOM_CONF"
28#define VPPCOM_CONF_DEFAULT "/etc/vpp/vppcom.conf"
29
30typedef enum
31{
32 VPPCOM_PROTO_TCP = 0,
33 VPPCOM_PROTO_UDP,
34} vppcom_proto_t;
35
36typedef enum
37{
38 VPPCOM_IS_IP6 = 0,
39 VPPCOM_IS_IP4,
40} vppcom_is_ip4_t;
41
42typedef struct vppcom_endpt_t_
43{
44 uint32_t vrf;
45 uint8_t is_cut_thru;
46 uint8_t is_ip4;
47 uint8_t *ip;
48 uint16_t port;
49} vppcom_endpt_t;
50
51typedef enum
52{
53 VPPCOM_OK = 0,
54 VPPCOM_EAGAIN = -EAGAIN,
55 VPPCOM_EINVAL = -EINVAL,
56 VPPCOM_EBADFD = -EBADFD,
57 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
58 VPPCOM_ECONNRESET = -ECONNRESET,
59 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
60 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
61} vppcom_error_t;
62
63/*
64 * VPPCOM Public API Functions
65 */
66static inline const char *
67vppcom_retval_str (int retval)
68{
69 char *st;
70
71 switch (retval)
72 {
73 case VPPCOM_OK:
74 st = "VPPCOM_OK";
75 break;
76
77 case VPPCOM_EAGAIN:
78 st = "VPPCOM_EAGAIN";
79 break;
80
81 case VPPCOM_EINVAL:
82 st = "VPPCOM_EINVAL";
83 break;
84
85 case VPPCOM_EBADFD:
86 st = "VPPCOM_EBADFD";
87 break;
88
89 case VPPCOM_EAFNOSUPPORT:
90 st = "VPPCOM_EAFNOSUPPORT";
91 break;
92
93 case VPPCOM_ECONNRESET:
94 st = "VPPCOM_ECONNRESET";
95 break;
96
97 case VPPCOM_ECONNREFUSED:
98 st = "VPPCOM_ECONNREFUSED";
99 break;
100
101 case VPPCOM_ETIMEDOUT:
102 st = "VPPCOM_ETIMEDOUT";
103 break;
104
105 default:
106 st = "UNKNOWN_STATE";
107 break;
108 }
109
110 return st;
111}
112
113static inline int
114is_vcom_fd (int fd)
115{
116#define VPPCOM_FD_OFFSET (1 << 30)
117 return (fd >= VPPCOM_FD_OFFSET);
118}
119
120/* TBD: make these constructor/destructor function */
121extern int vppcom_app_create (char *app_name);
122extern void vppcom_app_destroy (void);
123
124extern int vppcom_session_create (uint32_t vrf, uint8_t proto,
125 uint8_t is_nonblocking);
126extern int vppcom_session_close (uint32_t session_index);
127
128extern int vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep);
129extern int vppcom_session_listen (uint32_t session_index, uint32_t q_len);
130extern int vppcom_session_accept (uint32_t session_index,
131 vppcom_endpt_t * client_ep,
132 double wait_for_time);
133
134extern int vppcom_session_connect (uint32_t session_index,
135 vppcom_endpt_t * server_ep);
136extern int vppcom_session_read (uint32_t session_index, void *buf, int n);
137extern int vppcom_session_write (uint32_t session_index, void *buf, int n);
138
139extern int vppcom_select (unsigned long n_bits,
140 unsigned long *read_map,
141 unsigned long *write_map,
142 unsigned long *except_map, double wait_for_time);
143
144#endif /* included_vppcom_h */
145
146/*
147 * fd.io coding-style-patch-verification: ON
148 *
149 * Local Variables:
150 * eval: (c-set-style "gnu")
151 * End:
152 */