f2b989dbe25affd89b93800d3a34ff072e057e94
[linux-2.6-block.git] / fs / ubifs / journal.c
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 /*
24  * This file implements UBIFS journal.
25  *
26  * The journal consists of 2 parts - the log and bud LEBs. The log has fixed
27  * length and position, while a bud logical eraseblock is any LEB in the main
28  * area. Buds contain file system data - data nodes, inode nodes, etc. The log
29  * contains only references to buds and some other stuff like commit
30  * start node. The idea is that when we commit the journal, we do
31  * not copy the data, the buds just become indexed. Since after the commit the
32  * nodes in bud eraseblocks become leaf nodes of the file system index tree, we
33  * use term "bud". Analogy is obvious, bud eraseblocks contain nodes which will
34  * become leafs in the future.
35  *
36  * The journal is multi-headed because we want to write data to the journal as
37  * optimally as possible. It is nice to have nodes belonging to the same inode
38  * in one LEB, so we may write data owned by different inodes to different
39  * journal heads, although at present only one data head is used.
40  *
41  * For recovery reasons, the base head contains all inode nodes, all directory
42  * entry nodes and all truncate nodes. This means that the other heads contain
43  * only data nodes.
44  *
45  * Bud LEBs may be half-indexed. For example, if the bud was not full at the
46  * time of commit, the bud is retained to continue to be used in the journal,
47  * even though the "front" of the LEB is now indexed. In that case, the log
48  * reference contains the offset where the bud starts for the purposes of the
49  * journal.
50  *
51  * The journal size has to be limited, because the larger is the journal, the
52  * longer it takes to mount UBIFS (scanning the journal) and the more memory it
53  * takes (indexing in the TNC).
54  *
55  * All the journal write operations like 'ubifs_jnl_update()' here, which write
56  * multiple UBIFS nodes to the journal at one go, are atomic with respect to
57  * unclean reboots. Should the unclean reboot happen, the recovery code drops
58  * all the nodes.
59  */
60
61 #include "ubifs.h"
62
63 /**
64  * zero_ino_node_unused - zero out unused fields of an on-flash inode node.
65  * @ino: the inode to zero out
66  */
67 static inline void zero_ino_node_unused(struct ubifs_ino_node *ino)
68 {
69         memset(ino->padding1, 0, 4);
70         memset(ino->padding2, 0, 26);
71 }
72
73 /**
74  * zero_dent_node_unused - zero out unused fields of an on-flash directory
75  *                         entry node.
76  * @dent: the directory entry to zero out
77  */
78 static inline void zero_dent_node_unused(struct ubifs_dent_node *dent)
79 {
80         dent->padding1 = 0;
81         memset(dent->padding2, 0, 4);
82 }
83
84 /**
85  * zero_trun_node_unused - zero out unused fields of an on-flash truncation
86  *                         node.
87  * @trun: the truncation node to zero out
88  */
89 static inline void zero_trun_node_unused(struct ubifs_trun_node *trun)
90 {
91         memset(trun->padding, 0, 12);
92 }
93
94 /**
95  * reserve_space - reserve space in the journal.
96  * @c: UBIFS file-system description object
97  * @jhead: journal head number
98  * @len: node length
99  *
100  * This function reserves space in journal head @head. If the reservation
101  * succeeded, the journal head stays locked and later has to be unlocked using
102  * 'release_head()'. 'write_node()' and 'write_head()' functions also unlock
103  * it. Returns zero in case of success, %-EAGAIN if commit has to be done, and
104  * other negative error codes in case of other failures.
105  */
106 static int reserve_space(struct ubifs_info *c, int jhead, int len)
107 {
108         int err = 0, err1, retries = 0, avail, lnum, offs, squeeze;
109         struct ubifs_wbuf *wbuf = &c->jheads[jhead].wbuf;
110
111         /*
112          * Typically, the base head has smaller nodes written to it, so it is
113          * better to try to allocate space at the ends of eraseblocks. This is
114          * what the squeeze parameter does.
115          */
116         ubifs_assert(!c->ro_media && !c->ro_mount);
117         squeeze = (jhead == BASEHD);
118 again:
119         mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
120
121         if (c->ro_error) {
122                 err = -EROFS;
123                 goto out_unlock;
124         }
125
126         avail = c->leb_size - wbuf->offs - wbuf->used;
127         if (wbuf->lnum != -1 && avail >= len)
128                 return 0;
129
130         /*
131          * Write buffer wasn't seek'ed or there is no enough space - look for an
132          * LEB with some empty space.
133          */
134         lnum = ubifs_find_free_space(c, len, &offs, squeeze);
135         if (lnum >= 0)
136                 goto out;
137
138         err = lnum;
139         if (err != -ENOSPC)
140                 goto out_unlock;
141
142         /*
143          * No free space, we have to run garbage collector to make
144          * some. But the write-buffer mutex has to be unlocked because
145          * GC also takes it.
146          */
147         dbg_jnl("no free space in jhead %s, run GC", dbg_jhead(jhead));
148         mutex_unlock(&wbuf->io_mutex);
149
150         lnum = ubifs_garbage_collect(c, 0);
151         if (lnum < 0) {
152                 err = lnum;
153                 if (err != -ENOSPC)
154                         return err;
155
156                 /*
157                  * GC could not make a free LEB. But someone else may
158                  * have allocated new bud for this journal head,
159                  * because we dropped @wbuf->io_mutex, so try once
160                  * again.
161                  */
162                 dbg_jnl("GC couldn't make a free LEB for jhead %s",
163                         dbg_jhead(jhead));
164                 if (retries++ < 2) {
165                         dbg_jnl("retry (%d)", retries);
166                         goto again;
167                 }
168
169                 dbg_jnl("return -ENOSPC");
170                 return err;
171         }
172
173         mutex_lock_nested(&wbuf->io_mutex, wbuf->jhead);
174         dbg_jnl("got LEB %d for jhead %s", lnum, dbg_jhead(jhead));
175         avail = c->leb_size - wbuf->offs - wbuf->used;
176
177         if (wbuf->lnum != -1 && avail >= len) {
178                 /*
179                  * Someone else has switched the journal head and we have
180                  * enough space now. This happens when more than one process is
181                  * trying to write to the same journal head at the same time.
182                  */
183                 dbg_jnl("return LEB %d back, already have LEB %d:%d",
184                         lnum, wbuf->lnum, wbuf->offs + wbuf->used);
185                 err = ubifs_return_leb(c, lnum);
186                 if (err)
187                         goto out_unlock;
188                 return 0;
189         }
190
191         offs = 0;
192
193 out:
194         /*
195          * Make sure we synchronize the write-buffer before we add the new bud
196          * to the log. Otherwise we may have a power cut after the log
197          * reference node for the last bud (@lnum) is written but before the
198          * write-buffer data are written to the next-to-last bud
199          * (@wbuf->lnum). And the effect would be that the recovery would see
200          * that there is corruption in the next-to-last bud.
201          */
202         err = ubifs_wbuf_sync_nolock(wbuf);
203         if (err)
204                 goto out_return;
205         err = ubifs_add_bud_to_log(c, jhead, lnum, offs);
206         if (err)
207                 goto out_return;
208         err = ubifs_wbuf_seek_nolock(wbuf, lnum, offs);
209         if (err)
210                 goto out_unlock;
211
212         return 0;
213
214 out_unlock:
215         mutex_unlock(&wbuf->io_mutex);
216         return err;
217
218 out_return:
219         /* An error occurred and the LEB has to be returned to lprops */
220         ubifs_assert(err < 0);
221         err1 = ubifs_return_leb(c, lnum);
222         if (err1 && err == -EAGAIN)
223                 /*
224                  * Return original error code only if it is not %-EAGAIN,
225                  * which is not really an error. Otherwise, return the error
226                  * code of 'ubifs_return_leb()'.
227                  */
228                 err = err1;
229         mutex_unlock(&wbuf->io_mutex);
230         return err;
231 }
232
233 /**
234  * write_node - write node to a journal head.
235  * @c: UBIFS file-system description object
236  * @jhead: journal head
237  * @node: node to write
238  * @len: node length
239  * @lnum: LEB number written is returned here
240  * @offs: offset written is returned here
241  *
242  * This function writes a node to reserved space of journal head @jhead.
243  * Returns zero in case of success and a negative error code in case of
244  * failure.
245  */
246 static int write_node(struct ubifs_info *c, int jhead, void *node, int len,
247                       int *lnum, int *offs)
248 {
249         struct ubifs_wbuf *wbuf = &c->jheads[jhead].wbuf;
250
251         ubifs_assert(jhead != GCHD);
252
253         *lnum = c->jheads[jhead].wbuf.lnum;
254         *offs = c->jheads[jhead].wbuf.offs + c->jheads[jhead].wbuf.used;
255
256         dbg_jnl("jhead %s, LEB %d:%d, len %d",
257                 dbg_jhead(jhead), *lnum, *offs, len);
258         ubifs_prepare_node(c, node, len, 0);
259
260         return ubifs_wbuf_write_nolock(wbuf, node, len);
261 }
262
263 /**
264  * write_head - write data to a journal head.
265  * @c: UBIFS file-system description object
266  * @jhead: journal head
267  * @buf: buffer to write
268  * @len: length to write
269  * @lnum: LEB number written is returned here
270  * @offs: offset written is returned here
271  * @sync: non-zero if the write-buffer has to by synchronized
272  *
273  * This function is the same as 'write_node()' but it does not assume the
274  * buffer it is writing is a node, so it does not prepare it (which means
275  * initializing common header and calculating CRC).
276  */
277 static int write_head(struct ubifs_info *c, int jhead, void *buf, int len,
278                       int *lnum, int *offs, int sync)
279 {
280         int err;
281         struct ubifs_wbuf *wbuf = &c->jheads[jhead].wbuf;
282
283         ubifs_assert(jhead != GCHD);
284
285         *lnum = c->jheads[jhead].wbuf.lnum;
286         *offs = c->jheads[jhead].wbuf.offs + c->jheads[jhead].wbuf.used;
287         dbg_jnl("jhead %s, LEB %d:%d, len %d",
288                 dbg_jhead(jhead), *lnum, *offs, len);
289
290         err = ubifs_wbuf_write_nolock(wbuf, buf, len);
291         if (err)
292                 return err;
293         if (sync)
294                 err = ubifs_wbuf_sync_nolock(wbuf);
295         return err;
296 }
297
298 /**
299  * make_reservation - reserve journal space.
300  * @c: UBIFS file-system description object
301  * @jhead: journal head
302  * @len: how many bytes to reserve
303  *
304  * This function makes space reservation in journal head @jhead. The function
305  * takes the commit lock and locks the journal head, and the caller has to
306  * unlock the head and finish the reservation with 'finish_reservation()'.
307  * Returns zero in case of success and a negative error code in case of
308  * failure.
309  *
310  * Note, the journal head may be unlocked as soon as the data is written, while
311  * the commit lock has to be released after the data has been added to the
312  * TNC.
313  */
314 static int make_reservation(struct ubifs_info *c, int jhead, int len)
315 {
316         int err, cmt_retries = 0, nospc_retries = 0;
317
318 again:
319         down_read(&c->commit_sem);
320         err = reserve_space(c, jhead, len);
321         if (!err)
322                 return 0;
323         up_read(&c->commit_sem);
324
325         if (err == -ENOSPC) {
326                 /*
327                  * GC could not make any progress. We should try to commit
328                  * once because it could make some dirty space and GC would
329                  * make progress, so make the error -EAGAIN so that the below
330                  * will commit and re-try.
331                  */
332                 if (nospc_retries++ < 2) {
333                         dbg_jnl("no space, retry");
334                         err = -EAGAIN;
335                 }
336
337                 /*
338                  * This means that the budgeting is incorrect. We always have
339                  * to be able to write to the media, because all operations are
340                  * budgeted. Deletions are not budgeted, though, but we reserve
341                  * an extra LEB for them.
342                  */
343         }
344
345         if (err != -EAGAIN)
346                 goto out;
347
348         /*
349          * -EAGAIN means that the journal is full or too large, or the above
350          * code wants to do one commit. Do this and re-try.
351          */
352         if (cmt_retries > 128) {
353                 /*
354                  * This should not happen unless the journal size limitations
355                  * are too tough.
356                  */
357                 ubifs_err(c, "stuck in space allocation");
358                 err = -ENOSPC;
359                 goto out;
360         } else if (cmt_retries > 32)
361                 ubifs_warn(c, "too many space allocation re-tries (%d)",
362                            cmt_retries);
363
364         dbg_jnl("-EAGAIN, commit and retry (retried %d times)",
365                 cmt_retries);
366         cmt_retries += 1;
367
368         err = ubifs_run_commit(c);
369         if (err)
370                 return err;
371         goto again;
372
373 out:
374         ubifs_err(c, "cannot reserve %d bytes in jhead %d, error %d",
375                   len, jhead, err);
376         if (err == -ENOSPC) {
377                 /* This are some budgeting problems, print useful information */
378                 down_write(&c->commit_sem);
379                 dump_stack();
380                 ubifs_dump_budg(c, &c->bi);
381                 ubifs_dump_lprops(c);
382                 cmt_retries = dbg_check_lprops(c);
383                 up_write(&c->commit_sem);
384         }
385         return err;
386 }
387
388 /**
389  * release_head - release a journal head.
390  * @c: UBIFS file-system description object
391  * @jhead: journal head
392  *
393  * This function releases journal head @jhead which was locked by
394  * the 'make_reservation()' function. It has to be called after each successful
395  * 'make_reservation()' invocation.
396  */
397 static inline void release_head(struct ubifs_info *c, int jhead)
398 {
399         mutex_unlock(&c->jheads[jhead].wbuf.io_mutex);
400 }
401
402 /**
403  * finish_reservation - finish a reservation.
404  * @c: UBIFS file-system description object
405  *
406  * This function finishes journal space reservation. It must be called after
407  * 'make_reservation()'.
408  */
409 static void finish_reservation(struct ubifs_info *c)
410 {
411         up_read(&c->commit_sem);
412 }
413
414 /**
415  * get_dent_type - translate VFS inode mode to UBIFS directory entry type.
416  * @mode: inode mode
417  */
418 static int get_dent_type(int mode)
419 {
420         switch (mode & S_IFMT) {
421         case S_IFREG:
422                 return UBIFS_ITYPE_REG;
423         case S_IFDIR:
424                 return UBIFS_ITYPE_DIR;
425         case S_IFLNK:
426                 return UBIFS_ITYPE_LNK;
427         case S_IFBLK:
428                 return UBIFS_ITYPE_BLK;
429         case S_IFCHR:
430                 return UBIFS_ITYPE_CHR;
431         case S_IFIFO:
432                 return UBIFS_ITYPE_FIFO;
433         case S_IFSOCK:
434                 return UBIFS_ITYPE_SOCK;
435         default:
436                 BUG();
437         }
438         return 0;
439 }
440
441 /**
442  * pack_inode - pack an inode node.
443  * @c: UBIFS file-system description object
444  * @ino: buffer in which to pack inode node
445  * @inode: inode to pack
446  * @last: indicates the last node of the group
447  */
448 static void pack_inode(struct ubifs_info *c, struct ubifs_ino_node *ino,
449                        const struct inode *inode, int last)
450 {
451         int data_len = 0, last_reference = !inode->i_nlink;
452         struct ubifs_inode *ui = ubifs_inode(inode);
453
454         ino->ch.node_type = UBIFS_INO_NODE;
455         ino_key_init_flash(c, &ino->key, inode->i_ino);
456         ino->creat_sqnum = cpu_to_le64(ui->creat_sqnum);
457         ino->atime_sec  = cpu_to_le64(inode->i_atime.tv_sec);
458         ino->atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
459         ino->ctime_sec  = cpu_to_le64(inode->i_ctime.tv_sec);
460         ino->ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
461         ino->mtime_sec  = cpu_to_le64(inode->i_mtime.tv_sec);
462         ino->mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
463         ino->uid   = cpu_to_le32(i_uid_read(inode));
464         ino->gid   = cpu_to_le32(i_gid_read(inode));
465         ino->mode  = cpu_to_le32(inode->i_mode);
466         ino->flags = cpu_to_le32(ui->flags);
467         ino->size  = cpu_to_le64(ui->ui_size);
468         ino->nlink = cpu_to_le32(inode->i_nlink);
469         ino->compr_type  = cpu_to_le16(ui->compr_type);
470         ino->data_len    = cpu_to_le32(ui->data_len);
471         ino->xattr_cnt   = cpu_to_le32(ui->xattr_cnt);
472         ino->xattr_size  = cpu_to_le32(ui->xattr_size);
473         ino->xattr_names = cpu_to_le32(ui->xattr_names);
474         zero_ino_node_unused(ino);
475
476         /*
477          * Drop the attached data if this is a deletion inode, the data is not
478          * needed anymore.
479          */
480         if (!last_reference) {
481                 memcpy(ino->data, ui->data, ui->data_len);
482                 data_len = ui->data_len;
483         }
484
485         ubifs_prep_grp_node(c, ino, UBIFS_INO_NODE_SZ + data_len, last);
486 }
487
488 /**
489  * mark_inode_clean - mark UBIFS inode as clean.
490  * @c: UBIFS file-system description object
491  * @ui: UBIFS inode to mark as clean
492  *
493  * This helper function marks UBIFS inode @ui as clean by cleaning the
494  * @ui->dirty flag and releasing its budget. Note, VFS may still treat the
495  * inode as dirty and try to write it back, but 'ubifs_write_inode()' would
496  * just do nothing.
497  */
498 static void mark_inode_clean(struct ubifs_info *c, struct ubifs_inode *ui)
499 {
500         if (ui->dirty)
501                 ubifs_release_dirty_inode_budget(c, ui);
502         ui->dirty = 0;
503 }
504
505 /**
506  * ubifs_jnl_update - update inode.
507  * @c: UBIFS file-system description object
508  * @dir: parent inode or host inode in case of extended attributes
509  * @nm: directory entry name
510  * @inode: inode to update
511  * @deletion: indicates a directory entry deletion i.e unlink or rmdir
512  * @xent: non-zero if the directory entry is an extended attribute entry
513  *
514  * This function updates an inode by writing a directory entry (or extended
515  * attribute entry), the inode itself, and the parent directory inode (or the
516  * host inode) to the journal.
517  *
518  * The function writes the host inode @dir last, which is important in case of
519  * extended attributes. Indeed, then we guarantee that if the host inode gets
520  * synchronized (with 'fsync()'), and the write-buffer it sits in gets flushed,
521  * the extended attribute inode gets flushed too. And this is exactly what the
522  * user expects - synchronizing the host inode synchronizes its extended
523  * attributes. Similarly, this guarantees that if @dir is synchronized, its
524  * directory entry corresponding to @nm gets synchronized too.
525  *
526  * If the inode (@inode) or the parent directory (@dir) are synchronous, this
527  * function synchronizes the write-buffer.
528  *
529  * This function marks the @dir and @inode inodes as clean and returns zero on
530  * success. In case of failure, a negative error code is returned.
531  */
532 int ubifs_jnl_update(struct ubifs_info *c, const struct inode *dir,
533                      const struct fscrypt_name *nm, const struct inode *inode,
534                      int deletion, int xent)
535 {
536         int err, dlen, ilen, len, lnum, ino_offs, dent_offs;
537         int aligned_dlen, aligned_ilen, sync = IS_DIRSYNC(dir);
538         int last_reference = !!(deletion && inode->i_nlink == 0);
539         struct ubifs_inode *ui = ubifs_inode(inode);
540         struct ubifs_inode *host_ui = ubifs_inode(dir);
541         struct ubifs_dent_node *dent;
542         struct ubifs_ino_node *ino;
543         union ubifs_key dent_key, ino_key;
544
545         //dbg_jnl("ino %lu, dent '%.*s', data len %d in dir ino %lu",
546         //      inode->i_ino, nm->len, nm->name, ui->data_len, dir->i_ino);
547         ubifs_assert(mutex_is_locked(&host_ui->ui_mutex));
548
549         dlen = UBIFS_DENT_NODE_SZ + fname_len(nm) + 1;
550         ilen = UBIFS_INO_NODE_SZ;
551
552         /*
553          * If the last reference to the inode is being deleted, then there is
554          * no need to attach and write inode data, it is being deleted anyway.
555          * And if the inode is being deleted, no need to synchronize
556          * write-buffer even if the inode is synchronous.
557          */
558         if (!last_reference) {
559                 ilen += ui->data_len;
560                 sync |= IS_SYNC(inode);
561         }
562
563         aligned_dlen = ALIGN(dlen, 8);
564         aligned_ilen = ALIGN(ilen, 8);
565
566         len = aligned_dlen + aligned_ilen + UBIFS_INO_NODE_SZ;
567         /* Make sure to also account for extended attributes */
568         len += host_ui->data_len;
569
570         dent = kmalloc(len, GFP_NOFS);
571         if (!dent)
572                 return -ENOMEM;
573
574         /* Make reservation before allocating sequence numbers */
575         err = make_reservation(c, BASEHD, len);
576         if (err)
577                 goto out_free;
578
579         if (!xent) {
580                 dent->ch.node_type = UBIFS_DENT_NODE;
581                 dent_key_init(c, &dent_key, dir->i_ino, nm);
582         } else {
583                 dent->ch.node_type = UBIFS_XENT_NODE;
584                 xent_key_init(c, &dent_key, dir->i_ino, nm);
585         }
586
587         key_write(c, &dent_key, dent->key);
588         dent->inum = deletion ? 0 : cpu_to_le64(inode->i_ino);
589         dent->type = get_dent_type(inode->i_mode);
590         dent->nlen = cpu_to_le16(fname_len(nm));
591         memcpy(dent->name, fname_name(nm), fname_len(nm));
592         dent->name[fname_len(nm)] = '\0';
593
594         zero_dent_node_unused(dent);
595         ubifs_prep_grp_node(c, dent, dlen, 0);
596
597         ino = (void *)dent + aligned_dlen;
598         pack_inode(c, ino, inode, 0);
599         ino = (void *)ino + aligned_ilen;
600         pack_inode(c, ino, dir, 1);
601
602         if (last_reference) {
603                 err = ubifs_add_orphan(c, inode->i_ino);
604                 if (err) {
605                         release_head(c, BASEHD);
606                         goto out_finish;
607                 }
608                 ui->del_cmtno = c->cmt_no;
609         }
610
611         err = write_head(c, BASEHD, dent, len, &lnum, &dent_offs, sync);
612         if (err)
613                 goto out_release;
614         if (!sync) {
615                 struct ubifs_wbuf *wbuf = &c->jheads[BASEHD].wbuf;
616
617                 ubifs_wbuf_add_ino_nolock(wbuf, inode->i_ino);
618                 ubifs_wbuf_add_ino_nolock(wbuf, dir->i_ino);
619         }
620         release_head(c, BASEHD);
621         kfree(dent);
622
623         if (deletion) {
624                 err = ubifs_tnc_remove_nm(c, &dent_key, nm);
625                 if (err)
626                         goto out_ro;
627                 err = ubifs_add_dirt(c, lnum, dlen);
628         } else
629                 err = ubifs_tnc_add_nm(c, &dent_key, lnum, dent_offs, dlen, nm);
630         if (err)
631                 goto out_ro;
632
633         /*
634          * Note, we do not remove the inode from TNC even if the last reference
635          * to it has just been deleted, because the inode may still be opened.
636          * Instead, the inode has been added to orphan lists and the orphan
637          * subsystem will take further care about it.
638          */
639         ino_key_init(c, &ino_key, inode->i_ino);
640         ino_offs = dent_offs + aligned_dlen;
641         err = ubifs_tnc_add(c, &ino_key, lnum, ino_offs, ilen);
642         if (err)
643                 goto out_ro;
644
645         ino_key_init(c, &ino_key, dir->i_ino);
646         ino_offs += aligned_ilen;
647         err = ubifs_tnc_add(c, &ino_key, lnum, ino_offs,
648                             UBIFS_INO_NODE_SZ + host_ui->data_len);
649         if (err)
650                 goto out_ro;
651
652         finish_reservation(c);
653         spin_lock(&ui->ui_lock);
654         ui->synced_i_size = ui->ui_size;
655         spin_unlock(&ui->ui_lock);
656         mark_inode_clean(c, ui);
657         mark_inode_clean(c, host_ui);
658         return 0;
659
660 out_finish:
661         finish_reservation(c);
662 out_free:
663         kfree(dent);
664         return err;
665
666 out_release:
667         release_head(c, BASEHD);
668         kfree(dent);
669 out_ro:
670         ubifs_ro_mode(c, err);
671         if (last_reference)
672                 ubifs_delete_orphan(c, inode->i_ino);
673         finish_reservation(c);
674         return err;
675 }
676
677 /**
678  * ubifs_jnl_write_data - write a data node to the journal.
679  * @c: UBIFS file-system description object
680  * @inode: inode the data node belongs to
681  * @key: node key
682  * @buf: buffer to write
683  * @len: data length (must not exceed %UBIFS_BLOCK_SIZE)
684  *
685  * This function writes a data node to the journal. Returns %0 if the data node
686  * was successfully written, and a negative error code in case of failure.
687  */
688 int ubifs_jnl_write_data(struct ubifs_info *c, const struct inode *inode,
689                          const union ubifs_key *key, const void *buf, int len)
690 {
691         struct ubifs_data_node *data;
692         int err, lnum, offs, compr_type, out_len, compr_len;
693         int dlen = COMPRESSED_DATA_NODE_BUF_SZ, allocated = 1;
694         struct ubifs_inode *ui = ubifs_inode(inode);
695         bool encrypted = ubifs_crypt_is_encrypted(inode);
696
697         dbg_jnlk(key, "ino %lu, blk %u, len %d, key ",
698                 (unsigned long)key_inum(c, key), key_block(c, key), len);
699         ubifs_assert(len <= UBIFS_BLOCK_SIZE);
700
701         if (encrypted)
702                 dlen += UBIFS_CIPHER_BLOCK_SIZE;
703
704         data = kmalloc(dlen, GFP_NOFS | __GFP_NOWARN);
705         if (!data) {
706                 /*
707                  * Fall-back to the write reserve buffer. Note, we might be
708                  * currently on the memory reclaim path, when the kernel is
709                  * trying to free some memory by writing out dirty pages. The
710                  * write reserve buffer helps us to guarantee that we are
711                  * always able to write the data.
712                  */
713                 allocated = 0;
714                 mutex_lock(&c->write_reserve_mutex);
715                 data = c->write_reserve_buf;
716         }
717
718         data->ch.node_type = UBIFS_DATA_NODE;
719         key_write(c, key, &data->key);
720         data->size = cpu_to_le32(len);
721
722         if (!(ui->flags & UBIFS_COMPR_FL))
723                 /* Compression is disabled for this inode */
724                 compr_type = UBIFS_COMPR_NONE;
725         else
726                 compr_type = ui->compr_type;
727
728         out_len = compr_len = dlen - UBIFS_DATA_NODE_SZ;
729         ubifs_compress(c, buf, len, &data->data, &compr_len, &compr_type);
730         ubifs_assert(compr_len <= UBIFS_BLOCK_SIZE);
731
732         if (encrypted) {
733                 err = ubifs_encrypt(inode, data, compr_len, &out_len, key_block(c, key));
734                 if (err)
735                         goto out_free;
736
737         } else {
738                 data->compr_size = 0;
739         }
740
741         dlen = UBIFS_DATA_NODE_SZ + out_len;
742         data->compr_type = cpu_to_le16(compr_type);
743
744         /* Make reservation before allocating sequence numbers */
745         err = make_reservation(c, DATAHD, dlen);
746         if (err)
747                 goto out_free;
748
749         err = write_node(c, DATAHD, data, dlen, &lnum, &offs);
750         if (err)
751                 goto out_release;
752         ubifs_wbuf_add_ino_nolock(&c->jheads[DATAHD].wbuf, key_inum(c, key));
753         release_head(c, DATAHD);
754
755         err = ubifs_tnc_add(c, key, lnum, offs, dlen);
756         if (err)
757                 goto out_ro;
758
759         finish_reservation(c);
760         if (!allocated)
761                 mutex_unlock(&c->write_reserve_mutex);
762         else
763                 kfree(data);
764         return 0;
765
766 out_release:
767         release_head(c, DATAHD);
768 out_ro:
769         ubifs_ro_mode(c, err);
770         finish_reservation(c);
771 out_free:
772         if (!allocated)
773                 mutex_unlock(&c->write_reserve_mutex);
774         else
775                 kfree(data);
776         return err;
777 }
778
779 /**
780  * ubifs_jnl_write_inode - flush inode to the journal.
781  * @c: UBIFS file-system description object
782  * @inode: inode to flush
783  *
784  * This function writes inode @inode to the journal. If the inode is
785  * synchronous, it also synchronizes the write-buffer. Returns zero in case of
786  * success and a negative error code in case of failure.
787  */
788 int ubifs_jnl_write_inode(struct ubifs_info *c, const struct inode *inode)
789 {
790         int err, lnum, offs;
791         struct ubifs_ino_node *ino;
792         struct ubifs_inode *ui = ubifs_inode(inode);
793         int sync = 0, len = UBIFS_INO_NODE_SZ, last_reference = !inode->i_nlink;
794
795         dbg_jnl("ino %lu, nlink %u", inode->i_ino, inode->i_nlink);
796
797         /*
798          * If the inode is being deleted, do not write the attached data. No
799          * need to synchronize the write-buffer either.
800          */
801         if (!last_reference) {
802                 len += ui->data_len;
803                 sync = IS_SYNC(inode);
804         }
805         ino = kmalloc(len, GFP_NOFS);
806         if (!ino)
807                 return -ENOMEM;
808
809         /* Make reservation before allocating sequence numbers */
810         err = make_reservation(c, BASEHD, len);
811         if (err)
812                 goto out_free;
813
814         pack_inode(c, ino, inode, 1);
815         err = write_head(c, BASEHD, ino, len, &lnum, &offs, sync);
816         if (err)
817                 goto out_release;
818         if (!sync)
819                 ubifs_wbuf_add_ino_nolock(&c->jheads[BASEHD].wbuf,
820                                           inode->i_ino);
821         release_head(c, BASEHD);
822
823         if (last_reference) {
824                 err = ubifs_tnc_remove_ino(c, inode->i_ino);
825                 if (err)
826                         goto out_ro;
827                 ubifs_delete_orphan(c, inode->i_ino);
828                 err = ubifs_add_dirt(c, lnum, len);
829         } else {
830                 union ubifs_key key;
831
832                 ino_key_init(c, &key, inode->i_ino);
833                 err = ubifs_tnc_add(c, &key, lnum, offs, len);
834         }
835         if (err)
836                 goto out_ro;
837
838         finish_reservation(c);
839         spin_lock(&ui->ui_lock);
840         ui->synced_i_size = ui->ui_size;
841         spin_unlock(&ui->ui_lock);
842         kfree(ino);
843         return 0;
844
845 out_release:
846         release_head(c, BASEHD);
847 out_ro:
848         ubifs_ro_mode(c, err);
849         finish_reservation(c);
850 out_free:
851         kfree(ino);
852         return err;
853 }
854
855 /**
856  * ubifs_jnl_delete_inode - delete an inode.
857  * @c: UBIFS file-system description object
858  * @inode: inode to delete
859  *
860  * This function deletes inode @inode which includes removing it from orphans,
861  * deleting it from TNC and, in some cases, writing a deletion inode to the
862  * journal.
863  *
864  * When regular file inodes are unlinked or a directory inode is removed, the
865  * 'ubifs_jnl_update()' function writes a corresponding deletion inode and
866  * direntry to the media, and adds the inode to orphans. After this, when the
867  * last reference to this inode has been dropped, this function is called. In
868  * general, it has to write one more deletion inode to the media, because if
869  * a commit happened between 'ubifs_jnl_update()' and
870  * 'ubifs_jnl_delete_inode()', the deletion inode is not in the journal
871  * anymore, and in fact it might not be on the flash anymore, because it might
872  * have been garbage-collected already. And for optimization reasons UBIFS does
873  * not read the orphan area if it has been unmounted cleanly, so it would have
874  * no indication in the journal that there is a deleted inode which has to be
875  * removed from TNC.
876  *
877  * However, if there was no commit between 'ubifs_jnl_update()' and
878  * 'ubifs_jnl_delete_inode()', then there is no need to write the deletion
879  * inode to the media for the second time. And this is quite a typical case.
880  *
881  * This function returns zero in case of success and a negative error code in
882  * case of failure.
883  */
884 int ubifs_jnl_delete_inode(struct ubifs_info *c, const struct inode *inode)
885 {
886         int err;
887         struct ubifs_inode *ui = ubifs_inode(inode);
888
889         ubifs_assert(inode->i_nlink == 0);
890
891         if (ui->del_cmtno != c->cmt_no)
892                 /* A commit happened for sure */
893                 return ubifs_jnl_write_inode(c, inode);
894
895         down_read(&c->commit_sem);
896         /*
897          * Check commit number again, because the first test has been done
898          * without @c->commit_sem, so a commit might have happened.
899          */
900         if (ui->del_cmtno != c->cmt_no) {
901                 up_read(&c->commit_sem);
902                 return ubifs_jnl_write_inode(c, inode);
903         }
904
905         err = ubifs_tnc_remove_ino(c, inode->i_ino);
906         if (err)
907                 ubifs_ro_mode(c, err);
908         else
909                 ubifs_delete_orphan(c, inode->i_ino);
910         up_read(&c->commit_sem);
911         return err;
912 }
913
914 /**
915  * ubifs_jnl_xrename - cross rename two directory entries.
916  * @c: UBIFS file-system description object
917  * @fst_dir: parent inode of 1st directory entry to exchange
918  * @fst_inode: 1st inode to exchange
919  * @fst_nm: name of 1st inode to exchange
920  * @snd_dir: parent inode of 2nd directory entry to exchange
921  * @snd_inode: 2nd inode to exchange
922  * @snd_nm: name of 2nd inode to exchange
923  * @sync: non-zero if the write-buffer has to be synchronized
924  *
925  * This function implements the cross rename operation which may involve
926  * writing 2 inodes and 2 directory entries. It marks the written inodes as clean
927  * and returns zero on success. In case of failure, a negative error code is
928  * returned.
929  */
930 int ubifs_jnl_xrename(struct ubifs_info *c, const struct inode *fst_dir,
931                       const struct inode *fst_inode,
932                       const struct fscrypt_name *fst_nm,
933                       const struct inode *snd_dir,
934                       const struct inode *snd_inode,
935                       const struct fscrypt_name *snd_nm, int sync)
936 {
937         union ubifs_key key;
938         struct ubifs_dent_node *dent1, *dent2;
939         int err, dlen1, dlen2, lnum, offs, len, plen = UBIFS_INO_NODE_SZ;
940         int aligned_dlen1, aligned_dlen2;
941         int twoparents = (fst_dir != snd_dir);
942         void *p;
943
944         //dbg_jnl("dent '%pd' in dir ino %lu between dent '%pd' in dir ino %lu",
945         //      fst_dentry, fst_dir->i_ino, snd_dentry, snd_dir->i_ino);
946
947         ubifs_assert(ubifs_inode(fst_dir)->data_len == 0);
948         ubifs_assert(ubifs_inode(snd_dir)->data_len == 0);
949         ubifs_assert(mutex_is_locked(&ubifs_inode(fst_dir)->ui_mutex));
950         ubifs_assert(mutex_is_locked(&ubifs_inode(snd_dir)->ui_mutex));
951
952         dlen1 = UBIFS_DENT_NODE_SZ + fname_len(snd_nm) + 1;
953         dlen2 = UBIFS_DENT_NODE_SZ + fname_len(fst_nm) + 1;
954         aligned_dlen1 = ALIGN(dlen1, 8);
955         aligned_dlen2 = ALIGN(dlen2, 8);
956
957         len = aligned_dlen1 + aligned_dlen2 + ALIGN(plen, 8);
958         if (twoparents)
959                 len += plen;
960
961         dent1 = kmalloc(len, GFP_NOFS);
962         if (!dent1)
963                 return -ENOMEM;
964
965         /* Make reservation before allocating sequence numbers */
966         err = make_reservation(c, BASEHD, len);
967         if (err)
968                 goto out_free;
969
970         /* Make new dent for 1st entry */
971         dent1->ch.node_type = UBIFS_DENT_NODE;
972         dent_key_init_flash(c, &dent1->key, snd_dir->i_ino, snd_nm);
973         dent1->inum = cpu_to_le64(fst_inode->i_ino);
974         dent1->type = get_dent_type(fst_inode->i_mode);
975         dent1->nlen = cpu_to_le16(fname_len(snd_nm));
976         memcpy(dent1->name, fname_name(snd_nm), fname_len(snd_nm));
977         dent1->name[fname_len(snd_nm)] = '\0';
978         zero_dent_node_unused(dent1);
979         ubifs_prep_grp_node(c, dent1, dlen1, 0);
980
981         /* Make new dent for 2nd entry */
982         dent2 = (void *)dent1 + aligned_dlen1;
983         dent2->ch.node_type = UBIFS_DENT_NODE;
984         dent_key_init_flash(c, &dent2->key, fst_dir->i_ino, fst_nm);
985         dent2->inum = cpu_to_le64(snd_inode->i_ino);
986         dent2->type = get_dent_type(snd_inode->i_mode);
987         dent2->nlen = cpu_to_le16(fname_len(fst_nm));
988         memcpy(dent2->name, fname_name(fst_nm), fname_len(fst_nm));
989         dent2->name[fname_len(fst_nm)] = '\0';
990         zero_dent_node_unused(dent2);
991         ubifs_prep_grp_node(c, dent2, dlen2, 0);
992
993         p = (void *)dent2 + aligned_dlen2;
994         if (!twoparents)
995                 pack_inode(c, p, fst_dir, 1);
996         else {
997                 pack_inode(c, p, fst_dir, 0);
998                 p += ALIGN(plen, 8);
999                 pack_inode(c, p, snd_dir, 1);
1000         }
1001
1002         err = write_head(c, BASEHD, dent1, len, &lnum, &offs, sync);
1003         if (err)
1004                 goto out_release;
1005         if (!sync) {
1006                 struct ubifs_wbuf *wbuf = &c->jheads[BASEHD].wbuf;
1007
1008                 ubifs_wbuf_add_ino_nolock(wbuf, fst_dir->i_ino);
1009                 ubifs_wbuf_add_ino_nolock(wbuf, snd_dir->i_ino);
1010         }
1011         release_head(c, BASEHD);
1012
1013         dent_key_init(c, &key, snd_dir->i_ino, snd_nm);
1014         err = ubifs_tnc_add_nm(c, &key, lnum, offs, dlen1, snd_nm);
1015         if (err)
1016                 goto out_ro;
1017
1018         offs += aligned_dlen1;
1019         dent_key_init(c, &key, fst_dir->i_ino, fst_nm);
1020         err = ubifs_tnc_add_nm(c, &key, lnum, offs, dlen2, fst_nm);
1021         if (err)
1022                 goto out_ro;
1023
1024         offs += aligned_dlen2;
1025
1026         ino_key_init(c, &key, fst_dir->i_ino);
1027         err = ubifs_tnc_add(c, &key, lnum, offs, plen);
1028         if (err)
1029                 goto out_ro;
1030
1031         if (twoparents) {
1032                 offs += ALIGN(plen, 8);
1033                 ino_key_init(c, &key, snd_dir->i_ino);
1034                 err = ubifs_tnc_add(c, &key, lnum, offs, plen);
1035                 if (err)
1036                         goto out_ro;
1037         }
1038
1039         finish_reservation(c);
1040
1041         mark_inode_clean(c, ubifs_inode(fst_dir));
1042         if (twoparents)
1043                 mark_inode_clean(c, ubifs_inode(snd_dir));
1044         kfree(dent1);
1045         return 0;
1046
1047 out_release:
1048         release_head(c, BASEHD);
1049 out_ro:
1050         ubifs_ro_mode(c, err);
1051         finish_reservation(c);
1052 out_free:
1053         kfree(dent1);
1054         return err;
1055 }
1056
1057 /**
1058  * ubifs_jnl_rename - rename a directory entry.
1059  * @c: UBIFS file-system description object
1060  * @old_dir: parent inode of directory entry to rename
1061  * @old_dentry: directory entry to rename
1062  * @new_dir: parent inode of directory entry to rename
1063  * @new_dentry: new directory entry (or directory entry to replace)
1064  * @sync: non-zero if the write-buffer has to be synchronized
1065  *
1066  * This function implements the re-name operation which may involve writing up
1067  * to 4 inodes and 2 directory entries. It marks the written inodes as clean
1068  * and returns zero on success. In case of failure, a negative error code is
1069  * returned.
1070  */
1071 int ubifs_jnl_rename(struct ubifs_info *c, const struct inode *old_dir,
1072                      const struct inode *old_inode,
1073                      const struct fscrypt_name *old_nm,
1074                      const struct inode *new_dir,
1075                      const struct inode *new_inode,
1076                      const struct fscrypt_name *new_nm,
1077                      const struct inode *whiteout, int sync)
1078 {
1079         void *p;
1080         union ubifs_key key;
1081         struct ubifs_dent_node *dent, *dent2;
1082         int err, dlen1, dlen2, ilen, lnum, offs, len;
1083         int aligned_dlen1, aligned_dlen2, plen = UBIFS_INO_NODE_SZ;
1084         int last_reference = !!(new_inode && new_inode->i_nlink == 0);
1085         int move = (old_dir != new_dir);
1086         struct ubifs_inode *uninitialized_var(new_ui);
1087
1088         //dbg_jnl("dent '%pd' in dir ino %lu to dent '%pd' in dir ino %lu",
1089         //      old_dentry, old_dir->i_ino, new_dentry, new_dir->i_ino);
1090         ubifs_assert(ubifs_inode(old_dir)->data_len == 0);
1091         ubifs_assert(ubifs_inode(new_dir)->data_len == 0);
1092         ubifs_assert(mutex_is_locked(&ubifs_inode(old_dir)->ui_mutex));
1093         ubifs_assert(mutex_is_locked(&ubifs_inode(new_dir)->ui_mutex));
1094
1095         dlen1 = UBIFS_DENT_NODE_SZ + fname_len(new_nm) + 1;
1096         dlen2 = UBIFS_DENT_NODE_SZ + fname_len(old_nm) + 1;
1097         if (new_inode) {
1098                 new_ui = ubifs_inode(new_inode);
1099                 ubifs_assert(mutex_is_locked(&new_ui->ui_mutex));
1100                 ilen = UBIFS_INO_NODE_SZ;
1101                 if (!last_reference)
1102                         ilen += new_ui->data_len;
1103         } else
1104                 ilen = 0;
1105
1106         aligned_dlen1 = ALIGN(dlen1, 8);
1107         aligned_dlen2 = ALIGN(dlen2, 8);
1108         len = aligned_dlen1 + aligned_dlen2 + ALIGN(ilen, 8) + ALIGN(plen, 8);
1109         if (move)
1110                 len += plen;
1111         dent = kmalloc(len, GFP_NOFS);
1112         if (!dent)
1113                 return -ENOMEM;
1114
1115         /* Make reservation before allocating sequence numbers */
1116         err = make_reservation(c, BASEHD, len);
1117         if (err)
1118                 goto out_free;
1119
1120         /* Make new dent */
1121         dent->ch.node_type = UBIFS_DENT_NODE;
1122         dent_key_init_flash(c, &dent->key, new_dir->i_ino, new_nm);
1123         dent->inum = cpu_to_le64(old_inode->i_ino);
1124         dent->type = get_dent_type(old_inode->i_mode);
1125         dent->nlen = cpu_to_le16(fname_len(new_nm));
1126         memcpy(dent->name, fname_name(new_nm), fname_len(new_nm));
1127         dent->name[fname_len(new_nm)] = '\0';
1128         zero_dent_node_unused(dent);
1129         ubifs_prep_grp_node(c, dent, dlen1, 0);
1130
1131         dent2 = (void *)dent + aligned_dlen1;
1132         dent2->ch.node_type = UBIFS_DENT_NODE;
1133         dent_key_init_flash(c, &dent2->key, old_dir->i_ino, old_nm);
1134
1135         if (whiteout) {
1136                 dent2->inum = cpu_to_le64(whiteout->i_ino);
1137                 dent2->type = get_dent_type(whiteout->i_mode);
1138         } else {
1139                 /* Make deletion dent */
1140                 dent2->inum = 0;
1141                 dent2->type = DT_UNKNOWN;
1142         }
1143         dent2->nlen = cpu_to_le16(fname_len(old_nm));
1144         memcpy(dent2->name, fname_name(old_nm), fname_len(old_nm));
1145         dent2->name[fname_len(old_nm)] = '\0';
1146         zero_dent_node_unused(dent2);
1147         ubifs_prep_grp_node(c, dent2, dlen2, 0);
1148
1149         p = (void *)dent2 + aligned_dlen2;
1150         if (new_inode) {
1151                 pack_inode(c, p, new_inode, 0);
1152                 p += ALIGN(ilen, 8);
1153         }
1154
1155         if (!move)
1156                 pack_inode(c, p, old_dir, 1);
1157         else {
1158                 pack_inode(c, p, old_dir, 0);
1159                 p += ALIGN(plen, 8);
1160                 pack_inode(c, p, new_dir, 1);
1161         }
1162
1163         if (last_reference) {
1164                 err = ubifs_add_orphan(c, new_inode->i_ino);
1165                 if (err) {
1166                         release_head(c, BASEHD);
1167                         goto out_finish;
1168                 }
1169                 new_ui->del_cmtno = c->cmt_no;
1170         }
1171
1172         err = write_head(c, BASEHD, dent, len, &lnum, &offs, sync);
1173         if (err)
1174                 goto out_release;
1175         if (!sync) {
1176                 struct ubifs_wbuf *wbuf = &c->jheads[BASEHD].wbuf;
1177
1178                 ubifs_wbuf_add_ino_nolock(wbuf, new_dir->i_ino);
1179                 ubifs_wbuf_add_ino_nolock(wbuf, old_dir->i_ino);
1180                 if (new_inode)
1181                         ubifs_wbuf_add_ino_nolock(&c->jheads[BASEHD].wbuf,
1182                                                   new_inode->i_ino);
1183         }
1184         release_head(c, BASEHD);
1185
1186         dent_key_init(c, &key, new_dir->i_ino, new_nm);
1187         err = ubifs_tnc_add_nm(c, &key, lnum, offs, dlen1, new_nm);
1188         if (err)
1189                 goto out_ro;
1190
1191         offs += aligned_dlen1;
1192         if (whiteout) {
1193                 dent_key_init(c, &key, old_dir->i_ino, old_nm);
1194                 err = ubifs_tnc_add_nm(c, &key, lnum, offs, dlen2, old_nm);
1195                 if (err)
1196                         goto out_ro;
1197
1198                 ubifs_delete_orphan(c, whiteout->i_ino);
1199         } else {
1200                 err = ubifs_add_dirt(c, lnum, dlen2);
1201                 if (err)
1202                         goto out_ro;
1203
1204                 dent_key_init(c, &key, old_dir->i_ino, old_nm);
1205                 err = ubifs_tnc_remove_nm(c, &key, old_nm);
1206                 if (err)
1207                         goto out_ro;
1208         }
1209
1210         offs += aligned_dlen2;
1211         if (new_inode) {
1212                 ino_key_init(c, &key, new_inode->i_ino);
1213                 err = ubifs_tnc_add(c, &key, lnum, offs, ilen);
1214                 if (err)
1215                         goto out_ro;
1216                 offs += ALIGN(ilen, 8);
1217         }
1218
1219         ino_key_init(c, &key, old_dir->i_ino);
1220         err = ubifs_tnc_add(c, &key, lnum, offs, plen);
1221         if (err)
1222                 goto out_ro;
1223
1224         if (move) {
1225                 offs += ALIGN(plen, 8);
1226                 ino_key_init(c, &key, new_dir->i_ino);
1227                 err = ubifs_tnc_add(c, &key, lnum, offs, plen);
1228                 if (err)
1229                         goto out_ro;
1230         }
1231
1232         finish_reservation(c);
1233         if (new_inode) {
1234                 mark_inode_clean(c, new_ui);
1235                 spin_lock(&new_ui->ui_lock);
1236                 new_ui->synced_i_size = new_ui->ui_size;
1237                 spin_unlock(&new_ui->ui_lock);
1238         }
1239         mark_inode_clean(c, ubifs_inode(old_dir));
1240         if (move)
1241                 mark_inode_clean(c, ubifs_inode(new_dir));
1242         kfree(dent);
1243         return 0;
1244
1245 out_release:
1246         release_head(c, BASEHD);
1247 out_ro:
1248         ubifs_ro_mode(c, err);
1249         if (last_reference)
1250                 ubifs_delete_orphan(c, new_inode->i_ino);
1251 out_finish:
1252         finish_reservation(c);
1253 out_free:
1254         kfree(dent);
1255         return err;
1256 }
1257
1258 /**
1259  * truncate_data_node - re-compress/encrypt a truncated data node.
1260  * @c: UBIFS file-system description object
1261  * @inode: inode which referes to the data node
1262  * @block: data block number
1263  * @dn: data node to re-compress
1264  * @new_len: new length
1265  *
1266  * This function is used when an inode is truncated and the last data node of
1267  * the inode has to be re-compressed/encrypted and re-written.
1268  */
1269 static int truncate_data_node(const struct ubifs_info *c, const struct inode *inode,
1270                               unsigned int block, struct ubifs_data_node *dn,
1271                               int *new_len)
1272 {
1273         void *buf;
1274         int err, dlen, compr_type, out_len, old_dlen;
1275
1276         out_len = le32_to_cpu(dn->size);
1277         buf = kmalloc(out_len * WORST_COMPR_FACTOR, GFP_NOFS);
1278         if (!buf)
1279                 return -ENOMEM;
1280
1281         dlen = old_dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ;
1282         compr_type = le16_to_cpu(dn->compr_type);
1283
1284         if (ubifs_crypt_is_encrypted(inode)) {
1285                 err = ubifs_decrypt(inode, dn, &dlen, block);
1286                 if (err)
1287                         goto out;
1288         }
1289
1290         if (compr_type != UBIFS_COMPR_NONE) {
1291                 err = ubifs_decompress(c, &dn->data, dlen, buf, &out_len, compr_type);
1292                 if (err)
1293                         goto out;
1294
1295                 ubifs_compress(c, buf, *new_len, &dn->data, &out_len, &compr_type);
1296         }
1297
1298         if (ubifs_crypt_is_encrypted(inode)) {
1299                 err = ubifs_encrypt(inode, dn, out_len, &old_dlen, block);
1300                 if (err)
1301                         goto out;
1302
1303                 out_len = old_dlen;
1304         } else {
1305                 dn->compr_size = 0;
1306         }
1307
1308         ubifs_assert(out_len <= UBIFS_BLOCK_SIZE);
1309         dn->compr_type = cpu_to_le16(compr_type);
1310         dn->size = cpu_to_le32(*new_len);
1311         *new_len = UBIFS_DATA_NODE_SZ + out_len;
1312 out:
1313         kfree(buf);
1314         return err;
1315 }
1316
1317 /**
1318  * ubifs_jnl_truncate - update the journal for a truncation.
1319  * @c: UBIFS file-system description object
1320  * @inode: inode to truncate
1321  * @old_size: old size
1322  * @new_size: new size
1323  *
1324  * When the size of a file decreases due to truncation, a truncation node is
1325  * written, the journal tree is updated, and the last data block is re-written
1326  * if it has been affected. The inode is also updated in order to synchronize
1327  * the new inode size.
1328  *
1329  * This function marks the inode as clean and returns zero on success. In case
1330  * of failure, a negative error code is returned.
1331  */
1332 int ubifs_jnl_truncate(struct ubifs_info *c, const struct inode *inode,
1333                        loff_t old_size, loff_t new_size)
1334 {
1335         union ubifs_key key, to_key;
1336         struct ubifs_ino_node *ino;
1337         struct ubifs_trun_node *trun;
1338         struct ubifs_data_node *uninitialized_var(dn);
1339         int err, dlen, len, lnum, offs, bit, sz, sync = IS_SYNC(inode);
1340         struct ubifs_inode *ui = ubifs_inode(inode);
1341         ino_t inum = inode->i_ino;
1342         unsigned int blk;
1343
1344         dbg_jnl("ino %lu, size %lld -> %lld",
1345                 (unsigned long)inum, old_size, new_size);
1346         ubifs_assert(!ui->data_len);
1347         ubifs_assert(S_ISREG(inode->i_mode));
1348         ubifs_assert(mutex_is_locked(&ui->ui_mutex));
1349
1350         sz = UBIFS_TRUN_NODE_SZ + UBIFS_INO_NODE_SZ +
1351              UBIFS_MAX_DATA_NODE_SZ * WORST_COMPR_FACTOR;
1352         ino = kmalloc(sz, GFP_NOFS);
1353         if (!ino)
1354                 return -ENOMEM;
1355
1356         trun = (void *)ino + UBIFS_INO_NODE_SZ;
1357         trun->ch.node_type = UBIFS_TRUN_NODE;
1358         trun->inum = cpu_to_le32(inum);
1359         trun->old_size = cpu_to_le64(old_size);
1360         trun->new_size = cpu_to_le64(new_size);
1361         zero_trun_node_unused(trun);
1362
1363         dlen = new_size & (UBIFS_BLOCK_SIZE - 1);
1364         if (dlen) {
1365                 /* Get last data block so it can be truncated */
1366                 dn = (void *)trun + UBIFS_TRUN_NODE_SZ;
1367                 blk = new_size >> UBIFS_BLOCK_SHIFT;
1368                 data_key_init(c, &key, inum, blk);
1369                 dbg_jnlk(&key, "last block key ");
1370                 err = ubifs_tnc_lookup(c, &key, dn);
1371                 if (err == -ENOENT)
1372                         dlen = 0; /* Not found (so it is a hole) */
1373                 else if (err)
1374                         goto out_free;
1375                 else {
1376                         if (le32_to_cpu(dn->size) <= dlen)
1377                                 dlen = 0; /* Nothing to do */
1378                         else {
1379                                 err = truncate_data_node(c, inode, blk, dn, &dlen);
1380                                 if (err)
1381                                         goto out_free;
1382                         }
1383                 }
1384         }
1385
1386         /* Must make reservation before allocating sequence numbers */
1387         len = UBIFS_TRUN_NODE_SZ + UBIFS_INO_NODE_SZ;
1388         if (dlen)
1389                 len += dlen;
1390         err = make_reservation(c, BASEHD, len);
1391         if (err)
1392                 goto out_free;
1393
1394         pack_inode(c, ino, inode, 0);
1395         ubifs_prep_grp_node(c, trun, UBIFS_TRUN_NODE_SZ, dlen ? 0 : 1);
1396         if (dlen)
1397                 ubifs_prep_grp_node(c, dn, dlen, 1);
1398
1399         err = write_head(c, BASEHD, ino, len, &lnum, &offs, sync);
1400         if (err)
1401                 goto out_release;
1402         if (!sync)
1403                 ubifs_wbuf_add_ino_nolock(&c->jheads[BASEHD].wbuf, inum);
1404         release_head(c, BASEHD);
1405
1406         if (dlen) {
1407                 sz = offs + UBIFS_INO_NODE_SZ + UBIFS_TRUN_NODE_SZ;
1408                 err = ubifs_tnc_add(c, &key, lnum, sz, dlen);
1409                 if (err)
1410                         goto out_ro;
1411         }
1412
1413         ino_key_init(c, &key, inum);
1414         err = ubifs_tnc_add(c, &key, lnum, offs, UBIFS_INO_NODE_SZ);
1415         if (err)
1416                 goto out_ro;
1417
1418         err = ubifs_add_dirt(c, lnum, UBIFS_TRUN_NODE_SZ);
1419         if (err)
1420                 goto out_ro;
1421
1422         bit = new_size & (UBIFS_BLOCK_SIZE - 1);
1423         blk = (new_size >> UBIFS_BLOCK_SHIFT) + (bit ? 1 : 0);
1424         data_key_init(c, &key, inum, blk);
1425
1426         bit = old_size & (UBIFS_BLOCK_SIZE - 1);
1427         blk = (old_size >> UBIFS_BLOCK_SHIFT) - (bit ? 0 : 1);
1428         data_key_init(c, &to_key, inum, blk);
1429
1430         err = ubifs_tnc_remove_range(c, &key, &to_key);
1431         if (err)
1432                 goto out_ro;
1433
1434         finish_reservation(c);
1435         spin_lock(&ui->ui_lock);
1436         ui->synced_i_size = ui->ui_size;
1437         spin_unlock(&ui->ui_lock);
1438         mark_inode_clean(c, ui);
1439         kfree(ino);
1440         return 0;
1441
1442 out_release:
1443         release_head(c, BASEHD);
1444 out_ro:
1445         ubifs_ro_mode(c, err);
1446         finish_reservation(c);
1447 out_free:
1448         kfree(ino);
1449         return err;
1450 }
1451
1452
1453 /**
1454  * ubifs_jnl_delete_xattr - delete an extended attribute.
1455  * @c: UBIFS file-system description object
1456  * @host: host inode
1457  * @inode: extended attribute inode
1458  * @nm: extended attribute entry name
1459  *
1460  * This function delete an extended attribute which is very similar to
1461  * un-linking regular files - it writes a deletion xentry, a deletion inode and
1462  * updates the target inode. Returns zero in case of success and a negative
1463  * error code in case of failure.
1464  */
1465 int ubifs_jnl_delete_xattr(struct ubifs_info *c, const struct inode *host,
1466                            const struct inode *inode,
1467                            const struct fscrypt_name *nm)
1468 {
1469         int err, xlen, hlen, len, lnum, xent_offs, aligned_xlen;
1470         struct ubifs_dent_node *xent;
1471         struct ubifs_ino_node *ino;
1472         union ubifs_key xent_key, key1, key2;
1473         int sync = IS_DIRSYNC(host);
1474         struct ubifs_inode *host_ui = ubifs_inode(host);
1475
1476         //dbg_jnl("host %lu, xattr ino %lu, name '%s', data len %d",
1477         //      host->i_ino, inode->i_ino, nm->name,
1478         //      ubifs_inode(inode)->data_len);
1479         ubifs_assert(inode->i_nlink == 0);
1480         ubifs_assert(mutex_is_locked(&host_ui->ui_mutex));
1481
1482         /*
1483          * Since we are deleting the inode, we do not bother to attach any data
1484          * to it and assume its length is %UBIFS_INO_NODE_SZ.
1485          */
1486         xlen = UBIFS_DENT_NODE_SZ + fname_len(nm) + 1;
1487         aligned_xlen = ALIGN(xlen, 8);
1488         hlen = host_ui->data_len + UBIFS_INO_NODE_SZ;
1489         len = aligned_xlen + UBIFS_INO_NODE_SZ + ALIGN(hlen, 8);
1490
1491         xent = kmalloc(len, GFP_NOFS);
1492         if (!xent)
1493                 return -ENOMEM;
1494
1495         /* Make reservation before allocating sequence numbers */
1496         err = make_reservation(c, BASEHD, len);
1497         if (err) {
1498                 kfree(xent);
1499                 return err;
1500         }
1501
1502         xent->ch.node_type = UBIFS_XENT_NODE;
1503         xent_key_init(c, &xent_key, host->i_ino, nm);
1504         key_write(c, &xent_key, xent->key);
1505         xent->inum = 0;
1506         xent->type = get_dent_type(inode->i_mode);
1507         xent->nlen = cpu_to_le16(fname_len(nm));
1508         memcpy(xent->name, fname_name(nm), fname_len(nm));
1509         xent->name[fname_len(nm)] = '\0';
1510         zero_dent_node_unused(xent);
1511         ubifs_prep_grp_node(c, xent, xlen, 0);
1512
1513         ino = (void *)xent + aligned_xlen;
1514         pack_inode(c, ino, inode, 0);
1515         ino = (void *)ino + UBIFS_INO_NODE_SZ;
1516         pack_inode(c, ino, host, 1);
1517
1518         err = write_head(c, BASEHD, xent, len, &lnum, &xent_offs, sync);
1519         if (!sync && !err)
1520                 ubifs_wbuf_add_ino_nolock(&c->jheads[BASEHD].wbuf, host->i_ino);
1521         release_head(c, BASEHD);
1522         kfree(xent);
1523         if (err)
1524                 goto out_ro;
1525
1526         /* Remove the extended attribute entry from TNC */
1527         err = ubifs_tnc_remove_nm(c, &xent_key, nm);
1528         if (err)
1529                 goto out_ro;
1530         err = ubifs_add_dirt(c, lnum, xlen);
1531         if (err)
1532                 goto out_ro;
1533
1534         /*
1535          * Remove all nodes belonging to the extended attribute inode from TNC.
1536          * Well, there actually must be only one node - the inode itself.
1537          */
1538         lowest_ino_key(c, &key1, inode->i_ino);
1539         highest_ino_key(c, &key2, inode->i_ino);
1540         err = ubifs_tnc_remove_range(c, &key1, &key2);
1541         if (err)
1542                 goto out_ro;
1543         err = ubifs_add_dirt(c, lnum, UBIFS_INO_NODE_SZ);
1544         if (err)
1545                 goto out_ro;
1546
1547         /* And update TNC with the new host inode position */
1548         ino_key_init(c, &key1, host->i_ino);
1549         err = ubifs_tnc_add(c, &key1, lnum, xent_offs + len - hlen, hlen);
1550         if (err)
1551                 goto out_ro;
1552
1553         finish_reservation(c);
1554         spin_lock(&host_ui->ui_lock);
1555         host_ui->synced_i_size = host_ui->ui_size;
1556         spin_unlock(&host_ui->ui_lock);
1557         mark_inode_clean(c, host_ui);
1558         return 0;
1559
1560 out_ro:
1561         ubifs_ro_mode(c, err);
1562         finish_reservation(c);
1563         return err;
1564 }
1565
1566 /**
1567  * ubifs_jnl_change_xattr - change an extended attribute.
1568  * @c: UBIFS file-system description object
1569  * @inode: extended attribute inode
1570  * @host: host inode
1571  *
1572  * This function writes the updated version of an extended attribute inode and
1573  * the host inode to the journal (to the base head). The host inode is written
1574  * after the extended attribute inode in order to guarantee that the extended
1575  * attribute will be flushed when the inode is synchronized by 'fsync()' and
1576  * consequently, the write-buffer is synchronized. This function returns zero
1577  * in case of success and a negative error code in case of failure.
1578  */
1579 int ubifs_jnl_change_xattr(struct ubifs_info *c, const struct inode *inode,
1580                            const struct inode *host)
1581 {
1582         int err, len1, len2, aligned_len, aligned_len1, lnum, offs;
1583         struct ubifs_inode *host_ui = ubifs_inode(host);
1584         struct ubifs_ino_node *ino;
1585         union ubifs_key key;
1586         int sync = IS_DIRSYNC(host);
1587
1588         dbg_jnl("ino %lu, ino %lu", host->i_ino, inode->i_ino);
1589         ubifs_assert(host->i_nlink > 0);
1590         ubifs_assert(inode->i_nlink > 0);
1591         ubifs_assert(mutex_is_locked(&host_ui->ui_mutex));
1592
1593         len1 = UBIFS_INO_NODE_SZ + host_ui->data_len;
1594         len2 = UBIFS_INO_NODE_SZ + ubifs_inode(inode)->data_len;
1595         aligned_len1 = ALIGN(len1, 8);
1596         aligned_len = aligned_len1 + ALIGN(len2, 8);
1597
1598         ino = kmalloc(aligned_len, GFP_NOFS);
1599         if (!ino)
1600                 return -ENOMEM;
1601
1602         /* Make reservation before allocating sequence numbers */
1603         err = make_reservation(c, BASEHD, aligned_len);
1604         if (err)
1605                 goto out_free;
1606
1607         pack_inode(c, ino, host, 0);
1608         pack_inode(c, (void *)ino + aligned_len1, inode, 1);
1609
1610         err = write_head(c, BASEHD, ino, aligned_len, &lnum, &offs, 0);
1611         if (!sync && !err) {
1612                 struct ubifs_wbuf *wbuf = &c->jheads[BASEHD].wbuf;
1613
1614                 ubifs_wbuf_add_ino_nolock(wbuf, host->i_ino);
1615                 ubifs_wbuf_add_ino_nolock(wbuf, inode->i_ino);
1616         }
1617         release_head(c, BASEHD);
1618         if (err)
1619                 goto out_ro;
1620
1621         ino_key_init(c, &key, host->i_ino);
1622         err = ubifs_tnc_add(c, &key, lnum, offs, len1);
1623         if (err)
1624                 goto out_ro;
1625
1626         ino_key_init(c, &key, inode->i_ino);
1627         err = ubifs_tnc_add(c, &key, lnum, offs + aligned_len1, len2);
1628         if (err)
1629                 goto out_ro;
1630
1631         finish_reservation(c);
1632         spin_lock(&host_ui->ui_lock);
1633         host_ui->synced_i_size = host_ui->ui_size;
1634         spin_unlock(&host_ui->ui_lock);
1635         mark_inode_clean(c, host_ui);
1636         kfree(ino);
1637         return 0;
1638
1639 out_ro:
1640         ubifs_ro_mode(c, err);
1641         finish_reservation(c);
1642 out_free:
1643         kfree(ino);
1644         return err;
1645 }
1646