mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Clean up the existing export namespace code along the same lines of
commit 33def8498f ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
  git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
  do
    awk -i inplace '
      /^#define EXPORT_SYMBOL_NS/ {
        gsub(/__stringify\(ns\)/, "ns");
        print;
        next;
      }
      /^#define MODULE_IMPORT_NS/ {
        gsub(/__stringify\(ns\)/, "ns");
        print;
        next;
      }
      /MODULE_IMPORT_NS/ {
        $0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
      }
      /EXPORT_SYMBOL_NS/ {
        if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
  	if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
  	    $0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
  	    $0 !~ /^my/) {
  	  getline line;
  	  gsub(/[[:space:]]*\\$/, "");
  	  gsub(/[[:space:]]/, "", line);
  	  $0 = $0 " " line;
  	}
  	$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
  		    "\\1(\\2, \"\\3\")", "g");
        }
      }
      { print }' $file;
  done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
	
			
		
			
				
	
	
		
			195 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			195 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/*
 | 
						|
 * PCBC: Propagating Cipher Block Chaining mode
 | 
						|
 *
 | 
						|
 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
 | 
						|
 * Written by David Howells (dhowells@redhat.com)
 | 
						|
 *
 | 
						|
 * Derived from cbc.c
 | 
						|
 * - Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
 | 
						|
 */
 | 
						|
 | 
						|
#include <crypto/algapi.h>
 | 
						|
#include <crypto/internal/cipher.h>
 | 
						|
#include <crypto/internal/skcipher.h>
 | 
						|
#include <linux/err.h>
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <linux/module.h>
 | 
						|
 | 
						|
