1<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN"[]> 2<book id="LinuxJBDAPI"> 3 <bookinfo> 4 <title>The Linux Journalling API</title> 5 <authorgroup> 6 <author> 7 <firstname>Roger</firstname> 8 <surname>Gammans</surname> 9 <affiliation> 10 <address> 11 <email>rgammans@computer-surgery.co.uk</email> 12 </address> 13 </affiliation> 14 </author> 15 </authorgroup> 16 17 <authorgroup> 18 <author> 19 <firstname>Stephen</firstname> 20 <surname>Tweedie</surname> 21 <affiliation> 22 <address> 23 <email>sct@redhat.com</email> 24 </address> 25 </affiliation> 26 </author> 27 </authorgroup> 28 29 <copyright> 30 <year>2002</year> 31 <holder>Roger Gammans</holder> 32 </copyright> 33 34<legalnotice> 35 <para> 36 This documentation is free software; you can redistribute 37 it and/or modify it under the terms of the GNU General Public 38 License as published by the Free Software Foundation; either 39 version 2 of the License, or (at your option) any later 40 version. 41 </para> 42 43 <para> 44 This program is distributed in the hope that it will be 45 useful, but WITHOUT ANY WARRANTY; without even the implied 46 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 47 See the GNU General Public License for more details. 48 </para> 49 50 <para> 51 You should have received a copy of the GNU General Public 52 License along with this program; if not, write to the Free 53 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 54 MA 02111-1307 USA 55 </para> 56 57 <para> 58 For more details see the file COPYING in the source 59 distribution of Linux. 60 </para> 61 </legalnotice> 62 </bookinfo> 63 64<toc></toc> 65 66 <chapter id="Overview"> 67 <title>Overview</title> 68 <sect1> 69 <title>Details</title> 70<para> 71The journalling layer is easy to use. You need to 72first of all create a journal_t data structure. There are 73two calls to do this dependent on how you decide to allocate the physical 74media on which the journal resides. The journal_init_inode() call 75is for journals stored in filesystem inodes, or the journal_init_dev() 76call can be use for journal stored on a raw device (in a continuous range 77of blocks). A journal_t is a typedef for a struct pointer, so when 78you are finally finished make sure you call journal_destroy() on it 79to free up any used kernel memory. 80</para> 81 82<para> 83Once you have got your journal_t object you need to 'mount' or load the journal 84file, unless of course you haven't initialised it yet - in which case you 85need to call journal_create(). 86</para> 87 88<para> 89Most of the time however your journal file will already have been created, but 90before you load it you must call journal_wipe() to empty the journal file. 91Hang on, you say , what if the filesystem wasn't cleanly umount()'d . Well, it is the 92job of the client file system to detect this and skip the call to journal_wipe(). 93</para> 94 95<para> 96In either case the next call should be to journal_load() which prepares the 97journal file for use. Note that journal_wipe(..,0) calls journal_skip_recovery() 98for you if it detects any outstanding transactions in the journal and similarly 99journal_load() will call journal_recover() if necessary. 100I would advise reading fs/ext3/super.c for examples on this stage. 101[RGG: Why is the journal_wipe() call necessary - doesn't this needlessly 102complicate the API. Or isn't a good idea for the journal layer to hide 103dirty mounts from the client fs] 104</para> 105 106<para> 107Now you can go ahead and start modifying the underlying 108filesystem. Almost. 109</para> 110 111 112<para> 113 114You still need to actually journal your filesystem changes, this 115is done by wrapping them into transactions. Additionally you 116also need to wrap the modification of each of the the buffers 117with calls to the journal layer, so it knows what the modifications 118you are actually making are. To do this use journal_start() which 119returns a transaction handle. 120</para> 121 122<para> 123journal_start() 124and its counterpart journal_stop(), which indicates the end of a transaction 125are nestable calls, so you can reenter a transaction if necessary, 126but remember you must call journal_stop() the same number of times as 127journal_start() before the transaction is completed (or more accurately 128leaves the the update phase). Ext3/VFS makes use of this feature to simplify 129quota support. 130</para> 131 132<para> 133Inside each transaction you need to wrap the modifications to the 134individual buffers (blocks). Before you start to modify a buffer you 135need to call journal_get_{create,write,undo}_access() as appropriate, 136this allows the journalling layer to copy the unmodified data if it 137needs to. After all the buffer may be part of a previously uncommitted 138transaction. 139At this point you are at last ready to modify a buffer, and once 140you are have done so you need to call journal_dirty_{meta,}data(). 141Or if you've asked for access to a buffer you now know is now longer 142required to be pushed back on the device you can call journal_forget() 143in much the same way as you might have used bforget() in the past. 144 145</para> 146 147 148 149<para> 150A journal_flush() may be called at any time to commit and checkpoint 151all your transactions. 152</para> 153<para> 154 155Then at umount time , in your put_super() (2.4) or write_super() (2.5) 156you can then call journal_destroy() to clean up your in-core journal object. 157</para> 158 159 160<para> 161Unfortunately there a couple of ways the journal layer can cause a deadlock. 162The first thing to note is that each task can only have 163a single outstanding transaction at any one time, remember nothing 164commits until the outermost journal_stop(). This means 165you must complete the transaction at the end of each file/inode/address 166etc. operation you perform, so that the journalling system isn't re-entered 167on another journal. Since transactions can't be nested/batched 168across differing journals, and another filesystem other than 169yours (say ext3) may be modified in a later syscall. 170</para> 171<para> 172 173The second case to bear in mind is that journal_start() can 174block if there isn't enough space in the journal for your transaction 175(based on the passed nblocks param) - when it blocks it merely(!) needs to 176wait for transactions to complete and be committed from other tasks, 177so essentially we are waiting for journal_stop(). So to avoid 178deadlocks you must treat journal_start/stop() as if they 179were semaphores and include them in your semaphore ordering rules to prevent 180deadlocks. Note that journal_extend() has similar blocking behaviour to 181journal_start() so you can deadlock here just as easily as on journal_start(). 182</para> 183<para> 184 185Try to reserve the right number of blocks the first time. ;-). 186</para> 187<para> 188Another wriggle to watch out for is your on-disk block allocation strategy. 189why? Because, if you undo a delete, you need to ensure you haven't reused any 190of the freed blocks in a later transaction. One simple way of doing this 191is make sure any blocks you allocate only have checkpointed transactions 192listed against them. Ext3 does this in ext3_test_allocatable(). 193</para> 194 195<para> 196Lock is also providing through journal_{un,}lock_updates(), 197ext3 uses this when it wants a window with a clean and stable fs for a moment. 198eg. 199</para> 200 201<programlisting> 202 203 journal_lock_updates() //stop new stuff happening.. 204 journal_flush() // checkpoint everything. 205 ..do stuff on stable fs 206 journal_unlock_updates() // carry on with filesystem use. 207</programlisting> 208 209<para> 210The opportunities for abuse and DOS attacks with this should be obvious, 211if you allow unprivileged userspace to trigger codepaths containing these 212calls. 213 214</para> 215</sect1> 216<sect1> 217<title>Summary</title> 218<para> 219Using the journal is a matter of wrapping the different context changes, 220being each mount, each modification (transaction) and each changed buffer 221to tell the journalling layer about them. 222</para> 223 224<para> 225Here is a some pseudo code to give you an idea of how it works, as 226an example. 227</para> 228 229<programlisting> 230 journal_t* my_jnrl = journal_create(); 231 journal_init_{dev,inode}(jnrl,...) 232 if (clean) journal_wipe(); 233 journal_load(); 234 235 foreach(transaction) { /*transactions must be 236 completed before 237 a syscall returns to 238 userspace*/ 239 240 handle_t * xct=journal_start(my_jnrl); 241 foreach(bh) { 242 journal_get_{create,write,undo}_access(xact,bh); 243 if ( myfs_modify(bh) ) { /* returns true 244 if makes changes */ 245 journal_dirty_{meta,}data(xact,bh); 246 } else { 247 journal_forget(bh); 248 } 249 } 250 journal_stop(xct); 251 } 252 journal_destroy(my_jrnl); 253</programlisting> 254</sect1> 255 256</chapter> 257 258 <chapter id="adt"> 259 <title>Data Types</title> 260 <para> 261 The journalling layer uses typedefs to 'hide' the concrete definitions 262 of the structures used. As a client of the JBD layer you can 263 just rely on the using the pointer as a magic cookie of some sort. 264 265 Obviously the hiding is not enforced as this is 'C'. 266 </para> 267 <sect1><title>Structures</title> 268!Iinclude/linux/jbd.h 269 </sect1> 270</chapter> 271 272 <chapter id="calls"> 273 <title>Functions</title> 274 <para> 275 The functions here are split into two groups those that 276 affect a journal as a whole, and those which are used to 277 manage transactions 278</para> 279 <sect1><title>Journal Level</title> 280!Efs/jbd/journal.c 281!Efs/jbd/recovery.c 282 </sect1> 283 <sect1><title>Transasction Level</title> 284!Efs/jbd/transaction.c 285 </sect1> 286</chapter> 287<chapter> 288 <title>See also</title> 289 <para> 290 <citation> 291 <ulink url="ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/journal-design.ps.gz"> 292 Journaling the Linux ext2fs Filesystem,LinuxExpo 98, Stephen Tweedie 293 </ulink> 294 </citation> 295 </para> 296 <para> 297 <citation> 298 <ulink url="http://olstrans.sourceforge.net/release/OLS2000-ext3/OLS2000-ext3.html"> 299 Ext3 Journalling FileSystem , OLS 2000, Dr. Stephen Tweedie 300 </ulink> 301 </citation> 302 </para> 303</chapter> 304 305</book> 306