Blame view

kernel/linux-imx6_3.14.28/arch/m32r/lib/usercopy.c 8.85 KB
6b13f685e   김민수   BSP 최초 추가
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
  /*
   * User address space access functions.
   * The non inlined parts of asm-m32r/uaccess.h are here.
   *
   * Copyright 1997 Andi Kleen <ak@muc.de>
   * Copyright 1997 Linus Torvalds
   * Copyright 2001, 2002, 2004 Hirokazu Takata
   */
  #include <linux/prefetch.h>
  #include <linux/string.h>
  #include <linux/thread_info.h>
  #include <asm/uaccess.h>
  
  unsigned long
  __generic_copy_to_user(void __user *to, const void *from, unsigned long n)
  {
  	prefetch(from);
  	if (access_ok(VERIFY_WRITE, to, n))
  		__copy_user(to,from,n);
  	return n;
  }
  
  unsigned long
  __generic_copy_from_user(void *to, const void __user *from, unsigned long n)
  {
  	prefetchw(to);
  	if (access_ok(VERIFY_READ, from, n))
  		__copy_user_zeroing(to,from,n);
  	else
  		memset(to, 0, n);
  	return n;
  }
  
  
  /*
   * Copy a null terminated string from userspace.
   */
  
  #ifdef CONFIG_ISA_DUAL_ISSUE
  
  #define __do_strncpy_from_user(dst,src,count,res)			\
  do {									\
  	int __d0, __d1, __d2;						\
  	__asm__ __volatile__(						\
  		"	beqz	%1, 2f
  "				\
  		"	.fillinsn
  "					\
  		"0:	ldb	r14, @%3    ||	addi	%3, #1
  "	\
  		"	stb	r14, @%4    ||	addi	%4, #1
  "	\
  		"	beqz	r14, 1f
  "				\
  		"	addi	%1, #-1
  "				\
  		"	bnez	%1, 0b
  "				\
  		"	.fillinsn
  "					\
  		"1:	sub	%0, %1
  "				\
  		"	.fillinsn
  "					\
  		"2:
  "							\
  		".section .fixup,\"ax\"
  "				\
  		"	.balign 4
  "					\
  		"3:	seth	r14, #high(2b)
  "			\
  		"	or3	r14, r14, #low(2b)
  "			\
  		"	jmp	r14	    ||	ldi	%0, #%5
  "	\
  		".previous
  "						\
  		".section __ex_table,\"a\"
  "				\
  		"	.balign 4
  "					\
  		"	.long 0b,3b
  "					\
  		".previous"						\
  		: "=&r"(res), "=&r"(count), "=&r" (__d0), "=&r" (__d1),	\
  		  "=&r" (__d2)						\
  		: "i"(-EFAULT), "0"(count), "1"(count), "3"(src), 	\
  		  "4"(dst)						\
  		: "r14", "cbit", "memory");				\
  } while (0)
  
  #else /* not CONFIG_ISA_DUAL_ISSUE */
  
  #define __do_strncpy_from_user(dst,src,count,res)			\
  do {									\
  	int __d0, __d1, __d2;						\
  	__asm__ __volatile__(						\
  		"	beqz	%1, 2f
  "				\
  		"	.fillinsn
  "					\
  		"0:	ldb	r14, @%3
  "				\
  		"	stb	r14, @%4
  "				\
  		"	addi	%3, #1
  "				\
  		"	addi	%4, #1
  "				\
  		"	beqz	r14, 1f
  "				\
  		"	addi	%1, #-1
  "				\
  		"	bnez	%1, 0b
  "				\
  		"	.fillinsn
  "					\
  		"1:	sub	%0, %1
  "				\
  		"	.fillinsn
  "					\
  		"2:
  "							\
  		".section .fixup,\"ax\"
  "				\
  		"	.balign 4
  "					\
  		"3:	ldi	%0, #%5
  "				\
  		"	seth	r14, #high(2b)
  "			\
  		"	or3	r14, r14, #low(2b)
  "			\
  		"	jmp	r14
  "					\
  		".previous
  "						\
  		".section __ex_table,\"a\"
  "				\
  		"	.balign 4
  "					\
  		"	.long 0b,3b
  "					\
  		".previous"						\
  		: "=&r"(res), "=&r"(count), "=&r" (__d0), "=&r" (__d1),	\
  		  "=&r" (__d2)						\
  		: "i"(-EFAULT), "0"(count), "1"(count), "3"(src),	\
  		  "4"(dst)						\
  		: "r14", "cbit", "memory");				\
  } while (0)
  
  #endif /* CONFIG_ISA_DUAL_ISSUE */
  
  long
  __strncpy_from_user(char *dst, const char __user *src, long count)
  {
  	long res;
  	__do_strncpy_from_user(dst, src, count, res);
  	return res;
  }
  
  long
  strncpy_from_user(char *dst, const char __user *src, long count)
  {
  	long res = -EFAULT;
  	if (access_ok(VERIFY_READ, src, 1))
  		__do_strncpy_from_user(dst, src, count, res);
  	return res;
  }
  
  
  /*
   * Zero Userspace
   */
  
  #ifdef CONFIG_ISA_DUAL_ISSUE
  
  #define __do_clear_user(addr,size)					\
  do {									\
  	int __dst, __c;							\
    	__asm__ __volatile__(						\
  		"	beqz	%1, 9f
  "				\
  		"	and3	r14, %0, #3
  "				\
  		"	bnez	r14, 2f
  "				\
  		"	and3	r14, %1, #3
  "				\
  		"	bnez	r14, 2f
  "				\
  		"	and3	%1, %1, #3
  "				\
  		"	beqz	%2, 2f
  "				\
  		"	addi	%0, #-4
  "				\
  		"	.fillinsn
  "					\
  		"0:	; word clear 
  "				\
  		"	st	%6, @+%0    ||	addi	%2, #-1
  "	\
  		"	bnez	%2, 0b
  "				\
  		"	beqz	%1, 9f
  "				\
  		"	.fillinsn
  "					\
  		"2:	; byte clear 
  "				\
  		"	stb	%6, @%0	    ||	addi	%1, #-1
  "	\
  		"	addi	%0, #1
  "				\
  		"	bnez	%1, 2b
  "				\
  		"	.fillinsn
  "					\
  		"9:
  "							\
  		".section .fixup,\"ax\"
  "				\
  		"	.balign 4
  "					\
  		"4:	slli	%2, #2
  "				\
  		"	seth	r14, #high(9b)
  "			\
  		"	or3	r14, r14, #low(9b)
  "			\
  		"	jmp	r14	    ||	add	%1, %2
  "	\
  		".previous
  "						\
  		".section __ex_table,\"a\"
  "				\
  		"	.balign 4
  "					\
  		"	.long 0b,4b
  "					\
  		"	.long 2b,9b
  "					\
  		".previous
  "						\
  		: "=&r"(__dst), "=&r"(size), "=&r"(__c)			\
  		: "0"(addr), "1"(size), "2"(size / 4), "r"(0)		\
  		: "r14", "cbit", "memory");				\
  } while (0)
  
  #else /* not CONFIG_ISA_DUAL_ISSUE */
  
  #define __do_clear_user(addr,size)					\
  do {									\
  	int __dst, __c;							\
    	__asm__ __volatile__(						\
  		"	beqz	%1, 9f
  "				\
  		"	and3	r14, %0, #3
  "				\
  		"	bnez	r14, 2f
  "				\
  		"	and3	r14, %1, #3
  "				\
  		"	bnez	r14, 2f
  "				\
  		"	and3	%1, %1, #3
  "				\
  		"	beqz	%2, 2f
  "				\
  		"	addi	%0, #-4
  "				\
  		"	.fillinsn
  "					\
  		"0:	st	%6, @+%0	; word clear 
  "	\
  		"	addi	%2, #-1
  "				\
  		"	bnez	%2, 0b
  "				\
  		"	beqz	%1, 9f
  "				\
  		"	.fillinsn
  "					\
  		"2:	stb	%6, @%0		; byte clear 
  "	\
  		"	addi	%1, #-1
  "				\
  		"	addi	%0, #1
  "				\
  		"	bnez	%1, 2b
  "				\
  		"	.fillinsn
  "					\
  		"9:
  "							\
  		".section .fixup,\"ax\"
  "				\
  		"	.balign 4
  "					\
  		"4:	slli	%2, #2
  "				\
  		"	add	%1, %2
  "				\
  		"	seth	r14, #high(9b)
  "			\
  		"	or3	r14, r14, #low(9b)
  "			\
  		"	jmp	r14
  "					\
  		".previous
  "						\
  		".section __ex_table,\"a\"
  "				\
  		"	.balign 4
  "					\
  		"	.long 0b,4b
  "					\
  		"	.long 2b,9b
  "					\
  		".previous
  "						\
  		: "=&r"(__dst), "=&r"(size), "=&r"(__c)			\
  		: "0"(addr), "1"(size), "2"(size / 4), "r"(0)		\
  		: "r14", "cbit", "memory");				\
  } while (0)
  
  #endif /* not CONFIG_ISA_DUAL_ISSUE */
  
  unsigned long
  clear_user(void __user *to, unsigned long n)
  {
  	if (access_ok(VERIFY_WRITE, to, n))
  		__do_clear_user(to, n);
  	return n;
  }
  
  unsigned long
  __clear_user(void __user *to, unsigned long n)
  {
  	__do_clear_user(to, n);
  	return n;
  }
  
  /*
   * Return the size of a string (including the ending 0)
   *
   * Return 0 on exception, a value greater than N if too long
   */
  
  #ifdef CONFIG_ISA_DUAL_ISSUE
  
  long strnlen_user(const char __user *s, long n)
  {
  	unsigned long mask = -__addr_ok(s);
  	unsigned long res;
  
  	__asm__ __volatile__(
  		"	and	%0, %5	    ||	mv	r1, %1
  "
  		"	beqz	%0, strnlen_exit
  "
  		"	and3	r0, %1, #3
  "
  		"	bnez	r0, strnlen_byte_loop
  "
  		"	cmpui	%0, #4
  "
  		"	bc	strnlen_byte_loop
  "
  		"strnlen_word_loop:
  "
  		"0:	ld	r0, @%1+
  "
  		"	pcmpbz	r0
  "
  		"	bc	strnlen_last_bytes_fixup
  "
  		"	addi	%0, #-4
  "
  		"	beqz	%0, strnlen_exit
  "
  		"	bgtz	%0, strnlen_word_loop
  "
  		"strnlen_last_bytes:
  "
  		"	mv	%0, %4
  "
  		"strnlen_last_bytes_fixup:
  "
  		"	addi	%1, #-4
  "
  		"strnlen_byte_loop:
  "
  		"1:	ldb	r0, @%1	    ||	addi	%0, #-1
  "
  		"	beqz	r0, strnlen_exit
  "
  		"	addi	%1, #1
  "
  		"	bnez	%0, strnlen_byte_loop
  "
  		"strnlen_exit:
  "
  		"	sub	%1, r1
  "
  		"	add3	%0, %1, #1
  "
  		"	.fillinsn
  "
  		"9:
  "
  		".section .fixup,\"ax\"
  "
  		"	.balign 4
  "
  		"4:	addi	%1, #-4
  "
  		"	.fillinsn
  "
  		"5:	seth	r1, #high(9b)
  "
  		"	or3	r1, r1, #low(9b)
  "
  		"	jmp	r1	    ||	ldi	%0, #0
  "
  		".previous
  "
  		".section __ex_table,\"a\"
  "
  		"	.balign 4
  "
  		"	.long 0b,4b
  "
  		"	.long 1b,5b
  "
  		".previous"
  		: "=&r" (res), "=r" (s)
  		: "0" (n), "1" (s), "r" (n & 3), "r" (mask), "r"(0x01010101)
  		: "r0", "r1", "cbit");
  
  	/* NOTE: strnlen_user() algorithm:
  	 * {
  	 *   char *p;
  	 *   for (p = s; n-- && *p != '\0'; ++p)
  	 *     ;
  	 *   return p - s + 1;
  	 * }
  	 */
  
  	/* NOTE: If a null char. exists, return 0.
  	 * if ((x - 0x01010101) & ~x & 0x80808080)
  "
  	 *   return 0;
  "
  	 */
  
  	return res & mask;
  }
  
  #else /* not CONFIG_ISA_DUAL_ISSUE */
  
  long strnlen_user(const char __user *s, long n)
  {
  	unsigned long mask = -__addr_ok(s);
  	unsigned long res;
  
  	__asm__ __volatile__(
  		"	and	%0, %5
  "
  		"	mv	r1, %1
  "
  		"	beqz	%0, strnlen_exit
  "
  		"	and3	r0, %1, #3
  "
  		"	bnez	r0, strnlen_byte_loop
  "
  		"	cmpui	%0, #4
  "
  		"	bc	strnlen_byte_loop
  "
  		"	sll3	r3, %6, #7
  "
  		"strnlen_word_loop:
  "
  		"0:	ld	r0, @%1+
  "
  		"	not	r2, r0
  "
  		"	sub	r0, %6
  "
  		"	and	r2, r3
  "
  		"	and	r2, r0
  "
  		"	bnez	r2, strnlen_last_bytes_fixup
  "
  		"	addi	%0, #-4
  "
  		"	beqz	%0, strnlen_exit
  "
  		"	bgtz	%0, strnlen_word_loop
  "
  		"strnlen_last_bytes:
  "
  		"	mv	%0, %4
  "
  		"strnlen_last_bytes_fixup:
  "
  		"	addi	%1, #-4
  "
  		"strnlen_byte_loop:
  "
  		"1:	ldb	r0, @%1
  "
  		"	addi	%0, #-1
  "
  		"	beqz	r0, strnlen_exit
  "
  		"	addi	%1, #1
  "
  		"	bnez	%0, strnlen_byte_loop
  "
  		"strnlen_exit:
  "
  		"	sub	%1, r1
  "
  		"	add3	%0, %1, #1
  "
  		"	.fillinsn
  "
  		"9:
  "
  		".section .fixup,\"ax\"
  "
  		"	.balign 4
  "
  		"4:	addi	%1, #-4
  "
  		"	.fillinsn
  "
  		"5:	ldi	%0, #0
  "
  		"	seth	r1, #high(9b)
  "
  		"	or3	r1, r1, #low(9b)
  "
  		"	jmp	r1
  "
  		".previous
  "
  		".section __ex_table,\"a\"
  "
  		"	.balign 4
  "
  		"	.long 0b,4b
  "
  		"	.long 1b,5b
  "
  		".previous"
  		: "=&r" (res), "=r" (s)
  		: "0" (n), "1" (s), "r" (n & 3), "r" (mask), "r"(0x01010101)
  		: "r0", "r1", "r2", "r3", "cbit");
  
  	/* NOTE: strnlen_user() algorithm:
  	 * {
  	 *   char *p;
  	 *   for (p = s; n-- && *p != '\0'; ++p)
  	 *     ;
  	 *   return p - s + 1;
  	 * }
  	 */
  
  	/* NOTE: If a null char. exists, return 0.
  	 * if ((x - 0x01010101) & ~x & 0x80808080)
  "
  	 *   return 0;
  "
  	 */
  
  	return res & mask;
  }
  
  #endif /* CONFIG_ISA_DUAL_ISSUE */