module.c 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831
  1. /*
  2. Copyright (C) 2002 Richard Henderson
  3. Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  15. */
  16. #include <linux/export.h>
  17. #include <linux/moduleloader.h>
  18. #include <linux/ftrace_event.h>
  19. #include <linux/init.h>
  20. #include <linux/kallsyms.h>
  21. #include <linux/file.h>
  22. #include <linux/fs.h>
  23. #include <linux/sysfs.h>
  24. #include <linux/kernel.h>
  25. #include <linux/slab.h>
  26. #include <linux/vmalloc.h>
  27. #include <linux/elf.h>
  28. #include <linux/proc_fs.h>
  29. #include <linux/security.h>
  30. #include <linux/seq_file.h>
  31. #include <linux/syscalls.h>
  32. #include <linux/fcntl.h>
  33. #include <linux/rcupdate.h>
  34. #include <linux/capability.h>
  35. #include <linux/cpu.h>
  36. #include <linux/moduleparam.h>
  37. #include <linux/errno.h>
  38. #include <linux/err.h>
  39. #include <linux/vermagic.h>
  40. #include <linux/notifier.h>
  41. #include <linux/sched.h>
  42. #include <linux/stop_machine.h>
  43. #include <linux/device.h>
  44. #include <linux/string.h>
  45. #include <linux/mutex.h>
  46. #include <linux/rculist.h>
  47. #include <asm/uaccess.h>
  48. #include <asm/cacheflush.h>
  49. #include <asm/mmu_context.h>
  50. #include <linux/license.h>
  51. #include <asm/sections.h>
  52. #include <linux/tracepoint.h>
  53. #include <linux/ftrace.h>
  54. #include <linux/async.h>
  55. #include <linux/percpu.h>
  56. #include <linux/kmemleak.h>
  57. #include <linux/jump_label.h>
  58. #include <linux/pfn.h>
  59. #include <linux/bsearch.h>
  60. #include <linux/fips.h>
  61. #include <uapi/linux/module.h>
  62. #include "module-internal.h"
  63. #define CREATE_TRACE_POINTS
  64. #include <trace/events/module.h>
  65. #ifndef ARCH_SHF_SMALL
  66. #define ARCH_SHF_SMALL 0
  67. #endif
  68. /*
  69. * Modules' sections will be aligned on page boundaries
  70. * to ensure complete separation of code and data, but
  71. * only when CONFIG_DEBUG_SET_MODULE_RONX=y
  72. */
  73. #ifdef CONFIG_DEBUG_SET_MODULE_RONX
  74. # define debug_align(X) ALIGN(X, PAGE_SIZE)
  75. #else
  76. # define debug_align(X) (X)
  77. #endif
  78. /*
  79. * Given BASE and SIZE this macro calculates the number of pages the
  80. * memory regions occupies
  81. */
  82. #define MOD_NUMBER_OF_PAGES(BASE, SIZE) (((SIZE) > 0) ? \
  83. (PFN_DOWN((unsigned long)(BASE) + (SIZE) - 1) - \
  84. PFN_DOWN((unsigned long)BASE) + 1) \
  85. : (0UL))
  86. /* If this is set, the section belongs in the init part of the module */
  87. #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
  88. /*
  89. * Mutex protects:
  90. * 1) List of modules (also safely readable with preempt_disable),
  91. * 2) module_use links,
  92. * 3) module_addr_min/module_addr_max.
  93. * (delete uses stop_machine/add uses RCU list operations). */
  94. DEFINE_MUTEX(module_mutex);
  95. EXPORT_SYMBOL_GPL(module_mutex);
  96. static LIST_HEAD(modules);
  97. #ifdef CONFIG_KGDB_KDB
  98. struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
  99. #endif /* CONFIG_KGDB_KDB */
  100. #ifdef CONFIG_MODULE_SIG
  101. #ifdef CONFIG_MODULE_SIG_FORCE
  102. static bool sig_enforce = true;
  103. #else
  104. static bool sig_enforce = false;
  105. static int param_set_bool_enable_only(const char *val,
  106. const struct kernel_param *kp)
  107. {
  108. int err;
  109. bool test;
  110. struct kernel_param dummy_kp = *kp;
  111. dummy_kp.arg = &test;
  112. err = param_set_bool(val, &dummy_kp);
  113. if (err)
  114. return err;
  115. /* Don't let them unset it once it's set! */
  116. if (!test && sig_enforce)
  117. return -EROFS;
  118. if (test)
  119. sig_enforce = true;
  120. return 0;
  121. }
  122. static const struct kernel_param_ops param_ops_bool_enable_only = {
  123. .flags = KERNEL_PARAM_FL_NOARG,
  124. .set = param_set_bool_enable_only,
  125. .get = param_get_bool,
  126. };
  127. #define param_check_bool_enable_only param_check_bool
  128. module_param(sig_enforce, bool_enable_only, 0644);
  129. #endif /* !CONFIG_MODULE_SIG_FORCE */
  130. #endif /* CONFIG_MODULE_SIG */
  131. /* Block module loading/unloading? */
  132. int modules_disabled = 0;
  133. core_param(nomodule, modules_disabled, bint, 0);
  134. /* Waiting for a module to finish initializing? */
  135. static DECLARE_WAIT_QUEUE_HEAD(module_wq);
  136. static BLOCKING_NOTIFIER_HEAD(module_notify_list);
  137. /* Bounds of module allocation, for speeding __module_address.
  138. * Protected by module_mutex. */
  139. static unsigned long module_addr_min = -1UL, module_addr_max = 0;
  140. int register_module_notifier(struct notifier_block * nb)
  141. {
  142. return blocking_notifier_chain_register(&module_notify_list, nb);
  143. }
  144. EXPORT_SYMBOL(register_module_notifier);
  145. int unregister_module_notifier(struct notifier_block * nb)
  146. {
  147. return blocking_notifier_chain_unregister(&module_notify_list, nb);
  148. }
  149. EXPORT_SYMBOL(unregister_module_notifier);
  150. struct load_info {
  151. Elf_Ehdr *hdr;
  152. unsigned long len;
  153. Elf_Shdr *sechdrs;
  154. char *secstrings, *strtab;
  155. unsigned long symoffs, stroffs;
  156. struct _ddebug *debug;
  157. unsigned int num_debug;
  158. bool sig_ok;
  159. struct {
  160. unsigned int sym, str, mod, vers, info, pcpu;
  161. } index;
  162. };
  163. /* We require a truly strong try_module_get(): 0 means failure due to
  164. ongoing or failed initialization etc. */
  165. static inline int strong_try_module_get(struct module *mod)
  166. {
  167. BUG_ON(mod && mod->state == MODULE_STATE_UNFORMED);
  168. if (mod && mod->state == MODULE_STATE_COMING)
  169. return -EBUSY;
  170. if (try_module_get(mod))
  171. return 0;
  172. else
  173. return -ENOENT;
  174. }
  175. static inline void add_taint_module(struct module *mod, unsigned flag,
  176. enum lockdep_ok lockdep_ok)
  177. {
  178. add_taint(flag, lockdep_ok);
  179. mod->taints |= (1U << flag);
  180. }
  181. /*
  182. * A thread that wants to hold a reference to a module only while it
  183. * is running can call this to safely exit. nfsd and lockd use this.
  184. */
  185. void __module_put_and_exit(struct module *mod, long code)
  186. {
  187. module_put(mod);
  188. do_exit(code);
  189. }
  190. EXPORT_SYMBOL(__module_put_and_exit);
  191. /* Find a module section: 0 means not found. */
  192. static unsigned int find_sec(const struct load_info *info, const char *name)
  193. {
  194. unsigned int i;
  195. for (i = 1; i < info->hdr->e_shnum; i++) {
  196. Elf_Shdr *shdr = &info->sechdrs[i];
  197. /* Alloc bit cleared means "ignore it." */
  198. if ((shdr->sh_flags & SHF_ALLOC)
  199. && strcmp(info->secstrings + shdr->sh_name, name) == 0)
  200. return i;
  201. }
  202. return 0;
  203. }
  204. /* Find a module section, or NULL. */
  205. static void *section_addr(const struct load_info *info, const char *name)
  206. {
  207. /* Section 0 has sh_addr 0. */
  208. return (void *)info->sechdrs[find_sec(info, name)].sh_addr;
  209. }
  210. /* Find a module section, or NULL. Fill in number of "objects" in section. */
  211. static void *section_objs(const struct load_info *info,
  212. const char *name,
  213. size_t object_size,
  214. unsigned int *num)
  215. {
  216. unsigned int sec = find_sec(info, name);
  217. /* Section 0 has sh_addr 0 and sh_size 0. */
  218. *num = info->sechdrs[sec].sh_size / object_size;
  219. return (void *)info->sechdrs[sec].sh_addr;
  220. }
  221. /* Provided by the linker */
  222. extern const struct kernel_symbol __start___ksymtab[];
  223. extern const struct kernel_symbol __stop___ksymtab[];
  224. extern const struct kernel_symbol __start___ksymtab_gpl[];
  225. extern const struct kernel_symbol __stop___ksymtab_gpl[];
  226. extern const struct kernel_symbol __start___ksymtab_gpl_future[];
  227. extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
  228. extern const unsigned long __start___kcrctab[];
  229. extern const unsigned long __start___kcrctab_gpl[];
  230. extern const unsigned long __start___kcrctab_gpl_future[];
  231. #ifdef CONFIG_UNUSED_SYMBOLS
  232. extern const struct kernel_symbol __start___ksymtab_unused[];
  233. extern const struct kernel_symbol __stop___ksymtab_unused[];
  234. extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
  235. extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
  236. extern const unsigned long __start___kcrctab_unused[];
  237. extern const unsigned long __start___kcrctab_unused_gpl[];
  238. #endif
  239. #ifndef CONFIG_MODVERSIONS
  240. #define symversion(base, idx) NULL
  241. #else
  242. #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
  243. #endif
  244. static bool each_symbol_in_section(const struct symsearch *arr,
  245. unsigned int arrsize,
  246. struct module *owner,
  247. bool (*fn)(const struct symsearch *syms,
  248. struct module *owner,
  249. void *data),
  250. void *data)
  251. {
  252. unsigned int j;
  253. for (j = 0; j < arrsize; j++) {
  254. if (fn(&arr[j], owner, data))
  255. return true;
  256. }
  257. return false;
  258. }
  259. /* Returns true as soon as fn returns true, otherwise false. */
  260. bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
  261. struct module *owner,
  262. void *data),
  263. void *data)
  264. {
  265. struct module *mod;
  266. static const struct symsearch arr[] = {
  267. { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
  268. NOT_GPL_ONLY, false },
  269. { __start___ksymtab_gpl, __stop___ksymtab_gpl,
  270. __start___kcrctab_gpl,
  271. GPL_ONLY, false },
  272. { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
  273. __start___kcrctab_gpl_future,
  274. WILL_BE_GPL_ONLY, false },
  275. #ifdef CONFIG_UNUSED_SYMBOLS
  276. { __start___ksymtab_unused, __stop___ksymtab_unused,
  277. __start___kcrctab_unused,
  278. NOT_GPL_ONLY, true },
  279. { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
  280. __start___kcrctab_unused_gpl,
  281. GPL_ONLY, true },
  282. #endif
  283. };
  284. if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
  285. return true;
  286. list_for_each_entry_rcu(mod, &modules, list) {
  287. struct symsearch arr[] = {
  288. { mod->syms, mod->syms + mod->num_syms, mod->crcs,
  289. NOT_GPL_ONLY, false },
  290. { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
  291. mod->gpl_crcs,
  292. GPL_ONLY, false },
  293. { mod->gpl_future_syms,
  294. mod->gpl_future_syms + mod->num_gpl_future_syms,
  295. mod->gpl_future_crcs,
  296. WILL_BE_GPL_ONLY, false },
  297. #ifdef CONFIG_UNUSED_SYMBOLS
  298. { mod->unused_syms,
  299. mod->unused_syms + mod->num_unused_syms,
  300. mod->unused_crcs,
  301. NOT_GPL_ONLY, true },
  302. { mod->unused_gpl_syms,
  303. mod->unused_gpl_syms + mod->num_unused_gpl_syms,
  304. mod->unused_gpl_crcs,
  305. GPL_ONLY, true },
  306. #endif
  307. };
  308. if (mod->state == MODULE_STATE_UNFORMED)
  309. continue;
  310. if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
  311. return true;
  312. }
  313. return false;
  314. }
  315. EXPORT_SYMBOL_GPL(each_symbol_section);
  316. struct find_symbol_arg {
  317. /* Input */
  318. const char *name;
  319. bool gplok;
  320. bool warn;
  321. /* Output */
  322. struct module *owner;
  323. const unsigned long *crc;
  324. const struct kernel_symbol *sym;
  325. };
  326. static bool check_symbol(const struct symsearch *syms,
  327. struct module *owner,
  328. unsigned int symnum, void *data)
  329. {
  330. struct find_symbol_arg *fsa = data;
  331. if (!fsa->gplok) {
  332. if (syms->licence == GPL_ONLY)
  333. return false;
  334. if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
  335. pr_warn("Symbol %s is being used by a non-GPL module, "
  336. "which will not be allowed in the future\n",
  337. fsa->name);
  338. }
  339. }
  340. #ifdef CONFIG_UNUSED_SYMBOLS
  341. if (syms->unused && fsa->warn) {
  342. pr_warn("Symbol %s is marked as UNUSED, however this module is "
  343. "using it.\n", fsa->name);
  344. pr_warn("This symbol will go away in the future.\n");
  345. pr_warn("Please evalute if this is the right api to use and if "
  346. "it really is, submit a report the linux kernel "
  347. "mailinglist together with submitting your code for "
  348. "inclusion.\n");
  349. }
  350. #endif
  351. fsa->owner = owner;
  352. fsa->crc = symversion(syms->crcs, symnum);
  353. fsa->sym = &syms->start[symnum];
  354. return true;
  355. }
  356. static int cmp_name(const void *va, const void *vb)
  357. {
  358. const char *a;
  359. const struct kernel_symbol *b;
  360. a = va; b = vb;
  361. return strcmp(a, b->name);
  362. }
  363. static bool find_symbol_in_section(const struct symsearch *syms,
  364. struct module *owner,
  365. void *data)
  366. {
  367. struct find_symbol_arg *fsa = data;
  368. struct kernel_symbol *sym;
  369. sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
  370. sizeof(struct kernel_symbol), cmp_name);
  371. if (sym != NULL && check_symbol(syms, owner, sym - syms->start, data))
  372. return true;
  373. return false;
  374. }
  375. /* Find a symbol and return it, along with, (optional) crc and
  376. * (optional) module which owns it. Needs preempt disabled or module_mutex. */
  377. const struct kernel_symbol *find_symbol(const char *name,
  378. struct module **owner,
  379. const unsigned long **crc,
  380. bool gplok,
  381. bool warn)
  382. {
  383. struct find_symbol_arg fsa;
  384. fsa.name = name;
  385. fsa.gplok = gplok;
  386. fsa.warn = warn;
  387. if (each_symbol_section(find_symbol_in_section, &fsa)) {
  388. if (owner)
  389. *owner = fsa.owner;
  390. if (crc)
  391. *crc = fsa.crc;
  392. return fsa.sym;
  393. }
  394. pr_debug("Failed to find symbol %s\n", name);
  395. return NULL;
  396. }
  397. EXPORT_SYMBOL_GPL(find_symbol);
  398. /* Search for module by name: must hold module_mutex. */
  399. static struct module *find_module_all(const char *name, size_t len,
  400. bool even_unformed)
  401. {
  402. struct module *mod;
  403. list_for_each_entry(mod, &modules, list) {
  404. if (!even_unformed && mod->state == MODULE_STATE_UNFORMED)
  405. continue;
  406. if (strlen(mod->name) == len && !memcmp(mod->name, name, len))
  407. return mod;
  408. }
  409. return NULL;
  410. }
  411. struct module *find_module(const char *name)
  412. {
  413. return find_module_all(name, strlen(name), false);
  414. }
  415. EXPORT_SYMBOL_GPL(find_module);
  416. #ifdef CONFIG_SMP
  417. static inline void __percpu *mod_percpu(struct module *mod)
  418. {
  419. return mod->percpu;
  420. }
  421. static int percpu_modalloc(struct module *mod, struct load_info *info)
  422. {
  423. Elf_Shdr *pcpusec = &info->sechdrs[info->index.pcpu];
  424. unsigned long align = pcpusec->sh_addralign;
  425. if (!pcpusec->sh_size)
  426. return 0;
  427. if (align > PAGE_SIZE) {
  428. pr_warn("%s: per-cpu alignment %li > %li\n",
  429. mod->name, align, PAGE_SIZE);
  430. align = PAGE_SIZE;
  431. }
  432. mod->percpu = __alloc_reserved_percpu(pcpusec->sh_size, align);
  433. if (!mod->percpu) {
  434. pr_warn("%s: Could not allocate %lu bytes percpu data\n",
  435. mod->name, (unsigned long)pcpusec->sh_size);
  436. return -ENOMEM;
  437. }
  438. mod->percpu_size = pcpusec->sh_size;
  439. return 0;
  440. }
  441. static void percpu_modfree(struct module *mod)
  442. {
  443. free_percpu(mod->percpu);
  444. }
  445. static unsigned int find_pcpusec(struct load_info *info)
  446. {
  447. return find_sec(info, ".data..percpu");
  448. }
  449. static void percpu_modcopy(struct module *mod,
  450. const void *from, unsigned long size)
  451. {
  452. int cpu;
  453. for_each_possible_cpu(cpu)
  454. memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
  455. }
  456. /**
  457. * is_module_percpu_address - test whether address is from module static percpu
  458. * @addr: address to test
  459. *
  460. * Test whether @addr belongs to module static percpu area.
  461. *
  462. * RETURNS:
  463. * %true if @addr is from module static percpu area
  464. */
  465. bool is_module_percpu_address(unsigned long addr)
  466. {
  467. struct module *mod;
  468. unsigned int cpu;
  469. preempt_disable();
  470. list_for_each_entry_rcu(mod, &modules, list) {
  471. if (mod->state == MODULE_STATE_UNFORMED)
  472. continue;
  473. if (!mod->percpu_size)
  474. continue;
  475. for_each_possible_cpu(cpu) {
  476. void *start = per_cpu_ptr(mod->percpu, cpu);
  477. if ((void *)addr >= start &&
  478. (void *)addr < start + mod->percpu_size) {
  479. preempt_enable();
  480. return true;
  481. }
  482. }
  483. }
  484. preempt_enable();
  485. return false;
  486. }
  487. #else /* ... !CONFIG_SMP */
  488. static inline void __percpu *mod_percpu(struct module *mod)
  489. {
  490. return NULL;
  491. }
  492. static int percpu_modalloc(struct module *mod, struct load_info *info)
  493. {
  494. /* UP modules shouldn't have this section: ENOMEM isn't quite right */
  495. if (info->sechdrs[info->index.pcpu].sh_size != 0)
  496. return -ENOMEM;
  497. return 0;
  498. }
  499. static inline void percpu_modfree(struct module *mod)
  500. {
  501. }
  502. static unsigned int find_pcpusec(struct load_info *info)
  503. {
  504. return 0;
  505. }
  506. static inline void percpu_modcopy(struct module *mod,
  507. const void *from, unsigned long size)
  508. {
  509. /* pcpusec should be 0, and size of that section should be 0. */
  510. BUG_ON(size != 0);
  511. }
  512. bool is_module_percpu_address(unsigned long addr)
  513. {
  514. return false;
  515. }
  516. #endif /* CONFIG_SMP */
  517. #define MODINFO_ATTR(field) \
  518. static void setup_modinfo_##field(struct module *mod, const char *s) \
  519. { \
  520. mod->field = kstrdup(s, GFP_KERNEL); \
  521. } \
  522. static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
  523. struct module_kobject *mk, char *buffer) \
  524. { \
  525. return scnprintf(buffer, PAGE_SIZE, "%s\n", mk->mod->field); \
  526. } \
  527. static int modinfo_##field##_exists(struct module *mod) \
  528. { \
  529. return mod->field != NULL; \
  530. } \
  531. static void free_modinfo_##field(struct module *mod) \
  532. { \
  533. kfree(mod->field); \
  534. mod->field = NULL; \
  535. } \
  536. static struct module_attribute modinfo_##field = { \
  537. .attr = { .name = __stringify(field), .mode = 0444 }, \
  538. .show = show_modinfo_##field, \
  539. .setup = setup_modinfo_##field, \
  540. .test = modinfo_##field##_exists, \
  541. .free = free_modinfo_##field, \
  542. };
  543. MODINFO_ATTR(version);
  544. MODINFO_ATTR(srcversion);
  545. static char last_unloaded_module[MODULE_NAME_LEN+1];
  546. #ifdef CONFIG_MODULE_UNLOAD
  547. EXPORT_TRACEPOINT_SYMBOL(module_get);
  548. /* Init the unload section of the module. */
  549. static int module_unload_init(struct module *mod)
  550. {
  551. mod->refptr = alloc_percpu(struct module_ref);
  552. if (!mod->refptr)
  553. return -ENOMEM;
  554. INIT_LIST_HEAD(&mod->source_list);
  555. INIT_LIST_HEAD(&mod->target_list);
  556. /* Hold reference count during initialization. */
  557. __this_cpu_write(mod->refptr->incs, 1);
  558. return 0;
  559. }
  560. /* Does a already use b? */
  561. static int already_uses(struct module *a, struct module *b)
  562. {
  563. struct module_use *use;
  564. list_for_each_entry(use, &b->source_list, source_list) {
  565. if (use->source == a) {
  566. pr_debug("%s uses %s!\n", a->name, b->name);
  567. return 1;
  568. }
  569. }
  570. pr_debug("%s does not use %s!\n", a->name, b->name);
  571. return 0;
  572. }
  573. /*
  574. * Module a uses b
  575. * - we add 'a' as a "source", 'b' as a "target" of module use
  576. * - the module_use is added to the list of 'b' sources (so
  577. * 'b' can walk the list to see who sourced them), and of 'a'
  578. * targets (so 'a' can see what modules it targets).
  579. */
  580. static int add_module_usage(struct module *a, struct module *b)
  581. {
  582. struct module_use *use;
  583. pr_debug("Allocating new usage for %s.\n", a->name);
  584. use = kmalloc(sizeof(*use), GFP_ATOMIC);
  585. if (!use) {
  586. pr_warn("%s: out of memory loading\n", a->name);
  587. return -ENOMEM;
  588. }
  589. use->source = a;
  590. use->target = b;
  591. list_add(&use->source_list, &b->source_list);
  592. list_add(&use->target_list, &a->target_list);
  593. return 0;
  594. }
  595. /* Module a uses b: caller needs module_mutex() */
  596. int ref_module(struct module *a, struct module *b)
  597. {
  598. int err;
  599. if (b == NULL || already_uses(a, b))
  600. return 0;
  601. /* If module isn't available, we fail. */
  602. err = strong_try_module_get(b);
  603. if (err)
  604. return err;
  605. err = add_module_usage(a, b);
  606. if (err) {
  607. module_put(b);
  608. return err;
  609. }
  610. return 0;
  611. }
  612. EXPORT_SYMBOL_GPL(ref_module);
  613. /* Clear the unload stuff of the module. */
  614. static void module_unload_free(struct module *mod)
  615. {
  616. struct module_use *use, *tmp;
  617. mutex_lock(&module_mutex);
  618. list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
  619. struct module *i = use->target;
  620. pr_debug("%s unusing %s\n", mod->name, i->name);
  621. module_put(i);
  622. list_del(&use->source_list);
  623. list_del(&use->target_list);
  624. kfree(use);
  625. }
  626. mutex_unlock(&module_mutex);
  627. free_percpu(mod->refptr);
  628. }
  629. #ifdef CONFIG_MODULE_FORCE_UNLOAD
  630. static inline int try_force_unload(unsigned int flags)
  631. {
  632. int ret = (flags & O_TRUNC);
  633. if (ret)
  634. add_taint(TAINT_FORCED_RMMOD, LOCKDEP_NOW_UNRELIABLE);
  635. return ret;
  636. }
  637. #else
  638. static inline int try_force_unload(unsigned int flags)
  639. {
  640. return 0;
  641. }
  642. #endif /* CONFIG_MODULE_FORCE_UNLOAD */
  643. struct stopref
  644. {
  645. struct module *mod;
  646. int flags;
  647. int *forced;
  648. };
  649. /* Whole machine is stopped with interrupts off when this runs. */
  650. static int __try_stop_module(void *_sref)
  651. {
  652. struct stopref *sref = _sref;
  653. /* If it's not unused, quit unless we're forcing. */
  654. if (module_refcount(sref->mod) != 0) {
  655. if (!(*sref->forced = try_force_unload(sref->flags)))
  656. return -EWOULDBLOCK;
  657. }
  658. /* Mark it as dying. */
  659. sref->mod->state = MODULE_STATE_GOING;
  660. return 0;
  661. }
  662. static int try_stop_module(struct module *mod, int flags, int *forced)
  663. {
  664. struct stopref sref = { mod, flags, forced };
  665. return stop_machine(__try_stop_module, &sref, NULL);
  666. }
  667. unsigned long module_refcount(struct module *mod)
  668. {
  669. unsigned long incs = 0, decs = 0;
  670. int cpu;
  671. for_each_possible_cpu(cpu)
  672. decs += per_cpu_ptr(mod->refptr, cpu)->decs;
  673. /*
  674. * ensure the incs are added up after the decs.
  675. * module_put ensures incs are visible before decs with smp_wmb.
  676. *
  677. * This 2-count scheme avoids the situation where the refcount
  678. * for CPU0 is read, then CPU0 increments the module refcount,
  679. * then CPU1 drops that refcount, then the refcount for CPU1 is
  680. * read. We would record a decrement but not its corresponding
  681. * increment so we would see a low count (disaster).
  682. *
  683. * Rare situation? But module_refcount can be preempted, and we
  684. * might be tallying up 4096+ CPUs. So it is not impossible.
  685. */
  686. smp_rmb();
  687. for_each_possible_cpu(cpu)
  688. incs += per_cpu_ptr(mod->refptr, cpu)->incs;
  689. return incs - decs;
  690. }
  691. EXPORT_SYMBOL(module_refcount);
  692. /* This exists whether we can unload or not */
  693. static void free_module(struct module *mod);
  694. SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
  695. unsigned int, flags)
  696. {
  697. struct module *mod;
  698. char name[MODULE_NAME_LEN];
  699. int ret, forced = 0;
  700. if (!capable(CAP_SYS_MODULE) || modules_disabled)
  701. return -EPERM;
  702. if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
  703. return -EFAULT;
  704. name[MODULE_NAME_LEN-1] = '\0';
  705. if (!(flags & O_NONBLOCK))
  706. pr_warn("waiting module removal not supported: please upgrade\n");
  707. if (mutex_lock_interruptible(&module_mutex) != 0)
  708. return -EINTR;
  709. mod = find_module(name);
  710. if (!mod) {
  711. ret = -ENOENT;
  712. goto out;
  713. }
  714. if (!list_empty(&mod->source_list)) {
  715. /* Other modules depend on us: get rid of them first. */
  716. ret = -EWOULDBLOCK;
  717. goto out;
  718. }
  719. /* Doing init or already dying? */
  720. if (mod->state != MODULE_STATE_LIVE) {
  721. /* FIXME: if (force), slam module count damn the torpedoes */
  722. pr_debug("%s already dying\n", mod->name);
  723. ret = -EBUSY;
  724. goto out;
  725. }
  726. /* If it has an init func, it must have an exit func to unload */
  727. if (mod->init && !mod->exit) {
  728. forced = try_force_unload(flags);
  729. if (!forced) {
  730. /* This module can't be removed */
  731. ret = -EBUSY;
  732. goto out;
  733. }
  734. }
  735. /* Stop the machine so refcounts can't move and disable module. */
  736. ret = try_stop_module(mod, flags, &forced);
  737. if (ret != 0)
  738. goto out;
  739. mutex_unlock(&module_mutex);
  740. /* Final destruction now no one is using it. */
  741. if (mod->exit != NULL)
  742. mod->exit();
  743. blocking_notifier_call_chain(&module_notify_list,
  744. MODULE_STATE_GOING, mod);
  745. async_synchronize_full();
  746. /* Store the name of the last unloaded module for diagnostic purposes */
  747. strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
  748. free_module(mod);
  749. return 0;
  750. out:
  751. mutex_unlock(&module_mutex);
  752. return ret;
  753. }
  754. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  755. {
  756. struct module_use *use;
  757. int printed_something = 0;
  758. seq_printf(m, " %lu ", module_refcount(mod));
  759. /* Always include a trailing , so userspace can differentiate
  760. between this and the old multi-field proc format. */
  761. list_for_each_entry(use, &mod->source_list, source_list) {
  762. printed_something = 1;
  763. seq_printf(m, "%s,", use->source->name);
  764. }
  765. if (mod->init != NULL && mod->exit == NULL) {
  766. printed_something = 1;
  767. seq_printf(m, "[permanent],");
  768. }
  769. if (!printed_something)
  770. seq_printf(m, "-");
  771. }
  772. void __symbol_put(const char *symbol)
  773. {
  774. struct module *owner;
  775. preempt_disable();
  776. if (!find_symbol(symbol, &owner, NULL, true, false))
  777. BUG();
  778. module_put(owner);
  779. preempt_enable();
  780. }
  781. EXPORT_SYMBOL(__symbol_put);
  782. /* Note this assumes addr is a function, which it currently always is. */
  783. void symbol_put_addr(void *addr)
  784. {
  785. struct module *modaddr;
  786. unsigned long a = (unsigned long)dereference_function_descriptor(addr);
  787. if (core_kernel_text(a))
  788. return;
  789. /* module_text_address is safe here: we're supposed to have reference
  790. * to module from symbol_get, so it can't go away. */
  791. modaddr = __module_text_address(a);
  792. BUG_ON(!modaddr);
  793. module_put(modaddr);
  794. }
  795. EXPORT_SYMBOL_GPL(symbol_put_addr);
  796. static ssize_t show_refcnt(struct module_attribute *mattr,
  797. struct module_kobject *mk, char *buffer)
  798. {
  799. return sprintf(buffer, "%lu\n", module_refcount(mk->mod));
  800. }
  801. static struct module_attribute modinfo_refcnt =
  802. __ATTR(refcnt, 0444, show_refcnt, NULL);
  803. void __module_get(struct module *module)
  804. {
  805. if (module) {
  806. preempt_disable();
  807. __this_cpu_inc(module->refptr->incs);
  808. trace_module_get(module, _RET_IP_);
  809. preempt_enable();
  810. }
  811. }
  812. EXPORT_SYMBOL(__module_get);
  813. bool try_module_get(struct module *module)
  814. {
  815. bool ret = true;
  816. if (module) {
  817. preempt_disable();
  818. if (likely(module_is_live(module))) {
  819. __this_cpu_inc(module->refptr->incs);
  820. trace_module_get(module, _RET_IP_);
  821. } else
  822. ret = false;
  823. preempt_enable();
  824. }
  825. return ret;
  826. }
  827. EXPORT_SYMBOL(try_module_get);
  828. void module_put(struct module *module)
  829. {
  830. if (module) {
  831. preempt_disable();
  832. smp_wmb(); /* see comment in module_refcount */
  833. __this_cpu_inc(module->refptr->decs);
  834. trace_module_put(module, _RET_IP_);
  835. preempt_enable();
  836. }
  837. }
  838. EXPORT_SYMBOL(module_put);
  839. #else /* !CONFIG_MODULE_UNLOAD */
  840. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  841. {
  842. /* We don't know the usage count, or what modules are using. */
  843. seq_printf(m, " - -");
  844. }
  845. static inline void module_unload_free(struct module *mod)
  846. {
  847. }
  848. int ref_module(struct module *a, struct module *b)
  849. {
  850. return strong_try_module_get(b);
  851. }
  852. EXPORT_SYMBOL_GPL(ref_module);
  853. static inline int module_unload_init(struct module *mod)
  854. {
  855. return 0;
  856. }
  857. #endif /* CONFIG_MODULE_UNLOAD */
  858. static size_t module_flags_taint(struct module *mod, char *buf)
  859. {
  860. size_t l = 0;
  861. if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
  862. buf[l++] = 'P';
  863. if (mod->taints & (1 << TAINT_OOT_MODULE))
  864. buf[l++] = 'O';
  865. if (mod->taints & (1 << TAINT_FORCED_MODULE))
  866. buf[l++] = 'F';
  867. if (mod->taints & (1 << TAINT_CRAP))
  868. buf[l++] = 'C';
  869. /*
  870. * TAINT_FORCED_RMMOD: could be added.
  871. * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
  872. * apply to modules.
  873. */
  874. return l;
  875. }
  876. static ssize_t show_initstate(struct module_attribute *mattr,
  877. struct module_kobject *mk, char *buffer)
  878. {
  879. const char *state = "unknown";
  880. switch (mk->mod->state) {
  881. case MODULE_STATE_LIVE:
  882. state = "live";
  883. break;
  884. case MODULE_STATE_COMING:
  885. state = "coming";
  886. break;
  887. case MODULE_STATE_GOING:
  888. state = "going";
  889. break;
  890. default:
  891. BUG();
  892. }
  893. return sprintf(buffer, "%s\n", state);
  894. }
  895. static struct module_attribute modinfo_initstate =
  896. __ATTR(initstate, 0444, show_initstate, NULL);
  897. static ssize_t store_uevent(struct module_attribute *mattr,
  898. struct module_kobject *mk,
  899. const char *buffer, size_t count)
  900. {
  901. enum kobject_action action;
  902. if (kobject_action_type(buffer, count, &action) == 0)
  903. kobject_uevent(&mk->kobj, action);
  904. return count;
  905. }
  906. struct module_attribute module_uevent =
  907. __ATTR(uevent, 0200, NULL, store_uevent);
  908. static ssize_t show_coresize(struct module_attribute *mattr,
  909. struct module_kobject *mk, char *buffer)
  910. {
  911. return sprintf(buffer, "%u\n", mk->mod->core_size);
  912. }
  913. static struct module_attribute modinfo_coresize =
  914. __ATTR(coresize, 0444, show_coresize, NULL);
  915. static ssize_t show_initsize(struct module_attribute *mattr,
  916. struct module_kobject *mk, char *buffer)
  917. {
  918. return sprintf(buffer, "%u\n", mk->mod->init_size);
  919. }
  920. static struct module_attribute modinfo_initsize =
  921. __ATTR(initsize, 0444, show_initsize, NULL);
  922. static ssize_t show_taint(struct module_attribute *mattr,
  923. struct module_kobject *mk, char *buffer)
  924. {
  925. size_t l;
  926. l = module_flags_taint(mk->mod, buffer);
  927. buffer[l++] = '\n';
  928. return l;
  929. }
  930. static struct module_attribute modinfo_taint =
  931. __ATTR(taint, 0444, show_taint, NULL);
  932. static struct module_attribute *modinfo_attrs[] = {
  933. &module_uevent,
  934. &modinfo_version,
  935. &modinfo_srcversion,
  936. &modinfo_initstate,
  937. &modinfo_coresize,
  938. &modinfo_initsize,
  939. &modinfo_taint,
  940. #ifdef CONFIG_MODULE_UNLOAD
  941. &modinfo_refcnt,
  942. #endif
  943. NULL,
  944. };
  945. static const char vermagic[] = VERMAGIC_STRING;
  946. static int try_to_force_load(struct module *mod, const char *reason)
  947. {
  948. #ifdef CONFIG_MODULE_FORCE_LOAD
  949. if (!test_taint(TAINT_FORCED_MODULE))
  950. pr_warn("%s: %s: kernel tainted.\n", mod->name, reason);
  951. add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_NOW_UNRELIABLE);
  952. return 0;
  953. #else
  954. return -ENOEXEC;
  955. #endif
  956. }
  957. #ifdef CONFIG_MODVERSIONS
  958. /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
  959. static unsigned long maybe_relocated(unsigned long crc,
  960. const struct module *crc_owner)
  961. {
  962. #ifdef ARCH_RELOCATES_KCRCTAB
  963. if (crc_owner == NULL)
  964. return crc - (unsigned long)reloc_start;
  965. #endif
  966. return crc;
  967. }
  968. static int check_version(Elf_Shdr *sechdrs,
  969. unsigned int versindex,
  970. const char *symname,
  971. struct module *mod,
  972. const unsigned long *crc,
  973. const struct module *crc_owner)
  974. {
  975. unsigned int i, num_versions;
  976. struct modversion_info *versions;
  977. /* Exporting module didn't supply crcs? OK, we're already tainted. */
  978. if (!crc)
  979. return 1;
  980. /* No versions at all? modprobe --force does this. */
  981. if (versindex == 0)
  982. return try_to_force_load(mod, symname) == 0;
  983. versions = (void *) sechdrs[versindex].sh_addr;
  984. num_versions = sechdrs[versindex].sh_size
  985. / sizeof(struct modversion_info);
  986. for (i = 0; i < num_versions; i++) {
  987. if (strcmp(versions[i].name, symname) != 0)
  988. continue;
  989. if (versions[i].crc == maybe_relocated(*crc, crc_owner))
  990. return 1;
  991. pr_debug("Found checksum %lX vs module %lX\n",
  992. maybe_relocated(*crc, crc_owner), versions[i].crc);
  993. goto bad_version;
  994. }
  995. pr_warn("%s: no symbol version for %s\n", mod->name, symname);
  996. return 0;
  997. bad_version:
  998. printk("%s: disagrees about version of symbol %s\n",
  999. mod->name, symname);
  1000. return 0;
  1001. }
  1002. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  1003. unsigned int versindex,
  1004. struct module *mod)
  1005. {
  1006. const unsigned long *crc;
  1007. /* Since this should be found in kernel (which can't be removed),
  1008. * no locking is necessary. */
  1009. if (!find_symbol(VMLINUX_SYMBOL_STR(module_layout), NULL,
  1010. &crc, true, false))
  1011. BUG();
  1012. return check_version(sechdrs, versindex,
  1013. VMLINUX_SYMBOL_STR(module_layout), mod, crc,
  1014. NULL);
  1015. }
  1016. /* First part is kernel version, which we ignore if module has crcs. */
  1017. static inline int same_magic(const char *amagic, const char *bmagic,
  1018. bool has_crcs)
  1019. {
  1020. if (has_crcs) {
  1021. amagic += strcspn(amagic, " ");
  1022. bmagic += strcspn(bmagic, " ");
  1023. }
  1024. return strcmp(amagic, bmagic) == 0;
  1025. }
  1026. #else
  1027. static inline int check_version(Elf_Shdr *sechdrs,
  1028. unsigned int versindex,
  1029. const char *symname,
  1030. struct module *mod,
  1031. const unsigned long *crc,
  1032. const struct module *crc_owner)
  1033. {
  1034. return 1;
  1035. }
  1036. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  1037. unsigned int versindex,
  1038. struct module *mod)
  1039. {
  1040. return 1;
  1041. }
  1042. static inline int same_magic(const char *amagic, const char *bmagic,
  1043. bool has_crcs)
  1044. {
  1045. return strcmp(amagic, bmagic) == 0;
  1046. }
  1047. #endif /* CONFIG_MODVERSIONS */
  1048. /* Resolve a symbol for this module. I.e. if we find one, record usage. */
  1049. static const struct kernel_symbol *resolve_symbol(struct module *mod,
  1050. const struct load_info *info,
  1051. const char *name,
  1052. char ownername[])
  1053. {
  1054. struct module *owner;
  1055. const struct kernel_symbol *sym;
  1056. const unsigned long *crc;
  1057. int err;
  1058. mutex_lock(&module_mutex);
  1059. sym = find_symbol(name, &owner, &crc,
  1060. !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
  1061. if (!sym)
  1062. goto unlock;
  1063. if (!check_version(info->sechdrs, info->index.vers, name, mod, crc,
  1064. owner)) {
  1065. sym = ERR_PTR(-EINVAL);
  1066. goto getname;
  1067. }
  1068. err = ref_module(mod, owner);
  1069. if (err) {
  1070. sym = ERR_PTR(err);
  1071. goto getname;
  1072. }
  1073. getname:
  1074. /* We must make copy under the lock if we failed to get ref. */
  1075. strncpy(ownername, module_name(owner), MODULE_NAME_LEN);
  1076. unlock:
  1077. mutex_unlock(&module_mutex);
  1078. return sym;
  1079. }
  1080. static const struct kernel_symbol *
  1081. resolve_symbol_wait(struct module *mod,
  1082. const struct load_info *info,
  1083. const char *name)
  1084. {
  1085. const struct kernel_symbol *ksym;
  1086. char owner[MODULE_NAME_LEN];
  1087. if (wait_event_interruptible_timeout(module_wq,
  1088. !IS_ERR(ksym = resolve_symbol(mod, info, name, owner))
  1089. || PTR_ERR(ksym) != -EBUSY,
  1090. 30 * HZ) <= 0) {
  1091. pr_warn("%s: gave up waiting for init of module %s.\n",
  1092. mod->name, owner);
  1093. }
  1094. return ksym;
  1095. }
  1096. /*
  1097. * /sys/module/foo/sections stuff
  1098. * J. Corbet <corbet@lwn.net>
  1099. */
  1100. #ifdef CONFIG_SYSFS
  1101. #ifdef CONFIG_KALLSYMS
  1102. static inline bool sect_empty(const Elf_Shdr *sect)
  1103. {
  1104. return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
  1105. }
  1106. struct module_sect_attr
  1107. {
  1108. struct module_attribute mattr;
  1109. char *name;
  1110. unsigned long address;
  1111. };
  1112. struct module_sect_attrs
  1113. {
  1114. struct attribute_group grp;
  1115. unsigned int nsections;
  1116. struct module_sect_attr attrs[0];
  1117. };
  1118. static ssize_t module_sect_show(struct module_attribute *mattr,
  1119. struct module_kobject *mk, char *buf)
  1120. {
  1121. struct module_sect_attr *sattr =
  1122. container_of(mattr, struct module_sect_attr, mattr);
  1123. return sprintf(buf, "0x%pK\n", (void *)sattr->address);
  1124. }
  1125. static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
  1126. {
  1127. unsigned int section;
  1128. for (section = 0; section < sect_attrs->nsections; section++)
  1129. kfree(sect_attrs->attrs[section].name);
  1130. kfree(sect_attrs);
  1131. }
  1132. static void add_sect_attrs(struct module *mod, const struct load_info *info)
  1133. {
  1134. unsigned int nloaded = 0, i, size[2];
  1135. struct module_sect_attrs *sect_attrs;
  1136. struct module_sect_attr *sattr;
  1137. struct attribute **gattr;
  1138. /* Count loaded sections and allocate structures */
  1139. for (i = 0; i < info->hdr->e_shnum; i++)
  1140. if (!sect_empty(&info->sechdrs[i]))
  1141. nloaded++;
  1142. size[0] = ALIGN(sizeof(*sect_attrs)
  1143. + nloaded * sizeof(sect_attrs->attrs[0]),
  1144. sizeof(sect_attrs->grp.attrs[0]));
  1145. size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
  1146. sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
  1147. if (sect_attrs == NULL)
  1148. return;
  1149. /* Setup section attributes. */
  1150. sect_attrs->grp.name = "sections";
  1151. sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
  1152. sect_attrs->nsections = 0;
  1153. sattr = &sect_attrs->attrs[0];
  1154. gattr = &sect_attrs->grp.attrs[0];
  1155. for (i = 0; i < info->hdr->e_shnum; i++) {
  1156. Elf_Shdr *sec = &info->sechdrs[i];
  1157. if (sect_empty(sec))
  1158. continue;
  1159. sattr->address = sec->sh_addr;
  1160. sattr->name = kstrdup(info->secstrings + sec->sh_name,
  1161. GFP_KERNEL);
  1162. if (sattr->name == NULL)
  1163. goto out;
  1164. sect_attrs->nsections++;
  1165. sysfs_attr_init(&sattr->mattr.attr);
  1166. sattr->mattr.show = module_sect_show;
  1167. sattr->mattr.store = NULL;
  1168. sattr->mattr.attr.name = sattr->name;
  1169. sattr->mattr.attr.mode = S_IRUGO;
  1170. *(gattr++) = &(sattr++)->mattr.attr;
  1171. }
  1172. *gattr = NULL;
  1173. if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
  1174. goto out;
  1175. mod->sect_attrs = sect_attrs;
  1176. return;
  1177. out:
  1178. free_sect_attrs(sect_attrs);
  1179. }
  1180. static void remove_sect_attrs(struct module *mod)
  1181. {
  1182. if (mod->sect_attrs) {
  1183. sysfs_remove_group(&mod->mkobj.kobj,
  1184. &mod->sect_attrs->grp);
  1185. /* We are positive that no one is using any sect attrs
  1186. * at this point. Deallocate immediately. */
  1187. free_sect_attrs(mod->sect_attrs);
  1188. mod->sect_attrs = NULL;
  1189. }
  1190. }
  1191. /*
  1192. * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
  1193. */
  1194. struct module_notes_attrs {
  1195. struct kobject *dir;
  1196. unsigned int notes;
  1197. struct bin_attribute attrs[0];
  1198. };
  1199. static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
  1200. struct bin_attribute *bin_attr,
  1201. char *buf, loff_t pos, size_t count)
  1202. {
  1203. /*
  1204. * The caller checked the pos and count against our size.
  1205. */
  1206. memcpy(buf, bin_attr->private + pos, count);
  1207. return count;
  1208. }
  1209. static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
  1210. unsigned int i)
  1211. {
  1212. if (notes_attrs->dir) {
  1213. while (i-- > 0)
  1214. sysfs_remove_bin_file(notes_attrs->dir,
  1215. &notes_attrs->attrs[i]);
  1216. kobject_put(notes_attrs->dir);
  1217. }
  1218. kfree(notes_attrs);
  1219. }
  1220. static void add_notes_attrs(struct module *mod, const struct load_info *info)
  1221. {
  1222. unsigned int notes, loaded, i;
  1223. struct module_notes_attrs *notes_attrs;
  1224. struct bin_attribute *nattr;
  1225. /* failed to create section attributes, so can't create notes */
  1226. if (!mod->sect_attrs)
  1227. return;
  1228. /* Count notes sections and allocate structures. */
  1229. notes = 0;
  1230. for (i = 0; i < info->hdr->e_shnum; i++)
  1231. if (!sect_empty(&info->sechdrs[i]) &&
  1232. (info->sechdrs[i].sh_type == SHT_NOTE))
  1233. ++notes;
  1234. if (notes == 0)
  1235. return;
  1236. notes_attrs = kzalloc(sizeof(*notes_attrs)
  1237. + notes * sizeof(notes_attrs->attrs[0]),
  1238. GFP_KERNEL);
  1239. if (notes_attrs == NULL)
  1240. return;
  1241. notes_attrs->notes = notes;
  1242. nattr = &notes_attrs->attrs[0];
  1243. for (loaded = i = 0; i < info->hdr->e_shnum; ++i) {
  1244. if (sect_empty(&info->sechdrs[i]))
  1245. continue;
  1246. if (info->sechdrs[i].sh_type == SHT_NOTE) {
  1247. sysfs_bin_attr_init(nattr);
  1248. nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
  1249. nattr->attr.mode = S_IRUGO;
  1250. nattr->size = info->sechdrs[i].sh_size;
  1251. nattr->private = (void *) info->sechdrs[i].sh_addr;
  1252. nattr->read = module_notes_read;
  1253. ++nattr;
  1254. }
  1255. ++loaded;
  1256. }
  1257. notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
  1258. if (!notes_attrs->dir)
  1259. goto out;
  1260. for (i = 0; i < notes; ++i)
  1261. if (sysfs_create_bin_file(notes_attrs->dir,
  1262. &notes_attrs->attrs[i]))
  1263. goto out;
  1264. mod->notes_attrs = notes_attrs;
  1265. return;
  1266. out:
  1267. free_notes_attrs(notes_attrs, i);
  1268. }
  1269. static void remove_notes_attrs(struct module *mod)
  1270. {
  1271. if (mod->notes_attrs)
  1272. free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
  1273. }
  1274. #else
  1275. static inline void add_sect_attrs(struct module *mod,
  1276. const struct load_info *info)
  1277. {
  1278. }
  1279. static inline void remove_sect_attrs(struct module *mod)
  1280. {
  1281. }
  1282. static inline void add_notes_attrs(struct module *mod,
  1283. const struct load_info *info)
  1284. {
  1285. }
  1286. static inline void remove_notes_attrs(struct module *mod)
  1287. {
  1288. }
  1289. #endif /* CONFIG_KALLSYMS */
  1290. static void add_usage_links(struct module *mod)
  1291. {
  1292. #ifdef CONFIG_MODULE_UNLOAD
  1293. struct module_use *use;
  1294. int nowarn;
  1295. mutex_lock(&module_mutex);
  1296. list_for_each_entry(use, &mod->target_list, target_list) {
  1297. nowarn = sysfs_create_link(use->target->holders_dir,
  1298. &mod->mkobj.kobj, mod->name);
  1299. }
  1300. mutex_unlock(&module_mutex);
  1301. #endif
  1302. }
  1303. static void del_usage_links(struct module *mod)
  1304. {
  1305. #ifdef CONFIG_MODULE_UNLOAD
  1306. struct module_use *use;
  1307. mutex_lock(&module_mutex);
  1308. list_for_each_entry(use, &mod->target_list, target_list)
  1309. sysfs_remove_link(use->target->holders_dir, mod->name);
  1310. mutex_unlock(&module_mutex);
  1311. #endif
  1312. }
  1313. static int module_add_modinfo_attrs(struct module *mod)
  1314. {
  1315. struct module_attribute *attr;
  1316. struct module_attribute *temp_attr;
  1317. int error = 0;
  1318. int i;
  1319. mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
  1320. (ARRAY_SIZE(modinfo_attrs) + 1)),
  1321. GFP_KERNEL);
  1322. if (!mod->modinfo_attrs)
  1323. return -ENOMEM;
  1324. temp_attr = mod->modinfo_attrs;
  1325. for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
  1326. if (!attr->test ||
  1327. (attr->test && attr->test(mod))) {
  1328. memcpy(temp_attr, attr, sizeof(*temp_attr));
  1329. sysfs_attr_init(&temp_attr->attr);
  1330. error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
  1331. ++temp_attr;
  1332. }
  1333. }
  1334. return error;
  1335. }
  1336. static void module_remove_modinfo_attrs(struct module *mod)
  1337. {
  1338. struct module_attribute *attr;
  1339. int i;
  1340. for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
  1341. /* pick a field to test for end of list */
  1342. if (!attr->attr.name)
  1343. break;
  1344. sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
  1345. if (attr->free)
  1346. attr->free(mod);
  1347. }
  1348. kfree(mod->modinfo_attrs);
  1349. }
  1350. static void mod_kobject_put(struct module *mod)
  1351. {
  1352. DECLARE_COMPLETION_ONSTACK(c);
  1353. mod->mkobj.kobj_completion = &c;
  1354. kobject_put(&mod->mkobj.kobj);
  1355. wait_for_completion(&c);
  1356. }
  1357. static int mod_sysfs_init(struct module *mod)
  1358. {
  1359. int err;
  1360. struct kobject *kobj;
  1361. if (!module_sysfs_initialized) {
  1362. pr_err("%s: module sysfs not initialized\n", mod->name);
  1363. err = -EINVAL;
  1364. goto out;
  1365. }
  1366. kobj = kset_find_obj(module_kset, mod->name);
  1367. if (kobj) {
  1368. pr_err("%s: module is already loaded\n", mod->name);
  1369. kobject_put(kobj);
  1370. err = -EINVAL;
  1371. goto out;
  1372. }
  1373. mod->mkobj.mod = mod;
  1374. memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
  1375. mod->mkobj.kobj.kset = module_kset;
  1376. err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
  1377. "%s", mod->name);
  1378. if (err)
  1379. mod_kobject_put(mod);
  1380. /* delay uevent until full sysfs population */
  1381. out:
  1382. return err;
  1383. }
  1384. static int mod_sysfs_setup(struct module *mod,
  1385. const struct load_info *info,
  1386. struct kernel_param *kparam,
  1387. unsigned int num_params)
  1388. {
  1389. int err;
  1390. err = mod_sysfs_init(mod);
  1391. if (err)
  1392. goto out;
  1393. mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
  1394. if (!mod->holders_dir) {
  1395. err = -ENOMEM;
  1396. goto out_unreg;
  1397. }
  1398. err = module_param_sysfs_setup(mod, kparam, num_params);
  1399. if (err)
  1400. goto out_unreg_holders;
  1401. err = module_add_modinfo_attrs(mod);
  1402. if (err)
  1403. goto out_unreg_param;
  1404. add_usage_links(mod);
  1405. add_sect_attrs(mod, info);
  1406. add_notes_attrs(mod, info);
  1407. kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
  1408. return 0;
  1409. out_unreg_param:
  1410. module_param_sysfs_remove(mod);
  1411. out_unreg_holders:
  1412. kobject_put(mod->holders_dir);
  1413. out_unreg:
  1414. mod_kobject_put(mod);
  1415. out:
  1416. return err;
  1417. }
  1418. static void mod_sysfs_fini(struct module *mod)
  1419. {
  1420. remove_notes_attrs(mod);
  1421. remove_sect_attrs(mod);
  1422. mod_kobject_put(mod);
  1423. }
  1424. #else /* !CONFIG_SYSFS */
  1425. static int mod_sysfs_setup(struct module *mod,
  1426. const struct load_info *info,
  1427. struct kernel_param *kparam,
  1428. unsigned int num_params)
  1429. {
  1430. return 0;
  1431. }
  1432. static void mod_sysfs_fini(struct module *mod)
  1433. {
  1434. }
  1435. static void module_remove_modinfo_attrs(struct module *mod)
  1436. {
  1437. }
  1438. static void del_usage_links(struct module *mod)
  1439. {
  1440. }
  1441. #endif /* CONFIG_SYSFS */
  1442. static void mod_sysfs_teardown(struct module *mod)
  1443. {
  1444. del_usage_links(mod);
  1445. module_remove_modinfo_attrs(mod);
  1446. module_param_sysfs_remove(mod);
  1447. kobject_put(mod->mkobj.drivers_dir);
  1448. kobject_put(mod->holders_dir);
  1449. mod_sysfs_fini(mod);
  1450. }
  1451. /*
  1452. * unlink the module with the whole machine is stopped with interrupts off
  1453. * - this defends against kallsyms not taking locks
  1454. */
  1455. static int __unlink_module(void *_mod)
  1456. {
  1457. struct module *mod = _mod;
  1458. list_del(&mod->list);
  1459. module_bug_cleanup(mod);
  1460. return 0;
  1461. }
  1462. #ifdef CONFIG_DEBUG_SET_MODULE_RONX
  1463. /*
  1464. * LKM RO/NX protection: protect module's text/ro-data
  1465. * from modification and any data from execution.
  1466. */
  1467. void set_page_attributes(void *start, void *end, int (*set)(unsigned long start, int num_pages))
  1468. {
  1469. unsigned long begin_pfn = PFN_DOWN((unsigned long)start);
  1470. unsigned long end_pfn = PFN_DOWN((unsigned long)end);
  1471. if (end_pfn > begin_pfn)
  1472. set(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
  1473. }
  1474. static void set_section_ro_nx(void *base,
  1475. unsigned long text_size,
  1476. unsigned long ro_size,
  1477. unsigned long total_size)
  1478. {
  1479. /* begin and end PFNs of the current subsection */
  1480. unsigned long begin_pfn;
  1481. unsigned long end_pfn;
  1482. /*
  1483. * Set RO for module text and RO-data:
  1484. * - Always protect first page.
  1485. * - Do not protect last partial page.
  1486. */
  1487. if (ro_size > 0)
  1488. set_page_attributes(base, base + ro_size, set_memory_ro);
  1489. /*
  1490. * Set NX permissions for module data:
  1491. * - Do not protect first partial page.
  1492. * - Always protect last page.
  1493. */
  1494. if (total_size > text_size) {
  1495. begin_pfn = PFN_UP((unsigned long)base + text_size);
  1496. end_pfn = PFN_UP((unsigned long)base + total_size);
  1497. if (end_pfn > begin_pfn)
  1498. set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
  1499. }
  1500. }
  1501. static void unset_module_core_ro_nx(struct module *mod)
  1502. {
  1503. set_page_attributes(mod->module_core + mod->core_text_size,
  1504. mod->module_core + mod->core_size,
  1505. set_memory_x);
  1506. set_page_attributes(mod->module_core,
  1507. mod->module_core + mod->core_ro_size,
  1508. set_memory_rw);
  1509. }
  1510. static void unset_module_init_ro_nx(struct module *mod)
  1511. {
  1512. set_page_attributes(mod->module_init + mod->init_text_size,
  1513. mod->module_init + mod->init_size,
  1514. set_memory_x);
  1515. set_page_attributes(mod->module_init,
  1516. mod->module_init + mod->init_ro_size,
  1517. set_memory_rw);
  1518. }
  1519. /* Iterate through all modules and set each module's text as RW */
  1520. void set_all_modules_text_rw(void)
  1521. {
  1522. struct module *mod;
  1523. mutex_lock(&module_mutex);
  1524. list_for_each_entry_rcu(mod, &modules, list) {
  1525. if (mod->state == MODULE_STATE_UNFORMED)
  1526. continue;
  1527. if ((mod->module_core) && (mod->core_text_size)) {
  1528. set_page_attributes(mod->module_core,
  1529. mod->module_core + mod->core_text_size,
  1530. set_memory_rw);
  1531. }
  1532. if ((mod->module_init) && (mod->init_text_size)) {
  1533. set_page_attributes(mod->module_init,
  1534. mod->module_init + mod->init_text_size,
  1535. set_memory_rw);
  1536. }
  1537. }
  1538. mutex_unlock(&module_mutex);
  1539. }
  1540. /* Iterate through all modules and set each module's text as RO */
  1541. void set_all_modules_text_ro(void)
  1542. {
  1543. struct module *mod;
  1544. mutex_lock(&module_mutex);
  1545. list_for_each_entry_rcu(mod, &modules, list) {
  1546. if (mod->state == MODULE_STATE_UNFORMED)
  1547. continue;
  1548. if ((mod->module_core) && (mod->core_text_size)) {
  1549. set_page_attributes(mod->module_core,
  1550. mod->module_core + mod->core_text_size,
  1551. set_memory_ro);
  1552. }
  1553. if ((mod->module_init) && (mod->init_text_size)) {
  1554. set_page_attributes(mod->module_init,
  1555. mod->module_init + mod->init_text_size,
  1556. set_memory_ro);
  1557. }
  1558. }
  1559. mutex_unlock(&module_mutex);
  1560. }
  1561. #else
  1562. static inline void set_section_ro_nx(void *base, unsigned long text_size, unsigned long ro_size, unsigned long total_size) { }
  1563. static void unset_module_core_ro_nx(struct module *mod) { }
  1564. static void unset_module_init_ro_nx(struct module *mod) { }
  1565. #endif
  1566. void __weak module_free(struct module *mod, void *module_region)
  1567. {
  1568. vfree(module_region);
  1569. }
  1570. void __weak module_arch_cleanup(struct module *mod)
  1571. {
  1572. }
  1573. /* Free a module, remove from lists, etc. */
  1574. static void free_module(struct module *mod)
  1575. {
  1576. trace_module_free(mod);
  1577. mod_sysfs_teardown(mod);
  1578. /* We leave it in list to prevent duplicate loads, but make sure
  1579. * that noone uses it while it's being deconstructed. */
  1580. mod->state = MODULE_STATE_UNFORMED;
  1581. /* Remove dynamic debug info */
  1582. ddebug_remove_module(mod->name);
  1583. /* Arch-specific cleanup. */
  1584. module_arch_cleanup(mod);
  1585. /* Module unload stuff */
  1586. module_unload_free(mod);
  1587. /* Free any allocated parameters. */
  1588. destroy_params(mod->kp, mod->num_kp);
  1589. /* Now we can delete it from the lists */
  1590. mutex_lock(&module_mutex);
  1591. stop_machine(__unlink_module, mod, NULL);
  1592. mutex_unlock(&module_mutex);
  1593. /* This may be NULL, but that's OK */
  1594. unset_module_init_ro_nx(mod);
  1595. module_free(mod, mod->module_init);
  1596. kfree(mod->args);
  1597. percpu_modfree(mod);
  1598. /* Free lock-classes: */
  1599. lockdep_free_key_range(mod->module_core, mod->core_size);
  1600. /* Finally, free the core (containing the module structure) */
  1601. unset_module_core_ro_nx(mod);
  1602. module_free(mod, mod->module_core);
  1603. #ifdef CONFIG_MPU
  1604. update_protections(current->mm);
  1605. #endif
  1606. }
  1607. void *__symbol_get(const char *symbol)
  1608. {
  1609. struct module *owner;
  1610. const struct kernel_symbol *sym;
  1611. preempt_disable();
  1612. sym = find_symbol(symbol, &owner, NULL, true, true);
  1613. if (sym && strong_try_module_get(owner))
  1614. sym = NULL;
  1615. preempt_enable();
  1616. return sym ? (void *)sym->value : NULL;
  1617. }
  1618. EXPORT_SYMBOL_GPL(__symbol_get);
  1619. /*
  1620. * Ensure that an exported symbol [global namespace] does not already exist
  1621. * in the kernel or in some other module's exported symbol table.
  1622. *
  1623. * You must hold the module_mutex.
  1624. */
  1625. static int verify_export_symbols(struct module *mod)
  1626. {
  1627. unsigned int i;
  1628. struct module *owner;
  1629. const struct kernel_symbol *s;
  1630. struct {
  1631. const struct kernel_symbol *sym;
  1632. unsigned int num;
  1633. } arr[] = {
  1634. { mod->syms, mod->num_syms },
  1635. { mod->gpl_syms, mod->num_gpl_syms },
  1636. { mod->gpl_future_syms, mod->num_gpl_future_syms },
  1637. #ifdef CONFIG_UNUSED_SYMBOLS
  1638. { mod->unused_syms, mod->num_unused_syms },
  1639. { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
  1640. #endif
  1641. };
  1642. for (i = 0; i < ARRAY_SIZE(arr); i++) {
  1643. for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
  1644. if (find_symbol(s->name, &owner, NULL, true, false)) {
  1645. pr_err("%s: exports duplicate symbol %s"
  1646. " (owned by %s)\n",
  1647. mod->name, s->name, module_name(owner));
  1648. return -ENOEXEC;
  1649. }
  1650. }
  1651. }
  1652. return 0;
  1653. }
  1654. /* Change all symbols so that st_value encodes the pointer directly. */
  1655. static int simplify_symbols(struct module *mod, const struct load_info *info)
  1656. {
  1657. Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
  1658. Elf_Sym *sym = (void *)symsec->sh_addr;
  1659. unsigned long secbase;
  1660. unsigned int i;
  1661. int ret = 0;
  1662. const struct kernel_symbol *ksym;
  1663. for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
  1664. const char *name = info->strtab + sym[i].st_name;
  1665. switch (sym[i].st_shndx) {
  1666. case SHN_COMMON:
  1667. /* We compiled with -fno-common. These are not
  1668. supposed to happen. */
  1669. pr_debug("Common symbol: %s\n", name);
  1670. printk("%s: please compile with -fno-common\n",
  1671. mod->name);
  1672. ret = -ENOEXEC;
  1673. break;
  1674. case SHN_ABS:
  1675. /* Don't need to do anything */
  1676. pr_debug("Absolute symbol: 0x%08lx\n",
  1677. (long)sym[i].st_value);
  1678. break;
  1679. case SHN_UNDEF:
  1680. ksym = resolve_symbol_wait(mod, info, name);
  1681. /* Ok if resolved. */
  1682. if (ksym && !IS_ERR(ksym)) {
  1683. sym[i].st_value = ksym->value;
  1684. break;
  1685. }
  1686. /* Ok if weak. */
  1687. if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
  1688. break;
  1689. pr_warn("%s: Unknown symbol %s (err %li)\n",
  1690. mod->name, name, PTR_ERR(ksym));
  1691. ret = PTR_ERR(ksym) ?: -ENOENT;
  1692. break;
  1693. default:
  1694. /* Divert to percpu allocation if a percpu var. */
  1695. if (sym[i].st_shndx == info->index.pcpu)
  1696. secbase = (unsigned long)mod_percpu(mod);
  1697. else
  1698. secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
  1699. sym[i].st_value += secbase;
  1700. break;
  1701. }
  1702. }
  1703. return ret;
  1704. }
  1705. static int apply_relocations(struct module *mod, const struct load_info *info)
  1706. {
  1707. unsigned int i;
  1708. int err = 0;
  1709. /* Now do relocations. */
  1710. for (i = 1; i < info->hdr->e_shnum; i++) {
  1711. unsigned int infosec = info->sechdrs[i].sh_info;
  1712. /* Not a valid relocation section? */
  1713. if (infosec >= info->hdr->e_shnum)
  1714. continue;
  1715. /* Don't bother with non-allocated sections */
  1716. if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
  1717. continue;
  1718. if (info->sechdrs[i].sh_type == SHT_REL)
  1719. err = apply_relocate(info->sechdrs, info->strtab,
  1720. info->index.sym, i, mod);
  1721. else if (info->sechdrs[i].sh_type == SHT_RELA)
  1722. err = apply_relocate_add(info->sechdrs, info->strtab,
  1723. info->index.sym, i, mod);
  1724. if (err < 0)
  1725. break;
  1726. }
  1727. return err;
  1728. }
  1729. /* Additional bytes needed by arch in front of individual sections */
  1730. unsigned int __weak arch_mod_section_prepend(struct module *mod,
  1731. unsigned int section)
  1732. {
  1733. /* default implementation just returns zero */
  1734. return 0;
  1735. }
  1736. /* Update size with this section: return offset. */
  1737. static long get_offset(struct module *mod, unsigned int *size,
  1738. Elf_Shdr *sechdr, unsigned int section)
  1739. {
  1740. long ret;
  1741. *size += arch_mod_section_prepend(mod, section);
  1742. ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
  1743. *size = ret + sechdr->sh_size;
  1744. return ret;
  1745. }
  1746. /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
  1747. might -- code, read-only data, read-write data, small data. Tally
  1748. sizes, and place the offsets into sh_entsize fields: high bit means it
  1749. belongs in init. */
  1750. static void layout_sections(struct module *mod, struct load_info *info)
  1751. {
  1752. static unsigned long const masks[][2] = {
  1753. /* NOTE: all executable code must be the first section
  1754. * in this array; otherwise modify the text_size
  1755. * finder in the two loops below */
  1756. { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
  1757. { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
  1758. { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
  1759. { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
  1760. };
  1761. unsigned int m, i;
  1762. for (i = 0; i < info->hdr->e_shnum; i++)
  1763. info->sechdrs[i].sh_entsize = ~0UL;
  1764. pr_debug("Core section allocation order:\n");
  1765. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1766. for (i = 0; i < info->hdr->e_shnum; ++i) {
  1767. Elf_Shdr *s = &info->sechdrs[i];
  1768. const char *sname = info->secstrings + s->sh_name;
  1769. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1770. || (s->sh_flags & masks[m][1])
  1771. || s->sh_entsize != ~0UL
  1772. || strstarts(sname, ".init"))
  1773. continue;
  1774. s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
  1775. pr_debug("\t%s\n", sname);
  1776. }
  1777. switch (m) {
  1778. case 0: /* executable */
  1779. mod->core_size = debug_align(mod->core_size);
  1780. mod->core_text_size = mod->core_size;
  1781. break;
  1782. case 1: /* RO: text and ro-data */
  1783. mod->core_size = debug_align(mod->core_size);
  1784. mod->core_ro_size = mod->core_size;
  1785. break;
  1786. case 3: /* whole core */
  1787. mod->core_size = debug_align(mod->core_size);
  1788. break;
  1789. }
  1790. }
  1791. pr_debug("Init section allocation order:\n");
  1792. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1793. for (i = 0; i < info->hdr->e_shnum; ++i) {
  1794. Elf_Shdr *s = &info->sechdrs[i];
  1795. const char *sname = info->secstrings + s->sh_name;
  1796. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1797. || (s->sh_flags & masks[m][1])
  1798. || s->sh_entsize != ~0UL
  1799. || !strstarts(sname, ".init"))
  1800. continue;
  1801. s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
  1802. | INIT_OFFSET_MASK);
  1803. pr_debug("\t%s\n", sname);
  1804. }
  1805. switch (m) {
  1806. case 0: /* executable */
  1807. mod->init_size = debug_align(mod->init_size);
  1808. mod->init_text_size = mod->init_size;
  1809. break;
  1810. case 1: /* RO: text and ro-data */
  1811. mod->init_size = debug_align(mod->init_size);
  1812. mod->init_ro_size = mod->init_size;
  1813. break;
  1814. case 3: /* whole init */
  1815. mod->init_size = debug_align(mod->init_size);
  1816. break;
  1817. }
  1818. }
  1819. }
  1820. static void set_license(struct module *mod, const char *license)
  1821. {
  1822. if (!license)
  1823. license = "unspecified";
  1824. if (!license_is_gpl_compatible(license)) {
  1825. if (!test_taint(TAINT_PROPRIETARY_MODULE))
  1826. pr_warn("%s: module license '%s' taints kernel.\n",
  1827. mod->name, license);
  1828. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  1829. LOCKDEP_NOW_UNRELIABLE);
  1830. }
  1831. }
  1832. /* Parse tag=value strings from .modinfo section */
  1833. static char *next_string(char *string, unsigned long *secsize)
  1834. {
  1835. /* Skip non-zero chars */
  1836. while (string[0]) {
  1837. string++;
  1838. if ((*secsize)-- <= 1)
  1839. return NULL;
  1840. }
  1841. /* Skip any zero padding. */
  1842. while (!string[0]) {
  1843. string++;
  1844. if ((*secsize)-- <= 1)
  1845. return NULL;
  1846. }
  1847. return string;
  1848. }
  1849. static char *get_modinfo(struct load_info *info, const char *tag)
  1850. {
  1851. char *p;
  1852. unsigned int taglen = strlen(tag);
  1853. Elf_Shdr *infosec = &info->sechdrs[info->index.info];
  1854. unsigned long size = infosec->sh_size;
  1855. for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
  1856. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  1857. return p + taglen + 1;
  1858. }
  1859. return NULL;
  1860. }
  1861. static void setup_modinfo(struct module *mod, struct load_info *info)
  1862. {
  1863. struct module_attribute *attr;
  1864. int i;
  1865. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1866. if (attr->setup)
  1867. attr->setup(mod, get_modinfo(info, attr->attr.name));
  1868. }
  1869. }
  1870. static void free_modinfo(struct module *mod)
  1871. {
  1872. struct module_attribute *attr;
  1873. int i;
  1874. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1875. if (attr->free)
  1876. attr->free(mod);
  1877. }
  1878. }
  1879. #ifdef CONFIG_KALLSYMS
  1880. /* lookup symbol in given range of kernel_symbols */
  1881. static const struct kernel_symbol *lookup_symbol(const char *name,
  1882. const struct kernel_symbol *start,
  1883. const struct kernel_symbol *stop)
  1884. {
  1885. return bsearch(name, start, stop - start,
  1886. sizeof(struct kernel_symbol), cmp_name);
  1887. }
  1888. static int is_exported(const char *name, unsigned long value,
  1889. const struct module *mod)
  1890. {
  1891. const struct kernel_symbol *ks;
  1892. if (!mod)
  1893. ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
  1894. else
  1895. ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
  1896. return ks != NULL && ks->value == value;
  1897. }
  1898. /* As per nm */
  1899. static char elf_type(const Elf_Sym *sym, const struct load_info *info)
  1900. {
  1901. const Elf_Shdr *sechdrs = info->sechdrs;
  1902. if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
  1903. if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
  1904. return 'v';
  1905. else
  1906. return 'w';
  1907. }
  1908. if (sym->st_shndx == SHN_UNDEF)
  1909. return 'U';
  1910. if (sym->st_shndx == SHN_ABS)
  1911. return 'a';
  1912. if (sym->st_shndx >= SHN_LORESERVE)
  1913. return '?';
  1914. if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
  1915. return 't';
  1916. if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
  1917. && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
  1918. if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
  1919. return 'r';
  1920. else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1921. return 'g';
  1922. else
  1923. return 'd';
  1924. }
  1925. if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
  1926. if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1927. return 's';
  1928. else
  1929. return 'b';
  1930. }
  1931. if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
  1932. ".debug")) {
  1933. return 'n';
  1934. }
  1935. return '?';
  1936. }
  1937. static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
  1938. unsigned int shnum)
  1939. {
  1940. const Elf_Shdr *sec;
  1941. if (src->st_shndx == SHN_UNDEF
  1942. || src->st_shndx >= shnum
  1943. || !src->st_name)
  1944. return false;
  1945. sec = sechdrs + src->st_shndx;
  1946. if (!(sec->sh_flags & SHF_ALLOC)
  1947. #ifndef CONFIG_KALLSYMS_ALL
  1948. || !(sec->sh_flags & SHF_EXECINSTR)
  1949. #endif
  1950. || (sec->sh_entsize & INIT_OFFSET_MASK))
  1951. return false;
  1952. return true;
  1953. }
  1954. /*
  1955. * We only allocate and copy the strings needed by the parts of symtab
  1956. * we keep. This is simple, but has the effect of making multiple
  1957. * copies of duplicates. We could be more sophisticated, see
  1958. * linux-kernel thread starting with
  1959. * <73defb5e4bca04a6431392cc341112b1@localhost>.
  1960. */
  1961. static void layout_symtab(struct module *mod, struct load_info *info)
  1962. {
  1963. Elf_Shdr *symsect = info->sechdrs + info->index.sym;
  1964. Elf_Shdr *strsect = info->sechdrs + info->index.str;
  1965. const Elf_Sym *src;
  1966. unsigned int i, nsrc, ndst, strtab_size = 0;
  1967. /* Put symbol section at end of init part of module. */
  1968. symsect->sh_flags |= SHF_ALLOC;
  1969. symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
  1970. info->index.sym) | INIT_OFFSET_MASK;
  1971. pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
  1972. src = (void *)info->hdr + symsect->sh_offset;
  1973. nsrc = symsect->sh_size / sizeof(*src);
  1974. /* Compute total space required for the core symbols' strtab. */
  1975. for (ndst = i = 0; i < nsrc; i++) {
  1976. if (i == 0 ||
  1977. is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
  1978. strtab_size += strlen(&info->strtab[src[i].st_name])+1;
  1979. ndst++;
  1980. }
  1981. }
  1982. /* Append room for core symbols at end of core part. */
  1983. info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
  1984. info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
  1985. mod->core_size += strtab_size;
  1986. /* Put string table section at end of init part of module. */
  1987. strsect->sh_flags |= SHF_ALLOC;
  1988. strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
  1989. info->index.str) | INIT_OFFSET_MASK;
  1990. pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
  1991. }
  1992. static void add_kallsyms(struct module *mod, const struct load_info *info)
  1993. {
  1994. unsigned int i, ndst;
  1995. const Elf_Sym *src;
  1996. Elf_Sym *dst;
  1997. char *s;
  1998. Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
  1999. mod->symtab = (void *)symsec->sh_addr;
  2000. mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
  2001. /* Make sure we get permanent strtab: don't use info->strtab. */
  2002. mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
  2003. /* Set types up while we still have access to sections. */
  2004. for (i = 0; i < mod->num_symtab; i++)
  2005. mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
  2006. mod->core_symtab = dst = mod->module_core + info->symoffs;
  2007. mod->core_strtab = s = mod->module_core + info->stroffs;
  2008. src = mod->symtab;
  2009. for (ndst = i = 0; i < mod->num_symtab; i++) {
  2010. if (i == 0 ||
  2011. is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
  2012. dst[ndst] = src[i];
  2013. dst[ndst++].st_name = s - mod->core_strtab;
  2014. s += strlcpy(s, &mod->strtab[src[i].st_name],
  2015. KSYM_NAME_LEN) + 1;
  2016. }
  2017. }
  2018. mod->core_num_syms = ndst;
  2019. }
  2020. #else
  2021. static inline void layout_symtab(struct module *mod, struct load_info *info)
  2022. {
  2023. }
  2024. static void add_kallsyms(struct module *mod, const struct load_info *info)
  2025. {
  2026. }
  2027. #endif /* CONFIG_KALLSYMS */
  2028. static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
  2029. {
  2030. if (!debug)
  2031. return;
  2032. #ifdef CONFIG_DYNAMIC_DEBUG
  2033. if (ddebug_add_module(debug, num, debug->modname))
  2034. pr_err("dynamic debug error adding module: %s\n",
  2035. debug->modname);
  2036. #endif
  2037. }
  2038. static void dynamic_debug_remove(struct _ddebug *debug)
  2039. {
  2040. if (debug)
  2041. ddebug_remove_module(debug->modname);
  2042. }
  2043. void * __weak module_alloc(unsigned long size)
  2044. {
  2045. return vmalloc_exec(size);
  2046. }
  2047. static void *module_alloc_update_bounds(unsigned long size)
  2048. {
  2049. void *ret = module_alloc(size);
  2050. if (ret) {
  2051. mutex_lock(&module_mutex);
  2052. /* Update module bounds. */
  2053. if ((unsigned long)ret < module_addr_min)
  2054. module_addr_min = (unsigned long)ret;
  2055. if ((unsigned long)ret + size > module_addr_max)
  2056. module_addr_max = (unsigned long)ret + size;
  2057. mutex_unlock(&module_mutex);
  2058. }
  2059. return ret;
  2060. }
  2061. #ifdef CONFIG_DEBUG_KMEMLEAK
  2062. static void kmemleak_load_module(const struct module *mod,
  2063. const struct load_info *info)
  2064. {
  2065. unsigned int i;
  2066. /* only scan the sections containing data */
  2067. kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
  2068. for (i = 1; i < info->hdr->e_shnum; i++) {
  2069. /* Scan all writable sections that's not executable */
  2070. if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
  2071. !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
  2072. (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
  2073. continue;
  2074. kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
  2075. info->sechdrs[i].sh_size, GFP_KERNEL);
  2076. }
  2077. }
  2078. #else
  2079. static inline void kmemleak_load_module(const struct module *mod,
  2080. const struct load_info *info)
  2081. {
  2082. }
  2083. #endif
  2084. #ifdef CONFIG_MODULE_SIG
  2085. static int module_sig_check(struct load_info *info)
  2086. {
  2087. int err = -ENOKEY;
  2088. const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
  2089. const void *mod = info->hdr;
  2090. if (info->len > markerlen &&
  2091. memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
  2092. /* We truncate the module to discard the signature */
  2093. info->len -= markerlen;
  2094. err = mod_verify_sig(mod, &info->len);
  2095. }
  2096. if (!err) {
  2097. info->sig_ok = true;
  2098. return 0;
  2099. }
  2100. /* Not having a signature is only an error if we're strict. */
  2101. if (err < 0 && fips_enabled)
  2102. panic("Module verification failed with error %d in FIPS mode\n",
  2103. err);
  2104. if (err == -ENOKEY && !sig_enforce)
  2105. err = 0;
  2106. return err;
  2107. }
  2108. #else /* !CONFIG_MODULE_SIG */
  2109. static int module_sig_check(struct load_info *info)
  2110. {
  2111. return 0;
  2112. }
  2113. #endif /* !CONFIG_MODULE_SIG */
  2114. /* Sanity checks against invalid binaries, wrong arch, weird elf version. */
  2115. static int elf_header_check(struct load_info *info)
  2116. {
  2117. if (info->len < sizeof(*(info->hdr)))
  2118. return -ENOEXEC;
  2119. if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
  2120. || info->hdr->e_type != ET_REL
  2121. || !elf_check_arch(info->hdr)
  2122. || info->hdr->e_shentsize != sizeof(Elf_Shdr))
  2123. return -ENOEXEC;
  2124. if (info->hdr->e_shoff >= info->len
  2125. || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
  2126. info->len - info->hdr->e_shoff))
  2127. return -ENOEXEC;
  2128. return 0;
  2129. }
  2130. /* Sets info->hdr and info->len. */
  2131. static int copy_module_from_user(const void __user *umod, unsigned long len,
  2132. struct load_info *info)
  2133. {
  2134. int err;
  2135. info->len = len;
  2136. if (info->len < sizeof(*(info->hdr)))
  2137. return -ENOEXEC;
  2138. err = security_kernel_module_from_file(NULL);
  2139. if (err)
  2140. return err;
  2141. /* Suck in entire file: we'll want most of it. */
  2142. info->hdr = vmalloc(info->len);
  2143. if (!info->hdr)
  2144. return -ENOMEM;
  2145. if (copy_from_user(info->hdr, umod, info->len) != 0) {
  2146. vfree(info->hdr);
  2147. return -EFAULT;
  2148. }
  2149. return 0;
  2150. }
  2151. /* Sets info->hdr and info->len. */
  2152. static int copy_module_from_fd(int fd, struct load_info *info)
  2153. {
  2154. struct fd f = fdget(fd);
  2155. int err;
  2156. struct kstat stat;
  2157. loff_t pos;
  2158. ssize_t bytes = 0;
  2159. if (!f.file)
  2160. return -ENOEXEC;
  2161. err = security_kernel_module_from_file(f.file);
  2162. if (err)
  2163. goto out;
  2164. err = vfs_getattr(&f.file->f_path, &stat);
  2165. if (err)
  2166. goto out;
  2167. if (stat.size > INT_MAX) {
  2168. err = -EFBIG;
  2169. goto out;
  2170. }
  2171. /* Don't hand 0 to vmalloc, it whines. */
  2172. if (stat.size == 0) {
  2173. err = -EINVAL;
  2174. goto out;
  2175. }
  2176. info->hdr = vmalloc(stat.size);
  2177. if (!info->hdr) {
  2178. err = -ENOMEM;
  2179. goto out;
  2180. }
  2181. pos = 0;
  2182. while (pos < stat.size) {
  2183. bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
  2184. stat.size - pos);
  2185. if (bytes < 0) {
  2186. vfree(info->hdr);
  2187. err = bytes;
  2188. goto out;
  2189. }
  2190. if (bytes == 0)
  2191. break;
  2192. pos += bytes;
  2193. }
  2194. info->len = pos;
  2195. out:
  2196. fdput(f);
  2197. return err;
  2198. }
  2199. static void free_copy(struct load_info *info)
  2200. {
  2201. vfree(info->hdr);
  2202. }
  2203. static int rewrite_section_headers(struct load_info *info, int flags)
  2204. {
  2205. unsigned int i;
  2206. /* This should always be true, but let's be sure. */
  2207. info->sechdrs[0].sh_addr = 0;
  2208. for (i = 1; i < info->hdr->e_shnum; i++) {
  2209. Elf_Shdr *shdr = &info->sechdrs[i];
  2210. if (shdr->sh_type != SHT_NOBITS
  2211. && info->len < shdr->sh_offset + shdr->sh_size) {
  2212. pr_err("Module len %lu truncated\n", info->len);
  2213. return -ENOEXEC;
  2214. }
  2215. /* Mark all sections sh_addr with their address in the
  2216. temporary image. */
  2217. shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
  2218. #ifndef CONFIG_MODULE_UNLOAD
  2219. /* Don't load .exit sections */
  2220. if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
  2221. shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
  2222. #endif
  2223. }
  2224. /* Track but don't keep modinfo and version sections. */
  2225. if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
  2226. info->index.vers = 0; /* Pretend no __versions section! */
  2227. else
  2228. info->index.vers = find_sec(info, "__versions");
  2229. info->index.info = find_sec(info, ".modinfo");
  2230. info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2231. info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2232. return 0;
  2233. }
  2234. /*
  2235. * Set up our basic convenience variables (pointers to section headers,
  2236. * search for module section index etc), and do some basic section
  2237. * verification.
  2238. *
  2239. * Return the temporary module pointer (we'll replace it with the final
  2240. * one when we move the module sections around).
  2241. */
  2242. static struct module *setup_load_info(struct load_info *info, int flags)
  2243. {
  2244. unsigned int i;
  2245. int err;
  2246. struct module *mod;
  2247. /* Set up the convenience variables */
  2248. info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
  2249. info->secstrings = (void *)info->hdr
  2250. + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
  2251. err = rewrite_section_headers(info, flags);
  2252. if (err)
  2253. return ERR_PTR(err);
  2254. /* Find internal symbols and strings. */
  2255. for (i = 1; i < info->hdr->e_shnum; i++) {
  2256. if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
  2257. info->index.sym = i;
  2258. info->index.str = info->sechdrs[i].sh_link;
  2259. info->strtab = (char *)info->hdr
  2260. + info->sechdrs[info->index.str].sh_offset;
  2261. break;
  2262. }
  2263. }
  2264. info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
  2265. if (!info->index.mod) {
  2266. pr_warn("No module found in object\n");
  2267. return ERR_PTR(-ENOEXEC);
  2268. }
  2269. /* This is temporary: point mod into copy of data. */
  2270. mod = (void *)info->sechdrs[info->index.mod].sh_addr;
  2271. if (info->index.sym == 0) {
  2272. pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
  2273. return ERR_PTR(-ENOEXEC);
  2274. }
  2275. info->index.pcpu = find_pcpusec(info);
  2276. /* Check module struct version now, before we try to use module. */
  2277. if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
  2278. return ERR_PTR(-ENOEXEC);
  2279. return mod;
  2280. }
  2281. static int check_modinfo(struct module *mod, struct load_info *info, int flags)
  2282. {
  2283. const char *modmagic = get_modinfo(info, "vermagic");
  2284. int err;
  2285. if (flags & MODULE_INIT_IGNORE_VERMAGIC)
  2286. modmagic = NULL;
  2287. /* This is allowed: modprobe --force will invalidate it. */
  2288. if (!modmagic) {
  2289. err = try_to_force_load(mod, "bad vermagic");
  2290. if (err)
  2291. return err;
  2292. } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
  2293. pr_err("%s: version magic '%s' should be '%s'\n",
  2294. mod->name, modmagic, vermagic);
  2295. return -ENOEXEC;
  2296. }
  2297. if (!get_modinfo(info, "intree"))
  2298. add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
  2299. if (get_modinfo(info, "staging")) {
  2300. add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
  2301. pr_warn("%s: module is from the staging directory, the quality "
  2302. "is unknown, you have been warned.\n", mod->name);
  2303. }
  2304. /* Set up license info based on the info section */
  2305. set_license(mod, get_modinfo(info, "license"));
  2306. return 0;
  2307. }
  2308. static int find_module_sections(struct module *mod, struct load_info *info)
  2309. {
  2310. mod->kp = section_objs(info, "__param",
  2311. sizeof(*mod->kp), &mod->num_kp);
  2312. mod->syms = section_objs(info, "__ksymtab",
  2313. sizeof(*mod->syms), &mod->num_syms);
  2314. mod->crcs = section_addr(info, "__kcrctab");
  2315. mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
  2316. sizeof(*mod->gpl_syms),
  2317. &mod->num_gpl_syms);
  2318. mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
  2319. mod->gpl_future_syms = section_objs(info,
  2320. "__ksymtab_gpl_future",
  2321. sizeof(*mod->gpl_future_syms),
  2322. &mod->num_gpl_future_syms);
  2323. mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
  2324. #ifdef CONFIG_UNUSED_SYMBOLS
  2325. mod->unused_syms = section_objs(info, "__ksymtab_unused",
  2326. sizeof(*mod->unused_syms),
  2327. &mod->num_unused_syms);
  2328. mod->unused_crcs = section_addr(info, "__kcrctab_unused");
  2329. mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
  2330. sizeof(*mod->unused_gpl_syms),
  2331. &mod->num_unused_gpl_syms);
  2332. mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
  2333. #endif
  2334. #ifdef CONFIG_CONSTRUCTORS
  2335. mod->ctors = section_objs(info, ".ctors",
  2336. sizeof(*mod->ctors), &mod->num_ctors);
  2337. if (!mod->ctors)
  2338. mod->ctors = section_objs(info, ".init_array",
  2339. sizeof(*mod->ctors), &mod->num_ctors);
  2340. else if (find_sec(info, ".init_array")) {
  2341. /*
  2342. * This shouldn't happen with same compiler and binutils
  2343. * building all parts of the module.
  2344. */
  2345. printk(KERN_WARNING "%s: has both .ctors and .init_array.\n",
  2346. mod->name);
  2347. return -EINVAL;
  2348. }
  2349. #endif
  2350. #ifdef CONFIG_TRACEPOINTS
  2351. mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
  2352. sizeof(*mod->tracepoints_ptrs),
  2353. &mod->num_tracepoints);
  2354. #endif
  2355. #ifdef HAVE_JUMP_LABEL
  2356. mod->jump_entries = section_objs(info, "__jump_table",
  2357. sizeof(*mod->jump_entries),
  2358. &mod->num_jump_entries);
  2359. #endif
  2360. #ifdef CONFIG_EVENT_TRACING
  2361. mod->trace_events = section_objs(info, "_ftrace_events",
  2362. sizeof(*mod->trace_events),
  2363. &mod->num_trace_events);
  2364. #endif
  2365. #ifdef CONFIG_TRACING
  2366. mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
  2367. sizeof(*mod->trace_bprintk_fmt_start),
  2368. &mod->num_trace_bprintk_fmt);
  2369. #endif
  2370. #ifdef CONFIG_FTRACE_MCOUNT_RECORD
  2371. /* sechdrs[0].sh_size is always zero */
  2372. mod->ftrace_callsites = section_objs(info, "__mcount_loc",
  2373. sizeof(*mod->ftrace_callsites),
  2374. &mod->num_ftrace_callsites);
  2375. #endif
  2376. mod->extable = section_objs(info, "__ex_table",
  2377. sizeof(*mod->extable), &mod->num_exentries);
  2378. if (section_addr(info, "__obsparm"))
  2379. pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
  2380. info->debug = section_objs(info, "__verbose",
  2381. sizeof(*info->debug), &info->num_debug);
  2382. return 0;
  2383. }
  2384. static int move_module(struct module *mod, struct load_info *info)
  2385. {
  2386. int i;
  2387. void *ptr;
  2388. /* Do the allocs. */
  2389. ptr = module_alloc_update_bounds(mod->core_size);
  2390. /*
  2391. * The pointer to this block is stored in the module structure
  2392. * which is inside the block. Just mark it as not being a
  2393. * leak.
  2394. */
  2395. kmemleak_not_leak(ptr);
  2396. if (!ptr)
  2397. return -ENOMEM;
  2398. memset(ptr, 0, mod->core_size);
  2399. mod->module_core = ptr;
  2400. if (mod->init_size) {
  2401. ptr = module_alloc_update_bounds(mod->init_size);
  2402. /*
  2403. * The pointer to this block is stored in the module structure
  2404. * which is inside the block. This block doesn't need to be
  2405. * scanned as it contains data and code that will be freed
  2406. * after the module is initialized.
  2407. */
  2408. kmemleak_ignore(ptr);
  2409. if (!ptr) {
  2410. module_free(mod, mod->module_core);
  2411. return -ENOMEM;
  2412. }
  2413. memset(ptr, 0, mod->init_size);
  2414. mod->module_init = ptr;
  2415. } else
  2416. mod->module_init = NULL;
  2417. /* Transfer each section which specifies SHF_ALLOC */
  2418. pr_debug("final section addresses:\n");
  2419. for (i = 0; i < info->hdr->e_shnum; i++) {
  2420. void *dest;
  2421. Elf_Shdr *shdr = &info->sechdrs[i];
  2422. if (!(shdr->sh_flags & SHF_ALLOC))
  2423. continue;
  2424. if (shdr->sh_entsize & INIT_OFFSET_MASK)
  2425. dest = mod->module_init
  2426. + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
  2427. else
  2428. dest = mod->module_core + shdr->sh_entsize;
  2429. if (shdr->sh_type != SHT_NOBITS)
  2430. memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
  2431. /* Update sh_addr to point to copy in image. */
  2432. shdr->sh_addr = (unsigned long)dest;
  2433. pr_debug("\t0x%lx %s\n",
  2434. (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
  2435. }
  2436. return 0;
  2437. }
  2438. static int check_module_license_and_versions(struct module *mod)
  2439. {
  2440. /*
  2441. * ndiswrapper is under GPL by itself, but loads proprietary modules.
  2442. * Don't use add_taint_module(), as it would prevent ndiswrapper from
  2443. * using GPL-only symbols it needs.
  2444. */
  2445. if (strcmp(mod->name, "ndiswrapper") == 0)
  2446. add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
  2447. /* driverloader was caught wrongly pretending to be under GPL */
  2448. if (strcmp(mod->name, "driverloader") == 0)
  2449. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  2450. LOCKDEP_NOW_UNRELIABLE);
  2451. /* lve claims to be GPL but upstream won't provide source */
  2452. if (strcmp(mod->name, "lve") == 0)
  2453. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  2454. LOCKDEP_NOW_UNRELIABLE);
  2455. #ifdef CONFIG_MODVERSIONS
  2456. if ((mod->num_syms && !mod->crcs)
  2457. || (mod->num_gpl_syms && !mod->gpl_crcs)
  2458. || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
  2459. #ifdef CONFIG_UNUSED_SYMBOLS
  2460. || (mod->num_unused_syms && !mod->unused_crcs)
  2461. || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
  2462. #endif
  2463. ) {
  2464. return try_to_force_load(mod,
  2465. "no versions for exported symbols");
  2466. }
  2467. #endif
  2468. return 0;
  2469. }
  2470. static void flush_module_icache(const struct module *mod)
  2471. {
  2472. mm_segment_t old_fs;
  2473. /* flush the icache in correct context */
  2474. old_fs = get_fs();
  2475. set_fs(KERNEL_DS);
  2476. /*
  2477. * Flush the instruction cache, since we've played with text.
  2478. * Do it before processing of module parameters, so the module
  2479. * can provide parameter accessor functions of its own.
  2480. */
  2481. if (mod->module_init)
  2482. flush_icache_range((unsigned long)mod->module_init,
  2483. (unsigned long)mod->module_init
  2484. + mod->init_size);
  2485. flush_icache_range((unsigned long)mod->module_core,
  2486. (unsigned long)mod->module_core + mod->core_size);
  2487. set_fs(old_fs);
  2488. }
  2489. int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
  2490. Elf_Shdr *sechdrs,
  2491. char *secstrings,
  2492. struct module *mod)
  2493. {
  2494. return 0;
  2495. }
  2496. static struct module *layout_and_allocate(struct load_info *info, int flags)
  2497. {
  2498. /* Module within temporary copy. */
  2499. struct module *mod;
  2500. int err;
  2501. mod = setup_load_info(info, flags);
  2502. if (IS_ERR(mod))
  2503. return mod;
  2504. err = check_modinfo(mod, info, flags);
  2505. if (err)
  2506. return ERR_PTR(err);
  2507. /* Allow arches to frob section contents and sizes. */
  2508. err = module_frob_arch_sections(info->hdr, info->sechdrs,
  2509. info->secstrings, mod);
  2510. if (err < 0)
  2511. return ERR_PTR(err);
  2512. /* We will do a special allocation for per-cpu sections later. */
  2513. info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2514. /* Determine total sizes, and put offsets in sh_entsize. For now
  2515. this is done generically; there doesn't appear to be any
  2516. special cases for the architectures. */
  2517. layout_sections(mod, info);
  2518. layout_symtab(mod, info);
  2519. /* Allocate and move to the final place */
  2520. err = move_module(mod, info);
  2521. if (err)
  2522. return ERR_PTR(err);
  2523. /* Module has been copied to its final place now: return it. */
  2524. mod = (void *)info->sechdrs[info->index.mod].sh_addr;
  2525. kmemleak_load_module(mod, info);
  2526. return mod;
  2527. }
  2528. /* mod is no longer valid after this! */
  2529. static void module_deallocate(struct module *mod, struct load_info *info)
  2530. {
  2531. percpu_modfree(mod);
  2532. module_free(mod, mod->module_init);
  2533. module_free(mod, mod->module_core);
  2534. }
  2535. int __weak module_finalize(const Elf_Ehdr *hdr,
  2536. const Elf_Shdr *sechdrs,
  2537. struct module *me)
  2538. {
  2539. return 0;
  2540. }
  2541. static int post_relocation(struct module *mod, const struct load_info *info)
  2542. {
  2543. /* Sort exception table now relocations are done. */
  2544. sort_extable(mod->extable, mod->extable + mod->num_exentries);
  2545. /* Copy relocated percpu area over. */
  2546. percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
  2547. info->sechdrs[info->index.pcpu].sh_size);
  2548. /* Setup kallsyms-specific fields. */
  2549. add_kallsyms(mod, info);
  2550. /* Arch-specific module finalizing. */
  2551. return module_finalize(info->hdr, info->sechdrs, mod);
  2552. }
  2553. /* Is this module of this name done loading? No locks held. */
  2554. static bool finished_loading(const char *name)
  2555. {
  2556. struct module *mod;
  2557. bool ret;
  2558. mutex_lock(&module_mutex);
  2559. mod = find_module_all(name, strlen(name), true);
  2560. ret = !mod || mod->state == MODULE_STATE_LIVE
  2561. || mod->state == MODULE_STATE_GOING;
  2562. mutex_unlock(&module_mutex);
  2563. return ret;
  2564. }
  2565. /* Call module constructors. */
  2566. static void do_mod_ctors(struct module *mod)
  2567. {
  2568. #ifdef CONFIG_CONSTRUCTORS
  2569. unsigned long i;
  2570. for (i = 0; i < mod->num_ctors; i++)
  2571. mod->ctors[i]();
  2572. #endif
  2573. }
  2574. /* This is where the real work happens */
  2575. static int do_init_module(struct module *mod)
  2576. {
  2577. int ret = 0;
  2578. /*
  2579. * We want to find out whether @mod uses async during init. Clear
  2580. * PF_USED_ASYNC. async_schedule*() will set it.
  2581. */
  2582. current->flags &= ~PF_USED_ASYNC;
  2583. blocking_notifier_call_chain(&module_notify_list,
  2584. MODULE_STATE_COMING, mod);
  2585. /* Set RO and NX regions for core */
  2586. set_section_ro_nx(mod->module_core,
  2587. mod->core_text_size,
  2588. mod->core_ro_size,
  2589. mod->core_size);
  2590. /* Set RO and NX regions for init */
  2591. set_section_ro_nx(mod->module_init,
  2592. mod->init_text_size,
  2593. mod->init_ro_size,
  2594. mod->init_size);
  2595. do_mod_ctors(mod);
  2596. /* Start the module */
  2597. if (mod->init != NULL)
  2598. ret = do_one_initcall(mod->init);
  2599. if (ret < 0) {
  2600. /* Init routine failed: abort. Try to protect us from
  2601. buggy refcounters. */
  2602. mod->state = MODULE_STATE_GOING;
  2603. synchronize_sched();
  2604. module_put(mod);
  2605. blocking_notifier_call_chain(&module_notify_list,
  2606. MODULE_STATE_GOING, mod);
  2607. free_module(mod);
  2608. wake_up_all(&module_wq);
  2609. return ret;
  2610. }
  2611. if (ret > 0) {
  2612. pr_warn("%s: '%s'->init suspiciously returned %d, it should "
  2613. "follow 0/-E convention\n"
  2614. "%s: loading module anyway...\n",
  2615. __func__, mod->name, ret, __func__);
  2616. dump_stack();
  2617. }
  2618. /* Now it's a first class citizen! */
  2619. mod->state = MODULE_STATE_LIVE;
  2620. blocking_notifier_call_chain(&module_notify_list,
  2621. MODULE_STATE_LIVE, mod);
  2622. /*
  2623. * We need to finish all async code before the module init sequence
  2624. * is done. This has potential to deadlock. For example, a newly
  2625. * detected block device can trigger request_module() of the
  2626. * default iosched from async probing task. Once userland helper
  2627. * reaches here, async_synchronize_full() will wait on the async
  2628. * task waiting on request_module() and deadlock.
  2629. *
  2630. * This deadlock is avoided by perfomring async_synchronize_full()
  2631. * iff module init queued any async jobs. This isn't a full
  2632. * solution as it will deadlock the same if module loading from
  2633. * async jobs nests more than once; however, due to the various
  2634. * constraints, this hack seems to be the best option for now.
  2635. * Please refer to the following thread for details.
  2636. *
  2637. * http://thread.gmane.org/gmane.linux.kernel/1420814
  2638. */
  2639. if (current->flags & PF_USED_ASYNC)
  2640. async_synchronize_full();
  2641. mutex_lock(&module_mutex);
  2642. /* Drop initial reference. */
  2643. module_put(mod);
  2644. trim_init_extable(mod);
  2645. #ifdef CONFIG_KALLSYMS
  2646. mod->num_symtab = mod->core_num_syms;
  2647. mod->symtab = mod->core_symtab;
  2648. mod->strtab = mod->core_strtab;
  2649. #endif
  2650. unset_module_init_ro_nx(mod);
  2651. module_free(mod, mod->module_init);
  2652. mod->module_init = NULL;
  2653. mod->init_size = 0;
  2654. mod->init_ro_size = 0;
  2655. mod->init_text_size = 0;
  2656. mutex_unlock(&module_mutex);
  2657. wake_up_all(&module_wq);
  2658. return 0;
  2659. }
  2660. static int may_init_module(void)
  2661. {
  2662. if (!capable(CAP_SYS_MODULE) || modules_disabled)
  2663. return -EPERM;
  2664. return 0;
  2665. }
  2666. /*
  2667. * We try to place it in the list now to make sure it's unique before
  2668. * we dedicate too many resources. In particular, temporary percpu
  2669. * memory exhaustion.
  2670. */
  2671. static int add_unformed_module(struct module *mod)
  2672. {
  2673. int err;
  2674. struct module *old;
  2675. mod->state = MODULE_STATE_UNFORMED;
  2676. again:
  2677. mutex_lock(&module_mutex);
  2678. old = find_module_all(mod->name, strlen(mod->name), true);
  2679. if (old != NULL) {
  2680. if (old->state == MODULE_STATE_COMING
  2681. || old->state == MODULE_STATE_UNFORMED) {
  2682. /* Wait in case it fails to load. */
  2683. mutex_unlock(&module_mutex);
  2684. err = wait_event_interruptible(module_wq,
  2685. finished_loading(mod->name));
  2686. if (err)
  2687. goto out_unlocked;
  2688. goto again;
  2689. }
  2690. err = -EEXIST;
  2691. goto out;
  2692. }
  2693. list_add_rcu(&mod->list, &modules);
  2694. err = 0;
  2695. out:
  2696. mutex_unlock(&module_mutex);
  2697. out_unlocked:
  2698. return err;
  2699. }
  2700. static int complete_formation(struct module *mod, struct load_info *info)
  2701. {
  2702. int err;
  2703. mutex_lock(&module_mutex);
  2704. /* Find duplicate symbols (must be called under lock). */
  2705. err = verify_export_symbols(mod);
  2706. if (err < 0)
  2707. goto out;
  2708. /* This relies on module_mutex for list integrity. */
  2709. module_bug_finalize(info->hdr, info->sechdrs, mod);
  2710. /* Mark state as coming so strong_try_module_get() ignores us,
  2711. * but kallsyms etc. can see us. */
  2712. mod->state = MODULE_STATE_COMING;
  2713. out:
  2714. mutex_unlock(&module_mutex);
  2715. return err;
  2716. }
  2717. static int unknown_module_param_cb(char *param, char *val, const char *modname)
  2718. {
  2719. /* Check for magic 'dyndbg' arg */
  2720. int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
  2721. if (ret != 0)
  2722. pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
  2723. return 0;
  2724. }
  2725. /* Allocate and load the module: note that size of section 0 is always
  2726. zero, and we rely on this for optional sections. */
  2727. static int load_module(struct load_info *info, const char __user *uargs,
  2728. int flags)
  2729. {
  2730. struct module *mod;
  2731. long err;
  2732. err = module_sig_check(info);
  2733. if (err)
  2734. goto free_copy;
  2735. err = elf_header_check(info);
  2736. if (err)
  2737. goto free_copy;
  2738. /* Figure out module layout, and allocate all the memory. */
  2739. mod = layout_and_allocate(info, flags);
  2740. if (IS_ERR(mod)) {
  2741. err = PTR_ERR(mod);
  2742. goto free_copy;
  2743. }
  2744. /* Reserve our place in the list. */
  2745. err = add_unformed_module(mod);
  2746. if (err)
  2747. goto free_module;
  2748. #ifdef CONFIG_MODULE_SIG
  2749. mod->sig_ok = info->sig_ok;
  2750. if (!mod->sig_ok) {
  2751. pr_notice_once("%s: module verification failed: signature "
  2752. "and/or required key missing - tainting "
  2753. "kernel\n", mod->name);
  2754. add_taint_module(mod, TAINT_FORCED_MODULE, LOCKDEP_STILL_OK);
  2755. }
  2756. #endif
  2757. /* To avoid stressing percpu allocator, do this once we're unique. */
  2758. err = percpu_modalloc(mod, info);
  2759. if (err)
  2760. goto unlink_mod;
  2761. /* Now module is in final location, initialize linked lists, etc. */
  2762. err = module_unload_init(mod);
  2763. if (err)
  2764. goto unlink_mod;
  2765. /* Now we've got everything in the final locations, we can
  2766. * find optional sections. */
  2767. err = find_module_sections(mod, info);
  2768. if (err)
  2769. goto free_unload;
  2770. err = check_module_license_and_versions(mod);
  2771. if (err)
  2772. goto free_unload;
  2773. /* Set up MODINFO_ATTR fields */
  2774. setup_modinfo(mod, info);
  2775. /* Fix up syms, so that st_value is a pointer to location. */
  2776. err = simplify_symbols(mod, info);
  2777. if (err < 0)
  2778. goto free_modinfo;
  2779. err = apply_relocations(mod, info);
  2780. if (err < 0)
  2781. goto free_modinfo;
  2782. err = post_relocation(mod, info);
  2783. if (err < 0)
  2784. goto free_modinfo;
  2785. flush_module_icache(mod);
  2786. /* Now copy in args */
  2787. mod->args = strndup_user(uargs, ~0UL >> 1);
  2788. if (IS_ERR(mod->args)) {
  2789. err = PTR_ERR(mod->args);
  2790. goto free_arch_cleanup;
  2791. }
  2792. dynamic_debug_setup(info->debug, info->num_debug);
  2793. /* Finally it's fully formed, ready to start executing. */
  2794. err = complete_formation(mod, info);
  2795. if (err)
  2796. goto ddebug_cleanup;
  2797. /* Module is ready to execute: parsing args may do that. */
  2798. err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
  2799. -32768, 32767, unknown_module_param_cb);
  2800. if (err < 0)
  2801. goto bug_cleanup;
  2802. /* Link in to syfs. */
  2803. err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
  2804. if (err < 0)
  2805. goto bug_cleanup;
  2806. /* Get rid of temporary copy. */
  2807. free_copy(info);
  2808. /* Done! */
  2809. trace_module_load(mod);
  2810. return do_init_module(mod);
  2811. bug_cleanup:
  2812. /* module_bug_cleanup needs module_mutex protection */
  2813. mutex_lock(&module_mutex);
  2814. module_bug_cleanup(mod);
  2815. mutex_unlock(&module_mutex);
  2816. ddebug_cleanup:
  2817. dynamic_debug_remove(info->debug);
  2818. synchronize_sched();
  2819. kfree(mod->args);
  2820. free_arch_cleanup:
  2821. module_arch_cleanup(mod);
  2822. free_modinfo:
  2823. free_modinfo(mod);
  2824. free_unload:
  2825. module_unload_free(mod);
  2826. unlink_mod:
  2827. mutex_lock(&module_mutex);
  2828. /* Unlink carefully: kallsyms could be walking list. */
  2829. list_del_rcu(&mod->list);
  2830. wake_up_all(&module_wq);
  2831. mutex_unlock(&module_mutex);
  2832. free_module:
  2833. module_deallocate(mod, info);
  2834. free_copy:
  2835. free_copy(info);
  2836. return err;
  2837. }
  2838. SYSCALL_DEFINE3(init_module, void __user *, umod,
  2839. unsigned long, len, const char __user *, uargs)
  2840. {
  2841. int err;
  2842. struct load_info info = { };
  2843. err = may_init_module();
  2844. if (err)
  2845. return err;
  2846. pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
  2847. umod, len, uargs);
  2848. err = copy_module_from_user(umod, len, &info);
  2849. if (err)
  2850. return err;
  2851. return load_module(&info, uargs, 0);
  2852. }
  2853. SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
  2854. {
  2855. int err;
  2856. struct load_info info = { };
  2857. err = may_init_module();
  2858. if (err)
  2859. return err;
  2860. pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
  2861. if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
  2862. |MODULE_INIT_IGNORE_VERMAGIC))
  2863. return -EINVAL;
  2864. err = copy_module_from_fd(fd, &info);
  2865. if (err)
  2866. return err;
  2867. return load_module(&info, uargs, flags);
  2868. }
  2869. static inline int within(unsigned long addr, void *start, unsigned long size)
  2870. {
  2871. return ((void *)addr >= start && (void *)addr < start + size);
  2872. }
  2873. #ifdef CONFIG_KALLSYMS
  2874. /*
  2875. * This ignores the intensely annoying "mapping symbols" found
  2876. * in ARM ELF files: $a, $t and $d.
  2877. */
  2878. static inline int is_arm_mapping_symbol(const char *str)
  2879. {
  2880. return str[0] == '$' && strchr("atd", str[1])
  2881. && (str[2] == '\0' || str[2] == '.');
  2882. }
  2883. static const char *get_ksymbol(struct module *mod,
  2884. unsigned long addr,
  2885. unsigned long *size,
  2886. unsigned long *offset)
  2887. {
  2888. unsigned int i, best = 0;
  2889. unsigned long nextval;
  2890. /* At worse, next value is at end of module */
  2891. if (within_module_init(addr, mod))
  2892. nextval = (unsigned long)mod->module_init+mod->init_text_size;
  2893. else
  2894. nextval = (unsigned long)mod->module_core+mod->core_text_size;
  2895. /* Scan for closest preceding symbol, and next symbol. (ELF
  2896. starts real symbols at 1). */
  2897. for (i = 1; i < mod->num_symtab; i++) {
  2898. if (mod->symtab[i].st_shndx == SHN_UNDEF)
  2899. continue;
  2900. /* We ignore unnamed symbols: they're uninformative
  2901. * and inserted at a whim. */
  2902. if (mod->symtab[i].st_value <= addr
  2903. && mod->symtab[i].st_value > mod->symtab[best].st_value
  2904. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2905. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2906. best = i;
  2907. if (mod->symtab[i].st_value > addr
  2908. && mod->symtab[i].st_value < nextval
  2909. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2910. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2911. nextval = mod->symtab[i].st_value;
  2912. }
  2913. if (!best)
  2914. return NULL;
  2915. if (size)
  2916. *size = nextval - mod->symtab[best].st_value;
  2917. if (offset)
  2918. *offset = addr - mod->symtab[best].st_value;
  2919. return mod->strtab + mod->symtab[best].st_name;
  2920. }
  2921. /* For kallsyms to ask for address resolution. NULL means not found. Careful
  2922. * not to lock to avoid deadlock on oopses, simply disable preemption. */
  2923. const char *module_address_lookup(unsigned long addr,
  2924. unsigned long *size,
  2925. unsigned long *offset,
  2926. char **modname,
  2927. char *namebuf)
  2928. {
  2929. struct module *mod;
  2930. const char *ret = NULL;
  2931. preempt_disable();
  2932. list_for_each_entry_rcu(mod, &modules, list) {
  2933. if (mod->state == MODULE_STATE_UNFORMED)
  2934. continue;
  2935. if (within_module_init(addr, mod) ||
  2936. within_module_core(addr, mod)) {
  2937. if (modname)
  2938. *modname = mod->name;
  2939. ret = get_ksymbol(mod, addr, size, offset);
  2940. break;
  2941. }
  2942. }
  2943. /* Make a copy in here where it's safe */
  2944. if (ret) {
  2945. strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
  2946. ret = namebuf;
  2947. }
  2948. preempt_enable();
  2949. return ret;
  2950. }
  2951. int lookup_module_symbol_name(unsigned long addr, char *symname)
  2952. {
  2953. struct module *mod;
  2954. preempt_disable();
  2955. list_for_each_entry_rcu(mod, &modules, list) {
  2956. if (mod->state == MODULE_STATE_UNFORMED)
  2957. continue;
  2958. if (within_module_init(addr, mod) ||
  2959. within_module_core(addr, mod)) {
  2960. const char *sym;
  2961. sym = get_ksymbol(mod, addr, NULL, NULL);
  2962. if (!sym)
  2963. goto out;
  2964. strlcpy(symname, sym, KSYM_NAME_LEN);
  2965. preempt_enable();
  2966. return 0;
  2967. }
  2968. }
  2969. out:
  2970. preempt_enable();
  2971. return -ERANGE;
  2972. }
  2973. int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
  2974. unsigned long *offset, char *modname, char *name)
  2975. {
  2976. struct module *mod;
  2977. preempt_disable();
  2978. list_for_each_entry_rcu(mod, &modules, list) {
  2979. if (mod->state == MODULE_STATE_UNFORMED)
  2980. continue;
  2981. if (within_module_init(addr, mod) ||
  2982. within_module_core(addr, mod)) {
  2983. const char *sym;
  2984. sym = get_ksymbol(mod, addr, size, offset);
  2985. if (!sym)
  2986. goto out;
  2987. if (modname)
  2988. strlcpy(modname, mod->name, MODULE_NAME_LEN);
  2989. if (name)
  2990. strlcpy(name, sym, KSYM_NAME_LEN);
  2991. preempt_enable();
  2992. return 0;
  2993. }
  2994. }
  2995. out:
  2996. preempt_enable();
  2997. return -ERANGE;
  2998. }
  2999. int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
  3000. char *name, char *module_name, int *exported)
  3001. {
  3002. struct module *mod;
  3003. preempt_disable();
  3004. list_for_each_entry_rcu(mod, &modules, list) {
  3005. if (mod->state == MODULE_STATE_UNFORMED)
  3006. continue;
  3007. if (symnum < mod->num_symtab) {
  3008. *value = mod->symtab[symnum].st_value;
  3009. *type = mod->symtab[symnum].st_info;
  3010. strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
  3011. KSYM_NAME_LEN);
  3012. strlcpy(module_name, mod->name, MODULE_NAME_LEN);
  3013. *exported = is_exported(name, *value, mod);
  3014. preempt_enable();
  3015. return 0;
  3016. }
  3017. symnum -= mod->num_symtab;
  3018. }
  3019. preempt_enable();
  3020. return -ERANGE;
  3021. }
  3022. static unsigned long mod_find_symname(struct module *mod, const char *name)
  3023. {
  3024. unsigned int i;
  3025. for (i = 0; i < mod->num_symtab; i++)
  3026. if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
  3027. mod->symtab[i].st_info != 'U')
  3028. return mod->symtab[i].st_value;
  3029. return 0;
  3030. }
  3031. /* Look for this name: can be of form module:name. */
  3032. unsigned long module_kallsyms_lookup_name(const char *name)
  3033. {
  3034. struct module *mod;
  3035. char *colon;
  3036. unsigned long ret = 0;
  3037. /* Don't lock: we're in enough trouble already. */
  3038. preempt_disable();
  3039. if ((colon = strchr(name, ':')) != NULL) {
  3040. if ((mod = find_module_all(name, colon - name, false)) != NULL)
  3041. ret = mod_find_symname(mod, colon+1);
  3042. } else {
  3043. list_for_each_entry_rcu(mod, &modules, list) {
  3044. if (mod->state == MODULE_STATE_UNFORMED)
  3045. continue;
  3046. if ((ret = mod_find_symname(mod, name)) != 0)
  3047. break;
  3048. }
  3049. }
  3050. preempt_enable();
  3051. return ret;
  3052. }
  3053. int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
  3054. struct module *, unsigned long),
  3055. void *data)
  3056. {
  3057. struct module *mod;
  3058. unsigned int i;
  3059. int ret;
  3060. list_for_each_entry(mod, &modules, list) {
  3061. if (mod->state == MODULE_STATE_UNFORMED)
  3062. continue;
  3063. for (i = 0; i < mod->num_symtab; i++) {
  3064. ret = fn(data, mod->strtab + mod->symtab[i].st_name,
  3065. mod, mod->symtab[i].st_value);
  3066. if (ret != 0)
  3067. return ret;
  3068. }
  3069. }
  3070. return 0;
  3071. }
  3072. #endif /* CONFIG_KALLSYMS */
  3073. static char *module_flags(struct module *mod, char *buf)
  3074. {
  3075. int bx = 0;
  3076. BUG_ON(mod->state == MODULE_STATE_UNFORMED);
  3077. if (mod->taints ||
  3078. mod->state == MODULE_STATE_GOING ||
  3079. mod->state == MODULE_STATE_COMING) {
  3080. buf[bx++] = '(';
  3081. bx += module_flags_taint(mod, buf + bx);
  3082. /* Show a - for module-is-being-unloaded */
  3083. if (mod->state == MODULE_STATE_GOING)
  3084. buf[bx++] = '-';
  3085. /* Show a + for module-is-being-loaded */
  3086. if (mod->state == MODULE_STATE_COMING)
  3087. buf[bx++] = '+';
  3088. buf[bx++] = ')';
  3089. }
  3090. buf[bx] = '\0';
  3091. return buf;
  3092. }
  3093. #ifdef CONFIG_PROC_FS
  3094. /* Called by the /proc file system to return a list of modules. */
  3095. static void *m_start(struct seq_file *m, loff_t *pos)
  3096. {
  3097. mutex_lock(&module_mutex);
  3098. return seq_list_start(&modules, *pos);
  3099. }
  3100. static void *m_next(struct seq_file *m, void *p, loff_t *pos)
  3101. {
  3102. return seq_list_next(p, &modules, pos);
  3103. }
  3104. static void m_stop(struct seq_file *m, void *p)
  3105. {
  3106. mutex_unlock(&module_mutex);
  3107. }
  3108. static int m_show(struct seq_file *m, void *p)
  3109. {
  3110. struct module *mod = list_entry(p, struct module, list);
  3111. char buf[8];
  3112. /* We always ignore unformed modules. */
  3113. if (mod->state == MODULE_STATE_UNFORMED)
  3114. return 0;
  3115. seq_printf(m, "%s %u",
  3116. mod->name, mod->init_size + mod->core_size);
  3117. print_unload_info(m, mod);
  3118. /* Informative for users. */
  3119. seq_printf(m, " %s",
  3120. mod->state == MODULE_STATE_GOING ? "Unloading":
  3121. mod->state == MODULE_STATE_COMING ? "Loading":
  3122. "Live");
  3123. /* Used by oprofile and other similar tools. */
  3124. seq_printf(m, " 0x%pK", mod->module_core);
  3125. /* Taints info */
  3126. if (mod->taints)
  3127. seq_printf(m, " %s", module_flags(mod, buf));
  3128. seq_printf(m, "\n");
  3129. return 0;
  3130. }
  3131. /* Format: modulename size refcount deps address
  3132. Where refcount is a number or -, and deps is a comma-separated list
  3133. of depends or -.
  3134. */
  3135. static const struct seq_operations modules_op = {
  3136. .start = m_start,
  3137. .next = m_next,
  3138. .stop = m_stop,
  3139. .show = m_show
  3140. };
  3141. static int modules_open(struct inode *inode, struct file *file)
  3142. {
  3143. return seq_open(file, &modules_op);
  3144. }
  3145. static const struct file_operations proc_modules_operations = {
  3146. .open = modules_open,
  3147. .read = seq_read,
  3148. .llseek = seq_lseek,
  3149. .release = seq_release,
  3150. };
  3151. static int __init proc_modules_init(void)
  3152. {
  3153. proc_create("modules", 0, NULL, &proc_modules_operations);
  3154. return 0;
  3155. }
  3156. module_init(proc_modules_init);
  3157. #endif
  3158. /* Given an address, look for it in the module exception tables. */
  3159. const struct exception_table_entry *search_module_extables(unsigned long addr)
  3160. {
  3161. const struct exception_table_entry *e = NULL;
  3162. struct module *mod;
  3163. preempt_disable();
  3164. list_for_each_entry_rcu(mod, &modules, list) {
  3165. if (mod->state == MODULE_STATE_UNFORMED)
  3166. continue;
  3167. if (mod->num_exentries == 0)
  3168. continue;
  3169. e = search_extable(mod->extable,
  3170. mod->extable + mod->num_exentries - 1,
  3171. addr);
  3172. if (e)
  3173. break;
  3174. }
  3175. preempt_enable();
  3176. /* Now, if we found one, we are running inside it now, hence
  3177. we cannot unload the module, hence no refcnt needed. */
  3178. return e;
  3179. }
  3180. /*
  3181. * is_module_address - is this address inside a module?
  3182. * @addr: the address to check.
  3183. *
  3184. * See is_module_text_address() if you simply want to see if the address
  3185. * is code (not data).
  3186. */
  3187. bool is_module_address(unsigned long addr)
  3188. {
  3189. bool ret;
  3190. preempt_disable();
  3191. ret = __module_address(addr) != NULL;
  3192. preempt_enable();
  3193. return ret;
  3194. }
  3195. /*
  3196. * __module_address - get the module which contains an address.
  3197. * @addr: the address.
  3198. *
  3199. * Must be called with preempt disabled or module mutex held so that
  3200. * module doesn't get freed during this.
  3201. */
  3202. struct module *__module_address(unsigned long addr)
  3203. {
  3204. struct module *mod;
  3205. if (addr < module_addr_min || addr > module_addr_max)
  3206. return NULL;
  3207. list_for_each_entry_rcu(mod, &modules, list) {
  3208. if (mod->state == MODULE_STATE_UNFORMED)
  3209. continue;
  3210. if (within_module_core(addr, mod)
  3211. || within_module_init(addr, mod))
  3212. return mod;
  3213. }
  3214. return NULL;
  3215. }
  3216. EXPORT_SYMBOL_GPL(__module_address);
  3217. /*
  3218. * is_module_text_address - is this address inside module code?
  3219. * @addr: the address to check.
  3220. *
  3221. * See is_module_address() if you simply want to see if the address is
  3222. * anywhere in a module. See kernel_text_address() for testing if an
  3223. * address corresponds to kernel or module code.
  3224. */
  3225. bool is_module_text_address(unsigned long addr)
  3226. {
  3227. bool ret;
  3228. preempt_disable();
  3229. ret = __module_text_address(addr) != NULL;
  3230. preempt_enable();
  3231. return ret;
  3232. }
  3233. /*
  3234. * __module_text_address - get the module whose code contains an address.
  3235. * @addr: the address.
  3236. *
  3237. * Must be called with preempt disabled or module mutex held so that
  3238. * module doesn't get freed during this.
  3239. */
  3240. struct module *__module_text_address(unsigned long addr)
  3241. {
  3242. struct module *mod = __module_address(addr);
  3243. if (mod) {
  3244. /* Make sure it's within the text section. */
  3245. if (!within(addr, mod->module_init, mod->init_text_size)
  3246. && !within(addr, mod->module_core, mod->core_text_size))
  3247. mod = NULL;
  3248. }
  3249. return mod;
  3250. }
  3251. EXPORT_SYMBOL_GPL(__module_text_address);
  3252. /* Don't grab lock, we're oopsing. */
  3253. void print_modules(void)
  3254. {
  3255. struct module *mod;
  3256. char buf[8];
  3257. printk(KERN_DEFAULT "Modules linked in:");
  3258. /* Most callers should already have preempt disabled, but make sure */
  3259. preempt_disable();
  3260. list_for_each_entry_rcu(mod, &modules, list) {
  3261. if (mod->state == MODULE_STATE_UNFORMED)
  3262. continue;
  3263. printk(" %s%s", mod->name, module_flags(mod, buf));
  3264. }
  3265. preempt_enable();
  3266. if (last_unloaded_module[0])
  3267. printk(" [last unloaded: %s]", last_unloaded_module);
  3268. printk("\n");
  3269. }
  3270. #ifdef CONFIG_MODVERSIONS
  3271. /* Generate the signature for all relevant module structures here.
  3272. * If these change, we don't want to try to parse the module. */
  3273. void module_layout(struct module *mod,
  3274. struct modversion_info *ver,
  3275. struct kernel_param *kp,
  3276. struct kernel_symbol *ks,
  3277. struct tracepoint * const *tp)
  3278. {
  3279. }
  3280. EXPORT_SYMBOL(module_layout);
  3281. #endif