forked from RT-Thread/rt-thread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlwp_shm.c
465 lines (395 loc) · 10.9 KB
/
lwp_shm.c
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
/*
* Copyright (c) 2006-2020, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2019-10-12 Jesven first version
* 2023-02-20 wangxiaoyao adapt to mm
*/
#include <rthw.h>
#include <rtthread.h>
#ifdef ARCH_MM_MMU
#include <lwp.h>
#include <lwp_shm.h>
#include <lwp_mm.h>
#include <lwp_user_mm.h>
#include <mmu.h>
/* the kernel structure to represent a share-memory */
struct lwp_shm_struct
{
struct rt_mem_obj mem_obj;
size_t addr; /* point to the next item in the free list when not used */
size_t size;
int ref;
size_t key;
};
static struct lwp_avl_struct *shm_tree_key;
static struct lwp_avl_struct *shm_tree_pa;
static int shm_free_list = -1; /* the single-direct list of freed items */
static int shm_id_used = 0; /* the latest allocated item in the array */
static struct lwp_shm_struct _shm_ary[RT_LWP_SHM_MAX_NR];
static const char *get_shm_name(rt_varea_t varea)
{
return "user.shm";
}
static void on_shm_varea_open(struct rt_varea *varea)
{
struct lwp_shm_struct *shm;
shm = rt_container_of(varea->mem_obj, struct lwp_shm_struct, mem_obj);
shm->ref += 1;
}
static void on_shm_varea_close(struct rt_varea *varea)
{
struct lwp_shm_struct *shm;
shm = rt_container_of(varea->mem_obj, struct lwp_shm_struct, mem_obj);
shm->ref -= 1;
}
static void on_shm_page_fault(struct rt_varea *varea, struct rt_aspace_fault_msg *msg)
{
struct lwp_shm_struct *shm;
int err;
shm = rt_container_of(varea->mem_obj, struct lwp_shm_struct, mem_obj);
/* map all share page frames to user space in a time */
void *page = (void *)shm->addr;
void *pg_paddr = (char *)page + PV_OFFSET;
err = rt_varea_map_range(varea, varea->start, pg_paddr, shm->size);
if (err == RT_EOK)
{
msg->response.status = MM_FAULT_STATUS_OK_MAPPED;
msg->response.size = shm->size;
msg->response.vaddr = page;
}
return ;
}
/*
* Try to allocate an structure 'lwp_shm_struct' from the freed list or the
* static array.
*/
static int _shm_id_alloc(void)
{
int id = -1;
if (shm_free_list != -1) /* first try the freed list */
{
id = shm_free_list;
shm_free_list = (int)_shm_ary[shm_free_list].addr; /* single-direction */
}
else if (shm_id_used < RT_LWP_SHM_MAX_NR) /* then try the array */
{
id = shm_id_used;
shm_id_used++;
}
return id;
}
/* Release the item in the static array to the freed list. */
static void shm_id_free(int id)
{
/* link the freed itme to the single-direction list */
_shm_ary[id].addr = (size_t)shm_free_list;
shm_free_list = id;
}
/* Locate the shared memory through 'key' or create a new one. */
static int _lwp_shmget(size_t key, size_t size, int create)
{
int id = -1;
struct lwp_avl_struct *node_key = 0;
struct lwp_avl_struct *node_pa = 0;
void *page_addr = 0;
uint32_t bit = 0;
/* try to locate the item with the key in the binary tree */
node_key = lwp_avl_find(key, shm_tree_key);
if (node_key)
{
return (struct lwp_shm_struct *)node_key->data - _shm_ary; /* the index */
}
/* If there doesn't exist such an item and we're allowed to create one ... */
if (create)
{
struct lwp_shm_struct* p;
if (!size)
{
goto err;
}
id = _shm_id_alloc();
if (id == -1)
{
goto err;
}
/* allocate pages up to 2's exponent to cover the required size */
bit = rt_page_bits(size);
page_addr = rt_pages_alloc_ext(bit, PAGE_ANY_AVAILABLE); /* virtual address */
if (!page_addr)
{
goto err;
}
/* initialize the shared memory structure */
p = _shm_ary + id;
p->addr = (size_t)page_addr;
p->size = (1UL << (bit + ARCH_PAGE_SHIFT));
p->ref = 0;
p->key = key;
p->mem_obj.get_name = get_shm_name;
p->mem_obj.on_page_fault = on_shm_page_fault;
p->mem_obj.on_varea_open = on_shm_varea_open;
p->mem_obj.on_varea_close = on_shm_varea_close;
p->mem_obj.hint_free = NULL;
/* then insert it into the balancing binary tree */
node_key = (struct lwp_avl_struct *)rt_malloc(sizeof(struct lwp_avl_struct) * 2);
if (!node_key)
{
goto err;
}
node_key->avl_key = p->key;
node_key->data = (void *)p;
lwp_avl_insert(node_key, &shm_tree_key);
node_pa = node_key + 1;
node_pa->avl_key = p->addr;
node_pa->data = (void *)p;
lwp_avl_insert(node_pa, &shm_tree_pa);
}
return id;
err:
if (id != -1)
{
shm_id_free(id);
}
if (page_addr)
{
rt_pages_free(page_addr, bit);
}
if (node_key)
{
rt_free(node_key);
}
return -1;
}
/* A wrapping function, get the shared memory with interrupts disabled. */
int lwp_shmget(size_t key, size_t size, int create)
{
int ret = 0;
rt_mm_lock();
ret = _lwp_shmget(key, size, create);
rt_mm_unlock();
return ret;
}
/* Locate the binary tree node_key corresponding to the shared-memory id. */
static struct lwp_avl_struct *shm_id_to_node(int id)
{
struct lwp_avl_struct *node_key = 0;
struct lwp_shm_struct *p = RT_NULL;
/* check id */
if (id < 0 || id >= RT_LWP_SHM_MAX_NR)
{
return RT_NULL;
}
p = _shm_ary + id; /* the address of the shared-memory structure */
node_key = lwp_avl_find(p->key, shm_tree_key);
if (!node_key)
{
return RT_NULL;
}
if (node_key->data != (void *)p)
{
return RT_NULL;
}
return node_key;
}
/* Free the shared pages, the shared-memory structure and its binary tree node_key. */
static int _lwp_shmrm(int id)
{
struct lwp_avl_struct *node_key = RT_NULL;
struct lwp_avl_struct *node_pa = RT_NULL;
struct lwp_shm_struct* p = RT_NULL;
uint32_t bit = 0;
node_key = shm_id_to_node(id);
if (!node_key)
{
return -1;
}
p = (struct lwp_shm_struct *)node_key->data;
if (p->ref)
{
return 0;
}
bit = rt_page_bits(p->size);
rt_pages_free((void *)p->addr, bit);
lwp_avl_remove(node_key, &shm_tree_key);
node_pa = node_key + 1;
lwp_avl_remove(node_pa, &shm_tree_pa);
rt_free(node_key);
shm_id_free(id);
return 0;
}
/* A wrapping function, free the shared memory with interrupt disabled. */
int lwp_shmrm(int id)
{
int ret = 0;
ret = _lwp_shmrm(id);
return ret;
}
/* Map the shared memory specified by 'id' to the specified virtual address. */
static void *_lwp_shmat(int id, void *shm_vaddr)
{
int err;
struct rt_lwp *lwp = RT_NULL;
struct lwp_avl_struct *node_key = RT_NULL;
struct lwp_shm_struct *p = RT_NULL;
void *va = shm_vaddr;
/* The id is used to locate the node_key in the binary tree, and then get the
* shared-memory structure linked to the node_key. We don't use the id to refer
* to the shared-memory structure directly, because the binary tree is used
* to verify the structure is really in use.
*/
node_key = shm_id_to_node(id);
if (!node_key)
{
return RT_NULL;
}
p = (struct lwp_shm_struct *)node_key->data; /* p = _shm_ary[id]; */
/* map the shared memory into the address space of the current thread */
lwp = lwp_self();
if (!lwp)
{
return RT_NULL;
}
err = rt_aspace_map(lwp->aspace, &va, p->size, MMU_MAP_U_RWCB, MMF_PREFETCH,
&p->mem_obj, 0);
if (err != RT_EOK)
{
va = RT_NULL;
}
return va;
}
/* A wrapping function: attach the shared memory to the specified address. */
void *lwp_shmat(int id, void *shm_vaddr)
{
void *ret = RT_NULL;
if (((size_t)shm_vaddr & ARCH_PAGE_MASK) != 0)
{
return RT_NULL;
}
ret = _lwp_shmat(id, shm_vaddr);
return ret;
}
static struct lwp_shm_struct *_lwp_shm_struct_get(struct rt_lwp *lwp, void *shm_vaddr)
{
void *pa = RT_NULL;
struct lwp_avl_struct *node_pa = RT_NULL;
if (!lwp)
{
return RT_NULL;
}
pa = lwp_v2p(lwp, shm_vaddr); /* physical memory */
node_pa = lwp_avl_find((size_t)pa, shm_tree_pa);
if (!node_pa)
{
return RT_NULL;
}
return (struct lwp_shm_struct *)node_pa->data;
}
static int _lwp_shm_ref_inc(struct rt_lwp *lwp, void *shm_vaddr)
{
struct lwp_shm_struct* p = _lwp_shm_struct_get(lwp, shm_vaddr);
if (p)
{
p->ref++;
return p->ref;
}
return -1;
}
int lwp_shm_ref_inc(struct rt_lwp *lwp, void *shm_vaddr)
{
int ret = 0;
rt_mm_lock();
ret = _lwp_shm_ref_inc(lwp, shm_vaddr);
rt_mm_unlock();
return ret;
}
static int _lwp_shm_ref_dec(struct rt_lwp *lwp, void *shm_vaddr)
{
struct lwp_shm_struct* p = _lwp_shm_struct_get(lwp, shm_vaddr);
if (p && (p->ref > 0))
{
p->ref--;
return p->ref;
}
return -1;
}
int lwp_shm_ref_dec(struct rt_lwp *lwp, void *shm_vaddr)
{
int ret = 0;
rt_mm_lock();
ret = _lwp_shm_ref_dec(lwp, shm_vaddr);
rt_mm_unlock();
return ret;
}
/* Unmap the shared memory from the address space of the current thread. */
int _lwp_shmdt(void *shm_vaddr)
{
struct rt_lwp *lwp = RT_NULL;
int ret = 0;
lwp = lwp_self();
if (!lwp)
{
return -1;
}
ret = rt_aspace_unmap(lwp->aspace, shm_vaddr);
if (ret != RT_EOK)
{
ret = -1;
}
return ret;
}
/* A wrapping function: detach the mapped shared memory. */
int lwp_shmdt(void *shm_vaddr)
{
int ret = 0;
rt_mm_lock();
ret = _lwp_shmdt(shm_vaddr);
rt_mm_unlock();
return ret;
}
/* Get the virtual address of a shared memory in kernel. */
void *_lwp_shminfo(int id)
{
struct lwp_avl_struct *node_key = RT_NULL;
struct lwp_shm_struct *p = RT_NULL;
/* the share memory is in use only if it exsits in the binary tree */
node_key = shm_id_to_node(id);
if (!node_key)
{
return RT_NULL;
}
p = (struct lwp_shm_struct *)node_key->data; /* p = _shm_ary[id]; */
return (void *)((char *)p->addr - PV_OFFSET); /* get the virtual address */
}
/* A wrapping function: get the virtual address of a shared memory. */
void *lwp_shminfo(int id)
{
void *vaddr = RT_NULL;
rt_mm_lock();
vaddr = _lwp_shminfo(id);
rt_mm_unlock();
return vaddr;
}
#ifdef RT_USING_FINSH
static int _shm_info(struct lwp_avl_struct* node_key, void *data)
{
int id = 0;
struct lwp_shm_struct* p = (struct lwp_shm_struct *)node_key->data;
id = p - _shm_ary;
rt_kprintf("0x%08x 0x%08x 0x%08x %8d\n", p->key, p->addr, p->size, id);
return 0;
}
void list_shm(void)
{
rt_kprintf(" key paddr size id\n");
rt_kprintf("---------- ---------- ---------- --------\n");
rt_mm_lock();
lwp_avl_traversal(shm_tree_key, _shm_info, NULL);
rt_mm_unlock();
}
MSH_CMD_EXPORT(list_shm, show share memory info);
#endif
#endif