LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-06-2015, 09:30 PM   #1
metaschima
Senior Member
 
Registered: Dec 2013
Distribution: Slackware
Posts: 1,982

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
cryptsetup: how does ctr-essiv work exactly ? (versus ctr-plain)


I know that ESSIV generates an initialization vector (IV) by combining a hashed key with the sector number.
https://en.wikipedia.org/wiki/Disk_e...or_.28ESSIV.29

However, I only see an IV in CBC, PCBC, CFB, and OFB modes of operation e.g. chained modes. CTR and ECB are NOT chained modes, so where does the IV go ?
https://en.wikipedia.org/wiki/Block_...n#Common_modes

I don't like to make assumptions, but I'm assuming that the IV is used for the first block of CTR and ECB. I can confirm that a disk encrypted with ctr-essiv does NOT decrypt in ctr-plain mode, so the IV goes somewhere but it's hard to figure out where. I've tried looking at cryptsetup and kernel source, but it's hard to figure out.

EDIT:
Comparing two files encrypted with ctr-essiv versus ctr-plain with a plain unsalted key, the entire stream is different, not just the first block. This means the IV is applied to all blocks in CTR mode. However, when doing the same with ECB mode, the two files are identical. This means the IV is not used in ECB mode at all.

I still don't get how and where the IV is applied in CTR mode.

Last edited by metaschima; 02-07-2015 at 10:52 AM.
 
Old 02-08-2015, 07:11 PM   #2
metaschima
Senior Member
 
Registered: Dec 2013
Distribution: Slackware
Posts: 1,982

Original Poster
Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
I think I might understand how it works now after looking at some kernel code and comparing it to what is on wiki. However, it would be great if someone could double check it.

The kernel code for CBC mode:
Code:
static int crypto_cbc_encrypt_segment(struct blkcipher_desc *desc,
				      struct blkcipher_walk *walk,
				      struct crypto_cipher *tfm)
{
	void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
		crypto_cipher_alg(tfm)->cia_encrypt;
	int bsize = crypto_cipher_blocksize(tfm);
	unsigned int nbytes = walk->nbytes;
	u8 *src = walk->src.virt.addr;
	u8 *dst = walk->dst.virt.addr;
	u8 *iv = walk->iv;

	do {
		crypto_xor(iv, src, bsize);
		fn(crypto_cipher_tfm(tfm), dst, iv);
		memcpy(iv, dst, bsize);

		src += bsize;
		dst += bsize;
	} while ((nbytes -= bsize) >= bsize);

	return nbytes;
}
And for CTR mode:
Code:
static int crypto_ctr_crypt_segment(struct blkcipher_walk *walk,
				    struct crypto_cipher *tfm)
{
	void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
		   crypto_cipher_alg(tfm)->cia_encrypt;
	unsigned int bsize = crypto_cipher_blocksize(tfm);
	u8 *ctrblk = walk->iv;
	u8 *src = walk->src.virt.addr;
	u8 *dst = walk->dst.virt.addr;
	unsigned int nbytes = walk->nbytes;

	do {
		/* create keystream */
		fn(crypto_cipher_tfm(tfm), dst, ctrblk);
		crypto_xor(dst, src, bsize);

		/* increment counter in counterblock */
		crypto_inc(ctrblk, bsize);

		src += bsize;
		dst += bsize;
	} while ((nbytes -= bsize) >= bsize);

	return nbytes;
}
The essiv is generated in different ways depending on the options you specify, the code seems to be in 'crypto/eseqiv.c'. All that is changed by it is the IV.

Using the schemas on wiki:
https://en.wikipedia.org/wiki/Block_...n#Common_modes

It seems that in CTR mode, the IV is the counter block plus nonce.
Quote:
Note that the nonce in this diagram is the same thing as the initialization vector (IV) in the other diagrams. The IV/nonce and the counter can be combined together using any lossless operation (concatenation, addition, or XOR) to produce the actual unique counter block for encryption.
So, then is ESSIV better than plain for CTR mode ? It might be, because the IV/nonce needs to be pseudorandom and unknown. Plain mode is not used for CBC because:
Quote:
The usual methods for generating IVs are predictable sequences of numbers based on, for example, time stamp or sector number, and permits certain attacks such as a watermarking attack. ESSIV prevents such attacks by generating IVs from a combination of the sector number SN with the hash of the key. It is the combination with the key in form of a hash that makes the IV unpredictable.
https://en.wikipedia.org/wiki/Disk_e...or_.28ESSIV.29

So, one can conclude that ESSIV is better than plain for CTR as well, because the IV must be unpredictable.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Need Help with another Cipher. AES CBC & CTR this time Nabeel Programming 3 12-03-2012 09:57 PM
ctr-alt-delete windows = ??? ubuntu jgag123 Linux - Newbie 27 01-11-2008 01:54 PM
i8042.c: Can't write CTR while loading AUX. nasheia Linux - General 0 08-23-2006 08:44 AM
CTR-ALT-F1 kills X server arc2v Linux - General 3 05-24-2006 07:04 AM
linux equivilant to ctr+alt+del aggierian Linux - Newbie 5 06-09-2004 07:06 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:37 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration