aboutsummaryrefslogtreecommitdiffstats
path: root/src/adapt/nstack_dmm_adpt.c
blob: 652d0e2468f1a78ae375f96aa114e6e89d581af7 (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
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
/*
*
* 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.
*/

#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#endif /* __cplusplus */

#include "nsfw_init.h"
#include "nsfw_mem_api.h"
#include "nsfw_recycle_api.h"
#include "nsfw_mgr_com_api.h"
#include "nsfw_ps_mem_api.h"
#include "nsfw_ps_api.h"
#include "nsfw_recycle_api.h"
#include "nsfw_fd_timer_api.h"
#include "nsfw_maintain_api.h"
#include "nstack_eventpoll.h"
#include "nstack_dmm_api.h"
#include "nstack_dmm_adpt.h"
#include "mgr_com.h"

int g_same_process = 1;

extern int nsep_adpt_attach_memory ();
extern int nstack_init_share_res ();
extern int nstack_attach_share_res ();
extern int nsep_adpt_reg_res_mgr ();

/**
 *    This just for linux kernel epoll thread
 */
int
nstack_event_callback (void *pdata, int events)
{
  nsep_epollInfo_t *epInfo = (nsep_epollInfo_t *) pdata;

  if (!epInfo)
    {
      NSSOC_LOGWAR ("!!!!!!!err pdata=%p,get null epInfo", pdata);
      return -1;
    }

  NSSOC_LOGDBG ("Got one event]fd=%d,events=%u", epInfo->fd, events);

  sys_arch_lock_with_pid (&epInfo->epiLock);
  struct list_node *fdEpiHead =
    (struct list_node *) ADDR_SHTOL (epInfo->epiList.head);
  struct list_node *node = (struct list_node *) ADDR_SHTOL (fdEpiHead->next);
  struct epitem *epi = NULL;
  struct eventpoll *ep = NULL;
  while (node)
    {

      epi = (struct epitem *) ep_list_entry (node, struct epitem, fllink);

      node = (struct list_node *) ADDR_SHTOL (node->next);
      ep = (struct eventpoll *) ADDR_SHTOL (epi->ep);
      if (!(epi->event.events & events))
        continue;

      /*event should not notice other process */
      if ((ep->pid != get_sys_pid ()) && g_same_process)
        {
          continue;
        }

      sys_arch_lock_with_pid (&ep->lock);

      if (unlikely (ep->ovflist != NSEP_EP_UNACTIVE_PTR))
        {
          if (epi->next == NSEP_EP_UNACTIVE_PTR)
            {
              epi->next = ep->ovflist;
              ep->ovflist = (struct epitem *) ADDR_LTOSH (epi);
            }
          epi->ovf_revents |= events;
          NSSOC_LOGDBG ("Add to ovflist]protoFD=%d,event=%d", epInfo->fd,
                        events);
          goto out_unlock;
        }
      if (!EP_HLIST_NODE_LINKED (&epi->rdllink))
        {
          ep_hlist_add_tail (&ep->rdlist, &epi->rdllink);
          sem_post (&ep->waitSem);
        }
      epi->revents |= events;
    out_unlock:
      sys_sem_s_signal (&ep->lock);
    }
  sys_sem_s_signal (&epInfo->epiLock);
  /*  [Remove fdInf->event_sem post] */
  return 0;
}

int
nstack_adpt_init (nstack_dmm_para * para)
{
  nsfw_mem_para stinfo = { 0 };
  i32 init_ret = 0;

  if (!para)
    {
      return -1;
    }
  stinfo.iargsnum = para->argc;
  stinfo.pargs = para->argv;
  stinfo.enflag = para->proc_type;
  if (para->deploy_type != NSTACK_MODEL_TYPE1
      && para->deploy_type != NSTACK_MODEL_TYPE_SIMPLE_STACK)
    {
      g_same_process = 0;
    }

  nsfw_com_attr_set (para->attr.policy, para->attr.pri);

  (void) nstack_framework_setModuleParam (NSFW_MEM_MGR_MODULE, &stinfo);
  (void) nstack_framework_setModuleParam (NSFW_MGR_COM_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_TIMER_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_PS_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_PS_MEM_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_RECYCLE_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_RES_MGR_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_SOFT_PARAM_MODULE,
                                          (void *) ((u64) para->proc_type));
  (void) nstack_framework_setModuleParam (NSFW_LOG_CFG_MODULE,
                                          (void *) ((u64) para->proc_type));

  init_ret = nstack_framework_init ();
  if (init_ret < 0)
    {
      NSFW_LOGERR
        ("######################init failed!!!!######################");
      return -1;
    }

  if ((para->proc_type != NSFW_PROC_APP)
      && (para->proc_type != NSFW_PROC_MAIN))
    {
      return 0;
    }

  if (para->proc_type == NSFW_PROC_MAIN)
    {
      if (nstack_init_share_res () != 0)
        {
          NSFW_LOGERR ("nstack_init_share_res failed");
          return -1;
        }
      if (nsep_create_memory () != 0)
        {
          NSFW_LOGERR ("nsep_create_memory failed");
          return -1;
        }
    }
  else
    {
      if (nstack_attach_share_res () != 0)
        {
          NSFW_LOGERR ("nstack_attach_share_res failed");
          return -1;
        }

        /**
        * the share memory for epoll is created and used by app, don't clear
        * it in fault case.
        */
      if (0 != nsep_adpt_attach_memory ())
        {
          NSFW_LOGERR ("nsep_adpt_attach_memory failed");
          return -1;
        }
    }

  void *pret =
    nsfw_recycle_reg_obj (NSFW_REC_PRO_LOWEST, NSFW_REC_NSOCKET_EPOLL,
                          NULL);
  if (!pret)
    {
      NSFW_LOGERR ("regist recycle failed");
      return -1;
    }
  (void) nsep_adpt_reg_res_mgr ();

  return 0;
}

/*just to used to dependence by other module*/
int
nstack_init_module (void *para)
{
  return 0;
}

NSFW_MODULE_NAME (NSTACK_DMM_MODULE)
NSFW_MODULE_PRIORITY (10)
NSFW_MODULE_DEPENDS (NSFW_MEM_MGR_MODULE)
NSFW_MODULE_DEPENDS (NSFW_MGR_COM_MODULE)
NSFW_MODULE_DEPENDS (NSFW_TIMER_MODULE)
NSFW_MODULE_DEPENDS (NSFW_PS_MODULE)
NSFW_MODULE_DEPENDS (NSFW_PS_MEM_MODULE)
NSFW_MODULE_DEPENDS (NSFW_RECYCLE_MODULE)
NSFW_MODULE_DEPENDS (NSFW_LOG_CFG_MODULE)
NSFW_MODULE_DEPENDS (NSFW_RES_MGR_MODULE)
NSFW_MODULE_DEPENDS (NSFW_SOFT_PARAM_MODULE)
NSFW_MODULE_INIT (nstack_init_module)
#ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#endif /* __cplusplus */