static int crypto_pcbc_encrypt_segment(struct skcipher_request *req,
 | 
						|
				       struct skcipher_walk *walk,
 | 
						|
				       struct crypto_cipher *tfm)
 | 
						|
{
 | 
						|
	int bsize = crypto_cipher_blocksize(tfm);
 | 
						|
	unsigned int nbytes = walk->nbytes;
 | 
						|
	u8 *src = walk->src.virt.addr;
 | 
						|
	u8 *dst = walk->dst.virt.addr;
 | 
						|
	u8 * const iv = walk->iv;
 | 
						|
 | 
						|
	do {
 | 
						|
		crypto_xor(iv, src, bsize);
 | 
						|
		crypto_cipher_encrypt_one(tfm, dst, iv);
 | 
						|
		crypto_xor_cpy(iv, dst, src, bsize);
 | 
						|
 | 
						|
		src += bsize;
 | 
						|
		dst += bsize;
 | 
						|
	} while ((nbytes -= bsize) >= bsize);
 | 
						|
 | 
						|
	return nbytes;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_encrypt_inplace(struct skcipher_request *req,
 | 
						|
				       struct skcipher_walk *walk,
 | 
						|
				       struct crypto_cipher *tfm)
 | 
						|
{
 | 
						|
	int bsize = crypto_cipher_blocksize(tfm);
 | 
						|
	unsigned int nbytes = walk->nbytes;
 | 
						|
	u8 *src = walk->src.virt.addr;
 | 
						|
	u8 * const iv = walk->iv;
 | 
						|
	u8 tmpbuf[MAX_CIPHER_BLOCKSIZE];
 | 
						|
 | 
						|
	do {
 | 
						|
		memcpy(tmpbuf, src, bsize);
 | 
						|
		crypto_xor(iv, src, bsize);
 | 
						|
		crypto_cipher_encrypt_one(tfm, src, iv);
 | 
						|
		crypto_xor_cpy(iv, tmpbuf, src, bsize);
 | 
						|
 | 
						|
		src += bsize;
 | 
						|
	} while ((nbytes -= bsize) >= bsize);
 | 
						|
 | 
						|
	return nbytes;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_encrypt(struct skcipher_request *req)
 | 
						|
{
 | 
						|
	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
 | 
						|
	struct crypto_cipher *cipher = skcipher_cipher_simple(tfm);
 | 
						|
	struct skcipher_walk walk;
 | 
						|
	unsigned int nbytes;
 | 
						|
	int err;
 | 
						|
 | 
						|
	err = skcipher_walk_virt(&walk, req, false);
 | 
						|
 | 
						|
	while (walk.nbytes) {
 | 
						|
		if (walk.src.virt.addr == walk.dst.virt.addr)
 | 
						|
			nbytes = crypto_pcbc_encrypt_inplace(req, &walk,
 | 
						|
							     cipher);
 | 
						|
		else
 | 
						|
			nbytes = crypto_pcbc_encrypt_segment(req, &walk,
 | 
						|
							     cipher);
 | 
						|
		err = skcipher_walk_done(&walk, nbytes);
 | 
						|
	}
 | 
						|
 | 
						|
	return err;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_decrypt_segment(struct skcipher_request *req,
 | 
						|
				       struct skcipher_walk *walk,
 | 
						|
				       struct crypto_cipher *tfm)
 | 
						|
{
 | 
						|
	int bsize = crypto_cipher_blocksize(tfm);
 | 
						|
	unsigned int nbytes = walk->nbytes;
 | 
						|
	u8 *src = walk->src.virt.addr;
 | 
						|
	u8 *dst = walk->dst.virt.addr;
 | 
						|
	u8 * const iv = walk->iv;
 | 
						|
 | 
						|
	do {
 | 
						|
		crypto_cipher_decrypt_one(tfm, dst, src);
 | 
						|
		crypto_xor(dst, iv, bsize);
 | 
						|
		crypto_xor_cpy(iv, dst, src, bsize);
 | 
						|
 | 
						|
		src += bsize;
 | 
						|
		dst += bsize;
 | 
						|
	} while ((nbytes -= bsize) >= bsize);
 | 
						|
 | 
						|
	return nbytes;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_decrypt_inplace(struct skcipher_request *req,
 | 
						|
				       struct skcipher_walk *walk,
 | 
						|
				       struct crypto_cipher *tfm)
 | 
						|
{
 | 
						|
	int bsize = crypto_cipher_blocksize(tfm);
 | 
						|
	unsigned int nbytes = walk->nbytes;
 | 
						|
	u8 *src = walk->src.virt.addr;
 | 
						|
	u8 * const iv = walk->iv;
 | 
						|
	u8 tmpbuf[MAX_CIPHER_BLOCKSIZE] __aligned(__alignof__(u32));
 | 
						|
 | 
						|
	do {
 | 
						|
		memcpy(tmpbuf, src, bsize);
 | 
						|
		crypto_cipher_decrypt_one(tfm, src, src);
 | 
						|
		crypto_xor(src, iv, bsize);
 | 
						|
		crypto_xor_cpy(iv, src, tmpbuf, bsize);
 | 
						|
 | 
						|
		src += bsize;
 | 
						|
	} while ((nbytes -= bsize) >= bsize);
 | 
						|
 | 
						|
	return nbytes;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_decrypt(struct skcipher_request *req)
 | 
						|
{
 | 
						|
	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
 | 
						|
	struct crypto_cipher *cipher = skcipher_cipher_simple(tfm);
 | 
						|
	struct skcipher_walk walk;
 | 
						|
	unsigned int nbytes;
 | 
						|
	int err;
 | 
						|
 | 
						|
	err = skcipher_walk_virt(&walk, req, false);
 | 
						|
 | 
						|
	while (walk.nbytes) {
 | 
						|
		if (walk.src.virt.addr == walk.dst.virt.addr)
 | 
						|
			nbytes = crypto_pcbc_decrypt_inplace(req, &walk,
 | 
						|
							     cipher);
 | 
						|
		else
 | 
						|
			nbytes = crypto_pcbc_decrypt_segment(req, &walk,
 | 
						|
							     cipher);
 | 
						|
		err = skcipher_walk_done(&walk, nbytes);
 | 
						|
	}
 | 
						|
 | 
						|
	return err;
 | 
						|
}
 | 
						|
 | 
						|
static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb)
 | 
						|
{
 | 
						|
	struct skcipher_instance *inst;
 | 
						|
	int err;
 | 
						|
 | 
						|
	inst = skcipher_alloc_instance_simple(tmpl, tb);
 | 
						|
	if (IS_ERR(inst))
 | 
						|
		return PTR_ERR(inst);
 | 
						|
 | 
						|
	inst->alg.encrypt = crypto_pcbc_encrypt;
 | 
						|
	inst->alg.decrypt = crypto_pcbc_decrypt;
 | 
						|
 | 
						|
	err = skcipher_register_instance(tmpl, inst);
 | 
						|
	if (err)
 | 
						|
		inst->free(inst);
 | 
						|
 | 
						|
	return err;
 | 
						|
}
 | 
						|
 | 
						|
static struct crypto_template crypto_pcbc_tmpl = {
 | 
						|
	.name = "pcbc",
 | 
						|
	.create = crypto_pcbc_create,
 | 
						|
	.module = THIS_MODULE,
 | 
						|
};
 | 
						|
 | 
						|
static int __init crypto_pcbc_module_init(void)
 | 
						|
{
 | 
						|
	return crypto_register_template(&crypto_pcbc_tmpl);
 | 
						|
}
 | 
						|
 | 
						|
static void __exit crypto_pcbc_module_exit(void)
 | 
						|
{
 | 
						|
	crypto_unregister_template(&crypto_pcbc_tmpl);
 | 
						|
}
 | 
						|
 | 
						|
subsys_initcall(crypto_pcbc_module_init);
 | 
						|
module_exit(crypto_pcbc_module_exit);
 | 
						|
 | 
						|
MODULE_LICENSE("GPL");
 | 
						|
MODULE_DESCRIPTION("PCBC block cipher mode of operation");
 | 
						|
MODULE_ALIAS_CRYPTO("pcbc");
 | 
						|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
 |