1. 24 Jan, 2003 8 commits
    • Kai Germaschewski's avatar
      kbuild: Always link module (.ko) from associated (.o) · caa9e0e0
      Kai Germaschewski authored
      For extracting the versions and finding the unresolved symbols, we
      need multi-part modules to be linked together already, so this
      patch separates the building of the modules as a .o file from generating
      the .ko in the next step.
      caa9e0e0
    • Kai Germaschewski's avatar
      kbuild/modules: Track versions of exported symbols · 1336f151
      Kai Germaschewski authored
      Store the information on the checksum alongside the rest of the 
      information on exported symbols. To actually use them, we need
      something to check them against first, though ;)
      
      Also, fix some conditional debug code to actually compile.
      1336f151
    • Kai Germaschewski's avatar
      kbuild/modules: Don't save the license string · e805cfe6
      Kai Germaschewski authored
      Again, the license string is only used at load time, so no need
      to store it permanently in kernel memory.
      e805cfe6
    • Kai Germaschewski's avatar
      kbuild/modules: Check __vermagic for validity · c8b4778d
      Kai Germaschewski authored
      modprobe --force allows to load modules without a matching version
      magic string. This invalidation is done by clearing the SHF_ALLOC
      flag, so check it in the kernel. Also, clear the SHF_ALLOC flag
      unconditionally, since we don't need to store the __vermagic section
      in the kernel, it's only checked once at load time. 
      c8b4778d
    • Kai Germaschewski's avatar
      kbuild: Generate versions for exported symbols · 09369f63
      Kai Germaschewski authored
      Up to now, we had a way to store the checksums associated with the
      exported symbols, but they were not filled in yet. This is done
      with this patch, using the linker to actually do that for us.
        
      The comment added with this patch explains what magic exactly is going
      on.
      09369f63
    • Kai Germaschewski's avatar
      kbuild: Add CONFIG_MODVERSIONING and __kcrctab · a6b99776
      Kai Germaschewski authored
      This patch adds the new config option CONFIG_MODVERSIONING which will
      be the new way of checking for ABI changes between kernel and module
      code.
      
      This and the following patches are in part based on an initial
      implementation by Rusty Russell and I believe some of the ideas go back
      to discussions on linux-kbuild, Keith Owens and Rusty.
      
      though I'm not sure I think credit for the basic idea of
      storing version info in sections goes to Keith Owens and Rusty.
      
      o Rename __gpl_ksymtab to __ksymtab_gpl since that looks more consistent
        and appending _gpl instead of putting it into the middle simplifies
        sharing code for EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL()
      o Add CONFIG_MODVERSIONING
      o If CONFIG_MODVERSIONING is set, add a section __kcrctab{,_gpl}, which
        contains the ABI checksums for the exported symbols listed in 
        __ksymtab{,_crc} Since we don't know the checksums yet at compilation
        time, just make them an unresolved symbol which gets filled in by the
        linker later.
      a6b99776
    • Kai Germaschewski's avatar
      kbuild: Remove obsolete CONFIG_MODVERSIONS cruft · 81106eac
      Kai Germaschewski authored
      Though the CONFIG_MODVERSIONS option was removed with rusty's module
      rewrite and the associated code broken, a lot of that code was still
      living on here and there. Now it's gone for good.
      81106eac
    • Kai Germaschewski's avatar
      kbuild: Remove -DEXPORT_SYMTAB switch · 61cfcb3d
      Kai Germaschewski authored
      rusty's module rewrite removed the reference to EXPORT_SYMTAB 
      from linux/module.h, and it's not used anywhere else, either.
      61cfcb3d
  2. 17 Jan, 2003 1 commit
    • Kai Germaschewski's avatar
      kbuild: Fix __start_SECTION, __stop_SECTION · aae7d999
      Kai Germaschewski authored
      In a discussion with Sam Ravnborg, the following problem became apparent:
      Most vmlinux.lds.S (but the ARM ones) used the following construct:
        
             __start___ksymtab = .;                                          
             __ksymtab         : AT(ADDR(__ksymtab) - LOAD_OFFSET) {         
                     *(__ksymtab)                                            
             }                                                               
             __stop___ksymtab = .;                                           
        
      However, the link will align the beginning of the section __ksymtab
      according to the requirements for the input sections. If '.' (current
      location counter) wasn't sufficiently aligned before, it's possible
      that __ksymtab actually starts at an address after the one
      __start___ksymtab points to, which will confuse the users of
      __start___ksymtab badly. The fix is to follow what the ARM Makefiles
      did for this case, ie
        
             __ksymtab : AT(ADDR(__ksymtab) - LOAD_OFFSET) {                 
                     __start___ksymtab = .;                                  
                     *(__ksymtab)                                            
                     __stop___ksymtab = .;                                   
             }                                                               
      aae7d999
  3. 16 Jan, 2003 31 commits