]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Merge remote-tracking branch 'modules/modules-next'
authorStephen Rothwell <sfr@canb.auug.org.au>
Wed, 24 Oct 2012 00:55:09 +0000 (11:55 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 24 Oct 2012 00:55:09 +0000 (11:55 +1100)
Conflicts:
kernel/module.c

1  2 
kernel/module.c

diff --cc kernel/module.c
index 6085f5ef88eaf1fd95159f3db724b16cf43b54d3,261bf82067093c30684e57b3ffd3d4f0543d0ead..65f2be940b55962e136f2bec78a7ada672d956dc
@@@ -2420,18 -2422,27 +2422,18 @@@ static inline void kmemleak_load_module
  #endif
  
  #ifdef CONFIG_MODULE_SIG
- static int module_sig_check(struct load_info *info,
-                           const void *mod, unsigned long *_len)
+ static int module_sig_check(struct load_info *info)
  {
        int err = -ENOKEY;
-       unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
-       unsigned long len = *_len;
+       const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
+       const void *mod = info->hdr;
 -      const void *p = mod, *end = mod + info->len;
++      unsigned long len = info->len;
  
 -      /* Poor man's memmem. */
 -      while ((p = memchr(p, MODULE_SIG_STRING[0], end - p))) {
 -              if (p + markerlen > end)
 -                      break;
 -
 -              if (memcmp(p, MODULE_SIG_STRING, markerlen) == 0) {
 -                      const void *sig = p + markerlen;
 -                      /* Truncate module up to signature. */
 -                      info->len = p - mod;
 -                      err = mod_verify_sig(mod, info->len,
 -                                           sig, end - sig);
 -                      break;
 -              }
 -              p++;
 +      if (len > markerlen &&
 +          memcmp(mod + len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
 +              /* We truncate the module to discard the signature */
-               *_len -= markerlen;
-               err = mod_verify_sig(mod, _len);
++              info->len -= markerlen;
++              err = mod_verify_sig(mod, &info->len);
        }
  
        if (!err) {