misc.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. /*
  2. * This file is part of UBIFS.
  3. *
  4. * Copyright (C) 2006-2008 Nokia Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. * Authors: Artem Bityutskiy (Битюцкий Артём)
  20. * Adrian Hunter
  21. */
  22. /*
  23. * This file contains miscellaneous helper functions.
  24. */
  25. #ifndef __UBIFS_MISC_H__
  26. #define __UBIFS_MISC_H__
  27. /**
  28. * ubifs_zn_dirty - check if znode is dirty.
  29. * @znode: znode to check
  30. *
  31. * This helper function returns %1 if @znode is dirty and %0 otherwise.
  32. */
  33. static inline int ubifs_zn_dirty(const struct ubifs_znode *znode)
  34. {
  35. return !!test_bit(DIRTY_ZNODE, &znode->flags);
  36. }
  37. /**
  38. * ubifs_wake_up_bgt - wake up background thread.
  39. * @c: UBIFS file-system description object
  40. */
  41. static inline void ubifs_wake_up_bgt(struct ubifs_info *c)
  42. {
  43. if (c->bgt && !c->need_bgt) {
  44. c->need_bgt = 1;
  45. wake_up_process(c->bgt);
  46. }
  47. }
  48. /**
  49. * ubifs_tnc_find_child - find next child in znode.
  50. * @znode: znode to search at
  51. * @start: the zbranch index to start at
  52. *
  53. * This helper function looks for znode child starting at index @start. Returns
  54. * the child or %NULL if no children were found.
  55. */
  56. static inline struct ubifs_znode *
  57. ubifs_tnc_find_child(struct ubifs_znode *znode, int start)
  58. {
  59. while (start < znode->child_cnt) {
  60. if (znode->zbranch[start].znode)
  61. return znode->zbranch[start].znode;
  62. start += 1;
  63. }
  64. return NULL;
  65. }
  66. /**
  67. * ubifs_inode - get UBIFS inode information by VFS 'struct inode' object.
  68. * @inode: the VFS 'struct inode' pointer
  69. */
  70. static inline struct ubifs_inode *ubifs_inode(const struct inode *inode)
  71. {
  72. return container_of(inode, struct ubifs_inode, vfs_inode);
  73. }
  74. /**
  75. * ubifs_compr_present - check if compressor was compiled in.
  76. * @compr_type: compressor type to check
  77. *
  78. * This function returns %1 of compressor of type @compr_type is present, and
  79. * %0 if not.
  80. */
  81. static inline int ubifs_compr_present(int compr_type)
  82. {
  83. ubifs_assert(compr_type >= 0 && compr_type < UBIFS_COMPR_TYPES_CNT);
  84. return !!ubifs_compressors[compr_type]->capi_name;
  85. }
  86. /**
  87. * ubifs_compr_name - get compressor name string by its type.
  88. * @compr_type: compressor type
  89. *
  90. * This function returns compressor type string.
  91. */
  92. static inline const char *ubifs_compr_name(int compr_type)
  93. {
  94. ubifs_assert(compr_type >= 0 && compr_type < UBIFS_COMPR_TYPES_CNT);
  95. return ubifs_compressors[compr_type]->name;
  96. }
  97. /**
  98. * ubifs_wbuf_sync - synchronize write-buffer.
  99. * @wbuf: write-buffer to synchronize
  100. *
  101. * This is the same as as 'ubifs_wbuf_sync_nolock()' but it does not assume
  102. * that the write-buffer is already locked.
  103. */
  104. static inline int ubifs_wbuf_sync(struct ubifs_wbuf *wbuf)
  105. {
  106. int err;
  107. mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
  108. err = ubifs_wbuf_sync_nolock(wbuf);
  109. mutex_unlock(&wbuf->io_mutex);
  110. return err;
  111. }
  112. /**
  113. * ubifs_leb_unmap - unmap an LEB.
  114. * @c: UBIFS file-system description object
  115. * @lnum: LEB number to unmap
  116. *
  117. * This function returns %0 on success and a negative error code on failure.
  118. */
  119. static inline int ubifs_leb_unmap(const struct ubifs_info *c, int lnum)
  120. {
  121. int err;
  122. ubifs_assert(!c->ro_media && !c->ro_mount);
  123. if (c->ro_error)
  124. return -EROFS;
  125. err = ubi_leb_unmap(c->ubi, lnum);
  126. if (err) {
  127. ubifs_err("unmap LEB %d failed, error %d", lnum, err);
  128. return err;
  129. }
  130. return 0;
  131. }
  132. /**
  133. * ubifs_leb_write - write to a LEB.
  134. * @c: UBIFS file-system description object
  135. * @lnum: LEB number to write
  136. * @buf: buffer to write from
  137. * @offs: offset within LEB to write to
  138. * @len: length to write
  139. * @dtype: data type
  140. *
  141. * This function returns %0 on success and a negative error code on failure.
  142. */
  143. static inline int ubifs_leb_write(const struct ubifs_info *c, int lnum,
  144. const void *buf, int offs, int len, int dtype)
  145. {
  146. int err;
  147. ubifs_assert(!c->ro_media && !c->ro_mount);
  148. if (c->ro_error)
  149. return -EROFS;
  150. err = ubi_leb_write(c->ubi, lnum, buf, offs, len, dtype);
  151. if (err) {
  152. ubifs_err("writing %d bytes at %d:%d, error %d",
  153. len, lnum, offs, err);
  154. return err;
  155. }
  156. return 0;
  157. }
  158. /**
  159. * ubifs_leb_change - atomic LEB change.
  160. * @c: UBIFS file-system description object
  161. * @lnum: LEB number to write
  162. * @buf: buffer to write from
  163. * @len: length to write
  164. * @dtype: data type
  165. *
  166. * This function returns %0 on success and a negative error code on failure.
  167. */
  168. static inline int ubifs_leb_change(const struct ubifs_info *c, int lnum,
  169. const void *buf, int len, int dtype)
  170. {
  171. int err;
  172. ubifs_assert(!c->ro_media && !c->ro_mount);
  173. if (c->ro_error)
  174. return -EROFS;
  175. err = ubi_leb_change(c->ubi, lnum, buf, len, dtype);
  176. if (err) {
  177. ubifs_err("changing %d bytes in LEB %d, error %d",
  178. len, lnum, err);
  179. return err;
  180. }
  181. return 0;
  182. }
  183. /**
  184. * ubifs_encode_dev - encode device node IDs.
  185. * @dev: UBIFS device node information
  186. * @rdev: device IDs to encode
  187. *
  188. * This is a helper function which encodes major/minor numbers of a device node
  189. * into UBIFS device node description. We use standard Linux "new" and "huge"
  190. * encodings.
  191. */
  192. static inline int ubifs_encode_dev(union ubifs_dev_desc *dev, dev_t rdev)
  193. {
  194. if (new_valid_dev(rdev)) {
  195. dev->new = cpu_to_le32(new_encode_dev(rdev));
  196. return sizeof(dev->new);
  197. } else {
  198. dev->huge = cpu_to_le64(huge_encode_dev(rdev));
  199. return sizeof(dev->huge);
  200. }
  201. }
  202. /**
  203. * ubifs_add_dirt - add dirty space to LEB properties.
  204. * @c: the UBIFS file-system description object
  205. * @lnum: LEB to add dirty space for
  206. * @dirty: dirty space to add
  207. *
  208. * This is a helper function which increased amount of dirty LEB space. Returns
  209. * zero in case of success and a negative error code in case of failure.
  210. */
  211. static inline int ubifs_add_dirt(struct ubifs_info *c, int lnum, int dirty)
  212. {
  213. return ubifs_update_one_lp(c, lnum, LPROPS_NC, dirty, 0, 0);
  214. }
  215. /**
  216. * ubifs_return_leb - return LEB to lprops.
  217. * @c: the UBIFS file-system description object
  218. * @lnum: LEB to return
  219. *
  220. * This helper function cleans the "taken" flag of a logical eraseblock in the
  221. * lprops. Returns zero in case of success and a negative error code in case of
  222. * failure.
  223. */
  224. static inline int ubifs_return_leb(struct ubifs_info *c, int lnum)
  225. {
  226. return ubifs_change_one_lp(c, lnum, LPROPS_NC, LPROPS_NC, 0,
  227. LPROPS_TAKEN, 0);
  228. }
  229. /**
  230. * ubifs_idx_node_sz - return index node size.
  231. * @c: the UBIFS file-system description object
  232. * @child_cnt: number of children of this index node
  233. */
  234. static inline int ubifs_idx_node_sz(const struct ubifs_info *c, int child_cnt)
  235. {
  236. return UBIFS_IDX_NODE_SZ + (UBIFS_BRANCH_SZ + c->key_len) * child_cnt;
  237. }
  238. /**
  239. * ubifs_idx_branch - return pointer to an index branch.
  240. * @c: the UBIFS file-system description object
  241. * @idx: index node
  242. * @bnum: branch number
  243. */
  244. static inline
  245. struct ubifs_branch *ubifs_idx_branch(const struct ubifs_info *c,
  246. const struct ubifs_idx_node *idx,
  247. int bnum)
  248. {
  249. return (struct ubifs_branch *)((void *)idx->branches +
  250. (UBIFS_BRANCH_SZ + c->key_len) * bnum);
  251. }
  252. /**
  253. * ubifs_idx_key - return pointer to an index key.
  254. * @c: the UBIFS file-system description object
  255. * @idx: index node
  256. */
  257. static inline void *ubifs_idx_key(const struct ubifs_info *c,
  258. const struct ubifs_idx_node *idx)
  259. {
  260. return (void *)((struct ubifs_branch *)idx->branches)->key;
  261. }
  262. /**
  263. * ubifs_current_time - round current time to time granularity.
  264. * @inode: inode
  265. */
  266. static inline struct timespec ubifs_current_time(struct inode *inode)
  267. {
  268. return (inode->i_sb->s_time_gran < NSEC_PER_SEC) ?
  269. current_fs_time(inode->i_sb) : CURRENT_TIME_SEC;
  270. }
  271. /**
  272. * ubifs_tnc_lookup - look up a file-system node.
  273. * @c: UBIFS file-system description object
  274. * @key: node key to lookup
  275. * @node: the node is returned here
  276. *
  277. * This function look up and reads node with key @key. The caller has to make
  278. * sure the @node buffer is large enough to fit the node. Returns zero in case
  279. * of success, %-ENOENT if the node was not found, and a negative error code in
  280. * case of failure.
  281. */
  282. static inline int ubifs_tnc_lookup(struct ubifs_info *c,
  283. const union ubifs_key *key, void *node)
  284. {
  285. return ubifs_tnc_locate(c, key, node, NULL, NULL);
  286. }
  287. /**
  288. * ubifs_get_lprops - get reference to LEB properties.
  289. * @c: the UBIFS file-system description object
  290. *
  291. * This function locks lprops. Lprops have to be unlocked by
  292. * 'ubifs_release_lprops()'.
  293. */
  294. static inline void ubifs_get_lprops(struct ubifs_info *c)
  295. {
  296. mutex_lock(&c->lp_mutex);
  297. }
  298. /**
  299. * ubifs_release_lprops - release lprops lock.
  300. * @c: the UBIFS file-system description object
  301. *
  302. * This function has to be called after each 'ubifs_get_lprops()' call to
  303. * unlock lprops.
  304. */
  305. static inline void ubifs_release_lprops(struct ubifs_info *c)
  306. {
  307. ubifs_assert(mutex_is_locked(&c->lp_mutex));
  308. ubifs_assert(c->lst.empty_lebs >= 0 &&
  309. c->lst.empty_lebs <= c->main_lebs);
  310. mutex_unlock(&c->lp_mutex);
  311. }
  312. /**
  313. * ubifs_next_log_lnum - switch to the next log LEB.
  314. * @c: UBIFS file-system description object
  315. * @lnum: current log LEB
  316. *
  317. * This helper function returns the log LEB number which goes next after LEB
  318. * 'lnum'.
  319. */
  320. static inline int ubifs_next_log_lnum(const struct ubifs_info *c, int lnum)
  321. {
  322. lnum += 1;
  323. if (lnum > c->log_last)
  324. lnum = UBIFS_LOG_LNUM;
  325. return lnum;
  326. }
  327. #endif /* __UBIFS_MISC_H__ */