aboutsummaryrefslogtreecommitdiffstats
path: root/src/nSocket/nstack_rd/nstack_rd_init.c
blob: 363b4b6c8400a093890bc2750a2d93447427b2b9 (plain)
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
/*
*
* Copyright (c) 2018 Huawei Technologies Co.,Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include <stdlib.h>
#include "nstack_rd.h"
#include "nstack_rd_data.h"
#include "nstack_rd_init.h"
#include "nstack_rd_priv.h"
#include "nstack_log.h"
#include "nstack_securec.h"

#define NSTACK_RD_ERR_CHECK_GOTO(ret, desc, lab)  \
if (NSTACK_RD_SUCCESS != (ret))\
{  \
   NSSOC_LOGERR("%s fail, return:%d", desc, ret); \
   goto lab;  \
}

#define NSTACK_RD_POINT_CHECK_GOTO(ptr, desc, lab)  \
if (!ptr)\
{  \
   NSSOC_LOGERR("%s fail", desc); \
   goto lab;  \
}

/* *INDENT-OFF* */
rd_stack_plane_map g_nstack_plane_info[] = {
   {{RD_LINUX_NAME}, {RD_LINUX_PLANENAME}, -1},
   {"rsocket", "nstack-rsocket", -1},
   {{RD_STACKX_NAME}, {RD_STACKX_PLANENAME}, -1},
   {"vpp_hoststack", "nstack-vpp", -1},
   {"fstack", "nstack-fstack", -1}
};
/* *INDENT-ON* */

int g_rd_map_num = sizeof (g_nstack_plane_info) / sizeof (rd_stack_plane_map);

rd_local_data *g_rd_local_data = NULL;

/*****************************************************************************
*   Prototype    : nstack_rd_init
*   Description  : nstack rd init
*   Input        : nstack_stack_info *pstack
*                  int num
*                  nstack_get_route_data pfun
*   Output       : None
*   Return Value : int
*   Calls        :
*   Called By    :
*   pstack       : 1. priority 0: when router not fund, the first will be chose
*                  2. if have many same 0 priority, fist input will be chose,
*                  3. if none 0 priority, the last input will be choose
*****************************************************************************/
int
nstack_rd_init (nstack_stack_info * pstack, int num,
                nstack_get_route_data * pfun, int fun_num)
{
  int icnt = 0;
  int itemp = 0;
  int hindex = 0;
  int tindex = num - 1;
  int iindex = 0;
  int ret = NSTACK_RD_SUCCESS;
  nstack_rd_stack_info *ptemstack = NULL;

  if ((!pstack) || (!pfun))
    {
      NSSOC_LOGERR ("input err pstack:%p, pfun:%p", pstack, pfun);
      return NSTACK_RD_FAIL;
    }
  g_rd_local_data = (rd_local_data *) malloc (sizeof (rd_local_data));
  if (!g_rd_local_data)
    {
      NSSOC_LOGERR ("g_rd_local_data alloc fail");
      return NSTACK_RD_FAIL;
    }

  if (EOK !=
      MEMSET_S ((void *) g_rd_local_data, sizeof (rd_local_data), 0,
                sizeof (rd_local_data)))
    {
      NSSOC_LOGERR ("MEMSET_S fail");
      goto ERR;
    }
  for (icnt = 0; icnt < fun_num; icnt++)
    {
      g_rd_local_data->sys_fun[icnt] = pfun[icnt];
    }
  g_rd_local_data->fun_num = fun_num;
  ptemstack =
    (nstack_rd_stack_info *) malloc (sizeof (nstack_rd_stack_info) * num);
  NSTACK_RD_POINT_CHECK_GOTO (ptemstack, "rd stack info malloc fail", ERR);

  /*save stack info in priority order */
  for (icnt = 0; icnt < num; icnt++)
    {
      if (0 == pstack[icnt].priority)
        {
          iindex = hindex;
          hindex++;
        }
      else
        {
          iindex = tindex;
          tindex--;
        }

      /* modify destMax from RD_PLANE_NAMELEN to STACK_NAME_MAX */
      ret =
        STRCPY_S (ptemstack[iindex].stack.stackname, STACK_NAME_MAX,
                  pstack[icnt].name);
      if (ret != EOK)
        {
          NSSOC_LOGERR ("STRCPY_S failed");
          goto ERR;
        }

      for (itemp = 0; itemp < g_rd_map_num; itemp++)
        {
          if (0 ==
              strcmp (pstack[icnt].name,
                      g_nstack_plane_info[itemp].stackname))
            {
              ret =
                STRCPY_S (ptemstack[iindex].stack.planename, RD_PLANE_NAMELEN,
                          g_nstack_plane_info[itemp].planename);
              g_nstack_plane_info[itemp].stackid = pstack[icnt].stack_id;
              NSTACK_RD_ERR_CHECK_GOTO (ret, "plane name copy fail", ERR);
              break;
            }
        }

      if (itemp >= g_rd_map_num)
        {
          NSSOC_LOGERR ("rd route info not found");
          goto ERR;
        }
      ptemstack[iindex].priority = pstack[icnt].priority;
      ptemstack[iindex].stack_id = pstack[icnt].stack_id;
      NSSOC_LOGDBG
        ("nstack rd init]stackname=%s,planename=%s,priority=%d,stackid=%d was added",
         ptemstack[iindex].stack.stackname, ptemstack[iindex].stack.planename,
         ptemstack[iindex].priority, ptemstack[iindex].stack_id);
    }

  g_rd_local_data->pstack_info = ptemstack;
  g_rd_local_data->stack_num = num;

  for (icnt = 0; icnt < RD_DATA_TYPE_MAX; icnt++)
    {
      INIT_HLIST_HEAD (&(g_rd_local_data->route_list[icnt].headlist));
    }
  return NSTACK_RD_SUCCESS;

ERR:
  if (g_rd_local_data)
    {
      free (g_rd_local_data);
      g_rd_local_data = NULL;
    }
  if (ptemstack)
    {
      free (ptemstack);
    }
  return NSTACK_RD_FAIL;
}

/*****************************************************************************
*   Prototype    : nstack_get_stackid_byname
*   Description  : get stack ip by stack name
*   Input        : char *name
*   Output       : None
*   Return Value : int
*   Calls        :
*   Called By    :
*****************************************************************************/
int
nstack_get_stackid_byname (char *name)
{
  int stacknum = g_rd_local_data->stack_num;
  int iindex = 0;
  nstack_rd_stack_info *pstack = NULL;
  for (iindex = 0; iindex < stacknum; iindex++)
    {
      pstack = &(g_rd_local_data->pstack_info[iindex]);
      if (0 == strcmp (pstack->stack.stackname, name))
        {
          return pstack->stack_id;
        }
    }
  return -1;
}