kernel: fix kmemleak warnings introduced in 305-mips_module_reloc.patch
authorFelix Fietkau <nbd@nbd.name>
Wed, 6 Nov 2019 15:38:43 +0000 (16:38 +0100)
committerFelix Fietkau <nbd@nbd.name>
Fri, 27 Dec 2019 15:08:00 +0000 (16:08 +0100)
Physically allocated memory for modules needs to be registered with kmemleak,
so it can track it as object.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
target/linux/generic/pending-4.14/305-mips_module_reloc.patch
target/linux/generic/pending-4.19/305-mips_module_reloc.patch

index 609a96db492e4fafa03edd2c228dbe7b5dcdb244..f1e07e17265df3095bddbfdd1ccff03e7d0d6a2d 100644 (file)
@@ -46,7 +46,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  typedef uint8_t Elf64_Byte;           /* Type for a 8-bit quantity.  */
 --- a/arch/mips/kernel/module.c
 +++ b/arch/mips/kernel/module.c
  typedef uint8_t Elf64_Byte;           /* Type for a 8-bit quantity.  */
 --- a/arch/mips/kernel/module.c
 +++ b/arch/mips/kernel/module.c
-@@ -44,14 +44,221 @@ struct mips_hi16 {
+@@ -44,14 +44,224 @@ struct mips_hi16 {
  static LIST_HEAD(dbe_list);
  static DEFINE_SPINLOCK(dbe_lock);
  
  static LIST_HEAD(dbe_list);
  static DEFINE_SPINLOCK(dbe_lock);
  
@@ -187,6 +187,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
 +      if (!ptr)
 +              return vmalloc(size);
 +
 +      if (!ptr)
 +              return vmalloc(size);
 +
++      kmemleak_alloc(ptr, size, 1, GFP_KERNEL);
 +      return ptr;
 +#endif
  }
 +      return ptr;
 +#endif
  }
@@ -203,10 +204,12 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
 +/* Free memory returned from module_alloc */
 +void module_memfree(void *module_region)
 +{
 +/* Free memory returned from module_alloc */
 +void module_memfree(void *module_region)
 +{
-+      if (is_phys_addr(module_region))
++      if (is_phys_addr(module_region)) {
++              kmemleak_free(module_region);
 +              free_phys(module_region);
 +              free_phys(module_region);
-+      else
++      } else {
 +              vfree(module_region);
 +              vfree(module_region);
++      }
 +}
 +
 +static void *__module_alloc(int size, bool phys)
 +}
 +
 +static void *__module_alloc(int size, bool phys)
@@ -269,7 +272,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  
  static int apply_r_mips_none(struct module *me, u32 *location,
                             u32 base, Elf_Addr v, bool rela)
  
  static int apply_r_mips_none(struct module *me, u32 *location,
                             u32 base, Elf_Addr v, bool rela)
-@@ -67,9 +274,40 @@ static int apply_r_mips_32(struct module
+@@ -67,9 +277,40 @@ static int apply_r_mips_32(struct module
        return 0;
  }
  
        return 0;
  }
  
@@ -310,7 +313,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
        if (v % 4) {
                pr_err("module %s: dangerous R_MIPS_26 relocation\n",
                       me->name);
        if (v % 4) {
                pr_err("module %s: dangerous R_MIPS_26 relocation\n",
                       me->name);
-@@ -77,13 +315,17 @@ static int apply_r_mips_26(struct module
+@@ -77,13 +318,17 @@ static int apply_r_mips_26(struct module
        }
  
        if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
        }
  
        if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
@@ -332,7 +335,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  
        return 0;
  }
  
        return 0;
  }
-@@ -459,9 +701,36 @@ int module_finalize(const Elf_Ehdr *hdr,
+@@ -459,9 +704,36 @@ int module_finalize(const Elf_Ehdr *hdr,
                list_add(&me->arch.dbe_list, &dbe_list);
                spin_unlock_irq(&dbe_lock);
        }
                list_add(&me->arch.dbe_list, &dbe_list);
                spin_unlock_irq(&dbe_lock);
        }
index a8e4e78c91e4689e5577a4e3abbb2ee7b4b86092..1f98dfd8efb97cd519801c3fbebe9c152dda7ca3 100644 (file)
@@ -46,7 +46,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  typedef uint8_t Elf64_Byte;           /* Type for a 8-bit quantity.  */
 --- a/arch/mips/kernel/module.c
 +++ b/arch/mips/kernel/module.c
  typedef uint8_t Elf64_Byte;           /* Type for a 8-bit quantity.  */
 --- a/arch/mips/kernel/module.c
 +++ b/arch/mips/kernel/module.c
-@@ -44,14 +44,221 @@ struct mips_hi16 {
+@@ -44,14 +44,224 @@ struct mips_hi16 {
  static LIST_HEAD(dbe_list);
  static DEFINE_SPINLOCK(dbe_lock);
  
  static LIST_HEAD(dbe_list);
  static DEFINE_SPINLOCK(dbe_lock);
  
@@ -187,6 +187,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
 +      if (!ptr)
 +              return vmalloc(size);
 +
 +      if (!ptr)
 +              return vmalloc(size);
 +
++      kmemleak_alloc(ptr, size, 1, GFP_KERNEL);
 +      return ptr;
 +#endif
  }
 +      return ptr;
 +#endif
  }
@@ -203,10 +204,12 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
 +/* Free memory returned from module_alloc */
 +void module_memfree(void *module_region)
 +{
 +/* Free memory returned from module_alloc */
 +void module_memfree(void *module_region)
 +{
-+      if (is_phys_addr(module_region))
++      if (is_phys_addr(module_region)) {
++              kmemleak_free(module_region);
 +              free_phys(module_region);
 +              free_phys(module_region);
-+      else
++      } else {
 +              vfree(module_region);
 +              vfree(module_region);
++      }
 +}
 +
 +static void *__module_alloc(int size, bool phys)
 +}
 +
 +static void *__module_alloc(int size, bool phys)
@@ -269,7 +272,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  
  static int apply_r_mips_none(struct module *me, u32 *location,
                             u32 base, Elf_Addr v, bool rela)
  
  static int apply_r_mips_none(struct module *me, u32 *location,
                             u32 base, Elf_Addr v, bool rela)
-@@ -67,9 +274,40 @@ static int apply_r_mips_32(struct module
+@@ -67,9 +277,40 @@ static int apply_r_mips_32(struct module
        return 0;
  }
  
        return 0;
  }
  
@@ -310,7 +313,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
        if (v % 4) {
                pr_err("module %s: dangerous R_MIPS_26 relocation\n",
                       me->name);
        if (v % 4) {
                pr_err("module %s: dangerous R_MIPS_26 relocation\n",
                       me->name);
-@@ -77,13 +315,17 @@ static int apply_r_mips_26(struct module
+@@ -77,13 +318,17 @@ static int apply_r_mips_26(struct module
        }
  
        if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
        }
  
        if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
@@ -332,7 +335,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
  
        return 0;
  }
  
        return 0;
  }
-@@ -459,9 +701,36 @@ int module_finalize(const Elf_Ehdr *hdr,
+@@ -459,9 +704,36 @@ int module_finalize(const Elf_Ehdr *hdr,
                list_add(&me->arch.dbe_list, &dbe_list);
                spin_unlock_irq(&dbe_lock);
        }
                list_add(&me->arch.dbe_list, &dbe_list);
                spin_unlock_irq(&dbe_lock);
        }