2005-01-07 02:29:27 +00:00
|
|
|
/*-
|
1998-03-08 08:38:41 +00:00
|
|
|
* Copyright 1998 Marshall Kirk McKusick. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* The soft updates code is derived from the appendix of a University
|
|
|
|
* of Michigan technical report (Gregory R. Ganger and Yale N. Patt,
|
|
|
|
* "Soft Updates: A Solution to the Metadata Update Problem in File
|
|
|
|
* Systems", CSE-TR-254-95, August 1995).
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. None of the names of McKusick, Ganger, or the University of Michigan
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY MARSHALL KIRK MCKUSICK ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL MARSHALL KIRK MCKUSICK BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* from: @(#)ffs_softdep_stub.c 9.1 (McKusick) 7/10/97
|
|
|
|
*/
|
|
|
|
|
2003-06-11 06:34:30 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1998-03-08 08:38:41 +00:00
|
|
|
/*
|
|
|
|
* Use this file as ffs_softdep.c if you do not wish the real ffs_softdep.c
|
|
|
|
* to be included in your system. (e.g for legal reasons )
|
1998-05-19 23:18:37 +00:00
|
|
|
* The real files are in /usr/src/contrib/sys/softupdates.
|
|
|
|
* You must copy them here before you can use soft updates.
|
|
|
|
* Read the README for legal and technical information.
|
1998-03-08 08:38:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opt_ffs.h"
|
|
|
|
#if (SOFTUPDATES == 0 ) /* SOFTUPDATES not configured in, use these stubs. */
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/vnode.h>
|
2000-06-16 13:00:33 +00:00
|
|
|
#include <sys/mount.h>
|
1998-03-08 08:38:41 +00:00
|
|
|
#include <ufs/ufs/quota.h>
|
|
|
|
#include <ufs/ufs/inode.h>
|
|
|
|
#include <ufs/ffs/ffs_extern.h>
|
|
|
|
#include <ufs/ufs/ufs_extern.h>
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
softdep_flushfiles(oldmnt, flags, td)
|
1998-03-08 08:38:41 +00:00
|
|
|
struct mount *oldmnt;
|
|
|
|
int flags;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1998-03-08 08:38:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_flushfiles called");
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
softdep_mount(devvp, mp, fs, cred)
|
|
|
|
struct vnode *devvp;
|
|
|
|
struct mount *mp;
|
|
|
|
struct fs *fs;
|
|
|
|
struct ucred *cred;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_initialize()
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-07-01 11:00:47 +00:00
|
|
|
void
|
|
|
|
softdep_uninitialize()
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-03-08 08:38:41 +00:00
|
|
|
void
|
|
|
|
softdep_setup_inomapdep(bp, ip, newinum)
|
|
|
|
struct buf *bp;
|
|
|
|
struct inode *ip;
|
|
|
|
ino_t newinum;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_inomapdep called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_setup_blkmapdep(bp, fs, newblkno)
|
|
|
|
struct buf *bp;
|
|
|
|
struct fs *fs;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs2_daddr_t newblkno;
|
1998-03-08 08:38:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_blkmapdep called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_setup_allocdirect(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
|
|
|
|
struct inode *ip;
|
|
|
|
ufs_lbn_t lbn;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs2_daddr_t newblkno;
|
|
|
|
ufs2_daddr_t oldblkno;
|
1998-03-08 08:38:41 +00:00
|
|
|
long newsize;
|
|
|
|
long oldsize;
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_allocdirect called");
|
|
|
|
}
|
|
|
|
|
Add support to UFS2 to provide storage for extended attributes.
As this code is not actually used by any of the existing
interfaces, it seems unlikely to break anything (famous
last words).
The internal kernel interface to manipulate these attributes
is invoked using two new IO_ flags: IO_NORMAL and IO_EXT.
These flags may be specified in the ioflags word of VOP_READ,
VOP_WRITE, and VOP_TRUNCATE. Specifying IO_NORMAL means that
you want to do I/O to the normal data part of the file and
IO_EXT means that you want to do I/O to the extended attributes
part of the file. IO_NORMAL and IO_EXT are mutually exclusive
for VOP_READ and VOP_WRITE, but may be specified individually
or together in the case of VOP_TRUNCATE. For example, when
removing a file, VOP_TRUNCATE is called with both IO_NORMAL
and IO_EXT set. For backward compatibility, if neither IO_NORMAL
nor IO_EXT is set, then IO_NORMAL is assumed.
Note that the BA_ and IO_ flags have been `merged' so that they
may both be used in the same flags word. This merger is possible
by assigning the IO_ flags to the low sixteen bits and the BA_
flags the high sixteen bits. This works because the high sixteen
bits of the IO_ word is reserved for read-ahead and help with
write clustering so will never be used for flags. This merge
lets us get away from code of the form:
if (ioflags & IO_SYNC)
flags |= BA_SYNC;
For the future, I have considered adding a new field to the
vattr structure, va_extsize. This addition could then be
exported through the stat structure to allow applications to
find out the size of the extended attribute storage and also
would provide a more standard interface for truncating them
(via VOP_SETATTR rather than VOP_TRUNCATE).
I am also contemplating adding a pathconf parameter (for
concreteness, lets call it _PC_MAX_EXTSIZE) which would
let an application determine the maximum size of the extended
atribute storage.
Sponsored by: DARPA & NAI Labs.
2002-07-19 07:29:39 +00:00
|
|
|
void
|
|
|
|
softdep_setup_allocext(ip, lbn, newblkno, oldblkno, newsize, oldsize, bp)
|
|
|
|
struct inode *ip;
|
|
|
|
ufs_lbn_t lbn;
|
|
|
|
ufs2_daddr_t newblkno;
|
|
|
|
ufs2_daddr_t oldblkno;
|
|
|
|
long newsize;
|
|
|
|
long oldsize;
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_allocdirect called");
|
|
|
|
}
|
|
|
|
|
1998-03-08 08:38:41 +00:00
|
|
|
void
|
|
|
|
softdep_setup_allocindir_page(ip, lbn, bp, ptrno, newblkno, oldblkno, nbp)
|
|
|
|
struct inode *ip;
|
|
|
|
ufs_lbn_t lbn;
|
|
|
|
struct buf *bp;
|
|
|
|
int ptrno;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs2_daddr_t newblkno;
|
|
|
|
ufs2_daddr_t oldblkno;
|
1998-03-08 08:38:41 +00:00
|
|
|
struct buf *nbp;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_allocindir_page called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_setup_allocindir_meta(nbp, ip, bp, ptrno, newblkno)
|
|
|
|
struct buf *nbp;
|
|
|
|
struct inode *ip;
|
|
|
|
struct buf *bp;
|
|
|
|
int ptrno;
|
2002-06-21 06:18:05 +00:00
|
|
|
ufs2_daddr_t newblkno;
|
1998-03-08 08:38:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_allocindir_meta called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-20 04:07:15 +00:00
|
|
|
softdep_setup_freeblocks(ip, length, flags)
|
1998-03-08 08:38:41 +00:00
|
|
|
struct inode *ip;
|
|
|
|
off_t length;
|
2002-07-20 04:07:15 +00:00
|
|
|
int flags;
|
1998-03-08 08:38:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_freeblocks called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_freefile(pvp, ino, mode)
|
|
|
|
struct vnode *pvp;
|
|
|
|
ino_t ino;
|
|
|
|
int mode;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_freefile called");
|
|
|
|
}
|
|
|
|
|
2001-05-20 15:59:55 +00:00
|
|
|
int
|
|
|
|
softdep_setup_directory_add(bp, dp, diroffset, newinum, newdirbp, isnewblk)
|
1998-03-08 08:38:41 +00:00
|
|
|
struct buf *bp;
|
|
|
|
struct inode *dp;
|
|
|
|
off_t diroffset;
|
2002-06-24 17:20:19 +00:00
|
|
|
ino_t newinum;
|
1998-03-08 08:38:41 +00:00
|
|
|
struct buf *newdirbp;
|
2001-05-20 15:59:55 +00:00
|
|
|
int isnewblk;
|
1998-03-08 08:38:41 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_directory_add called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_change_directoryentry_offset(dp, base, oldloc, newloc, entrysize)
|
|
|
|
struct inode *dp;
|
|
|
|
caddr_t base;
|
|
|
|
caddr_t oldloc;
|
|
|
|
caddr_t newloc;
|
|
|
|
int entrysize;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_change_directoryentry_offset called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_setup_remove(bp, dp, ip, isrmdir)
|
|
|
|
struct buf *bp;
|
|
|
|
struct inode *dp;
|
|
|
|
struct inode *ip;
|
|
|
|
int isrmdir;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_remove called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_setup_directory_change(bp, dp, ip, newinum, isrmdir)
|
|
|
|
struct buf *bp;
|
|
|
|
struct inode *dp;
|
|
|
|
struct inode *ip;
|
2002-06-24 17:20:19 +00:00
|
|
|
ino_t newinum;
|
1998-03-08 08:38:41 +00:00
|
|
|
int isrmdir;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_setup_directory_change called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-01-10 00:24:24 +00:00
|
|
|
softdep_change_linkcnt(ip)
|
1998-03-08 08:38:41 +00:00
|
|
|
struct inode *ip;
|
|
|
|
{
|
|
|
|
|
2000-01-10 00:24:24 +00:00
|
|
|
panic("softdep_change_linkcnt called");
|
1998-03-08 08:38:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_load_inodeblock(ip)
|
|
|
|
struct inode *ip;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_load_inodeblock called");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
softdep_update_inodeblock(ip, bp, waitfor)
|
|
|
|
struct inode *ip;
|
|
|
|
struct buf *bp;
|
|
|
|
int waitfor;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_update_inodeblock called");
|
|
|
|
}
|
|
|
|
|
1999-05-14 01:26:46 +00:00
|
|
|
void
|
|
|
|
softdep_fsync_mountdev(vp)
|
|
|
|
struct vnode *vp;
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-07-25 05:28:59 +00:00
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
softdep_flushworklist(oldmnt, countp, td)
|
2000-07-25 05:28:59 +00:00
|
|
|
struct mount *oldmnt;
|
|
|
|
int *countp;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
2000-07-25 05:28:59 +00:00
|
|
|
{
|
|
|
|
|
2000-08-09 00:41:54 +00:00
|
|
|
*countp = 0;
|
2000-07-25 05:28:59 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-03-08 08:38:41 +00:00
|
|
|
int
|
|
|
|
softdep_sync_metadata(ap)
|
|
|
|
struct vop_fsync_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
int a_waitfor;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *a_td;
|
1998-03-08 08:38:41 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2000-06-16 08:48:51 +00:00
|
|
|
|
2000-12-17 23:59:56 +00:00
|
|
|
int
|
|
|
|
softdep_slowdown(vp)
|
|
|
|
struct vnode *vp;
|
|
|
|
{
|
2001-05-08 07:42:20 +00:00
|
|
|
|
2000-12-17 23:59:56 +00:00
|
|
|
panic("softdep_slowdown called");
|
|
|
|
}
|
2001-05-08 07:42:20 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
softdep_releasefile(ip)
|
|
|
|
struct inode *ip; /* inode with the zero effective link count */
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("softdep_releasefile called");
|
|
|
|
}
|
2002-01-23 02:18:56 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
softdep_request_cleanup(fs, vp)
|
|
|
|
struct fs *fs;
|
|
|
|
struct vnode *vp;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
1998-03-08 08:38:41 +00:00
|
|
|
#endif /* SOFTUPDATES not configured in */
|