[PATCH v10 10/11] quota: Add proper versioning support to fs_quota_stat
Jan Kara
jack at suse.cz
Wed Jul 10 16:54:51 CDT 2013
On Wed 10-07-13 15:49:50, Chandra Seetharaman wrote:
> On Wed, 2013-07-10 at 18:26 +0200, Jan Kara wrote:
> > On Wed 10-07-13 10:55:38, Ben Myers wrote:
> > > Hey Chandra,
>
> <snip>
>
> > > > diff --git a/fs/quota/quota.c b/fs/quota/quota.c
> > > > index c7314f1..ae6526e 100644
> > > > --- a/fs/quota/quota.c
> > > > +++ b/fs/quota/quota.c
> > > > @@ -207,12 +207,57 @@ static int quota_setxstate(struct super_block *sb, int cmd, void __user *addr)
> > > > static int quota_getxstate(struct super_block *sb, void __user *addr)
> > > > {
> > > > struct fs_quota_stat fqs;
> > > > - int ret;
> > > > + struct fs_quota_stat_v1 fqs_v1;
> > > > + int ret, size;
> > > > + void *fqsp;
> > > >
> > > > if (!sb->s_qcop->get_xstate)
> > > > return -ENOSYS;
> > > > +
> > > > + memset(&fqs, 0, sizeof(struct fs_quota_stat));
> > > > + if (copy_from_user(&fqs, addr, 1)) /* just get the version */
> > > > + return -EFAULT;
> > > > +
> > > > + switch (fqs.qs_version) {
> > > > + case FS_QSTAT_VERSION_2:
> > > > + size = FS_QSTAT_V2_SIZE;
> > > > + break;
> > > > + default:
> > > > + fqs.qs_version = FS_QSTAT_VERSION;
> > > > + /* fallthrough */
> > > > + case FS_QSTAT_VERSION:
> > > > + size = FS_QSTAT_V1_SIZE;
> > > > + break;
> > > > + }
> > Guys, you cannot really do this. If anyone is using getxstate() with
> > uninitialized buffer (which is fine so far), you cannot suddently start to
> > rely on the contents of qs_version field. That's ABI (and even API)
> > breakage.
>
> Agree, it is a API breakage.
>
> Will fix it by adding a new quotactl value as you suggest.
> Does
>
> #define Q_XGETQSTAT2 XQM_CMD(8)
>
> sound good ?
Ben's Q_XGETQSTATV name looked a bit better to me but I don't really
care. Whatever works for you...
Honza
--
Jan Kara <jack at suse.cz>
SUSE Labs, CR
More information about the xfs
mailing list