inode.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/slab.h>
  10. #include <linux/spinlock.h>
  11. #include <linux/completion.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/namei.h>
  14. #include <linux/mm.h>
  15. #include <linux/xattr.h>
  16. #include <linux/posix_acl.h>
  17. #include <linux/gfs2_ondisk.h>
  18. #include <linux/crc32.h>
  19. #include <linux/fiemap.h>
  20. #include <linux/security.h>
  21. #include <asm/uaccess.h>
  22. #include "gfs2.h"
  23. #include "incore.h"
  24. #include "acl.h"
  25. #include "bmap.h"
  26. #include "dir.h"
  27. #include "xattr.h"
  28. #include "glock.h"
  29. #include "inode.h"
  30. #include "meta_io.h"
  31. #include "quota.h"
  32. #include "rgrp.h"
  33. #include "trans.h"
  34. #include "util.h"
  35. #include "super.h"
  36. #include "glops.h"
  37. struct gfs2_skip_data {
  38. u64 no_addr;
  39. int skipped;
  40. int non_block;
  41. };
  42. static int iget_test(struct inode *inode, void *opaque)
  43. {
  44. struct gfs2_inode *ip = GFS2_I(inode);
  45. struct gfs2_skip_data *data = opaque;
  46. if (ip->i_no_addr == data->no_addr) {
  47. if (data->non_block &&
  48. inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
  49. data->skipped = 1;
  50. return 0;
  51. }
  52. return 1;
  53. }
  54. return 0;
  55. }
  56. static int iget_set(struct inode *inode, void *opaque)
  57. {
  58. struct gfs2_inode *ip = GFS2_I(inode);
  59. struct gfs2_skip_data *data = opaque;
  60. if (data->skipped)
  61. return -ENOENT;
  62. inode->i_ino = (unsigned long)(data->no_addr);
  63. ip->i_no_addr = data->no_addr;
  64. return 0;
  65. }
  66. struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr, int non_block)
  67. {
  68. unsigned long hash = (unsigned long)no_addr;
  69. struct gfs2_skip_data data;
  70. data.no_addr = no_addr;
  71. data.skipped = 0;
  72. data.non_block = non_block;
  73. return ilookup5(sb, hash, iget_test, &data);
  74. }
  75. static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr,
  76. int non_block)
  77. {
  78. struct gfs2_skip_data data;
  79. unsigned long hash = (unsigned long)no_addr;
  80. data.no_addr = no_addr;
  81. data.skipped = 0;
  82. data.non_block = non_block;
  83. return iget5_locked(sb, hash, iget_test, iget_set, &data);
  84. }
  85. /**
  86. * gfs2_set_iop - Sets inode operations
  87. * @inode: The inode with correct i_mode filled in
  88. *
  89. * GFS2 lookup code fills in vfs inode contents based on info obtained
  90. * from directory entry inside gfs2_inode_lookup().
  91. */
  92. static void gfs2_set_iop(struct inode *inode)
  93. {
  94. struct gfs2_sbd *sdp = GFS2_SB(inode);
  95. umode_t mode = inode->i_mode;
  96. if (S_ISREG(mode)) {
  97. inode->i_op = &gfs2_file_iops;
  98. if (gfs2_localflocks(sdp))
  99. inode->i_fop = &gfs2_file_fops_nolock;
  100. else
  101. inode->i_fop = &gfs2_file_fops;
  102. } else if (S_ISDIR(mode)) {
  103. inode->i_op = &gfs2_dir_iops;
  104. if (gfs2_localflocks(sdp))
  105. inode->i_fop = &gfs2_dir_fops_nolock;
  106. else
  107. inode->i_fop = &gfs2_dir_fops;
  108. } else if (S_ISLNK(mode)) {
  109. inode->i_op = &gfs2_symlink_iops;
  110. } else {
  111. inode->i_op = &gfs2_file_iops;
  112. init_special_inode(inode, inode->i_mode, inode->i_rdev);
  113. }
  114. }
  115. /**
  116. * gfs2_inode_lookup - Lookup an inode
  117. * @sb: The super block
  118. * @no_addr: The inode number
  119. * @type: The type of the inode
  120. * non_block: Can we block on inodes that are being freed?
  121. *
  122. * Returns: A VFS inode, or an error
  123. */
  124. struct inode *gfs2_inode_lookup(struct super_block *sb, unsigned int type,
  125. u64 no_addr, u64 no_formal_ino, int non_block)
  126. {
  127. struct inode *inode;
  128. struct gfs2_inode *ip;
  129. struct gfs2_glock *io_gl = NULL;
  130. int error;
  131. inode = gfs2_iget(sb, no_addr, non_block);
  132. ip = GFS2_I(inode);
  133. if (!inode)
  134. return ERR_PTR(-ENOBUFS);
  135. if (inode->i_state & I_NEW) {
  136. struct gfs2_sbd *sdp = GFS2_SB(inode);
  137. ip->i_no_formal_ino = no_formal_ino;
  138. error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
  139. if (unlikely(error))
  140. goto fail;
  141. ip->i_gl->gl_object = ip;
  142. error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
  143. if (unlikely(error))
  144. goto fail_put;
  145. set_bit(GIF_INVALID, &ip->i_flags);
  146. error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
  147. if (unlikely(error))
  148. goto fail_iopen;
  149. ip->i_iopen_gh.gh_gl->gl_object = ip;
  150. gfs2_glock_put(io_gl);
  151. io_gl = NULL;
  152. if (type == DT_UNKNOWN) {
  153. /* Inode glock must be locked already */
  154. error = gfs2_inode_refresh(GFS2_I(inode));
  155. if (error)
  156. goto fail_refresh;
  157. } else {
  158. inode->i_mode = DT2IF(type);
  159. }
  160. gfs2_set_iop(inode);
  161. unlock_new_inode(inode);
  162. }
  163. return inode;
  164. fail_refresh:
  165. ip->i_iopen_gh.gh_flags |= GL_NOCACHE;
  166. ip->i_iopen_gh.gh_gl->gl_object = NULL;
  167. gfs2_glock_dq_uninit(&ip->i_iopen_gh);
  168. fail_iopen:
  169. if (io_gl)
  170. gfs2_glock_put(io_gl);
  171. fail_put:
  172. ip->i_gl->gl_object = NULL;
  173. gfs2_glock_put(ip->i_gl);
  174. fail:
  175. iget_failed(inode);
  176. return ERR_PTR(error);
  177. }
  178. struct inode *gfs2_lookup_by_inum(struct gfs2_sbd *sdp, u64 no_addr,
  179. u64 *no_formal_ino, unsigned int blktype)
  180. {
  181. struct super_block *sb = sdp->sd_vfs;
  182. struct gfs2_holder i_gh;
  183. struct inode *inode = NULL;
  184. int error;
  185. /* Must not read in block until block type is verified */
  186. error = gfs2_glock_nq_num(sdp, no_addr, &gfs2_inode_glops,
  187. LM_ST_EXCLUSIVE, GL_SKIP, &i_gh);
  188. if (error)
  189. return ERR_PTR(error);
  190. error = gfs2_check_blk_type(sdp, no_addr, blktype);
  191. if (error)
  192. goto fail;
  193. inode = gfs2_inode_lookup(sb, DT_UNKNOWN, no_addr, 0, 1);
  194. if (IS_ERR(inode))
  195. goto fail;
  196. /* Two extra checks for NFS only */
  197. if (no_formal_ino) {
  198. error = -ESTALE;
  199. if (GFS2_I(inode)->i_no_formal_ino != *no_formal_ino)
  200. goto fail_iput;
  201. error = -EIO;
  202. if (GFS2_I(inode)->i_diskflags & GFS2_DIF_SYSTEM)
  203. goto fail_iput;
  204. error = 0;
  205. }
  206. fail:
  207. gfs2_glock_dq_uninit(&i_gh);
  208. return error ? ERR_PTR(error) : inode;
  209. fail_iput:
  210. iput(inode);
  211. goto fail;
  212. }
  213. struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
  214. {
  215. struct qstr qstr;
  216. struct inode *inode;
  217. gfs2_str2qstr(&qstr, name);
  218. inode = gfs2_lookupi(dip, &qstr, 1);
  219. /* gfs2_lookupi has inconsistent callers: vfs
  220. * related routines expect NULL for no entry found,
  221. * gfs2_lookup_simple callers expect ENOENT
  222. * and do not check for NULL.
  223. */
  224. if (inode == NULL)
  225. return ERR_PTR(-ENOENT);
  226. else
  227. return inode;
  228. }
  229. /**
  230. * gfs2_lookupi - Look up a filename in a directory and return its inode
  231. * @d_gh: An initialized holder for the directory glock
  232. * @name: The name of the inode to look for
  233. * @is_root: If 1, ignore the caller's permissions
  234. * @i_gh: An uninitialized holder for the new inode glock
  235. *
  236. * This can be called via the VFS filldir function when NFS is doing
  237. * a readdirplus and the inode which its intending to stat isn't
  238. * already in cache. In this case we must not take the directory glock
  239. * again, since the readdir call will have already taken that lock.
  240. *
  241. * Returns: errno
  242. */
  243. struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
  244. int is_root)
  245. {
  246. struct super_block *sb = dir->i_sb;
  247. struct gfs2_inode *dip = GFS2_I(dir);
  248. struct gfs2_holder d_gh;
  249. int error = 0;
  250. struct inode *inode = NULL;
  251. int unlock = 0;
  252. if (!name->len || name->len > GFS2_FNAMESIZE)
  253. return ERR_PTR(-ENAMETOOLONG);
  254. if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
  255. (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
  256. dir == sb->s_root->d_inode)) {
  257. igrab(dir);
  258. return dir;
  259. }
  260. if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
  261. error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
  262. if (error)
  263. return ERR_PTR(error);
  264. unlock = 1;
  265. }
  266. if (!is_root) {
  267. error = gfs2_permission(dir, MAY_EXEC);
  268. if (error)
  269. goto out;
  270. }
  271. inode = gfs2_dir_search(dir, name, false);
  272. if (IS_ERR(inode))
  273. error = PTR_ERR(inode);
  274. out:
  275. if (unlock)
  276. gfs2_glock_dq_uninit(&d_gh);
  277. if (error == -ENOENT)
  278. return NULL;
  279. return inode ? inode : ERR_PTR(error);
  280. }
  281. /**
  282. * create_ok - OK to create a new on-disk inode here?
  283. * @dip: Directory in which dinode is to be created
  284. * @name: Name of new dinode
  285. * @mode:
  286. *
  287. * Returns: errno
  288. */
  289. static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
  290. umode_t mode)
  291. {
  292. int error;
  293. error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
  294. if (error)
  295. return error;
  296. /* Don't create entries in an unlinked directory */
  297. if (!dip->i_inode.i_nlink)
  298. return -ENOENT;
  299. if (dip->i_entries == (u32)-1)
  300. return -EFBIG;
  301. if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
  302. return -EMLINK;
  303. return 0;
  304. }
  305. static void munge_mode_uid_gid(const struct gfs2_inode *dip,
  306. struct inode *inode)
  307. {
  308. if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
  309. (dip->i_inode.i_mode & S_ISUID) &&
  310. !uid_eq(dip->i_inode.i_uid, GLOBAL_ROOT_UID)) {
  311. if (S_ISDIR(inode->i_mode))
  312. inode->i_mode |= S_ISUID;
  313. else if (!uid_eq(dip->i_inode.i_uid, current_fsuid()))
  314. inode->i_mode &= ~07111;
  315. inode->i_uid = dip->i_inode.i_uid;
  316. } else
  317. inode->i_uid = current_fsuid();
  318. if (dip->i_inode.i_mode & S_ISGID) {
  319. if (S_ISDIR(inode->i_mode))
  320. inode->i_mode |= S_ISGID;
  321. inode->i_gid = dip->i_inode.i_gid;
  322. } else
  323. inode->i_gid = current_fsgid();
  324. }
  325. static int alloc_dinode(struct gfs2_inode *ip, u32 flags)
  326. {
  327. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  328. int error;
  329. int dblocks = 1;
  330. error = gfs2_quota_lock_check(ip);
  331. if (error)
  332. goto out;
  333. error = gfs2_inplace_reserve(ip, RES_DINODE, flags);
  334. if (error)
  335. goto out_quota;
  336. error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 0);
  337. if (error)
  338. goto out_ipreserv;
  339. error = gfs2_alloc_blocks(ip, &ip->i_no_addr, &dblocks, 1, &ip->i_generation);
  340. ip->i_no_formal_ino = ip->i_generation;
  341. ip->i_inode.i_ino = ip->i_no_addr;
  342. ip->i_goal = ip->i_no_addr;
  343. gfs2_trans_end(sdp);
  344. out_ipreserv:
  345. gfs2_inplace_release(ip);
  346. out_quota:
  347. gfs2_quota_unlock(ip);
  348. out:
  349. return error;
  350. }
  351. static void gfs2_init_dir(struct buffer_head *dibh,
  352. const struct gfs2_inode *parent)
  353. {
  354. struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data;
  355. struct gfs2_dirent *dent = (struct gfs2_dirent *)(di+1);
  356. gfs2_qstr2dirent(&gfs2_qdot, GFS2_DIRENT_SIZE(gfs2_qdot.len), dent);
  357. dent->de_inum = di->di_num; /* already GFS2 endian */
  358. dent->de_type = cpu_to_be16(DT_DIR);
  359. dent = (struct gfs2_dirent *)((char*)dent + GFS2_DIRENT_SIZE(1));
  360. gfs2_qstr2dirent(&gfs2_qdotdot, dibh->b_size - GFS2_DIRENT_SIZE(1) - sizeof(struct gfs2_dinode), dent);
  361. gfs2_inum_out(parent, dent);
  362. dent->de_type = cpu_to_be16(DT_DIR);
  363. }
  364. /**
  365. * init_dinode - Fill in a new dinode structure
  366. * @dip: The directory this inode is being created in
  367. * @ip: The inode
  368. * @symname: The symlink destination (if a symlink)
  369. * @bhp: The buffer head (returned to caller)
  370. *
  371. */
  372. static void init_dinode(struct gfs2_inode *dip, struct gfs2_inode *ip,
  373. const char *symname)
  374. {
  375. struct gfs2_dinode *di;
  376. struct buffer_head *dibh;
  377. dibh = gfs2_meta_new(ip->i_gl, ip->i_no_addr);
  378. gfs2_trans_add_meta(ip->i_gl, dibh);
  379. di = (struct gfs2_dinode *)dibh->b_data;
  380. gfs2_dinode_out(ip, di);
  381. di->di_major = cpu_to_be32(MAJOR(ip->i_inode.i_rdev));
  382. di->di_minor = cpu_to_be32(MINOR(ip->i_inode.i_rdev));
  383. di->__pad1 = 0;
  384. di->__pad2 = 0;
  385. di->__pad3 = 0;
  386. memset(&di->__pad4, 0, sizeof(di->__pad4));
  387. memset(&di->di_reserved, 0, sizeof(di->di_reserved));
  388. gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
  389. switch(ip->i_inode.i_mode & S_IFMT) {
  390. case S_IFDIR:
  391. gfs2_init_dir(dibh, dip);
  392. break;
  393. case S_IFLNK:
  394. memcpy(dibh->b_data + sizeof(struct gfs2_dinode), symname, ip->i_inode.i_size);
  395. break;
  396. }
  397. set_buffer_uptodate(dibh);
  398. brelse(dibh);
  399. }
  400. static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
  401. struct gfs2_inode *ip, int arq)
  402. {
  403. struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
  404. int error;
  405. if (arq) {
  406. error = gfs2_quota_lock_check(dip);
  407. if (error)
  408. goto fail_quota_locks;
  409. error = gfs2_inplace_reserve(dip, sdp->sd_max_dirres, 0);
  410. if (error)
  411. goto fail_quota_locks;
  412. error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
  413. dip->i_rgd->rd_length +
  414. 2 * RES_DINODE +
  415. RES_STATFS + RES_QUOTA, 0);
  416. if (error)
  417. goto fail_ipreserv;
  418. } else {
  419. error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
  420. if (error)
  421. goto fail_quota_locks;
  422. }
  423. error = gfs2_dir_add(&dip->i_inode, name, ip);
  424. if (error)
  425. goto fail_end_trans;
  426. fail_end_trans:
  427. gfs2_trans_end(sdp);
  428. fail_ipreserv:
  429. gfs2_inplace_release(dip);
  430. fail_quota_locks:
  431. gfs2_quota_unlock(dip);
  432. return error;
  433. }
  434. static int gfs2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
  435. void *fs_info)
  436. {
  437. const struct xattr *xattr;
  438. int err = 0;
  439. for (xattr = xattr_array; xattr->name != NULL; xattr++) {
  440. err = __gfs2_xattr_set(inode, xattr->name, xattr->value,
  441. xattr->value_len, 0,
  442. GFS2_EATYPE_SECURITY);
  443. if (err < 0)
  444. break;
  445. }
  446. return err;
  447. }
  448. static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip,
  449. const struct qstr *qstr)
  450. {
  451. return security_inode_init_security(&ip->i_inode, &dip->i_inode, qstr,
  452. &gfs2_initxattrs, NULL);
  453. }
  454. /**
  455. * gfs2_create_inode - Create a new inode
  456. * @dir: The parent directory
  457. * @dentry: The new dentry
  458. * @file: If non-NULL, the file which is being opened
  459. * @mode: The permissions on the new inode
  460. * @dev: For device nodes, this is the device number
  461. * @symname: For symlinks, this is the link destination
  462. * @size: The initial size of the inode (ignored for directories)
  463. *
  464. * Returns: 0 on success, or error code
  465. */
  466. static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
  467. struct file *file,
  468. umode_t mode, dev_t dev, const char *symname,
  469. unsigned int size, int excl, int *opened)
  470. {
  471. const struct qstr *name = &dentry->d_name;
  472. struct gfs2_holder ghs[2];
  473. struct inode *inode = NULL;
  474. struct gfs2_inode *dip = GFS2_I(dir), *ip;
  475. struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
  476. struct gfs2_glock *io_gl;
  477. struct dentry *d;
  478. int error;
  479. u32 aflags = 0;
  480. int arq;
  481. if (!name->len || name->len > GFS2_FNAMESIZE)
  482. return -ENAMETOOLONG;
  483. error = gfs2_rs_alloc(dip);
  484. if (error)
  485. return error;
  486. error = gfs2_rindex_update(sdp);
  487. if (error)
  488. return error;
  489. error = gfs2_glock_nq_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
  490. if (error)
  491. goto fail;
  492. error = create_ok(dip, name, mode);
  493. if (error)
  494. goto fail_gunlock;
  495. inode = gfs2_dir_search(dir, &dentry->d_name, !S_ISREG(mode) || excl);
  496. error = PTR_ERR(inode);
  497. if (!IS_ERR(inode)) {
  498. d = d_splice_alias(inode, dentry);
  499. error = 0;
  500. if (file && !IS_ERR(d)) {
  501. if (d == NULL)
  502. d = dentry;
  503. if (S_ISREG(inode->i_mode))
  504. error = finish_open(file, d, gfs2_open_common, opened);
  505. else
  506. error = finish_no_open(file, d);
  507. }
  508. gfs2_glock_dq_uninit(ghs);
  509. if (IS_ERR(d))
  510. return PTR_RET(d);
  511. return error;
  512. } else if (error != -ENOENT) {
  513. goto fail_gunlock;
  514. }
  515. arq = error = gfs2_diradd_alloc_required(dir, name);
  516. if (error < 0)
  517. goto fail_gunlock;
  518. inode = new_inode(sdp->sd_vfs);
  519. error = -ENOMEM;
  520. if (!inode)
  521. goto fail_gunlock;
  522. ip = GFS2_I(inode);
  523. error = gfs2_rs_alloc(ip);
  524. if (error)
  525. goto fail_free_inode;
  526. inode->i_mode = mode;
  527. set_nlink(inode, S_ISDIR(mode) ? 2 : 1);
  528. inode->i_rdev = dev;
  529. inode->i_size = size;
  530. inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  531. gfs2_set_inode_blocks(inode, 1);
  532. munge_mode_uid_gid(dip, inode);
  533. ip->i_goal = dip->i_goal;
  534. ip->i_diskflags = 0;
  535. ip->i_eattr = 0;
  536. ip->i_height = 0;
  537. ip->i_depth = 0;
  538. ip->i_entries = 0;
  539. switch(mode & S_IFMT) {
  540. case S_IFREG:
  541. if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
  542. gfs2_tune_get(sdp, gt_new_files_jdata))
  543. ip->i_diskflags |= GFS2_DIF_JDATA;
  544. gfs2_set_aops(inode);
  545. break;
  546. case S_IFDIR:
  547. ip->i_diskflags |= (dip->i_diskflags & GFS2_DIF_INHERIT_JDATA);
  548. ip->i_diskflags |= GFS2_DIF_JDATA;
  549. ip->i_entries = 2;
  550. break;
  551. }
  552. gfs2_set_inode_flags(inode);
  553. if ((GFS2_I(sdp->sd_root_dir->d_inode) == dip) ||
  554. (dip->i_diskflags & GFS2_DIF_TOPDIR))
  555. aflags |= GFS2_AF_ORLOV;
  556. error = alloc_dinode(ip, aflags);
  557. if (error)
  558. goto fail_free_inode;
  559. error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
  560. if (error)
  561. goto fail_free_inode;
  562. ip->i_gl->gl_object = ip;
  563. error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
  564. if (error)
  565. goto fail_free_inode;
  566. error = gfs2_trans_begin(sdp, RES_DINODE, 0);
  567. if (error)
  568. goto fail_gunlock2;
  569. init_dinode(dip, ip, symname);
  570. gfs2_trans_end(sdp);
  571. error = gfs2_glock_get(sdp, ip->i_no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
  572. if (error)
  573. goto fail_gunlock2;
  574. error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
  575. if (error)
  576. goto fail_gunlock2;
  577. ip->i_iopen_gh.gh_gl->gl_object = ip;
  578. gfs2_glock_put(io_gl);
  579. gfs2_set_iop(inode);
  580. insert_inode_hash(inode);
  581. error = gfs2_acl_create(dip, inode);
  582. if (error)
  583. goto fail_gunlock3;
  584. error = gfs2_security_init(dip, ip, name);
  585. if (error)
  586. goto fail_gunlock3;
  587. error = link_dinode(dip, name, ip, arq);
  588. if (error)
  589. goto fail_gunlock3;
  590. mark_inode_dirty(inode);
  591. d_instantiate(dentry, inode);
  592. if (file)
  593. error = finish_open(file, dentry, gfs2_open_common, opened);
  594. gfs2_glock_dq_uninit(ghs);
  595. gfs2_glock_dq_uninit(ghs + 1);
  596. return error;
  597. fail_gunlock3:
  598. gfs2_glock_dq_uninit(ghs + 1);
  599. if (ip->i_gl)
  600. gfs2_glock_put(ip->i_gl);
  601. goto fail_gunlock;
  602. fail_gunlock2:
  603. gfs2_glock_dq_uninit(ghs + 1);
  604. fail_free_inode:
  605. if (ip->i_gl)
  606. gfs2_glock_put(ip->i_gl);
  607. gfs2_rs_delete(ip);
  608. free_inode_nonrcu(inode);
  609. inode = NULL;
  610. fail_gunlock:
  611. gfs2_glock_dq_uninit(ghs);
  612. if (inode && !IS_ERR(inode)) {
  613. clear_nlink(inode);
  614. mark_inode_dirty(inode);
  615. set_bit(GIF_ALLOC_FAILED, &GFS2_I(inode)->i_flags);
  616. iput(inode);
  617. }
  618. fail:
  619. return error;
  620. }
  621. /**
  622. * gfs2_create - Create a file
  623. * @dir: The directory in which to create the file
  624. * @dentry: The dentry of the new file
  625. * @mode: The mode of the new file
  626. *
  627. * Returns: errno
  628. */
  629. static int gfs2_create(struct inode *dir, struct dentry *dentry,
  630. umode_t mode, bool excl)
  631. {
  632. return gfs2_create_inode(dir, dentry, NULL, S_IFREG | mode, 0, NULL, 0, excl, NULL);
  633. }
  634. /**
  635. * __gfs2_lookup - Look up a filename in a directory and return its inode
  636. * @dir: The directory inode
  637. * @dentry: The dentry of the new inode
  638. * @file: File to be opened
  639. * @opened: atomic_open flags
  640. *
  641. *
  642. * Returns: errno
  643. */
  644. static struct dentry *__gfs2_lookup(struct inode *dir, struct dentry *dentry,
  645. struct file *file, int *opened)
  646. {
  647. struct inode *inode;
  648. struct dentry *d;
  649. struct gfs2_holder gh;
  650. struct gfs2_glock *gl;
  651. int error;
  652. inode = gfs2_lookupi(dir, &dentry->d_name, 0);
  653. if (!inode)
  654. return NULL;
  655. if (IS_ERR(inode))
  656. return ERR_CAST(inode);
  657. gl = GFS2_I(inode)->i_gl;
  658. error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
  659. if (error) {
  660. iput(inode);
  661. return ERR_PTR(error);
  662. }
  663. d = d_splice_alias(inode, dentry);
  664. if (file && S_ISREG(inode->i_mode))
  665. error = finish_open(file, dentry, gfs2_open_common, opened);
  666. gfs2_glock_dq_uninit(&gh);
  667. if (error)
  668. return ERR_PTR(error);
  669. return d;
  670. }
  671. static struct dentry *gfs2_lookup(struct inode *dir, struct dentry *dentry,
  672. unsigned flags)
  673. {
  674. return __gfs2_lookup(dir, dentry, NULL, NULL);
  675. }
  676. /**
  677. * gfs2_link - Link to a file
  678. * @old_dentry: The inode to link
  679. * @dir: Add link to this directory
  680. * @dentry: The name of the link
  681. *
  682. * Link the inode in "old_dentry" into the directory "dir" with the
  683. * name in "dentry".
  684. *
  685. * Returns: errno
  686. */
  687. static int gfs2_link(struct dentry *old_dentry, struct inode *dir,
  688. struct dentry *dentry)
  689. {
  690. struct gfs2_inode *dip = GFS2_I(dir);
  691. struct gfs2_sbd *sdp = GFS2_SB(dir);
  692. struct inode *inode = old_dentry->d_inode;
  693. struct gfs2_inode *ip = GFS2_I(inode);
  694. struct gfs2_holder ghs[2];
  695. struct buffer_head *dibh;
  696. int alloc_required;
  697. int error;
  698. if (S_ISDIR(inode->i_mode))
  699. return -EPERM;
  700. error = gfs2_rs_alloc(dip);
  701. if (error)
  702. return error;
  703. gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
  704. gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
  705. error = gfs2_glock_nq(ghs); /* parent */
  706. if (error)
  707. goto out_parent;
  708. error = gfs2_glock_nq(ghs + 1); /* child */
  709. if (error)
  710. goto out_child;
  711. error = -ENOENT;
  712. if (inode->i_nlink == 0)
  713. goto out_gunlock;
  714. error = gfs2_permission(dir, MAY_WRITE | MAY_EXEC);
  715. if (error)
  716. goto out_gunlock;
  717. error = gfs2_dir_check(dir, &dentry->d_name, NULL);
  718. switch (error) {
  719. case -ENOENT:
  720. break;
  721. case 0:
  722. error = -EEXIST;
  723. default:
  724. goto out_gunlock;
  725. }
  726. error = -EINVAL;
  727. if (!dip->i_inode.i_nlink)
  728. goto out_gunlock;
  729. error = -EFBIG;
  730. if (dip->i_entries == (u32)-1)
  731. goto out_gunlock;
  732. error = -EPERM;
  733. if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
  734. goto out_gunlock;
  735. error = -EINVAL;
  736. if (!ip->i_inode.i_nlink)
  737. goto out_gunlock;
  738. error = -EMLINK;
  739. if (ip->i_inode.i_nlink == (u32)-1)
  740. goto out_gunlock;
  741. alloc_required = error = gfs2_diradd_alloc_required(dir, &dentry->d_name);
  742. if (error < 0)
  743. goto out_gunlock;
  744. error = 0;
  745. if (alloc_required) {
  746. error = gfs2_quota_lock_check(dip);
  747. if (error)
  748. goto out_gunlock;
  749. error = gfs2_inplace_reserve(dip, sdp->sd_max_dirres, 0);
  750. if (error)
  751. goto out_gunlock_q;
  752. error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
  753. gfs2_rg_blocks(dip, sdp->sd_max_dirres) +
  754. 2 * RES_DINODE + RES_STATFS +
  755. RES_QUOTA, 0);
  756. if (error)
  757. goto out_ipres;
  758. } else {
  759. error = gfs2_trans_begin(sdp, 2 * RES_DINODE + RES_LEAF, 0);
  760. if (error)
  761. goto out_ipres;
  762. }
  763. error = gfs2_meta_inode_buffer(ip, &dibh);
  764. if (error)
  765. goto out_end_trans;
  766. error = gfs2_dir_add(dir, &dentry->d_name, ip);
  767. if (error)
  768. goto out_brelse;
  769. gfs2_trans_add_meta(ip->i_gl, dibh);
  770. inc_nlink(&ip->i_inode);
  771. ip->i_inode.i_ctime = CURRENT_TIME;
  772. ihold(inode);
  773. d_instantiate(dentry, inode);
  774. mark_inode_dirty(inode);
  775. out_brelse:
  776. brelse(dibh);
  777. out_end_trans:
  778. gfs2_trans_end(sdp);
  779. out_ipres:
  780. if (alloc_required)
  781. gfs2_inplace_release(dip);
  782. out_gunlock_q:
  783. if (alloc_required)
  784. gfs2_quota_unlock(dip);
  785. out_gunlock:
  786. gfs2_glock_dq(ghs + 1);
  787. out_child:
  788. gfs2_glock_dq(ghs);
  789. out_parent:
  790. gfs2_holder_uninit(ghs);
  791. gfs2_holder_uninit(ghs + 1);
  792. return error;
  793. }
  794. /*
  795. * gfs2_unlink_ok - check to see that a inode is still in a directory
  796. * @dip: the directory
  797. * @name: the name of the file
  798. * @ip: the inode
  799. *
  800. * Assumes that the lock on (at least) @dip is held.
  801. *
  802. * Returns: 0 if the parent/child relationship is correct, errno if it isn't
  803. */
  804. static int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
  805. const struct gfs2_inode *ip)
  806. {
  807. int error;
  808. if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
  809. return -EPERM;
  810. if ((dip->i_inode.i_mode & S_ISVTX) &&
  811. !uid_eq(dip->i_inode.i_uid, current_fsuid()) &&
  812. !uid_eq(ip->i_inode.i_uid, current_fsuid()) && !capable(CAP_FOWNER))
  813. return -EPERM;
  814. if (IS_APPEND(&dip->i_inode))
  815. return -EPERM;
  816. error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
  817. if (error)
  818. return error;
  819. error = gfs2_dir_check(&dip->i_inode, name, ip);
  820. if (error)
  821. return error;
  822. return 0;
  823. }
  824. /**
  825. * gfs2_unlink_inode - Removes an inode from its parent dir and unlinks it
  826. * @dip: The parent directory
  827. * @name: The name of the entry in the parent directory
  828. * @inode: The inode to be removed
  829. *
  830. * Called with all the locks and in a transaction. This will only be
  831. * called for a directory after it has been checked to ensure it is empty.
  832. *
  833. * Returns: 0 on success, or an error
  834. */
  835. static int gfs2_unlink_inode(struct gfs2_inode *dip,
  836. const struct dentry *dentry)
  837. {
  838. struct inode *inode = dentry->d_inode;
  839. struct gfs2_inode *ip = GFS2_I(inode);
  840. int error;
  841. error = gfs2_dir_del(dip, dentry);
  842. if (error)
  843. return error;
  844. ip->i_entries = 0;
  845. inode->i_ctime = CURRENT_TIME;
  846. if (S_ISDIR(inode->i_mode))
  847. clear_nlink(inode);
  848. else
  849. drop_nlink(inode);
  850. mark_inode_dirty(inode);
  851. if (inode->i_nlink == 0)
  852. gfs2_unlink_di(inode);
  853. return 0;
  854. }
  855. /**
  856. * gfs2_unlink - Unlink an inode (this does rmdir as well)
  857. * @dir: The inode of the directory containing the inode to unlink
  858. * @dentry: The file itself
  859. *
  860. * This routine uses the type of the inode as a flag to figure out
  861. * whether this is an unlink or an rmdir.
  862. *
  863. * Returns: errno
  864. */
  865. static int gfs2_unlink(struct inode *dir, struct dentry *dentry)
  866. {
  867. struct gfs2_inode *dip = GFS2_I(dir);
  868. struct gfs2_sbd *sdp = GFS2_SB(dir);
  869. struct inode *inode = dentry->d_inode;
  870. struct gfs2_inode *ip = GFS2_I(inode);
  871. struct gfs2_holder ghs[3];
  872. struct gfs2_rgrpd *rgd;
  873. int error;
  874. error = gfs2_rindex_update(sdp);
  875. if (error)
  876. return error;
  877. error = -EROFS;
  878. gfs2_holder_init(dip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
  879. gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + 1);
  880. rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1);
  881. if (!rgd)
  882. goto out_inodes;
  883. gfs2_holder_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + 2);
  884. error = gfs2_glock_nq(ghs); /* parent */
  885. if (error)
  886. goto out_parent;
  887. error = gfs2_glock_nq(ghs + 1); /* child */
  888. if (error)
  889. goto out_child;
  890. error = -ENOENT;
  891. if (inode->i_nlink == 0)
  892. goto out_rgrp;
  893. if (S_ISDIR(inode->i_mode)) {
  894. error = -ENOTEMPTY;
  895. if (ip->i_entries > 2 || inode->i_nlink > 2)
  896. goto out_rgrp;
  897. }
  898. error = gfs2_glock_nq(ghs + 2); /* rgrp */
  899. if (error)
  900. goto out_rgrp;
  901. error = gfs2_unlink_ok(dip, &dentry->d_name, ip);
  902. if (error)
  903. goto out_gunlock;
  904. error = gfs2_trans_begin(sdp, 2*RES_DINODE + 3*RES_LEAF + RES_RG_BIT, 0);
  905. if (error)
  906. goto out_end_trans;
  907. error = gfs2_unlink_inode(dip, dentry);
  908. out_end_trans:
  909. gfs2_trans_end(sdp);
  910. out_gunlock:
  911. gfs2_glock_dq(ghs + 2);
  912. out_rgrp:
  913. gfs2_glock_dq(ghs + 1);
  914. out_child:
  915. gfs2_glock_dq(ghs);
  916. out_parent:
  917. gfs2_holder_uninit(ghs + 2);
  918. out_inodes:
  919. gfs2_holder_uninit(ghs + 1);
  920. gfs2_holder_uninit(ghs);
  921. return error;
  922. }
  923. /**
  924. * gfs2_symlink - Create a symlink
  925. * @dir: The directory to create the symlink in
  926. * @dentry: The dentry to put the symlink in
  927. * @symname: The thing which the link points to
  928. *
  929. * Returns: errno
  930. */
  931. static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
  932. const char *symname)
  933. {
  934. struct gfs2_sbd *sdp = GFS2_SB(dir);
  935. unsigned int size;
  936. size = strlen(symname);
  937. if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
  938. return -ENAMETOOLONG;
  939. return gfs2_create_inode(dir, dentry, NULL, S_IFLNK | S_IRWXUGO, 0, symname, size, 0, NULL);
  940. }
  941. /**
  942. * gfs2_mkdir - Make a directory
  943. * @dir: The parent directory of the new one
  944. * @dentry: The dentry of the new directory
  945. * @mode: The mode of the new directory
  946. *
  947. * Returns: errno
  948. */
  949. static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
  950. {
  951. struct gfs2_sbd *sdp = GFS2_SB(dir);
  952. unsigned dsize = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode);
  953. return gfs2_create_inode(dir, dentry, NULL, S_IFDIR | mode, 0, NULL, dsize, 0, NULL);
  954. }
  955. /**
  956. * gfs2_mknod - Make a special file
  957. * @dir: The directory in which the special file will reside
  958. * @dentry: The dentry of the special file
  959. * @mode: The mode of the special file
  960. * @dev: The device specification of the special file
  961. *
  962. */
  963. static int gfs2_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
  964. dev_t dev)
  965. {
  966. return gfs2_create_inode(dir, dentry, NULL, mode, dev, NULL, 0, 0, NULL);
  967. }
  968. /**
  969. * gfs2_atomic_open - Atomically open a file
  970. * @dir: The directory
  971. * @dentry: The proposed new entry
  972. * @file: The proposed new struct file
  973. * @flags: open flags
  974. * @mode: File mode
  975. * @opened: Flag to say whether the file has been opened or not
  976. *
  977. * Returns: error code or 0 for success
  978. */
  979. static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
  980. struct file *file, unsigned flags,
  981. umode_t mode, int *opened)
  982. {
  983. struct dentry *d;
  984. bool excl = !!(flags & O_EXCL);
  985. d = __gfs2_lookup(dir, dentry, file, opened);
  986. if (IS_ERR(d))
  987. return PTR_ERR(d);
  988. if (d == NULL)
  989. d = dentry;
  990. if (d->d_inode) {
  991. if (!(*opened & FILE_OPENED))
  992. return finish_no_open(file, d);
  993. return 0;
  994. }
  995. if (!(flags & O_CREAT))
  996. return -ENOENT;
  997. return gfs2_create_inode(dir, dentry, file, S_IFREG | mode, 0, NULL, 0, excl, opened);
  998. }
  999. /*
  1000. * gfs2_ok_to_move - check if it's ok to move a directory to another directory
  1001. * @this: move this
  1002. * @to: to here
  1003. *
  1004. * Follow @to back to the root and make sure we don't encounter @this
  1005. * Assumes we already hold the rename lock.
  1006. *
  1007. * Returns: errno
  1008. */
  1009. static int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
  1010. {
  1011. struct inode *dir = &to->i_inode;
  1012. struct super_block *sb = dir->i_sb;
  1013. struct inode *tmp;
  1014. int error = 0;
  1015. igrab(dir);
  1016. for (;;) {
  1017. if (dir == &this->i_inode) {
  1018. error = -EINVAL;
  1019. break;
  1020. }
  1021. if (dir == sb->s_root->d_inode) {
  1022. error = 0;
  1023. break;
  1024. }
  1025. tmp = gfs2_lookupi(dir, &gfs2_qdotdot, 1);
  1026. if (IS_ERR(tmp)) {
  1027. error = PTR_ERR(tmp);
  1028. break;
  1029. }
  1030. iput(dir);
  1031. dir = tmp;
  1032. }
  1033. iput(dir);
  1034. return error;
  1035. }
  1036. /**
  1037. * gfs2_rename - Rename a file
  1038. * @odir: Parent directory of old file name
  1039. * @odentry: The old dentry of the file
  1040. * @ndir: Parent directory of new file name
  1041. * @ndentry: The new dentry of the file
  1042. *
  1043. * Returns: errno
  1044. */
  1045. static int gfs2_rename(struct inode *odir, struct dentry *odentry,
  1046. struct inode *ndir, struct dentry *ndentry)
  1047. {
  1048. struct gfs2_inode *odip = GFS2_I(odir);
  1049. struct gfs2_inode *ndip = GFS2_I(ndir);
  1050. struct gfs2_inode *ip = GFS2_I(odentry->d_inode);
  1051. struct gfs2_inode *nip = NULL;
  1052. struct gfs2_sbd *sdp = GFS2_SB(odir);
  1053. struct gfs2_holder ghs[5], r_gh = { .gh_gl = NULL, };
  1054. struct gfs2_rgrpd *nrgd;
  1055. unsigned int num_gh;
  1056. int dir_rename = 0;
  1057. int alloc_required = 0;
  1058. unsigned int x;
  1059. int error;
  1060. if (ndentry->d_inode) {
  1061. nip = GFS2_I(ndentry->d_inode);
  1062. if (ip == nip)
  1063. return 0;
  1064. }
  1065. error = gfs2_rindex_update(sdp);
  1066. if (error)
  1067. return error;
  1068. error = gfs2_rs_alloc(ndip);
  1069. if (error)
  1070. return error;
  1071. if (odip != ndip) {
  1072. error = gfs2_glock_nq_init(sdp->sd_rename_gl, LM_ST_EXCLUSIVE,
  1073. 0, &r_gh);
  1074. if (error)
  1075. goto out;
  1076. if (S_ISDIR(ip->i_inode.i_mode)) {
  1077. dir_rename = 1;
  1078. /* don't move a dirctory into it's subdir */
  1079. error = gfs2_ok_to_move(ip, ndip);
  1080. if (error)
  1081. goto out_gunlock_r;
  1082. }
  1083. }
  1084. num_gh = 1;
  1085. gfs2_holder_init(odip->i_gl, LM_ST_EXCLUSIVE, 0, ghs);
  1086. if (odip != ndip) {
  1087. gfs2_holder_init(ndip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
  1088. num_gh++;
  1089. }
  1090. gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
  1091. num_gh++;
  1092. if (nip) {
  1093. gfs2_holder_init(nip->i_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh);
  1094. num_gh++;
  1095. /* grab the resource lock for unlink flag twiddling
  1096. * this is the case of the target file already existing
  1097. * so we unlink before doing the rename
  1098. */
  1099. nrgd = gfs2_blk2rgrpd(sdp, nip->i_no_addr, 1);
  1100. if (nrgd)
  1101. gfs2_holder_init(nrgd->rd_gl, LM_ST_EXCLUSIVE, 0, ghs + num_gh++);
  1102. }
  1103. for (x = 0; x < num_gh; x++) {
  1104. error = gfs2_glock_nq(ghs + x);
  1105. if (error)
  1106. goto out_gunlock;
  1107. }
  1108. error = -ENOENT;
  1109. if (ip->i_inode.i_nlink == 0)
  1110. goto out_gunlock;
  1111. /* Check out the old directory */
  1112. error = gfs2_unlink_ok(odip, &odentry->d_name, ip);
  1113. if (error)
  1114. goto out_gunlock;
  1115. /* Check out the new directory */
  1116. if (nip) {
  1117. error = gfs2_unlink_ok(ndip, &ndentry->d_name, nip);
  1118. if (error)
  1119. goto out_gunlock;
  1120. if (nip->i_inode.i_nlink == 0) {
  1121. error = -EAGAIN;
  1122. goto out_gunlock;
  1123. }
  1124. if (S_ISDIR(nip->i_inode.i_mode)) {
  1125. if (nip->i_entries < 2) {
  1126. gfs2_consist_inode(nip);
  1127. error = -EIO;
  1128. goto out_gunlock;
  1129. }
  1130. if (nip->i_entries > 2) {
  1131. error = -ENOTEMPTY;
  1132. goto out_gunlock;
  1133. }
  1134. }
  1135. } else {
  1136. error = gfs2_permission(ndir, MAY_WRITE | MAY_EXEC);
  1137. if (error)
  1138. goto out_gunlock;
  1139. error = gfs2_dir_check(ndir, &ndentry->d_name, NULL);
  1140. switch (error) {
  1141. case -ENOENT:
  1142. error = 0;
  1143. break;
  1144. case 0:
  1145. error = -EEXIST;
  1146. default:
  1147. goto out_gunlock;
  1148. };
  1149. if (odip != ndip) {
  1150. if (!ndip->i_inode.i_nlink) {
  1151. error = -ENOENT;
  1152. goto out_gunlock;
  1153. }
  1154. if (ndip->i_entries == (u32)-1) {
  1155. error = -EFBIG;
  1156. goto out_gunlock;
  1157. }
  1158. if (S_ISDIR(ip->i_inode.i_mode) &&
  1159. ndip->i_inode.i_nlink == (u32)-1) {
  1160. error = -EMLINK;
  1161. goto out_gunlock;
  1162. }
  1163. }
  1164. }
  1165. /* Check out the dir to be renamed */
  1166. if (dir_rename) {
  1167. error = gfs2_permission(odentry->d_inode, MAY_WRITE);
  1168. if (error)
  1169. goto out_gunlock;
  1170. }
  1171. if (nip == NULL)
  1172. alloc_required = gfs2_diradd_alloc_required(ndir, &ndentry->d_name);
  1173. error = alloc_required;
  1174. if (error < 0)
  1175. goto out_gunlock;
  1176. if (alloc_required) {
  1177. error = gfs2_quota_lock_check(ndip);
  1178. if (error)
  1179. goto out_gunlock;
  1180. error = gfs2_inplace_reserve(ndip, sdp->sd_max_dirres, 0);
  1181. if (error)
  1182. goto out_gunlock_q;
  1183. error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
  1184. gfs2_rg_blocks(ndip, sdp->sd_max_dirres) +
  1185. 4 * RES_DINODE + 4 * RES_LEAF +
  1186. RES_STATFS + RES_QUOTA + 4, 0);
  1187. if (error)
  1188. goto out_ipreserv;
  1189. } else {
  1190. error = gfs2_trans_begin(sdp, 4 * RES_DINODE +
  1191. 5 * RES_LEAF + 4, 0);
  1192. if (error)
  1193. goto out_gunlock;
  1194. }
  1195. /* Remove the target file, if it exists */
  1196. if (nip)
  1197. error = gfs2_unlink_inode(ndip, ndentry);
  1198. if (dir_rename) {
  1199. error = gfs2_dir_mvino(ip, &gfs2_qdotdot, ndip, DT_DIR);
  1200. if (error)
  1201. goto out_end_trans;
  1202. } else {
  1203. struct buffer_head *dibh;
  1204. error = gfs2_meta_inode_buffer(ip, &dibh);
  1205. if (error)
  1206. goto out_end_trans;
  1207. ip->i_inode.i_ctime = CURRENT_TIME;
  1208. gfs2_trans_add_meta(ip->i_gl, dibh);
  1209. gfs2_dinode_out(ip, dibh->b_data);
  1210. brelse(dibh);
  1211. }
  1212. error = gfs2_dir_del(odip, odentry);
  1213. if (error)
  1214. goto out_end_trans;
  1215. error = gfs2_dir_add(ndir, &ndentry->d_name, ip);
  1216. if (error)
  1217. goto out_end_trans;
  1218. out_end_trans:
  1219. gfs2_trans_end(sdp);
  1220. out_ipreserv:
  1221. if (alloc_required)
  1222. gfs2_inplace_release(ndip);
  1223. out_gunlock_q:
  1224. if (alloc_required)
  1225. gfs2_quota_unlock(ndip);
  1226. out_gunlock:
  1227. while (x--) {
  1228. gfs2_glock_dq(ghs + x);
  1229. gfs2_holder_uninit(ghs + x);
  1230. }
  1231. out_gunlock_r:
  1232. if (r_gh.gh_gl)
  1233. gfs2_glock_dq_uninit(&r_gh);
  1234. out:
  1235. return error;
  1236. }
  1237. /**
  1238. * gfs2_follow_link - Follow a symbolic link
  1239. * @dentry: The dentry of the link
  1240. * @nd: Data that we pass to vfs_follow_link()
  1241. *
  1242. * This can handle symlinks of any size.
  1243. *
  1244. * Returns: 0 on success or error code
  1245. */
  1246. static void *gfs2_follow_link(struct dentry *dentry, struct nameidata *nd)
  1247. {
  1248. struct gfs2_inode *ip = GFS2_I(dentry->d_inode);
  1249. struct gfs2_holder i_gh;
  1250. struct buffer_head *dibh;
  1251. unsigned int size;
  1252. char *buf;
  1253. int error;
  1254. gfs2_holder_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
  1255. error = gfs2_glock_nq(&i_gh);
  1256. if (error) {
  1257. gfs2_holder_uninit(&i_gh);
  1258. nd_set_link(nd, ERR_PTR(error));
  1259. return NULL;
  1260. }
  1261. size = (unsigned int)i_size_read(&ip->i_inode);
  1262. if (size == 0) {
  1263. gfs2_consist_inode(ip);
  1264. buf = ERR_PTR(-EIO);
  1265. goto out;
  1266. }
  1267. error = gfs2_meta_inode_buffer(ip, &dibh);
  1268. if (error) {
  1269. buf = ERR_PTR(error);
  1270. goto out;
  1271. }
  1272. buf = kzalloc(size + 1, GFP_NOFS);
  1273. if (!buf)
  1274. buf = ERR_PTR(-ENOMEM);
  1275. else
  1276. memcpy(buf, dibh->b_data + sizeof(struct gfs2_dinode), size);
  1277. brelse(dibh);
  1278. out:
  1279. gfs2_glock_dq_uninit(&i_gh);
  1280. nd_set_link(nd, buf);
  1281. return NULL;
  1282. }
  1283. static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
  1284. {
  1285. char *s = nd_get_link(nd);
  1286. if (!IS_ERR(s))
  1287. kfree(s);
  1288. }
  1289. /**
  1290. * gfs2_permission -
  1291. * @inode: The inode
  1292. * @mask: The mask to be tested
  1293. * @flags: Indicates whether this is an RCU path walk or not
  1294. *
  1295. * This may be called from the VFS directly, or from within GFS2 with the
  1296. * inode locked, so we look to see if the glock is already locked and only
  1297. * lock the glock if its not already been done.
  1298. *
  1299. * Returns: errno
  1300. */
  1301. int gfs2_permission(struct inode *inode, int mask)
  1302. {
  1303. struct gfs2_inode *ip;
  1304. struct gfs2_holder i_gh;
  1305. int error;
  1306. int unlock = 0;
  1307. ip = GFS2_I(inode);
  1308. if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
  1309. if (mask & MAY_NOT_BLOCK)
  1310. return -ECHILD;
  1311. error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
  1312. if (error)
  1313. return error;
  1314. unlock = 1;
  1315. }
  1316. if ((mask & MAY_WRITE) && IS_IMMUTABLE(inode))
  1317. error = -EACCES;
  1318. else
  1319. error = generic_permission(inode, mask);
  1320. if (unlock)
  1321. gfs2_glock_dq_uninit(&i_gh);
  1322. return error;
  1323. }
  1324. static int __gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
  1325. {
  1326. setattr_copy(inode, attr);
  1327. mark_inode_dirty(inode);
  1328. return 0;
  1329. }
  1330. /**
  1331. * gfs2_setattr_simple -
  1332. * @ip:
  1333. * @attr:
  1334. *
  1335. * Returns: errno
  1336. */
  1337. int gfs2_setattr_simple(struct inode *inode, struct iattr *attr)
  1338. {
  1339. int error;
  1340. if (current->journal_info)
  1341. return __gfs2_setattr_simple(inode, attr);
  1342. error = gfs2_trans_begin(GFS2_SB(inode), RES_DINODE, 0);
  1343. if (error)
  1344. return error;
  1345. error = __gfs2_setattr_simple(inode, attr);
  1346. gfs2_trans_end(GFS2_SB(inode));
  1347. return error;
  1348. }
  1349. static int setattr_chown(struct inode *inode, struct iattr *attr)
  1350. {
  1351. struct gfs2_inode *ip = GFS2_I(inode);
  1352. struct gfs2_sbd *sdp = GFS2_SB(inode);
  1353. kuid_t ouid, nuid;
  1354. kgid_t ogid, ngid;
  1355. int error;
  1356. ouid = inode->i_uid;
  1357. ogid = inode->i_gid;
  1358. nuid = attr->ia_uid;
  1359. ngid = attr->ia_gid;
  1360. if (!(attr->ia_valid & ATTR_UID) || uid_eq(ouid, nuid))
  1361. ouid = nuid = NO_UID_QUOTA_CHANGE;
  1362. if (!(attr->ia_valid & ATTR_GID) || gid_eq(ogid, ngid))
  1363. ogid = ngid = NO_GID_QUOTA_CHANGE;
  1364. error = gfs2_quota_lock(ip, nuid, ngid);
  1365. if (error)
  1366. return error;
  1367. if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
  1368. !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
  1369. error = gfs2_quota_check(ip, nuid, ngid);
  1370. if (error)
  1371. goto out_gunlock_q;
  1372. }
  1373. error = gfs2_trans_begin(sdp, RES_DINODE + 2 * RES_QUOTA, 0);
  1374. if (error)
  1375. goto out_gunlock_q;
  1376. error = gfs2_setattr_simple(inode, attr);
  1377. if (error)
  1378. goto out_end_trans;
  1379. if (!uid_eq(ouid, NO_UID_QUOTA_CHANGE) ||
  1380. !gid_eq(ogid, NO_GID_QUOTA_CHANGE)) {
  1381. u64 blocks = gfs2_get_inode_blocks(&ip->i_inode);
  1382. gfs2_quota_change(ip, -blocks, ouid, ogid);
  1383. gfs2_quota_change(ip, blocks, nuid, ngid);
  1384. }
  1385. out_end_trans:
  1386. gfs2_trans_end(sdp);
  1387. out_gunlock_q:
  1388. gfs2_quota_unlock(ip);
  1389. return error;
  1390. }
  1391. /**
  1392. * gfs2_setattr - Change attributes on an inode
  1393. * @dentry: The dentry which is changing
  1394. * @attr: The structure describing the change
  1395. *
  1396. * The VFS layer wants to change one or more of an inodes attributes. Write
  1397. * that change out to disk.
  1398. *
  1399. * Returns: errno
  1400. */
  1401. static int gfs2_setattr(struct dentry *dentry, struct iattr *attr)
  1402. {
  1403. struct inode *inode = dentry->d_inode;
  1404. struct gfs2_inode *ip = GFS2_I(inode);
  1405. struct gfs2_holder i_gh;
  1406. int error;
  1407. error = gfs2_rs_alloc(ip);
  1408. if (error)
  1409. return error;
  1410. error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
  1411. if (error)
  1412. return error;
  1413. error = -EPERM;
  1414. if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
  1415. goto out;
  1416. error = inode_change_ok(inode, attr);
  1417. if (error)
  1418. goto out;
  1419. if (attr->ia_valid & ATTR_SIZE)
  1420. error = gfs2_setattr_size(inode, attr->ia_size);
  1421. else if (attr->ia_valid & (ATTR_UID | ATTR_GID))
  1422. error = setattr_chown(inode, attr);
  1423. else if ((attr->ia_valid & ATTR_MODE) && IS_POSIXACL(inode))
  1424. error = gfs2_acl_chmod(ip, attr);
  1425. else
  1426. error = gfs2_setattr_simple(inode, attr);
  1427. out:
  1428. if (!error)
  1429. mark_inode_dirty(inode);
  1430. gfs2_glock_dq_uninit(&i_gh);
  1431. return error;
  1432. }
  1433. /**
  1434. * gfs2_getattr - Read out an inode's attributes
  1435. * @mnt: The vfsmount the inode is being accessed from
  1436. * @dentry: The dentry to stat
  1437. * @stat: The inode's stats
  1438. *
  1439. * This may be called from the VFS directly, or from within GFS2 with the
  1440. * inode locked, so we look to see if the glock is already locked and only
  1441. * lock the glock if its not already been done. Note that its the NFS
  1442. * readdirplus operation which causes this to be called (from filldir)
  1443. * with the glock already held.
  1444. *
  1445. * Returns: errno
  1446. */
  1447. static int gfs2_getattr(struct vfsmount *mnt, struct dentry *dentry,
  1448. struct kstat *stat)
  1449. {
  1450. struct inode *inode = dentry->d_inode;
  1451. struct gfs2_inode *ip = GFS2_I(inode);
  1452. struct gfs2_holder gh;
  1453. int error;
  1454. int unlock = 0;
  1455. if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) {
  1456. error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
  1457. if (error)
  1458. return error;
  1459. unlock = 1;
  1460. }
  1461. generic_fillattr(inode, stat);
  1462. if (unlock)
  1463. gfs2_glock_dq_uninit(&gh);
  1464. return 0;
  1465. }
  1466. static int gfs2_setxattr(struct dentry *dentry, const char *name,
  1467. const void *data, size_t size, int flags)
  1468. {
  1469. struct inode *inode = dentry->d_inode;
  1470. struct gfs2_inode *ip = GFS2_I(inode);
  1471. struct gfs2_holder gh;
  1472. int ret;
  1473. gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
  1474. ret = gfs2_glock_nq(&gh);
  1475. if (ret == 0) {
  1476. ret = gfs2_rs_alloc(ip);
  1477. if (ret == 0)
  1478. ret = generic_setxattr(dentry, name, data, size, flags);
  1479. gfs2_glock_dq(&gh);
  1480. }
  1481. gfs2_holder_uninit(&gh);
  1482. return ret;
  1483. }
  1484. static ssize_t gfs2_getxattr(struct dentry *dentry, const char *name,
  1485. void *data, size_t size)
  1486. {
  1487. struct inode *inode = dentry->d_inode;
  1488. struct gfs2_inode *ip = GFS2_I(inode);
  1489. struct gfs2_holder gh;
  1490. int ret;
  1491. gfs2_holder_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &gh);
  1492. ret = gfs2_glock_nq(&gh);
  1493. if (ret == 0) {
  1494. ret = generic_getxattr(dentry, name, data, size);
  1495. gfs2_glock_dq(&gh);
  1496. }
  1497. gfs2_holder_uninit(&gh);
  1498. return ret;
  1499. }
  1500. static int gfs2_removexattr(struct dentry *dentry, const char *name)
  1501. {
  1502. struct inode *inode = dentry->d_inode;
  1503. struct gfs2_inode *ip = GFS2_I(inode);
  1504. struct gfs2_holder gh;
  1505. int ret;
  1506. gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
  1507. ret = gfs2_glock_nq(&gh);
  1508. if (ret == 0) {
  1509. ret = gfs2_rs_alloc(ip);
  1510. if (ret == 0)
  1511. ret = generic_removexattr(dentry, name);
  1512. gfs2_glock_dq(&gh);
  1513. }
  1514. gfs2_holder_uninit(&gh);
  1515. return ret;
  1516. }
  1517. static int gfs2_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  1518. u64 start, u64 len)
  1519. {
  1520. struct gfs2_inode *ip = GFS2_I(inode);
  1521. struct gfs2_holder gh;
  1522. int ret;
  1523. ret = fiemap_check_flags(fieinfo, FIEMAP_FLAG_SYNC);
  1524. if (ret)
  1525. return ret;
  1526. mutex_lock(&inode->i_mutex);
  1527. ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &gh);
  1528. if (ret)
  1529. goto out;
  1530. if (gfs2_is_stuffed(ip)) {
  1531. u64 phys = ip->i_no_addr << inode->i_blkbits;
  1532. u64 size = i_size_read(inode);
  1533. u32 flags = FIEMAP_EXTENT_LAST|FIEMAP_EXTENT_NOT_ALIGNED|
  1534. FIEMAP_EXTENT_DATA_INLINE;
  1535. phys += sizeof(struct gfs2_dinode);
  1536. phys += start;
  1537. if (start + len > size)
  1538. len = size - start;
  1539. if (start < size)
  1540. ret = fiemap_fill_next_extent(fieinfo, start, phys,
  1541. len, flags);
  1542. if (ret == 1)
  1543. ret = 0;
  1544. } else {
  1545. ret = __generic_block_fiemap(inode, fieinfo, start, len,
  1546. gfs2_block_map);
  1547. }
  1548. gfs2_glock_dq_uninit(&gh);
  1549. out:
  1550. mutex_unlock(&inode->i_mutex);
  1551. return ret;
  1552. }
  1553. const struct inode_operations gfs2_file_iops = {
  1554. .permission = gfs2_permission,
  1555. .setattr = gfs2_setattr,
  1556. .getattr = gfs2_getattr,
  1557. .setxattr = gfs2_setxattr,
  1558. .getxattr = gfs2_getxattr,
  1559. .listxattr = gfs2_listxattr,
  1560. .removexattr = gfs2_removexattr,
  1561. .fiemap = gfs2_fiemap,
  1562. .get_acl = gfs2_get_acl,
  1563. };
  1564. const struct inode_operations gfs2_dir_iops = {
  1565. .create = gfs2_create,
  1566. .lookup = gfs2_lookup,
  1567. .link = gfs2_link,
  1568. .unlink = gfs2_unlink,
  1569. .symlink = gfs2_symlink,
  1570. .mkdir = gfs2_mkdir,
  1571. .rmdir = gfs2_unlink,
  1572. .mknod = gfs2_mknod,
  1573. .rename = gfs2_rename,
  1574. .permission = gfs2_permission,
  1575. .setattr = gfs2_setattr,
  1576. .getattr = gfs2_getattr,
  1577. .setxattr = gfs2_setxattr,
  1578. .getxattr = gfs2_getxattr,
  1579. .listxattr = gfs2_listxattr,
  1580. .removexattr = gfs2_removexattr,
  1581. .fiemap = gfs2_fiemap,
  1582. .get_acl = gfs2_get_acl,
  1583. .atomic_open = gfs2_atomic_open,
  1584. };
  1585. const struct inode_operations gfs2_symlink_iops = {
  1586. .readlink = generic_readlink,
  1587. .follow_link = gfs2_follow_link,
  1588. .put_link = gfs2_put_link,
  1589. .permission = gfs2_permission,
  1590. .setattr = gfs2_setattr,
  1591. .getattr = gfs2_getattr,
  1592. .setxattr = gfs2_setxattr,
  1593. .getxattr = gfs2_getxattr,
  1594. .listxattr = gfs2_listxattr,
  1595. .removexattr = gfs2_removexattr,
  1596. .fiemap = gfs2_fiemap,
  1597. .get_acl = gfs2_get_acl,
  1598. };