-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
diag_memorydevice.c
301 lines (268 loc) · 6.52 KB
/
diag_memorydevice.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
/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
* Copyright (C) 2016 XiaoMi, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/sched.h>
#include <linux/ratelimit.h>
#include <linux/workqueue.h>
#include <linux/diagchar.h>
#include <linux/delay.h>
#include <linux/kmemleak.h>
#include <linux/uaccess.h>
#include "diag_memorydevice.h"
#include "diagfwd_bridge.h"
#include "diag_mux.h"
#include "diagmem.h"
struct diag_md_info diag_md[NUM_DIAG_MD_DEV] = {
{
.id = DIAG_MD_LOCAL,
.ctx = 0,
.mempool = POOL_TYPE_MUX_APPS,
.num_tbl_entries = 0,
.tbl = NULL,
.ops = NULL,
},
#ifdef CONFIG_DIAGFWD_BRIDGE_CODE
{
.id = DIAG_MD_MDM,
.ctx = 0,
.mempool = POOL_TYPE_MDM_MUX,
.num_tbl_entries = 0,
.tbl = NULL,
.ops = NULL,
},
{
.id = DIAG_MD_MDM2,
.ctx = 0,
.mempool = POOL_TYPE_MDM2_MUX,
.num_tbl_entries = 0,
.tbl = NULL,
.ops = NULL,
},
{
.id = DIAG_MD_SMUX,
.ctx = 0,
.mempool = POOL_TYPE_QSC_MUX,
.num_tbl_entries = 0,
.tbl = NULL,
.ops = NULL,
}
#endif
};
int diag_md_register(int id, int ctx, struct diag_mux_ops *ops)
{
if (id < 0 || id >= NUM_DIAG_MD_DEV || !ops)
return -EINVAL;
diag_md[id].ops = ops;
diag_md[id].ctx = ctx;
return 0;
}
void diag_md_open_all()
{
int i;
struct diag_md_info *ch = NULL;
for (i = 0; i < NUM_DIAG_MD_DEV; i++) {
ch = &diag_md[i];
if (ch->ops && ch->ops->open)
ch->ops->open(ch->ctx, DIAG_MEMORY_DEVICE_MODE);
}
return;
}
void diag_md_close_all()
{
int i, j;
unsigned long flags;
struct diag_md_info *ch = NULL;
struct diag_buf_tbl_t *entry = NULL;
for (i = 0; i < NUM_DIAG_MD_DEV; i++) {
ch = &diag_md[i];
/*
* When we close the Memory device mode, make sure we flush the
* internal buffers in the table so that there are no stale
* entries.
*/
for (j = 0; j < ch->num_tbl_entries; j++) {
entry = &ch->tbl[j];
if (entry->len <= 0)
continue;
if (ch->ops && ch->ops->write_done)
ch->ops->write_done(entry->buf, entry->len,
entry->ctx, ch->ctx);
spin_lock_irqsave(&entry->lock, flags);
entry->buf = NULL;
entry->len = 0;
entry->ctx = 0;
spin_unlock_irqrestore(&entry->lock, flags);
}
if (ch->ops && ch->ops->close)
ch->ops->close(ch->ctx, DIAG_MEMORY_DEVICE_MODE);
}
diag_ws_reset(DIAG_WS_MD);
}
int diag_md_write(int id, unsigned char *buf, int len, int ctx)
{
int i;
uint8_t found = 0;
unsigned long flags;
struct diag_md_info *ch = NULL;
if (id < 0 || id >= NUM_DIAG_MD_DEV)
return -EINVAL;
if (!buf || len < 0)
return -EINVAL;
ch = &diag_md[id];
for (i = 0; i < ch->num_tbl_entries && !found; i++) {
spin_lock_irqsave(&ch->tbl[i].lock, flags);
if (ch->tbl[i].len == 0) {
ch->tbl[i].buf = buf;
ch->tbl[i].len = len;
ch->tbl[i].ctx = ctx;
found = 1;
diag_ws_on_read(DIAG_WS_MD, len);
}
spin_unlock_irqrestore(&ch->tbl[i].lock, flags);
}
if (!found) {
pr_err_ratelimited("diag: Unable to find an empty space in table, please reduce logging rate, proc: %d\n",
id);
return -ENOMEM;
}
found = 0;
for (i = 0; i < driver->num_clients && !found; i++) {
if (driver->client_map[i].pid != driver->logging_process_id)
continue;
found = 1;
driver->data_ready[i] |= USER_SPACE_DATA_TYPE;
pr_debug("diag: wake up logging process\n");
wake_up_interruptible(&driver->wait_q);
}
if (!found)
return -EINVAL;
return 0;
}
int diag_md_copy_to_user(char __user *buf, int *pret, size_t buf_size)
{
int i, j;
int err = 0;
int ret = *pret;
int num_data = 0;
int remote_token;
unsigned long flags;
struct diag_md_info *ch = NULL;
struct diag_buf_tbl_t *entry = NULL;
uint8_t drain_again = 0;
for (i = 0; i < NUM_DIAG_MD_DEV && !err; i++) {
ch = &diag_md[i];
for (j = 0; j < ch->num_tbl_entries && !err; j++) {
entry = &ch->tbl[j];
if (entry->len <= 0)
continue;
/*
* If the data is from remote processor, copy the remote
* token first
*/
if (i > 0) {
if ((ret + (3 * sizeof(int)) + entry->len) >=
buf_size) {
drain_again = 1;
break;
}
} else {
if ((ret + (2 * sizeof(int)) + entry->len) >=
buf_size) {
drain_again = 1;
break;
}
}
if (i > 0) {
remote_token = diag_get_remote(i);
err = copy_to_user(buf + ret, &remote_token,
sizeof(int));
if (err)
goto drop_data;
ret += sizeof(int);
}
/* Copy the length of data being passed */
err = copy_to_user(buf + ret, (void *)&(entry->len),
sizeof(int));
if (err)
goto drop_data;
ret += sizeof(int);
/* Copy the actual data being passed */
err = copy_to_user(buf + ret, (void *)entry->buf,
entry->len);
if (err)
goto drop_data;
ret += entry->len;
/*
* The data is now copied to the user space client,
* Notify that the write is complete and delete its
* entry from the table
*/
num_data++;
drop_data:
ch->ops->write_done(entry->buf, entry->len,
entry->ctx,
DIAG_MEMORY_DEVICE_MODE);
diag_ws_on_copy(DIAG_WS_MD);
spin_lock_irqsave(&entry->lock, flags);
entry->buf = NULL;
entry->len = 0;
entry->ctx = 0;
spin_unlock_irqrestore(&entry->lock, flags);
}
}
*pret = ret;
err = copy_to_user(buf + sizeof(int), (void *)&num_data, sizeof(int));
diag_ws_on_copy_complete(DIAG_WS_MD);
if (drain_again)
chk_logging_wakeup();
return err;
}
int diag_md_init()
{
int i, j;
struct diag_md_info *ch = NULL;
for (i = 0; i < NUM_DIAG_MD_DEV; i++) {
ch = &diag_md[i];
ch->num_tbl_entries = diag_mempools[ch->mempool].poolsize;
ch->tbl = kzalloc(ch->num_tbl_entries *
sizeof(struct diag_buf_tbl_t),
GFP_KERNEL);
if (!ch->tbl)
goto fail;
for (j = 0; j < ch->num_tbl_entries; j++) {
ch->tbl[j].buf = NULL;
ch->tbl[j].len = 0;
ch->tbl[j].ctx = 0;
spin_lock_init(&(ch->tbl[j].lock));
}
}
return 0;
fail:
diag_md_exit();
return -ENOMEM;
}
void diag_md_exit()
{
int i;
struct diag_md_info *ch = NULL;
for (i = 0; i < NUM_DIAG_MD_DEV; i++) {
ch = &diag_md[i];
kfree(ch->tbl);
ch->num_tbl_entries = 0;
ch->ops = NULL;
}
}