uaccess.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616
  1. #ifndef _ASM_M32R_UACCESS_H
  2. #define _ASM_M32R_UACCESS_H
  3. /*
  4. * linux/include/asm-m32r/uaccess.h
  5. *
  6. * M32R version.
  7. * Copyright (C) 2004, 2006 Hirokazu Takata <takata at linux-m32r.org>
  8. */
  9. /*
  10. * User space memory access functions
  11. */
  12. #include <asm/page.h>
  13. #include <asm/setup.h>
  14. /*
  15. * The fs value determines whether argument validity checking should be
  16. * performed or not. If get_fs() == USER_DS, checking is performed, with
  17. * get_fs() == KERNEL_DS, checking is bypassed.
  18. *
  19. * For historical reasons, these macros are grossly misnamed.
  20. */
  21. #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
  22. #ifdef CONFIG_MMU
  23. #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFF)
  24. #define USER_DS MAKE_MM_SEG(PAGE_OFFSET)
  25. #define get_ds() (KERNEL_DS)
  26. #define get_fs() (current_thread_info()->addr_limit)
  27. #define set_fs(x) (current_thread_info()->addr_limit = (x))
  28. #else /* not CONFIG_MMU */
  29. #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFF)
  30. #define USER_DS MAKE_MM_SEG(0xFFFFFFFF)
  31. #define get_ds() (KERNEL_DS)
  32. static inline mm_segment_t get_fs(void)
  33. {
  34. return USER_DS;
  35. }
  36. static inline void set_fs(mm_segment_t s)
  37. {
  38. }
  39. #endif /* not CONFIG_MMU */
  40. #define segment_eq(a, b) ((a).seg == (b).seg)
  41. #define __addr_ok(addr) \
  42. ((unsigned long)(addr) < (current_thread_info()->addr_limit.seg))
  43. /*
  44. * Test whether a block of memory is a valid user space address.
  45. * Returns 0 if the range is valid, nonzero otherwise.
  46. *
  47. * This is equivalent to the following test:
  48. * (u33)addr + (u33)size >= (u33)current->addr_limit.seg
  49. *
  50. * This needs 33-bit arithmetic. We have a carry...
  51. */
  52. #define __range_ok(addr, size) ({ \
  53. unsigned long flag, roksum; \
  54. __chk_user_ptr(addr); \
  55. asm ( \
  56. " cmpu %1, %1 ; clear cbit\n" \
  57. " addx %1, %3 ; set cbit if overflow\n" \
  58. " subx %0, %0\n" \
  59. " cmpu %4, %1\n" \
  60. " subx %0, %5\n" \
  61. : "=&r" (flag), "=r" (roksum) \
  62. : "1" (addr), "r" ((int)(size)), \
  63. "r" (current_thread_info()->addr_limit.seg), "r" (0) \
  64. : "cbit" ); \
  65. flag; })
  66. /**
  67. * access_ok: - Checks if a user space pointer is valid
  68. * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that
  69. * %VERIFY_WRITE is a superset of %VERIFY_READ - if it is safe
  70. * to write to a block, it is always safe to read from it.
  71. * @addr: User space pointer to start of block to check
  72. * @size: Size of block to check
  73. *
  74. * Context: User context only. This function may sleep if pagefaults are
  75. * enabled.
  76. *
  77. * Checks if a pointer to a block of memory in user space is valid.
  78. *
  79. * Returns true (nonzero) if the memory block may be valid, false (zero)
  80. * if it is definitely invalid.
  81. *
  82. * Note that, depending on architecture, this function probably just
  83. * checks that the pointer is in the user space range - after calling
  84. * this function, memory access functions may still return -EFAULT.
  85. */
  86. #ifdef CONFIG_MMU
  87. #define access_ok(type, addr, size) (likely(__range_ok(addr, size) == 0))
  88. #else
  89. static inline int access_ok(int type, const void *addr, unsigned long size)
  90. {
  91. unsigned long val = (unsigned long)addr;
  92. return ((val >= memory_start) && ((val + size) < memory_end));
  93. }
  94. #endif /* CONFIG_MMU */
  95. #include <asm/extable.h>
  96. /*
  97. * These are the main single-value transfer routines. They automatically
  98. * use the right size if we just have the right pointer type.
  99. *
  100. * This gets kind of ugly. We want to return _two_ values in "get_user()"
  101. * and yet we don't want to do any pointers, because that is too much
  102. * of a performance impact. Thus we have a few rather ugly macros here,
  103. * and hide all the uglyness from the user.
  104. *
  105. * The "__xxx" versions of the user access functions are versions that
  106. * do not verify the address space, that must have been done previously
  107. * with a separate "access_ok()" call (this is used when we do multiple
  108. * accesses to the same area of user memory).
  109. */
  110. /* Careful: we have to cast the result to the type of the pointer for sign
  111. reasons */
  112. /**
  113. * get_user: - Get a simple variable from user space.
  114. * @x: Variable to store result.
  115. * @ptr: Source address, in user space.
  116. *
  117. * Context: User context only. This function may sleep if pagefaults are
  118. * enabled.
  119. *
  120. * This macro copies a single simple variable from user space to kernel
  121. * space. It supports simple types like char and int, but not larger
  122. * data types like structures or arrays.
  123. *
  124. * @ptr must have pointer-to-simple-variable type, and the result of
  125. * dereferencing @ptr must be assignable to @x without a cast.
  126. *
  127. * Returns zero on success, or -EFAULT on error.
  128. * On error, the variable @x is set to zero.
  129. */
  130. #define get_user(x, ptr) \
  131. __get_user_check((x), (ptr), sizeof(*(ptr)))
  132. /**
  133. * put_user: - Write a simple value into user space.
  134. * @x: Value to copy to user space.
  135. * @ptr: Destination address, in user space.
  136. *
  137. * Context: User context only. This function may sleep if pagefaults are
  138. * enabled.
  139. *
  140. * This macro copies a single simple value from kernel space to user
  141. * space. It supports simple types like char and int, but not larger
  142. * data types like structures or arrays.
  143. *
  144. * @ptr must have pointer-to-simple-variable type, and @x must be assignable
  145. * to the result of dereferencing @ptr.
  146. *
  147. * Returns zero on success, or -EFAULT on error.
  148. */
  149. #define put_user(x, ptr) \
  150. __put_user_check((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
  151. /**
  152. * __get_user: - Get a simple variable from user space, with less checking.
  153. * @x: Variable to store result.
  154. * @ptr: Source address, in user space.
  155. *
  156. * Context: User context only. This function may sleep if pagefaults are
  157. * enabled.
  158. *
  159. * This macro copies a single simple variable from user space to kernel
  160. * space. It supports simple types like char and int, but not larger
  161. * data types like structures or arrays.
  162. *
  163. * @ptr must have pointer-to-simple-variable type, and the result of
  164. * dereferencing @ptr must be assignable to @x without a cast.
  165. *
  166. * Caller must check the pointer with access_ok() before calling this
  167. * function.
  168. *
  169. * Returns zero on success, or -EFAULT on error.
  170. * On error, the variable @x is set to zero.
  171. */
  172. #define __get_user(x, ptr) \
  173. __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
  174. #define __get_user_nocheck(x, ptr, size) \
  175. ({ \
  176. long __gu_err = 0; \
  177. unsigned long __gu_val = 0; \
  178. might_fault(); \
  179. __get_user_size(__gu_val, (ptr), (size), __gu_err); \
  180. (x) = (__force __typeof__(*(ptr)))__gu_val; \
  181. __gu_err; \
  182. })
  183. #define __get_user_check(x, ptr, size) \
  184. ({ \
  185. long __gu_err = -EFAULT; \
  186. unsigned long __gu_val = 0; \
  187. const __typeof__(*(ptr)) __user *__gu_addr = (ptr); \
  188. might_fault(); \
  189. if (access_ok(VERIFY_READ, __gu_addr, size)) \
  190. __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \
  191. (x) = (__force __typeof__(*(ptr)))__gu_val; \
  192. __gu_err; \
  193. })
  194. extern long __get_user_bad(void);
  195. #define __get_user_size(x, ptr, size, retval) \
  196. do { \
  197. retval = 0; \
  198. __chk_user_ptr(ptr); \
  199. switch (size) { \
  200. case 1: __get_user_asm(x, ptr, retval, "ub"); break; \
  201. case 2: __get_user_asm(x, ptr, retval, "uh"); break; \
  202. case 4: __get_user_asm(x, ptr, retval, ""); break; \
  203. default: (x) = __get_user_bad(); \
  204. } \
  205. } while (0)
  206. #define __get_user_asm(x, addr, err, itype) \
  207. __asm__ __volatile__( \
  208. " .fillinsn\n" \
  209. "1: ld"itype" %1,@%2\n" \
  210. " .fillinsn\n" \
  211. "2:\n" \
  212. ".section .fixup,\"ax\"\n" \
  213. " .balign 4\n" \
  214. "3: ldi %0,%3\n" \
  215. " seth r14,#high(2b)\n" \
  216. " or3 r14,r14,#low(2b)\n" \
  217. " jmp r14\n" \
  218. ".previous\n" \
  219. ".section __ex_table,\"a\"\n" \
  220. " .balign 4\n" \
  221. " .long 1b,3b\n" \
  222. ".previous" \
  223. : "=&r" (err), "=&r" (x) \
  224. : "r" (addr), "i" (-EFAULT), "0" (err) \
  225. : "r14", "memory")
  226. /**
  227. * __put_user: - Write a simple value into user space, with less checking.
  228. * @x: Value to copy to user space.
  229. * @ptr: Destination address, in user space.
  230. *
  231. * Context: User context only. This function may sleep if pagefaults are
  232. * enabled.
  233. *
  234. * This macro copies a single simple value from kernel space to user
  235. * space. It supports simple types like char and int, but not larger
  236. * data types like structures or arrays.
  237. *
  238. * @ptr must have pointer-to-simple-variable type, and @x must be assignable
  239. * to the result of dereferencing @ptr.
  240. *
  241. * Caller must check the pointer with access_ok() before calling this
  242. * function.
  243. *
  244. * Returns zero on success, or -EFAULT on error.
  245. */
  246. #define __put_user(x, ptr) \
  247. __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
  248. #define __put_user_nocheck(x, ptr, size) \
  249. ({ \
  250. long __pu_err; \
  251. might_fault(); \
  252. __put_user_size((x), (ptr), (size), __pu_err); \
  253. __pu_err; \
  254. })
  255. #define __put_user_check(x, ptr, size) \
  256. ({ \
  257. long __pu_err = -EFAULT; \
  258. __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
  259. might_fault(); \
  260. if (access_ok(VERIFY_WRITE, __pu_addr, size)) \
  261. __put_user_size((x), __pu_addr, (size), __pu_err); \
  262. __pu_err; \
  263. })
  264. #if defined(__LITTLE_ENDIAN__)
  265. #define __put_user_u64(x, addr, err) \
  266. __asm__ __volatile__( \
  267. " .fillinsn\n" \
  268. "1: st %L1,@%2\n" \
  269. " .fillinsn\n" \
  270. "2: st %H1,@(4,%2)\n" \
  271. " .fillinsn\n" \
  272. "3:\n" \
  273. ".section .fixup,\"ax\"\n" \
  274. " .balign 4\n" \
  275. "4: ldi %0,%3\n" \
  276. " seth r14,#high(3b)\n" \
  277. " or3 r14,r14,#low(3b)\n" \
  278. " jmp r14\n" \
  279. ".previous\n" \
  280. ".section __ex_table,\"a\"\n" \
  281. " .balign 4\n" \
  282. " .long 1b,4b\n" \
  283. " .long 2b,4b\n" \
  284. ".previous" \
  285. : "=&r" (err) \
  286. : "r" (x), "r" (addr), "i" (-EFAULT), "0" (err) \
  287. : "r14", "memory")
  288. #elif defined(__BIG_ENDIAN__)
  289. #define __put_user_u64(x, addr, err) \
  290. __asm__ __volatile__( \
  291. " .fillinsn\n" \
  292. "1: st %H1,@%2\n" \
  293. " .fillinsn\n" \
  294. "2: st %L1,@(4,%2)\n" \
  295. " .fillinsn\n" \
  296. "3:\n" \
  297. ".section .fixup,\"ax\"\n" \
  298. " .balign 4\n" \
  299. "4: ldi %0,%3\n" \
  300. " seth r14,#high(3b)\n" \
  301. " or3 r14,r14,#low(3b)\n" \
  302. " jmp r14\n" \
  303. ".previous\n" \
  304. ".section __ex_table,\"a\"\n" \
  305. " .balign 4\n" \
  306. " .long 1b,4b\n" \
  307. " .long 2b,4b\n" \
  308. ".previous" \
  309. : "=&r" (err) \
  310. : "r" (x), "r" (addr), "i" (-EFAULT), "0" (err) \
  311. : "r14", "memory")
  312. #else
  313. #error no endian defined
  314. #endif
  315. extern void __put_user_bad(void);
  316. #define __put_user_size(x, ptr, size, retval) \
  317. do { \
  318. retval = 0; \
  319. __chk_user_ptr(ptr); \
  320. switch (size) { \
  321. case 1: __put_user_asm(x, ptr, retval, "b"); break; \
  322. case 2: __put_user_asm(x, ptr, retval, "h"); break; \
  323. case 4: __put_user_asm(x, ptr, retval, ""); break; \
  324. case 8: __put_user_u64((__typeof__(*ptr))(x), ptr, retval); break;\
  325. default: __put_user_bad(); \
  326. } \
  327. } while (0)
  328. struct __large_struct { unsigned long buf[100]; };
  329. #define __m(x) (*(struct __large_struct *)(x))
  330. /*
  331. * Tell gcc we read from memory instead of writing: this is because
  332. * we do not write to any memory gcc knows about, so there are no
  333. * aliasing issues.
  334. */
  335. #define __put_user_asm(x, addr, err, itype) \
  336. __asm__ __volatile__( \
  337. " .fillinsn\n" \
  338. "1: st"itype" %1,@%2\n" \
  339. " .fillinsn\n" \
  340. "2:\n" \
  341. ".section .fixup,\"ax\"\n" \
  342. " .balign 4\n" \
  343. "3: ldi %0,%3\n" \
  344. " seth r14,#high(2b)\n" \
  345. " or3 r14,r14,#low(2b)\n" \
  346. " jmp r14\n" \
  347. ".previous\n" \
  348. ".section __ex_table,\"a\"\n" \
  349. " .balign 4\n" \
  350. " .long 1b,3b\n" \
  351. ".previous" \
  352. : "=&r" (err) \
  353. : "r" (x), "r" (addr), "i" (-EFAULT), "0" (err) \
  354. : "r14", "memory")
  355. /*
  356. * Here we special-case 1, 2 and 4-byte copy_*_user invocations. On a fault
  357. * we return the initial request size (1, 2 or 4), as copy_*_user should do.
  358. * If a store crosses a page boundary and gets a fault, the m32r will not write
  359. * anything, so this is accurate.
  360. */
  361. /*
  362. * Copy To/From Userspace
  363. */
  364. /* Generic arbitrary sized copy. */
  365. /* Return the number of bytes NOT copied. */
  366. #define __copy_user(to, from, size) \
  367. do { \
  368. unsigned long __dst, __src, __c; \
  369. __asm__ __volatile__ ( \
  370. " mv r14, %0\n" \
  371. " or r14, %1\n" \
  372. " beq %0, %1, 9f\n" \
  373. " beqz %2, 9f\n" \
  374. " and3 r14, r14, #3\n" \
  375. " bnez r14, 2f\n" \
  376. " and3 %2, %2, #3\n" \
  377. " beqz %3, 2f\n" \
  378. " addi %0, #-4 ; word_copy \n" \
  379. " .fillinsn\n" \
  380. "0: ld r14, @%1+\n" \
  381. " addi %3, #-1\n" \
  382. " .fillinsn\n" \
  383. "1: st r14, @+%0\n" \
  384. " bnez %3, 0b\n" \
  385. " beqz %2, 9f\n" \
  386. " addi %0, #4\n" \
  387. " .fillinsn\n" \
  388. "2: ldb r14, @%1 ; byte_copy \n" \
  389. " .fillinsn\n" \
  390. "3: stb r14, @%0\n" \
  391. " addi %1, #1\n" \
  392. " addi %2, #-1\n" \
  393. " addi %0, #1\n" \
  394. " bnez %2, 2b\n" \
  395. " .fillinsn\n" \
  396. "9:\n" \
  397. ".section .fixup,\"ax\"\n" \
  398. " .balign 4\n" \
  399. "5: addi %3, #1\n" \
  400. " addi %1, #-4\n" \
  401. " .fillinsn\n" \
  402. "6: slli %3, #2\n" \
  403. " add %2, %3\n" \
  404. " addi %0, #4\n" \
  405. " .fillinsn\n" \
  406. "7: seth r14, #high(9b)\n" \
  407. " or3 r14, r14, #low(9b)\n" \
  408. " jmp r14\n" \
  409. ".previous\n" \
  410. ".section __ex_table,\"a\"\n" \
  411. " .balign 4\n" \
  412. " .long 0b,6b\n" \
  413. " .long 1b,5b\n" \
  414. " .long 2b,9b\n" \
  415. " .long 3b,9b\n" \
  416. ".previous\n" \
  417. : "=&r" (__dst), "=&r" (__src), "=&r" (size), \
  418. "=&r" (__c) \
  419. : "0" (to), "1" (from), "2" (size), "3" (size / 4) \
  420. : "r14", "memory"); \
  421. } while (0)
  422. /* We let the __ versions of copy_from/to_user inline, because they're often
  423. * used in fast paths and have only a small space overhead.
  424. */
  425. static inline unsigned long __generic_copy_from_user_nocheck(void *to,
  426. const void __user *from, unsigned long n)
  427. {
  428. __copy_user(to, from, n);
  429. return n;
  430. }
  431. static inline unsigned long __generic_copy_to_user_nocheck(void __user *to,
  432. const void *from, unsigned long n)
  433. {
  434. __copy_user(to, from, n);
  435. return n;
  436. }
  437. unsigned long __generic_copy_to_user(void __user *, const void *, unsigned long);
  438. unsigned long __generic_copy_from_user(void *, const void __user *, unsigned long);
  439. /**
  440. * __copy_to_user: - Copy a block of data into user space, with less checking.
  441. * @to: Destination address, in user space.
  442. * @from: Source address, in kernel space.
  443. * @n: Number of bytes to copy.
  444. *
  445. * Context: User context only. This function may sleep if pagefaults are
  446. * enabled.
  447. *
  448. * Copy data from kernel space to user space. Caller must check
  449. * the specified block with access_ok() before calling this function.
  450. *
  451. * Returns number of bytes that could not be copied.
  452. * On success, this will be zero.
  453. */
  454. #define __copy_to_user(to, from, n) \
  455. __generic_copy_to_user_nocheck((to), (from), (n))
  456. #define __copy_to_user_inatomic __copy_to_user
  457. #define __copy_from_user_inatomic __copy_from_user
  458. /**
  459. * copy_to_user: - Copy a block of data into user space.
  460. * @to: Destination address, in user space.
  461. * @from: Source address, in kernel space.
  462. * @n: Number of bytes to copy.
  463. *
  464. * Context: User context only. This function may sleep if pagefaults are
  465. * enabled.
  466. *
  467. * Copy data from kernel space to user space.
  468. *
  469. * Returns number of bytes that could not be copied.
  470. * On success, this will be zero.
  471. */
  472. #define copy_to_user(to, from, n) \
  473. ({ \
  474. might_fault(); \
  475. __generic_copy_to_user((to), (from), (n)); \
  476. })
  477. /**
  478. * __copy_from_user: - Copy a block of data from user space, with less checking. * @to: Destination address, in kernel space.
  479. * @from: Source address, in user space.
  480. * @n: Number of bytes to copy.
  481. *
  482. * Context: User context only. This function may sleep if pagefaults are
  483. * enabled.
  484. *
  485. * Copy data from user space to kernel space. Caller must check
  486. * the specified block with access_ok() before calling this function.
  487. *
  488. * Returns number of bytes that could not be copied.
  489. * On success, this will be zero.
  490. *
  491. * If some data could not be copied, this function will pad the copied
  492. * data to the requested size using zero bytes.
  493. */
  494. #define __copy_from_user(to, from, n) \
  495. __generic_copy_from_user_nocheck((to), (from), (n))
  496. /**
  497. * copy_from_user: - Copy a block of data from user space.
  498. * @to: Destination address, in kernel space.
  499. * @from: Source address, in user space.
  500. * @n: Number of bytes to copy.
  501. *
  502. * Context: User context only. This function may sleep if pagefaults are
  503. * enabled.
  504. *
  505. * Copy data from user space to kernel space.
  506. *
  507. * Returns number of bytes that could not be copied.
  508. * On success, this will be zero.
  509. *
  510. * If some data could not be copied, this function will pad the copied
  511. * data to the requested size using zero bytes.
  512. */
  513. #define copy_from_user(to, from, n) \
  514. ({ \
  515. might_fault(); \
  516. __generic_copy_from_user((to), (from), (n)); \
  517. })
  518. long __must_check strncpy_from_user(char *dst, const char __user *src,
  519. long count);
  520. long __must_check __strncpy_from_user(char *dst,
  521. const char __user *src, long count);
  522. /**
  523. * __clear_user: - Zero a block of memory in user space, with less checking.
  524. * @to: Destination address, in user space.
  525. * @n: Number of bytes to zero.
  526. *
  527. * Zero a block of memory in user space. Caller must check
  528. * the specified block with access_ok() before calling this function.
  529. *
  530. * Returns number of bytes that could not be cleared.
  531. * On success, this will be zero.
  532. */
  533. unsigned long __clear_user(void __user *mem, unsigned long len);
  534. /**
  535. * clear_user: - Zero a block of memory in user space.
  536. * @to: Destination address, in user space.
  537. * @n: Number of bytes to zero.
  538. *
  539. * Zero a block of memory in user space. Caller must check
  540. * the specified block with access_ok() before calling this function.
  541. *
  542. * Returns number of bytes that could not be cleared.
  543. * On success, this will be zero.
  544. */
  545. unsigned long clear_user(void __user *mem, unsigned long len);
  546. /**
  547. * strlen_user: - Get the size of a string in user space.
  548. * @str: The string to measure.
  549. *
  550. * Context: User context only. This function may sleep if pagefaults are
  551. * enabled.
  552. *
  553. * Get the size of a NUL-terminated string in user space.
  554. *
  555. * Returns the size of the string INCLUDING the terminating NUL.
  556. * On exception, returns 0.
  557. *
  558. * If there is a limit on the length of a valid string, you may wish to
  559. * consider using strnlen_user() instead.
  560. */
  561. #define strlen_user(str) strnlen_user(str, ~0UL >> 1)
  562. long strnlen_user(const char __user *str, long n);
  563. #endif /* _ASM_M32R_UACCESS_H */