]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/blob - crypto/ocf/ocfnull/ocfnull.c
ti-sdk-am335x-evm-05.05.00.00 on 04.06.00.07
[sitara-epos/sitara-epos-kernel.git] / crypto / ocf / ocfnull / ocfnull.c
1 /*
2  * An OCF module for determining the cost of crypto versus the cost of
3  * IPSec processing outside of OCF.  This modules gives us the effect of
4  * zero cost encryption,  of course you will need to run it at both ends
5  * since it does no crypto at all.
6  *
7  * Written by David McCullough <david_mccullough@mcafee.com>
8  * Copyright (C) 2006-2010 David McCullough 
9  *
10  * LICENSE TERMS
11  *
12  * The free distribution and use of this software in both source and binary
13  * form is allowed (with or without changes) provided that:
14  *
15  *   1. distributions of this source code include the above copyright
16  *      notice, this list of conditions and the following disclaimer;
17  *
18  *   2. distributions in binary form include the above copyright
19  *      notice, this list of conditions and the following disclaimer
20  *      in the documentation and/or other associated materials;
21  *
22  *   3. the copyright holder's name is not used to endorse products
23  *      built using this software without specific written permission.
24  *
25  * ALTERNATIVELY, provided that this notice is retained in full, this product
26  * may be distributed under the terms of the GNU General Public License (GPL),
27  * in which case the provisions of the GPL apply INSTEAD OF those given above.
28  *
29  * DISCLAIMER
30  *
31  * This software is provided 'as is' with no explicit or implied warranties
32  * in respect of its properties, including, but not limited to, correctness
33  * and/or fitness for purpose.
34  */
36 #include <linux/version.h>
37 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,38) && !defined(AUTOCONF_INCLUDED)
38 #include <linux/config.h>
39 #endif
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/list.h>
43 #include <linux/slab.h>
44 #include <linux/sched.h>
45 #include <linux/wait.h>
46 #include <linux/crypto.h>
47 #include <linux/interrupt.h>
49 #include <cryptodev.h>
50 #include <uio.h>
52 static int32_t                   null_id = -1;
53 static u_int32_t                 null_sesnum = 0;
55 static int null_process(device_t, struct cryptop *, int);
56 static int null_newsession(device_t, u_int32_t *, struct cryptoini *);
57 static int null_freesession(device_t, u_int64_t);
59 #define debug ocfnull_debug
60 int ocfnull_debug = 0;
61 module_param(ocfnull_debug, int, 0644);
62 MODULE_PARM_DESC(ocfnull_debug, "Enable debug");
64 /*
65  * dummy device structure
66  */
68 static struct {
69         softc_device_decl       sc_dev;
70 } nulldev;
72 static device_method_t null_methods = {
73         /* crypto device methods */
74         DEVMETHOD(cryptodev_newsession, null_newsession),
75         DEVMETHOD(cryptodev_freesession,null_freesession),
76         DEVMETHOD(cryptodev_process,    null_process),
77 };
79 /*
80  * Generate a new software session.
81  */
82 static int
83 null_newsession(device_t arg, u_int32_t *sid, struct cryptoini *cri)
84 {
85         dprintk("%s()\n", __FUNCTION__);
86         if (sid == NULL || cri == NULL) {
87                 dprintk("%s,%d - EINVAL\n", __FILE__, __LINE__);
88                 return EINVAL;
89         }
91         if (null_sesnum == 0)
92                 null_sesnum++;
93         *sid = null_sesnum++;
94         return 0;
95 }
98 /*
99  * Free a session.
100  */
101 static int
102 null_freesession(device_t arg, u_int64_t tid)
104         u_int32_t sid = CRYPTO_SESID2LID(tid);
106         dprintk("%s()\n", __FUNCTION__);
107         if (sid > null_sesnum) {
108                 dprintk("%s,%d: EINVAL\n", __FILE__, __LINE__);
109                 return EINVAL;
110         }
112         /* Silently accept and return */
113         if (sid == 0)
114                 return 0;
115         return 0;
119 /*
120  * Process a request.
121  */
122 static int
123 null_process(device_t arg, struct cryptop *crp, int hint)
125         unsigned int lid;
127         dprintk("%s()\n", __FUNCTION__);
129         /* Sanity check */
130         if (crp == NULL) {
131                 dprintk("%s,%d: EINVAL\n", __FILE__, __LINE__);
132                 return EINVAL;
133         }
135         crp->crp_etype = 0;
137         if (crp->crp_desc == NULL || crp->crp_buf == NULL) {
138                 dprintk("%s,%d: EINVAL\n", __FILE__, __LINE__);
139                 crp->crp_etype = EINVAL;
140                 goto done;
141         }
143         /*
144          * find the session we are using
145          */
147         lid = crp->crp_sid & 0xffffffff;
148         if (lid >= null_sesnum || lid == 0) {
149                 crp->crp_etype = ENOENT;
150                 dprintk("%s,%d: ENOENT\n", __FILE__, __LINE__);
151                 goto done;
152         }
154 done:
155         crypto_done(crp);
156         return 0;
160 /*
161  * our driver startup and shutdown routines
162  */
164 static int
165 null_init(void)
167         dprintk("%s(%p)\n", __FUNCTION__, null_init);
169         memset(&nulldev, 0, sizeof(nulldev));
170         softc_device_init(&nulldev, "ocfnull", 0, null_methods);
172         null_id = crypto_get_driverid(softc_get_device(&nulldev),
173                                 CRYPTOCAP_F_HARDWARE);
174         if (null_id < 0)
175                 panic("ocfnull: crypto device cannot initialize!");
177 #define REGISTER(alg) \
178         crypto_register(null_id,alg,0,0)
179         REGISTER(CRYPTO_DES_CBC);
180         REGISTER(CRYPTO_3DES_CBC);
181         REGISTER(CRYPTO_RIJNDAEL128_CBC);
182         REGISTER(CRYPTO_MD5);
183         REGISTER(CRYPTO_SHA1);
184         REGISTER(CRYPTO_MD5_HMAC);
185         REGISTER(CRYPTO_SHA1_HMAC);
186 #undef REGISTER
188         return 0;
191 static void
192 null_exit(void)
194         dprintk("%s()\n", __FUNCTION__);
195         crypto_unregister_all(null_id);
196         null_id = -1;
199 module_init(null_init);
200 module_exit(null_exit);
202 MODULE_LICENSE("Dual BSD/GPL");
203 MODULE_AUTHOR("David McCullough <david_mccullough@mcafee.com>");
204 MODULE_DESCRIPTION("ocfnull - claims a lot but does nothing");