Re: [PATCH 12/12: eCryptfs] Crypto functions

From: Michael Halcrow
Date: Thu Nov 03 2005 - 19:18:29 EST


On Thu, Nov 03, 2005 at 07:08:46PM -0500, James Morris wrote:
> > + if (likely(1 == crypt_stats->encrypted)) {
> > + if (!crypt_stats->key_valid) {
> > + ecryptfs_printk(1, KERN_NOTICE, "Key is "
> > + "invalid; bailing out\n");
> > + rc = -EINVAL;
> > + goto out;
> > + }
> > + } else {
> > + rc = -EINVAL;
> > + ecryptfs_printk(0, KERN_WARNING,
> > + "Called with crypt_stats->encrypted == 0\n");
> > + goto out;
> > + }
>
> What's going on here? Is (crypt_stats->encrypted != 1) a kernel
> bug?

If ecryptfs_write_headers() is ever called on an unencrypted file,
then that is a programming error in eCryptfs. This will need to be
replaced with a BUG_ON().

Mike
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/