Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / include / linux / lustre_compat25.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LINUX_COMPAT25_H
38 #define _LINUX_COMPAT25_H
39
40 #ifdef __KERNEL__
41
42 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,9)
43 #error sorry, lustre requires at least linux kernel 2.6.9 or later
44 #endif
45
46 #include <libcfs/linux/portals_compat25.h>
47
48 #include <linux/lustre_patchless_compat.h>
49
50 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
51 struct ll_iattr {
52         struct iattr    iattr;
53         unsigned int    ia_attr_flags;
54 };
55 #else
56 #define ll_iattr iattr
57 #endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14) */
58
59 static inline void ll_set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt,
60                 struct dentry *dentry)
61 {
62         struct dentry *old_pwd;
63         struct vfsmount *old_pwdmnt;
64
65         write_lock(&fs->lock);
66         old_pwd = fs->pwd;
67         old_pwdmnt = fs->pwdmnt;
68         fs->pwdmnt = mntget(mnt);
69         fs->pwd = dget(dentry);
70         write_unlock(&fs->lock);
71
72         if (old_pwd) {
73                 dput(old_pwd);
74                 mntput(old_pwdmnt);
75         }
76 }
77
78 /*
79  * set ATTR_BLOCKS to a high value to avoid any risk of collision with other
80  * ATTR_* attributes (see bug 13828)
81  */
82 #define ATTR_BLOCKS    (1 << 27)
83
84 #if HAVE_INODE_I_MUTEX
85 #define UNLOCK_INODE_MUTEX(inode) do {mutex_unlock(&(inode)->i_mutex); } while(0)
86 #define LOCK_INODE_MUTEX(inode) do {mutex_lock(&(inode)->i_mutex); } while(0)
87 #define LOCK_INODE_MUTEX_PARENT(inode) \
88 do {mutex_lock_nested(&(inode)->i_mutex, I_MUTEX_PARENT); } while(0)
89 #define TRYLOCK_INODE_MUTEX(inode) mutex_trylock(&(inode)->i_mutex)
90 #else
91 #define UNLOCK_INODE_MUTEX(inode) do {up(&(inode)->i_sem); } while(0)
92 #define LOCK_INODE_MUTEX(inode) do {down(&(inode)->i_sem); } while(0)
93 #define TRYLOCK_INODE_MUTEX(inode) (!down_trylock(&(inode)->i_sem))
94 #define LOCK_INODE_MUTEX_PARENT(inode) LOCK_INODE_MUTEX(inode)
95 #endif /* HAVE_INODE_I_MUTEX */
96
97 #ifdef HAVE_SEQ_LOCK
98 #define LL_SEQ_LOCK(seq) mutex_lock(&(seq)->lock)
99 #define LL_SEQ_UNLOCK(seq) mutex_unlock(&(seq)->lock)
100 #else
101 #define LL_SEQ_LOCK(seq) down(&(seq)->sem)
102 #define LL_SEQ_UNLOCK(seq) up(&(seq)->sem)
103 #endif
104
105 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15)
106 #define d_child d_u.d_child
107 #define d_rcu d_u.d_rcu
108 #endif
109
110 #ifdef HAVE_DQUOTOFF_MUTEX
111 #define UNLOCK_DQONOFF_MUTEX(dqopt) do {mutex_unlock(&(dqopt)->dqonoff_mutex); } while(0)
112 #define LOCK_DQONOFF_MUTEX(dqopt) do {mutex_lock(&(dqopt)->dqonoff_mutex); } while(0)
113 #else
114 #define UNLOCK_DQONOFF_MUTEX(dqopt) do {up(&(dqopt)->dqonoff_sem); } while(0)
115 #define LOCK_DQONOFF_MUTEX(dqopt) do {down(&(dqopt)->dqonoff_sem); } while(0)
116 #endif /* HAVE_DQUOTOFF_MUTEX */
117
118 #define current_ngroups current->group_info->ngroups
119 #define current_groups current->group_info->small_block
120
121 #ifndef page_private
122 #define page_private(page) ((page)->private)
123 #define set_page_private(page, v) ((page)->private = (v))
124 #endif
125
126 #ifndef HAVE_GFP_T
127 #define gfp_t int
128 #endif
129
130 #define lock_dentry(___dentry)          spin_lock(&(___dentry)->d_lock)
131 #define unlock_dentry(___dentry)        spin_unlock(&(___dentry)->d_lock)
132
133 #define ll_kernel_locked()      kernel_locked()
134
135 /*
136  * OBD need working random driver, thus all our
137  * initialization routines must be called after device
138  * driver initialization
139  */
140 #ifndef MODULE
141 #undef module_init
142 #define module_init(a)     late_initcall(a)
143 #endif
144
145 /* XXX our code should be using the 2.6 calls, not the other way around */
146 #define TryLockPage(page)               TestSetPageLocked(page)
147 #define Page_Uptodate(page)             PageUptodate(page)
148 #define ll_redirty_page(page)           set_page_dirty(page)
149
150 #define KDEVT_INIT(val)                 (val)
151
152 #define LTIME_S(time)                   (time.tv_sec)
153 #define ll_path_lookup                  path_lookup
154 #define ll_permission(inode,mask,nd)    permission(inode,mask,nd)
155
156 #define ll_pgcache_lock(mapping)          spin_lock(&mapping->page_lock)
157 #define ll_pgcache_unlock(mapping)        spin_unlock(&mapping->page_lock)
158 #define ll_call_writepage(inode, page)  \
159                                 (inode)->i_mapping->a_ops->writepage(page, NULL)
160 #define ll_invalidate_inode_pages(inode) \
161                                 invalidate_inode_pages((inode)->i_mapping)
162 #define ll_truncate_complete_page(page) \
163                                 truncate_complete_page(page->mapping, page)
164
165 #define ll_vfs_create(a,b,c,d)          vfs_create(a,b,c,d)
166 #define ll_dev_t                        dev_t
167 #define kdev_t                          dev_t
168 #define to_kdev_t(dev)                  (dev)
169 #define kdev_t_to_nr(dev)               (dev)
170 #define val_to_kdev(dev)                (dev)
171 #define ILOOKUP(sb, ino, test, data)    ilookup5(sb, ino, test, data);
172
173 #include <linux/writeback.h>
174
175 static inline int cleanup_group_info(void)
176 {
177         struct group_info *ginfo;
178
179         ginfo = groups_alloc(0);
180         if (!ginfo)
181                 return -ENOMEM;
182
183         set_current_groups(ginfo);
184         put_group_info(ginfo);
185
186         return 0;
187 }
188
189 #define __set_page_ll_data(page, llap) \
190         do {       \
191                 page_cache_get(page); \
192                 SetPagePrivate(page); \
193                 set_page_private(page, (unsigned long)llap); \
194         } while (0)
195 #define __clear_page_ll_data(page) \
196         do {       \
197                 ClearPagePrivate(page); \
198                 set_page_private(page, 0); \
199                 page_cache_release(page); \
200         } while(0)
201
202 #define kiobuf bio
203
204 #include <linux/proc_fs.h>
205
206 #if !defined(HAVE_D_REHASH_COND) && defined(HAVE___D_REHASH)
207 #define d_rehash_cond(dentry, lock) __d_rehash(dentry, lock)
208 extern void __d_rehash(struct dentry *dentry, int lock);
209 #endif
210
211 #if !defined(HAVE_D_MOVE_LOCKED) && defined(HAVE___D_MOVE)
212 #define d_move_locked(dentry, target) __d_move(dentry, target)
213 extern void __d_move(struct dentry *dentry, struct dentry *target);
214 #endif
215
216 #ifdef HAVE_CAN_SLEEP_ARG
217 #define ll_flock_lock_file_wait(file, lock, can_sleep) \
218         flock_lock_file_wait(file, lock, can_sleep)
219 #else
220 #define ll_flock_lock_file_wait(file, lock, can_sleep) \
221         flock_lock_file_wait(file, lock)
222 #endif
223
224 #define CheckWriteback(page, cmd) \
225         ((!PageWriteback(page) && (cmd & OBD_BRW_READ)) || \
226          (PageWriteback(page) && (cmd & OBD_BRW_WRITE)))
227
228 #ifdef HAVE_PAGE_LIST
229 static inline int mapping_has_pages(struct address_space *mapping)
230 {
231         int rc = 1;
232
233         ll_pgcache_lock(mapping);
234         if (list_empty(&mapping->dirty_pages) &&
235             list_empty(&mapping->clean_pages) &&
236             list_empty(&mapping->locked_pages)) {
237                 rc = 0;
238         }
239         ll_pgcache_unlock(mapping);
240
241         return rc;
242 }
243 #else
244 static inline int mapping_has_pages(struct address_space *mapping)
245 {
246         return mapping->nrpages > 0;
247 }
248 #endif
249
250 #ifdef HAVE_KIOBUF_KIO_BLOCKS
251 #define KIOBUF_GET_BLOCKS(k) ((k)->kio_blocks)
252 #else
253 #define KIOBUF_GET_BLOCKS(k) ((k)->blocks)
254 #endif
255
256 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,7))
257 #define ll_set_dflags(dentry, flags) do { dentry->d_vfs_flags |= flags; } while(0)
258 #define ll_vfs_symlink(dir, dentry, path, mode) vfs_symlink(dir, dentry, path)
259 #else
260 #define ll_set_dflags(dentry, flags) do { \
261                 spin_lock(&dentry->d_lock); \
262                 dentry->d_flags |= flags; \
263                 spin_unlock(&dentry->d_lock); \
264         } while(0)
265 #ifdef HAVE_SECURITY_PLUG
266 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
267                 vfs_symlink(dir, dentry, mnt, path, mode)
268 #else
269 #define ll_vfs_symlink(dir, dentry, mnt, path, mode) \
270                 vfs_symlink(dir, dentry, path, mode)
271 #endif
272 #endif
273
274 #ifndef container_of
275 #define container_of(ptr, type, member) ({                      \
276                 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
277                 (type *)( (char *)__mptr - offsetof(type,member) );})
278 #endif
279
280 #ifdef HAVE_I_ALLOC_SEM
281 #define UP_WRITE_I_ALLOC_SEM(i)   do { up_write(&(i)->i_alloc_sem); } while (0)
282 #define DOWN_WRITE_I_ALLOC_SEM(i) do { down_write(&(i)->i_alloc_sem); } while(0)
283 #define LASSERT_I_ALLOC_SEM_WRITE_LOCKED(i) LASSERT(down_read_trylock(&(i)->i_alloc_sem) == 0)
284
285 #define UP_READ_I_ALLOC_SEM(i)    do { up_read(&(i)->i_alloc_sem); } while (0)
286 #define DOWN_READ_I_ALLOC_SEM(i)  do { down_read(&(i)->i_alloc_sem); } while (0)
287 #define LASSERT_I_ALLOC_SEM_READ_LOCKED(i) LASSERT(down_write_trylock(&(i)->i_alloc_sem) == 0)
288 #else
289 #define UP_READ_I_ALLOC_SEM(i)              do { } while (0)
290 #define DOWN_READ_I_ALLOC_SEM(i)            do { } while (0)
291 #define LASSERT_I_ALLOC_SEM_READ_LOCKED(i)  do { } while (0)
292
293 #define UP_WRITE_I_ALLOC_SEM(i)             do { } while (0)
294 #define DOWN_WRITE_I_ALLOC_SEM(i)           do { } while (0)
295 #define LASSERT_I_ALLOC_SEM_WRITE_LOCKED(i) do { } while (0)
296 #endif
297
298 #ifndef HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP
299 #define grab_cache_page_nowait_gfp(x, y, z) grab_cache_page_nowait((x), (y))
300 #endif
301
302 #ifndef HAVE_FILEMAP_FDATAWRITE
303 #define filemap_fdatawrite(mapping)      filemap_fdatasync(mapping)
304 #endif
305
306 #include <linux/mpage.h>        /* for generic_writepages */
307 #ifndef HAVE_FILEMAP_FDATAWRITE_RANGE
308 #include <linux/backing-dev.h>  /* for mapping->backing_dev_info */
309 static inline int filemap_fdatawrite_range(struct address_space *mapping,
310                                            loff_t start, loff_t end)
311 {
312         int rc;
313         struct writeback_control wbc = {
314                 .sync_mode = WB_SYNC_ALL,
315                 .nr_to_write = (end - start + PAGE_SIZE - 1) >> PAGE_SHIFT,
316         };
317
318 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)
319         wbc.range_start = start;
320         wbc.range_end = end;
321 #else
322         wbc.start = start;
323         wbc.end = end;
324 #endif
325
326 #ifdef mapping_cap_writeback_dirty
327         if (!mapping_cap_writeback_dirty(mapping))
328                 rc = 0;
329 #else
330         if (mapping->backing_dev_info->memory_backed)
331                 rc = 0;
332 #endif
333         /* do_writepages() */
334         else if (mapping->a_ops->writepages)
335                 rc = mapping->a_ops->writepages(mapping, &wbc);
336         else
337                 rc = generic_writepages(mapping, &wbc);
338         return rc;
339 }
340 #else
341 int filemap_fdatawrite_range(struct address_space *mapping,
342                              loff_t start, loff_t end);
343 #endif
344
345 #ifdef HAVE_VFS_KERN_MOUNT
346 static inline
347 struct vfsmount *
348 ll_kern_mount(const char *fstype, int flags, const char *name, void *data)
349 {
350         struct file_system_type *type = get_fs_type(fstype);
351         struct vfsmount *mnt;
352         if (!type)
353                 return ERR_PTR(-ENODEV);
354         mnt = vfs_kern_mount(type, flags, name, data);
355         module_put(type->owner);
356         return mnt;
357 }
358 #else
359 #define ll_kern_mount(fstype, flags, name, data) do_kern_mount((fstype), (flags), (name), (data))
360 #endif
361
362 #ifdef HAVE_STATFS_DENTRY_PARAM
363 #define ll_do_statfs(sb, sfs) (sb)->s_op->statfs((sb)->s_root, (sfs))
364 #else
365 #define ll_do_statfs(sb, sfs) (sb)->s_op->statfs((sb), (sfs))
366 #endif
367
368 /* task_struct */
369 #ifndef HAVE_TASK_PPTR
370 #define p_pptr parent
371 #endif
372
373 #ifndef HAVE_SB_TIME_GRAN
374 #ifndef HAVE_S_TIME_GRAN
375 #error Need s_time_gran patch!
376 #endif
377 static inline u32 get_sb_time_gran(struct super_block *sb)
378 {
379         return sb->s_time_gran;
380 }
381 #endif
382
383 #ifdef HAVE_RW_TREE_LOCK
384 #define TREE_READ_LOCK_IRQ(mapping)     read_lock_irq(&(mapping)->tree_lock)
385 #define TREE_READ_UNLOCK_IRQ(mapping) read_unlock_irq(&(mapping)->tree_lock)
386 #else
387 #define TREE_READ_LOCK_IRQ(mapping) spin_lock_irq(&(mapping)->tree_lock)
388 #define TREE_READ_UNLOCK_IRQ(mapping) spin_unlock_irq(&(mapping)->tree_lock)
389 #endif
390
391 #ifdef HAVE_UNREGISTER_BLKDEV_RETURN_INT
392 #define ll_unregister_blkdev(a,b)       unregister_blkdev((a),(b))
393 #else
394 static inline
395 int ll_unregister_blkdev(unsigned int dev, const char *name)
396 {
397         unregister_blkdev(dev, name);
398         return 0;
399 }
400 #endif
401
402 #ifdef HAVE_INVALIDATE_BDEV_2ARG
403 #define ll_invalidate_bdev(a,b)         invalidate_bdev((a),(b))
404 #else
405 #define ll_invalidate_bdev(a,b)         invalidate_bdev((a))
406 #endif
407
408 #ifdef HAVE_INODE_BLKSIZE
409 #define ll_inode_blksize(a)     (a)->i_blksize
410 #else
411 #define ll_inode_blksize(a)     (1<<(a)->i_blkbits)
412 #endif
413
414 #ifdef HAVE_FS_RENAME_DOES_D_MOVE
415 #define LL_RENAME_DOES_D_MOVE   FS_RENAME_DOES_D_MOVE
416 #else
417 #define LL_RENAME_DOES_D_MOVE   FS_ODD_RENAME
418 #endif
419
420 /* add a lustre compatible layer for crypto API */
421 #include <linux/crypto.h>
422 #ifdef HAVE_ASYNC_BLOCK_CIPHER
423 #define ll_crypto_hash          crypto_hash
424 #define ll_crypto_cipher        crypto_blkcipher
425 #define ll_crypto_alloc_hash(name, type, mask)  crypto_alloc_hash(name, type, mask)
426 #define ll_crypto_hash_setkey(tfm, key, keylen) crypto_hash_setkey(tfm, key, keylen)
427 #define ll_crypto_hash_init(desc)               crypto_hash_init(desc)
428 #define ll_crypto_hash_update(desc, sl, bytes)  crypto_hash_update(desc, sl, bytes)
429 #define ll_crypto_hash_final(desc, out)         crypto_hash_final(desc, out)
430 #define ll_crypto_alloc_blkcipher(name, type, mask) \
431                 crypto_alloc_blkcipher(name ,type, mask)
432 #define ll_crypto_blkcipher_setkey(tfm, key, keylen) \
433                 crypto_blkcipher_setkey(tfm, key, keylen)
434 #define ll_crypto_blkcipher_set_iv(tfm, src, len) \
435                 crypto_blkcipher_set_iv(tfm, src, len)
436 #define ll_crypto_blkcipher_get_iv(tfm, dst, len) \
437                 crypto_blkcipher_get_iv(tfm, dst, len)
438 #define ll_crypto_blkcipher_encrypt(desc, dst, src, bytes) \
439                 crypto_blkcipher_encrypt(desc, dst, src, bytes)
440 #define ll_crypto_blkcipher_decrypt(desc, dst, src, bytes) \
441                 crypto_blkcipher_decrypt(desc, dst, src, bytes)
442 #define ll_crypto_blkcipher_encrypt_iv(desc, dst, src, bytes) \
443                 crypto_blkcipher_encrypt_iv(desc, dst, src, bytes)
444 #define ll_crypto_blkcipher_decrypt_iv(desc, dst, src, bytes) \
445                 crypto_blkcipher_decrypt_iv(desc, dst, src, bytes)
446
447 static inline int ll_crypto_hmac(struct ll_crypto_hash *tfm,
448                                  u8 *key, unsigned int *keylen,
449                                  struct scatterlist *sg,
450                                  unsigned int size, u8 *result)
451 {
452         struct hash_desc desc;
453         int              rv;
454         desc.tfm   = tfm;
455         desc.flags = 0;
456         rv = crypto_hash_setkey(desc.tfm, key, *keylen);
457         if (rv) {
458                 CERROR("failed to hash setkey: %d\n", rv);
459                 return rv;
460         }
461         return crypto_hash_digest(&desc, sg, size, result);
462 }
463 static inline
464 unsigned int crypto_tfm_alg_max_keysize(struct crypto_blkcipher *tfm)
465 {
466         return crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher.max_keysize;
467 }
468 static inline
469 unsigned int crypto_tfm_alg_min_keysize(struct crypto_blkcipher *tfm)
470 {
471         return crypto_blkcipher_tfm(tfm)->__crt_alg->cra_blkcipher.min_keysize;
472 }
473
474 #define ll_crypto_hash_blocksize(tfm)       crypto_hash_blocksize(tfm)
475 #define ll_crypto_hash_digestsize(tfm)      crypto_hash_digestsize(tfm)
476 #define ll_crypto_blkcipher_ivsize(tfm)     crypto_blkcipher_ivsize(tfm)
477 #define ll_crypto_blkcipher_blocksize(tfm)  crypto_blkcipher_blocksize(tfm)
478 #define ll_crypto_free_hash(tfm)            crypto_free_hash(tfm)
479 #define ll_crypto_free_blkcipher(tfm)       crypto_free_blkcipher(tfm)
480 #else /* HAVE_ASYNC_BLOCK_CIPHER */
481 #include <linux/scatterlist.h>
482 #define ll_crypto_hash          crypto_tfm
483 #define ll_crypto_cipher        crypto_tfm
484 struct hash_desc {
485         struct ll_crypto_hash *tfm;
486         u32                    flags;
487 };
488 struct blkcipher_desc {
489         struct ll_crypto_cipher *tfm;
490         void                    *info;
491         u32                      flags;
492 };
493 #define ll_crypto_blkcipher_setkey(tfm, key, keylen) \
494         crypto_cipher_setkey(tfm, key, keylen)
495 #define ll_crypto_blkcipher_set_iv(tfm, src, len) \
496         crypto_cipher_set_iv(tfm, src, len)
497 #define ll_crypto_blkcipher_get_iv(tfm, dst, len) \
498         crypto_cipher_get_iv(tfm, dst, len)
499 #define ll_crypto_blkcipher_encrypt(desc, dst, src, bytes) \
500         crypto_cipher_encrypt((desc)->tfm, dst, src, bytes)
501 #define ll_crypto_blkcipher_decrypt(desc, dst, src, bytes) \
502         crypto_cipher_decrypt((desc)->tfm, dst, src, bytes)
503 #define ll_crypto_blkcipher_decrypt_iv(desc, dst, src, bytes) \
504         crypto_cipher_decrypt_iv((desc)->tfm, dst, src, bytes, (desc)->info)
505 #define ll_crypto_blkcipher_encrypt_iv(desc, dst, src, bytes) \
506         crypto_cipher_encrypt_iv((desc)->tfm, dst, src, bytes, (desc)->info)
507
508 static inline
509 struct ll_crypto_cipher *ll_crypto_alloc_blkcipher(const char * algname,
510                                                    u32 type, u32 mask)
511 {
512         char        buf[CRYPTO_MAX_ALG_NAME + 1];
513         const char *pan = algname;
514         u32         flag = 0;
515
516         if (strncmp("cbc(", algname, 4) == 0)
517                 flag |= CRYPTO_TFM_MODE_CBC;
518         else if (strncmp("ecb(", algname, 4) == 0)
519                 flag |= CRYPTO_TFM_MODE_ECB;
520         if (flag) {
521                 char *vp = strnchr(algname, CRYPTO_MAX_ALG_NAME, ')');
522                 if (vp) {
523                         memcpy(buf, algname + 4, vp - algname - 4);
524                         buf[vp - algname - 4] = '\0';
525                         pan = buf;
526                 } else {
527                         flag = 0;
528                 }
529         }
530         return crypto_alloc_tfm(pan, flag);
531 }
532
533 static inline
534 struct ll_crypto_hash *ll_crypto_alloc_hash(const char *alg, u32 type, u32 mask)
535 {
536         char        buf[CRYPTO_MAX_ALG_NAME + 1];
537         const char *pan = alg;
538
539         if (strncmp("hmac(", alg, 5) == 0) {
540                 char *vp = strnchr(alg, CRYPTO_MAX_ALG_NAME, ')');
541                 if (vp) {
542                         memcpy(buf, alg+ 5, vp - alg- 5);
543                         buf[vp - alg - 5] = 0x00;
544                         pan = buf;
545                 }
546         }
547         return crypto_alloc_tfm(pan, 0);
548 }
549 static inline int ll_crypto_hash_init(struct hash_desc *desc)
550 {
551        crypto_digest_init(desc->tfm); return 0;
552 }
553 static inline int ll_crypto_hash_update(struct hash_desc *desc,
554                                         struct scatterlist *sg,
555                                         unsigned int nbytes)
556 {
557         struct scatterlist *sl = sg;
558         unsigned int        count;
559                 /*
560                  * This way is very weakness. We must ensure that
561                  * the sum of sg[0..i]->length isn't greater than nbytes.
562                  * In the upstream kernel the crypto_hash_update() also
563                  * via the nbytes computed the count of sg[...].
564                  * The old style is more safely. but it gone.
565                  */
566         for (count = 0; nbytes > 0; count ++, sl ++) {
567                 nbytes -= sl->length;
568         }
569         crypto_digest_update(desc->tfm, sg, count); return 0;
570 }
571 static inline int ll_crypto_hash_final(struct hash_desc *desc, u8 *out)
572 {
573         crypto_digest_final(desc->tfm, out); return 0;
574 }
575 static inline int ll_crypto_hmac(struct crypto_tfm *tfm,
576                                  u8 *key, unsigned int *keylen,
577                                  struct scatterlist *sg,
578                                  unsigned int nbytes,
579                                  u8 *out)
580 {
581         struct scatterlist *sl = sg;
582         int                 count;
583         for (count = 0; nbytes > 0; count ++, sl ++) {
584                 nbytes -= sl->length;
585         }
586         crypto_hmac(tfm, key, keylen, sg, count, out);
587         return 0;
588 }
589
590 #define ll_crypto_hash_setkey(tfm, key, keylen) crypto_digest_setkey(tfm, key, keylen)
591 #define ll_crypto_blkcipher_blocksize(tfm)      crypto_tfm_alg_blocksize(tfm)
592 #define ll_crypto_blkcipher_ivsize(tfm) crypto_tfm_alg_ivsize(tfm)
593 #define ll_crypto_hash_digestsize(tfm)  crypto_tfm_alg_digestsize(tfm)
594 #define ll_crypto_hash_blocksize(tfm)   crypto_tfm_alg_blocksize(tfm)
595 #define ll_crypto_free_hash(tfm)        crypto_free_tfm(tfm)
596 #define ll_crypto_free_blkcipher(tfm)   crypto_free_tfm(tfm)
597 #endif /* HAVE_ASYNC_BLOCK_CIPHER */
598
599 #ifdef HAVE_SECURITY_PLUG
600 #define ll_remove_suid(inode,mnt)               remove_suid(inode,mnt)
601 #define ll_vfs_rmdir(dir,entry,mnt)             vfs_rmdir(dir,entry,mnt)
602 #define ll_vfs_mkdir(inode,dir,mnt,mode)        vfs_mkdir(inode,dir,mnt,mode)
603 #define ll_vfs_link(old,mnt,dir,new,mnt1)       vfs_link(old,mnt,dir,new,mnt1)
604 #define ll_vfs_unlink(inode,entry,mnt)          vfs_unlink(inode,entry,mnt)
605 #define ll_vfs_mknod(dir,entry,mnt,mode,dev)            \
606                 vfs_mknod(dir,entry,mnt,mode,dev)
607 #define ll_security_inode_unlink(dir,entry,mnt)         \
608                 security_inode_unlink(dir,entry,mnt)
609 #define ll_vfs_rename(old,old_dir,mnt,new,new_dir,mnt1) \
610                 vfs_rename(old,old_dir,mnt,new,new_dir,mnt1)
611 #else
612 #define ll_remove_suid(inode,mnt)               remove_suid(inode)
613 #define ll_vfs_rmdir(dir,entry,mnt)             vfs_rmdir(dir,entry)
614 #define ll_vfs_mkdir(inode,dir,mnt,mode)        vfs_mkdir(inode,dir,mode)
615 #define ll_vfs_link(old,mnt,dir,new,mnt1)       vfs_link(old,dir,new)
616 #define ll_vfs_unlink(inode,entry,mnt)          vfs_unlink(inode,entry)
617 #define ll_vfs_mknod(dir,entry,mnt,mode,dev)    vfs_mknod(dir,entry,mode,dev)
618 #define ll_security_inode_unlink(dir,entry,mnt) security_inode_unlink(dir,entry)
619 #define ll_vfs_rename(old,old_dir,mnt,new,new_dir,mnt1) \
620                 vfs_rename(old,old_dir,new,new_dir)
621 #endif
622
623 #ifndef for_each_possible_cpu
624 #define for_each_possible_cpu(i) for_each_cpu(i)
625 #endif
626
627 #ifndef cpu_to_node
628 #define cpu_to_node(cpu)         0
629 #endif
630
631 #ifndef abs
632 static inline int abs(int x)
633 {
634         return (x < 0) ? -x : x;
635 }
636 #endif
637
638 #ifndef labs
639 static inline long labs(long x)
640 {
641         return (x < 0) ? -x : x;
642 }
643 #endif
644
645 /* Using kernel fls(). Userspace will use one defined in user-bitops.h. */
646 #ifndef __fls
647 #define __fls fls
648 #endif
649
650 #ifdef HAVE_INVALIDATE_INODE_PAGES
651 #define invalidate_mapping_pages(mapping,s,e) invalidate_inode_pages(mapping)
652 #endif
653
654 #ifdef HAVE_INODE_IPRIVATE
655 #define INODE_PRIVATE_DATA(inode)       ((inode)->i_private)
656 #else
657 #define INODE_PRIVATE_DATA(inode)       ((inode)->u.generic_ip)
658 #endif
659
660 #ifndef SLAB_DESTROY_BY_RCU
661 #define SLAB_DESTROY_BY_RCU 0
662 #endif
663
664 #endif /* __KERNEL__ */
665 #endif /* _COMPAT25_H */