module.c 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837
  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. raw_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 (mutex_lock_interruptible(&module_mutex) != 0)
  706. return -EINTR;
  707. mod = find_module(name);
  708. if (!mod) {
  709. ret = -ENOENT;
  710. goto out;
  711. }
  712. if (!list_empty(&mod->source_list)) {
  713. /* Other modules depend on us: get rid of them first. */
  714. ret = -EWOULDBLOCK;
  715. goto out;
  716. }
  717. /* Doing init or already dying? */
  718. if (mod->state != MODULE_STATE_LIVE) {
  719. /* FIXME: if (force), slam module count damn the torpedoes */
  720. pr_debug("%s already dying\n", mod->name);
  721. ret = -EBUSY;
  722. goto out;
  723. }
  724. /* If it has an init func, it must have an exit func to unload */
  725. if (mod->init && !mod->exit) {
  726. forced = try_force_unload(flags);
  727. if (!forced) {
  728. /* This module can't be removed */
  729. ret = -EBUSY;
  730. goto out;
  731. }
  732. }
  733. /* Stop the machine so refcounts can't move and disable module. */
  734. ret = try_stop_module(mod, flags, &forced);
  735. if (ret != 0)
  736. goto out;
  737. mutex_unlock(&module_mutex);
  738. /* Final destruction now no one is using it. */
  739. if (mod->exit != NULL)
  740. mod->exit();
  741. blocking_notifier_call_chain(&module_notify_list,
  742. MODULE_STATE_GOING, mod);
  743. async_synchronize_full();
  744. /* Store the name of the last unloaded module for diagnostic purposes */
  745. strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
  746. free_module(mod);
  747. return 0;
  748. out:
  749. mutex_unlock(&module_mutex);
  750. return ret;
  751. }
  752. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  753. {
  754. struct module_use *use;
  755. int printed_something = 0;
  756. seq_printf(m, " %lu ", module_refcount(mod));
  757. /* Always include a trailing , so userspace can differentiate
  758. between this and the old multi-field proc format. */
  759. list_for_each_entry(use, &mod->source_list, source_list) {
  760. printed_something = 1;
  761. seq_printf(m, "%s,", use->source->name);
  762. }
  763. if (mod->init != NULL && mod->exit == NULL) {
  764. printed_something = 1;
  765. seq_printf(m, "[permanent],");
  766. }
  767. if (!printed_something)
  768. seq_printf(m, "-");
  769. }
  770. void __symbol_put(const char *symbol)
  771. {
  772. struct module *owner;
  773. preempt_disable();
  774. if (!find_symbol(symbol, &owner, NULL, true, false))
  775. BUG();
  776. module_put(owner);
  777. preempt_enable();
  778. }
  779. EXPORT_SYMBOL(__symbol_put);
  780. /* Note this assumes addr is a function, which it currently always is. */
  781. void symbol_put_addr(void *addr)
  782. {
  783. struct module *modaddr;
  784. unsigned long a = (unsigned long)dereference_function_descriptor(addr);
  785. if (core_kernel_text(a))
  786. return;
  787. /* module_text_address is safe here: we're supposed to have reference
  788. * to module from symbol_get, so it can't go away. */
  789. modaddr = __module_text_address(a);
  790. BUG_ON(!modaddr);
  791. module_put(modaddr);
  792. }
  793. EXPORT_SYMBOL_GPL(symbol_put_addr);
  794. static ssize_t show_refcnt(struct module_attribute *mattr,
  795. struct module_kobject *mk, char *buffer)
  796. {
  797. return sprintf(buffer, "%lu\n", module_refcount(mk->mod));
  798. }
  799. static struct module_attribute modinfo_refcnt =
  800. __ATTR(refcnt, 0444, show_refcnt, NULL);
  801. void __module_get(struct module *module)
  802. {
  803. if (module) {
  804. preempt_disable();
  805. __this_cpu_inc(module->refptr->incs);
  806. trace_module_get(module, _RET_IP_);
  807. preempt_enable();
  808. }
  809. }
  810. EXPORT_SYMBOL(__module_get);
  811. bool try_module_get(struct module *module)
  812. {
  813. bool ret = true;
  814. if (module) {
  815. preempt_disable();
  816. if (likely(module_is_live(module))) {
  817. __this_cpu_inc(module->refptr->incs);
  818. trace_module_get(module, _RET_IP_);
  819. } else
  820. ret = false;
  821. preempt_enable();
  822. }
  823. return ret;
  824. }
  825. EXPORT_SYMBOL(try_module_get);
  826. void module_put(struct module *module)
  827. {
  828. if (module) {
  829. preempt_disable();
  830. smp_wmb(); /* see comment in module_refcount */
  831. __this_cpu_inc(module->refptr->decs);
  832. trace_module_put(module, _RET_IP_);
  833. preempt_enable();
  834. }
  835. }
  836. EXPORT_SYMBOL(module_put);
  837. #else /* !CONFIG_MODULE_UNLOAD */
  838. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  839. {
  840. /* We don't know the usage count, or what modules are using. */
  841. seq_printf(m, " - -");
  842. }
  843. static inline void module_unload_free(struct module *mod)
  844. {
  845. }
  846. int ref_module(struct module *a, struct module *b)
  847. {
  848. return strong_try_module_get(b);
  849. }
  850. EXPORT_SYMBOL_GPL(ref_module);
  851. static inline int module_unload_init(struct module *mod)
  852. {
  853. return 0;
  854. }
  855. #endif /* CONFIG_MODULE_UNLOAD */
  856. static size_t module_flags_taint(struct module *mod, char *buf)
  857. {
  858. size_t l = 0;
  859. if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
  860. buf[l++] = 'P';
  861. if (mod->taints & (1 << TAINT_OOT_MODULE))
  862. buf[l++] = 'O';
  863. if (mod->taints & (1 << TAINT_FORCED_MODULE))
  864. buf[l++] = 'F';
  865. if (mod->taints & (1 << TAINT_CRAP))
  866. buf[l++] = 'C';
  867. if (mod->taints & (1 << TAINT_UNSIGNED_MODULE))
  868. buf[l++] = 'E';
  869. /*
  870. * TAINT_FORCED_RMMOD: could be added.
  871. * TAINT_CPU_OUT_OF_SPEC, 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. /* Ignore common symbols */
  1668. if (!strncmp(name, "__gnu_lto", 9))
  1669. break;
  1670. /* We compiled with -fno-common. These are not
  1671. supposed to happen. */
  1672. pr_debug("Common symbol: %s\n", name);
  1673. printk("%s: please compile with -fno-common\n",
  1674. mod->name);
  1675. ret = -ENOEXEC;
  1676. break;
  1677. case SHN_ABS:
  1678. /* Don't need to do anything */
  1679. pr_debug("Absolute symbol: 0x%08lx\n",
  1680. (long)sym[i].st_value);
  1681. break;
  1682. case SHN_UNDEF:
  1683. ksym = resolve_symbol_wait(mod, info, name);
  1684. /* Ok if resolved. */
  1685. if (ksym && !IS_ERR(ksym)) {
  1686. sym[i].st_value = ksym->value;
  1687. break;
  1688. }
  1689. /* Ok if weak. */
  1690. if (!ksym && ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
  1691. break;
  1692. pr_warn("%s: Unknown symbol %s (err %li)\n",
  1693. mod->name, name, PTR_ERR(ksym));
  1694. ret = PTR_ERR(ksym) ?: -ENOENT;
  1695. break;
  1696. default:
  1697. /* Divert to percpu allocation if a percpu var. */
  1698. if (sym[i].st_shndx == info->index.pcpu)
  1699. secbase = (unsigned long)mod_percpu(mod);
  1700. else
  1701. secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
  1702. sym[i].st_value += secbase;
  1703. break;
  1704. }
  1705. }
  1706. return ret;
  1707. }
  1708. static int apply_relocations(struct module *mod, const struct load_info *info)
  1709. {
  1710. unsigned int i;
  1711. int err = 0;
  1712. /* Now do relocations. */
  1713. for (i = 1; i < info->hdr->e_shnum; i++) {
  1714. unsigned int infosec = info->sechdrs[i].sh_info;
  1715. /* Not a valid relocation section? */
  1716. if (infosec >= info->hdr->e_shnum)
  1717. continue;
  1718. /* Don't bother with non-allocated sections */
  1719. if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC))
  1720. continue;
  1721. if (info->sechdrs[i].sh_type == SHT_REL)
  1722. err = apply_relocate(info->sechdrs, info->strtab,
  1723. info->index.sym, i, mod);
  1724. else if (info->sechdrs[i].sh_type == SHT_RELA)
  1725. err = apply_relocate_add(info->sechdrs, info->strtab,
  1726. info->index.sym, i, mod);
  1727. if (err < 0)
  1728. break;
  1729. }
  1730. return err;
  1731. }
  1732. /* Additional bytes needed by arch in front of individual sections */
  1733. unsigned int __weak arch_mod_section_prepend(struct module *mod,
  1734. unsigned int section)
  1735. {
  1736. /* default implementation just returns zero */
  1737. return 0;
  1738. }
  1739. /* Update size with this section: return offset. */
  1740. static long get_offset(struct module *mod, unsigned int *size,
  1741. Elf_Shdr *sechdr, unsigned int section)
  1742. {
  1743. long ret;
  1744. *size += arch_mod_section_prepend(mod, section);
  1745. ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
  1746. *size = ret + sechdr->sh_size;
  1747. return ret;
  1748. }
  1749. /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
  1750. might -- code, read-only data, read-write data, small data. Tally
  1751. sizes, and place the offsets into sh_entsize fields: high bit means it
  1752. belongs in init. */
  1753. static void layout_sections(struct module *mod, struct load_info *info)
  1754. {
  1755. static unsigned long const masks[][2] = {
  1756. /* NOTE: all executable code must be the first section
  1757. * in this array; otherwise modify the text_size
  1758. * finder in the two loops below */
  1759. { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
  1760. { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
  1761. { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
  1762. { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
  1763. };
  1764. unsigned int m, i;
  1765. for (i = 0; i < info->hdr->e_shnum; i++)
  1766. info->sechdrs[i].sh_entsize = ~0UL;
  1767. pr_debug("Core section allocation order:\n");
  1768. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1769. for (i = 0; i < info->hdr->e_shnum; ++i) {
  1770. Elf_Shdr *s = &info->sechdrs[i];
  1771. const char *sname = info->secstrings + s->sh_name;
  1772. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1773. || (s->sh_flags & masks[m][1])
  1774. || s->sh_entsize != ~0UL
  1775. || strstarts(sname, ".init"))
  1776. continue;
  1777. s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
  1778. pr_debug("\t%s\n", sname);
  1779. }
  1780. switch (m) {
  1781. case 0: /* executable */
  1782. mod->core_size = debug_align(mod->core_size);
  1783. mod->core_text_size = mod->core_size;
  1784. break;
  1785. case 1: /* RO: text and ro-data */
  1786. mod->core_size = debug_align(mod->core_size);
  1787. mod->core_ro_size = mod->core_size;
  1788. break;
  1789. case 3: /* whole core */
  1790. mod->core_size = debug_align(mod->core_size);
  1791. break;
  1792. }
  1793. }
  1794. pr_debug("Init section allocation order:\n");
  1795. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1796. for (i = 0; i < info->hdr->e_shnum; ++i) {
  1797. Elf_Shdr *s = &info->sechdrs[i];
  1798. const char *sname = info->secstrings + s->sh_name;
  1799. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1800. || (s->sh_flags & masks[m][1])
  1801. || s->sh_entsize != ~0UL
  1802. || !strstarts(sname, ".init"))
  1803. continue;
  1804. s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
  1805. | INIT_OFFSET_MASK);
  1806. pr_debug("\t%s\n", sname);
  1807. }
  1808. switch (m) {
  1809. case 0: /* executable */
  1810. mod->init_size = debug_align(mod->init_size);
  1811. mod->init_text_size = mod->init_size;
  1812. break;
  1813. case 1: /* RO: text and ro-data */
  1814. mod->init_size = debug_align(mod->init_size);
  1815. mod->init_ro_size = mod->init_size;
  1816. break;
  1817. case 3: /* whole init */
  1818. mod->init_size = debug_align(mod->init_size);
  1819. break;
  1820. }
  1821. }
  1822. }
  1823. static void set_license(struct module *mod, const char *license)
  1824. {
  1825. if (!license)
  1826. license = "unspecified";
  1827. if (!license_is_gpl_compatible(license)) {
  1828. if (!test_taint(TAINT_PROPRIETARY_MODULE))
  1829. pr_warn("%s: module license '%s' taints kernel.\n",
  1830. mod->name, license);
  1831. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  1832. LOCKDEP_NOW_UNRELIABLE);
  1833. }
  1834. }
  1835. /* Parse tag=value strings from .modinfo section */
  1836. static char *next_string(char *string, unsigned long *secsize)
  1837. {
  1838. /* Skip non-zero chars */
  1839. while (string[0]) {
  1840. string++;
  1841. if ((*secsize)-- <= 1)
  1842. return NULL;
  1843. }
  1844. /* Skip any zero padding. */
  1845. while (!string[0]) {
  1846. string++;
  1847. if ((*secsize)-- <= 1)
  1848. return NULL;
  1849. }
  1850. return string;
  1851. }
  1852. static char *get_modinfo(struct load_info *info, const char *tag)
  1853. {
  1854. char *p;
  1855. unsigned int taglen = strlen(tag);
  1856. Elf_Shdr *infosec = &info->sechdrs[info->index.info];
  1857. unsigned long size = infosec->sh_size;
  1858. for (p = (char *)infosec->sh_addr; p; p = next_string(p, &size)) {
  1859. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  1860. return p + taglen + 1;
  1861. }
  1862. return NULL;
  1863. }
  1864. static void setup_modinfo(struct module *mod, struct load_info *info)
  1865. {
  1866. struct module_attribute *attr;
  1867. int i;
  1868. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1869. if (attr->setup)
  1870. attr->setup(mod, get_modinfo(info, attr->attr.name));
  1871. }
  1872. }
  1873. static void free_modinfo(struct module *mod)
  1874. {
  1875. struct module_attribute *attr;
  1876. int i;
  1877. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1878. if (attr->free)
  1879. attr->free(mod);
  1880. }
  1881. }
  1882. #ifdef CONFIG_KALLSYMS
  1883. /* lookup symbol in given range of kernel_symbols */
  1884. static const struct kernel_symbol *lookup_symbol(const char *name,
  1885. const struct kernel_symbol *start,
  1886. const struct kernel_symbol *stop)
  1887. {
  1888. return bsearch(name, start, stop - start,
  1889. sizeof(struct kernel_symbol), cmp_name);
  1890. }
  1891. static int is_exported(const char *name, unsigned long value,
  1892. const struct module *mod)
  1893. {
  1894. const struct kernel_symbol *ks;
  1895. if (!mod)
  1896. ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
  1897. else
  1898. ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
  1899. return ks != NULL && ks->value == value;
  1900. }
  1901. /* As per nm */
  1902. static char elf_type(const Elf_Sym *sym, const struct load_info *info)
  1903. {
  1904. const Elf_Shdr *sechdrs = info->sechdrs;
  1905. if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
  1906. if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
  1907. return 'v';
  1908. else
  1909. return 'w';
  1910. }
  1911. if (sym->st_shndx == SHN_UNDEF)
  1912. return 'U';
  1913. if (sym->st_shndx == SHN_ABS)
  1914. return 'a';
  1915. if (sym->st_shndx >= SHN_LORESERVE)
  1916. return '?';
  1917. if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
  1918. return 't';
  1919. if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
  1920. && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
  1921. if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
  1922. return 'r';
  1923. else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1924. return 'g';
  1925. else
  1926. return 'd';
  1927. }
  1928. if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
  1929. if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1930. return 's';
  1931. else
  1932. return 'b';
  1933. }
  1934. if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
  1935. ".debug")) {
  1936. return 'n';
  1937. }
  1938. return '?';
  1939. }
  1940. static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
  1941. unsigned int shnum)
  1942. {
  1943. const Elf_Shdr *sec;
  1944. if (src->st_shndx == SHN_UNDEF
  1945. || src->st_shndx >= shnum
  1946. || !src->st_name)
  1947. return false;
  1948. sec = sechdrs + src->st_shndx;
  1949. if (!(sec->sh_flags & SHF_ALLOC)
  1950. #ifndef CONFIG_KALLSYMS_ALL
  1951. || !(sec->sh_flags & SHF_EXECINSTR)
  1952. #endif
  1953. || (sec->sh_entsize & INIT_OFFSET_MASK))
  1954. return false;
  1955. return true;
  1956. }
  1957. /*
  1958. * We only allocate and copy the strings needed by the parts of symtab
  1959. * we keep. This is simple, but has the effect of making multiple
  1960. * copies of duplicates. We could be more sophisticated, see
  1961. * linux-kernel thread starting with
  1962. * <73defb5e4bca04a6431392cc341112b1@localhost>.
  1963. */
  1964. static void layout_symtab(struct module *mod, struct load_info *info)
  1965. {
  1966. Elf_Shdr *symsect = info->sechdrs + info->index.sym;
  1967. Elf_Shdr *strsect = info->sechdrs + info->index.str;
  1968. const Elf_Sym *src;
  1969. unsigned int i, nsrc, ndst, strtab_size = 0;
  1970. /* Put symbol section at end of init part of module. */
  1971. symsect->sh_flags |= SHF_ALLOC;
  1972. symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
  1973. info->index.sym) | INIT_OFFSET_MASK;
  1974. pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
  1975. src = (void *)info->hdr + symsect->sh_offset;
  1976. nsrc = symsect->sh_size / sizeof(*src);
  1977. /* Compute total space required for the core symbols' strtab. */
  1978. for (ndst = i = 0; i < nsrc; i++) {
  1979. if (i == 0 ||
  1980. is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
  1981. strtab_size += strlen(&info->strtab[src[i].st_name])+1;
  1982. ndst++;
  1983. }
  1984. }
  1985. /* Append room for core symbols at end of core part. */
  1986. info->symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
  1987. info->stroffs = mod->core_size = info->symoffs + ndst * sizeof(Elf_Sym);
  1988. mod->core_size += strtab_size;
  1989. /* Put string table section at end of init part of module. */
  1990. strsect->sh_flags |= SHF_ALLOC;
  1991. strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
  1992. info->index.str) | INIT_OFFSET_MASK;
  1993. pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
  1994. }
  1995. static void add_kallsyms(struct module *mod, const struct load_info *info)
  1996. {
  1997. unsigned int i, ndst;
  1998. const Elf_Sym *src;
  1999. Elf_Sym *dst;
  2000. char *s;
  2001. Elf_Shdr *symsec = &info->sechdrs[info->index.sym];
  2002. mod->symtab = (void *)symsec->sh_addr;
  2003. mod->num_symtab = symsec->sh_size / sizeof(Elf_Sym);
  2004. /* Make sure we get permanent strtab: don't use info->strtab. */
  2005. mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
  2006. /* Set types up while we still have access to sections. */
  2007. for (i = 0; i < mod->num_symtab; i++)
  2008. mod->symtab[i].st_info = elf_type(&mod->symtab[i], info);
  2009. mod->core_symtab = dst = mod->module_core + info->symoffs;
  2010. mod->core_strtab = s = mod->module_core + info->stroffs;
  2011. src = mod->symtab;
  2012. for (ndst = i = 0; i < mod->num_symtab; i++) {
  2013. if (i == 0 ||
  2014. is_core_symbol(src+i, info->sechdrs, info->hdr->e_shnum)) {
  2015. dst[ndst] = src[i];
  2016. dst[ndst++].st_name = s - mod->core_strtab;
  2017. s += strlcpy(s, &mod->strtab[src[i].st_name],
  2018. KSYM_NAME_LEN) + 1;
  2019. }
  2020. }
  2021. mod->core_num_syms = ndst;
  2022. }
  2023. #else
  2024. static inline void layout_symtab(struct module *mod, struct load_info *info)
  2025. {
  2026. }
  2027. static void add_kallsyms(struct module *mod, const struct load_info *info)
  2028. {
  2029. }
  2030. #endif /* CONFIG_KALLSYMS */
  2031. static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
  2032. {
  2033. if (!debug)
  2034. return;
  2035. #ifdef CONFIG_DYNAMIC_DEBUG
  2036. if (ddebug_add_module(debug, num, debug->modname))
  2037. pr_err("dynamic debug error adding module: %s\n",
  2038. debug->modname);
  2039. #endif
  2040. }
  2041. static void dynamic_debug_remove(struct _ddebug *debug)
  2042. {
  2043. if (debug)
  2044. ddebug_remove_module(debug->modname);
  2045. }
  2046. void * __weak module_alloc(unsigned long size)
  2047. {
  2048. return vmalloc_exec(size);
  2049. }
  2050. static void *module_alloc_update_bounds(unsigned long size)
  2051. {
  2052. void *ret = module_alloc(size);
  2053. if (ret) {
  2054. mutex_lock(&module_mutex);
  2055. /* Update module bounds. */
  2056. if ((unsigned long)ret < module_addr_min)
  2057. module_addr_min = (unsigned long)ret;
  2058. if ((unsigned long)ret + size > module_addr_max)
  2059. module_addr_max = (unsigned long)ret + size;
  2060. mutex_unlock(&module_mutex);
  2061. }
  2062. return ret;
  2063. }
  2064. #ifdef CONFIG_DEBUG_KMEMLEAK
  2065. static void kmemleak_load_module(const struct module *mod,
  2066. const struct load_info *info)
  2067. {
  2068. unsigned int i;
  2069. /* only scan the sections containing data */
  2070. kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
  2071. for (i = 1; i < info->hdr->e_shnum; i++) {
  2072. /* Scan all writable sections that's not executable */
  2073. if (!(info->sechdrs[i].sh_flags & SHF_ALLOC) ||
  2074. !(info->sechdrs[i].sh_flags & SHF_WRITE) ||
  2075. (info->sechdrs[i].sh_flags & SHF_EXECINSTR))
  2076. continue;
  2077. kmemleak_scan_area((void *)info->sechdrs[i].sh_addr,
  2078. info->sechdrs[i].sh_size, GFP_KERNEL);
  2079. }
  2080. }
  2081. #else
  2082. static inline void kmemleak_load_module(const struct module *mod,
  2083. const struct load_info *info)
  2084. {
  2085. }
  2086. #endif
  2087. #ifdef CONFIG_MODULE_SIG
  2088. static int module_sig_check(struct load_info *info)
  2089. {
  2090. int err = -ENOKEY;
  2091. const unsigned long markerlen = sizeof(MODULE_SIG_STRING) - 1;
  2092. const void *mod = info->hdr;
  2093. if (info->len > markerlen &&
  2094. memcmp(mod + info->len - markerlen, MODULE_SIG_STRING, markerlen) == 0) {
  2095. /* We truncate the module to discard the signature */
  2096. info->len -= markerlen;
  2097. err = mod_verify_sig(mod, &info->len);
  2098. }
  2099. if (!err) {
  2100. info->sig_ok = true;
  2101. return 0;
  2102. }
  2103. /* Not having a signature is only an error if we're strict. */
  2104. if (err < 0 && fips_enabled)
  2105. panic("Module verification failed with error %d in FIPS mode\n",
  2106. err);
  2107. if (err == -ENOKEY && !sig_enforce)
  2108. err = 0;
  2109. return err;
  2110. }
  2111. #else /* !CONFIG_MODULE_SIG */
  2112. static int module_sig_check(struct load_info *info)
  2113. {
  2114. return 0;
  2115. }
  2116. #endif /* !CONFIG_MODULE_SIG */
  2117. /* Sanity checks against invalid binaries, wrong arch, weird elf version. */
  2118. static int elf_header_check(struct load_info *info)
  2119. {
  2120. if (info->len < sizeof(*(info->hdr)))
  2121. return -ENOEXEC;
  2122. if (memcmp(info->hdr->e_ident, ELFMAG, SELFMAG) != 0
  2123. || info->hdr->e_type != ET_REL
  2124. || !elf_check_arch(info->hdr)
  2125. || info->hdr->e_shentsize != sizeof(Elf_Shdr))
  2126. return -ENOEXEC;
  2127. if (info->hdr->e_shoff >= info->len
  2128. || (info->hdr->e_shnum * sizeof(Elf_Shdr) >
  2129. info->len - info->hdr->e_shoff))
  2130. return -ENOEXEC;
  2131. return 0;
  2132. }
  2133. /* Sets info->hdr and info->len. */
  2134. static int copy_module_from_user(const void __user *umod, unsigned long len,
  2135. struct load_info *info)
  2136. {
  2137. int err;
  2138. info->len = len;
  2139. if (info->len < sizeof(*(info->hdr)))
  2140. return -ENOEXEC;
  2141. err = security_kernel_module_from_file(NULL);
  2142. if (err)
  2143. return err;
  2144. /* Suck in entire file: we'll want most of it. */
  2145. info->hdr = vmalloc(info->len);
  2146. if (!info->hdr)
  2147. return -ENOMEM;
  2148. if (copy_from_user(info->hdr, umod, info->len) != 0) {
  2149. vfree(info->hdr);
  2150. return -EFAULT;
  2151. }
  2152. return 0;
  2153. }
  2154. /* Sets info->hdr and info->len. */
  2155. static int copy_module_from_fd(int fd, struct load_info *info)
  2156. {
  2157. struct fd f = fdget(fd);
  2158. int err;
  2159. struct kstat stat;
  2160. loff_t pos;
  2161. ssize_t bytes = 0;
  2162. if (!f.file)
  2163. return -ENOEXEC;
  2164. err = security_kernel_module_from_file(f.file);
  2165. if (err)
  2166. goto out;
  2167. err = vfs_getattr(&f.file->f_path, &stat);
  2168. if (err)
  2169. goto out;
  2170. if (stat.size > INT_MAX) {
  2171. err = -EFBIG;
  2172. goto out;
  2173. }
  2174. /* Don't hand 0 to vmalloc, it whines. */
  2175. if (stat.size == 0) {
  2176. err = -EINVAL;
  2177. goto out;
  2178. }
  2179. info->hdr = vmalloc(stat.size);
  2180. if (!info->hdr) {
  2181. err = -ENOMEM;
  2182. goto out;
  2183. }
  2184. pos = 0;
  2185. while (pos < stat.size) {
  2186. bytes = kernel_read(f.file, pos, (char *)(info->hdr) + pos,
  2187. stat.size - pos);
  2188. if (bytes < 0) {
  2189. vfree(info->hdr);
  2190. err = bytes;
  2191. goto out;
  2192. }
  2193. if (bytes == 0)
  2194. break;
  2195. pos += bytes;
  2196. }
  2197. info->len = pos;
  2198. out:
  2199. fdput(f);
  2200. return err;
  2201. }
  2202. static void free_copy(struct load_info *info)
  2203. {
  2204. vfree(info->hdr);
  2205. }
  2206. static int rewrite_section_headers(struct load_info *info, int flags)
  2207. {
  2208. unsigned int i;
  2209. /* This should always be true, but let's be sure. */
  2210. info->sechdrs[0].sh_addr = 0;
  2211. for (i = 1; i < info->hdr->e_shnum; i++) {
  2212. Elf_Shdr *shdr = &info->sechdrs[i];
  2213. if (shdr->sh_type != SHT_NOBITS
  2214. && info->len < shdr->sh_offset + shdr->sh_size) {
  2215. pr_err("Module len %lu truncated\n", info->len);
  2216. return -ENOEXEC;
  2217. }
  2218. /* Mark all sections sh_addr with their address in the
  2219. temporary image. */
  2220. shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
  2221. #ifndef CONFIG_MODULE_UNLOAD
  2222. /* Don't load .exit sections */
  2223. if (strstarts(info->secstrings+shdr->sh_name, ".exit"))
  2224. shdr->sh_flags &= ~(unsigned long)SHF_ALLOC;
  2225. #endif
  2226. }
  2227. /* Track but don't keep modinfo and version sections. */
  2228. if (flags & MODULE_INIT_IGNORE_MODVERSIONS)
  2229. info->index.vers = 0; /* Pretend no __versions section! */
  2230. else
  2231. info->index.vers = find_sec(info, "__versions");
  2232. info->index.info = find_sec(info, ".modinfo");
  2233. info->sechdrs[info->index.info].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2234. info->sechdrs[info->index.vers].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2235. return 0;
  2236. }
  2237. /*
  2238. * Set up our basic convenience variables (pointers to section headers,
  2239. * search for module section index etc), and do some basic section
  2240. * verification.
  2241. *
  2242. * Return the temporary module pointer (we'll replace it with the final
  2243. * one when we move the module sections around).
  2244. */
  2245. static struct module *setup_load_info(struct load_info *info, int flags)
  2246. {
  2247. unsigned int i;
  2248. int err;
  2249. struct module *mod;
  2250. /* Set up the convenience variables */
  2251. info->sechdrs = (void *)info->hdr + info->hdr->e_shoff;
  2252. info->secstrings = (void *)info->hdr
  2253. + info->sechdrs[info->hdr->e_shstrndx].sh_offset;
  2254. err = rewrite_section_headers(info, flags);
  2255. if (err)
  2256. return ERR_PTR(err);
  2257. /* Find internal symbols and strings. */
  2258. for (i = 1; i < info->hdr->e_shnum; i++) {
  2259. if (info->sechdrs[i].sh_type == SHT_SYMTAB) {
  2260. info->index.sym = i;
  2261. info->index.str = info->sechdrs[i].sh_link;
  2262. info->strtab = (char *)info->hdr
  2263. + info->sechdrs[info->index.str].sh_offset;
  2264. break;
  2265. }
  2266. }
  2267. info->index.mod = find_sec(info, ".gnu.linkonce.this_module");
  2268. if (!info->index.mod) {
  2269. pr_warn("No module found in object\n");
  2270. return ERR_PTR(-ENOEXEC);
  2271. }
  2272. /* This is temporary: point mod into copy of data. */
  2273. mod = (void *)info->sechdrs[info->index.mod].sh_addr;
  2274. if (info->index.sym == 0) {
  2275. pr_warn("%s: module has no symbols (stripped?)\n", mod->name);
  2276. return ERR_PTR(-ENOEXEC);
  2277. }
  2278. info->index.pcpu = find_pcpusec(info);
  2279. /* Check module struct version now, before we try to use module. */
  2280. if (!check_modstruct_version(info->sechdrs, info->index.vers, mod))
  2281. return ERR_PTR(-ENOEXEC);
  2282. return mod;
  2283. }
  2284. static int check_modinfo(struct module *mod, struct load_info *info, int flags)
  2285. {
  2286. const char *modmagic = get_modinfo(info, "vermagic");
  2287. int err;
  2288. if (flags & MODULE_INIT_IGNORE_VERMAGIC)
  2289. modmagic = NULL;
  2290. /* This is allowed: modprobe --force will invalidate it. */
  2291. if (!modmagic) {
  2292. err = try_to_force_load(mod, "bad vermagic");
  2293. if (err)
  2294. return err;
  2295. } else if (!same_magic(modmagic, vermagic, info->index.vers)) {
  2296. pr_err("%s: version magic '%s' should be '%s'\n",
  2297. mod->name, modmagic, vermagic);
  2298. return -ENOEXEC;
  2299. }
  2300. if (!get_modinfo(info, "intree"))
  2301. add_taint_module(mod, TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
  2302. if (get_modinfo(info, "staging")) {
  2303. add_taint_module(mod, TAINT_CRAP, LOCKDEP_STILL_OK);
  2304. pr_warn("%s: module is from the staging directory, the quality "
  2305. "is unknown, you have been warned.\n", mod->name);
  2306. }
  2307. /* Set up license info based on the info section */
  2308. set_license(mod, get_modinfo(info, "license"));
  2309. return 0;
  2310. }
  2311. static int find_module_sections(struct module *mod, struct load_info *info)
  2312. {
  2313. mod->kp = section_objs(info, "__param",
  2314. sizeof(*mod->kp), &mod->num_kp);
  2315. mod->syms = section_objs(info, "__ksymtab",
  2316. sizeof(*mod->syms), &mod->num_syms);
  2317. mod->crcs = section_addr(info, "__kcrctab");
  2318. mod->gpl_syms = section_objs(info, "__ksymtab_gpl",
  2319. sizeof(*mod->gpl_syms),
  2320. &mod->num_gpl_syms);
  2321. mod->gpl_crcs = section_addr(info, "__kcrctab_gpl");
  2322. mod->gpl_future_syms = section_objs(info,
  2323. "__ksymtab_gpl_future",
  2324. sizeof(*mod->gpl_future_syms),
  2325. &mod->num_gpl_future_syms);
  2326. mod->gpl_future_crcs = section_addr(info, "__kcrctab_gpl_future");
  2327. #ifdef CONFIG_UNUSED_SYMBOLS
  2328. mod->unused_syms = section_objs(info, "__ksymtab_unused",
  2329. sizeof(*mod->unused_syms),
  2330. &mod->num_unused_syms);
  2331. mod->unused_crcs = section_addr(info, "__kcrctab_unused");
  2332. mod->unused_gpl_syms = section_objs(info, "__ksymtab_unused_gpl",
  2333. sizeof(*mod->unused_gpl_syms),
  2334. &mod->num_unused_gpl_syms);
  2335. mod->unused_gpl_crcs = section_addr(info, "__kcrctab_unused_gpl");
  2336. #endif
  2337. #ifdef CONFIG_CONSTRUCTORS
  2338. mod->ctors = section_objs(info, ".ctors",
  2339. sizeof(*mod->ctors), &mod->num_ctors);
  2340. if (!mod->ctors)
  2341. mod->ctors = section_objs(info, ".init_array",
  2342. sizeof(*mod->ctors), &mod->num_ctors);
  2343. else if (find_sec(info, ".init_array")) {
  2344. /*
  2345. * This shouldn't happen with same compiler and binutils
  2346. * building all parts of the module.
  2347. */
  2348. printk(KERN_WARNING "%s: has both .ctors and .init_array.\n",
  2349. mod->name);
  2350. return -EINVAL;
  2351. }
  2352. #endif
  2353. #ifdef CONFIG_TRACEPOINTS
  2354. mod->tracepoints_ptrs = section_objs(info, "__tracepoints_ptrs",
  2355. sizeof(*mod->tracepoints_ptrs),
  2356. &mod->num_tracepoints);
  2357. #endif
  2358. #ifdef HAVE_JUMP_LABEL
  2359. mod->jump_entries = section_objs(info, "__jump_table",
  2360. sizeof(*mod->jump_entries),
  2361. &mod->num_jump_entries);
  2362. #endif
  2363. #ifdef CONFIG_EVENT_TRACING
  2364. mod->trace_events = section_objs(info, "_ftrace_events",
  2365. sizeof(*mod->trace_events),
  2366. &mod->num_trace_events);
  2367. #endif
  2368. #ifdef CONFIG_TRACING
  2369. mod->trace_bprintk_fmt_start = section_objs(info, "__trace_printk_fmt",
  2370. sizeof(*mod->trace_bprintk_fmt_start),
  2371. &mod->num_trace_bprintk_fmt);
  2372. #endif
  2373. #ifdef CONFIG_FTRACE_MCOUNT_RECORD
  2374. /* sechdrs[0].sh_size is always zero */
  2375. mod->ftrace_callsites = section_objs(info, "__mcount_loc",
  2376. sizeof(*mod->ftrace_callsites),
  2377. &mod->num_ftrace_callsites);
  2378. #endif
  2379. mod->extable = section_objs(info, "__ex_table",
  2380. sizeof(*mod->extable), &mod->num_exentries);
  2381. if (section_addr(info, "__obsparm"))
  2382. pr_warn("%s: Ignoring obsolete parameters\n", mod->name);
  2383. info->debug = section_objs(info, "__verbose",
  2384. sizeof(*info->debug), &info->num_debug);
  2385. return 0;
  2386. }
  2387. static int move_module(struct module *mod, struct load_info *info)
  2388. {
  2389. int i;
  2390. void *ptr;
  2391. /* Do the allocs. */
  2392. ptr = module_alloc_update_bounds(mod->core_size);
  2393. /*
  2394. * The pointer to this block is stored in the module structure
  2395. * which is inside the block. Just mark it as not being a
  2396. * leak.
  2397. */
  2398. kmemleak_not_leak(ptr);
  2399. if (!ptr)
  2400. return -ENOMEM;
  2401. memset(ptr, 0, mod->core_size);
  2402. mod->module_core = ptr;
  2403. if (mod->init_size) {
  2404. ptr = module_alloc_update_bounds(mod->init_size);
  2405. /*
  2406. * The pointer to this block is stored in the module structure
  2407. * which is inside the block. This block doesn't need to be
  2408. * scanned as it contains data and code that will be freed
  2409. * after the module is initialized.
  2410. */
  2411. kmemleak_ignore(ptr);
  2412. if (!ptr) {
  2413. module_free(mod, mod->module_core);
  2414. return -ENOMEM;
  2415. }
  2416. memset(ptr, 0, mod->init_size);
  2417. mod->module_init = ptr;
  2418. } else
  2419. mod->module_init = NULL;
  2420. /* Transfer each section which specifies SHF_ALLOC */
  2421. pr_debug("final section addresses:\n");
  2422. for (i = 0; i < info->hdr->e_shnum; i++) {
  2423. void *dest;
  2424. Elf_Shdr *shdr = &info->sechdrs[i];
  2425. if (!(shdr->sh_flags & SHF_ALLOC))
  2426. continue;
  2427. if (shdr->sh_entsize & INIT_OFFSET_MASK)
  2428. dest = mod->module_init
  2429. + (shdr->sh_entsize & ~INIT_OFFSET_MASK);
  2430. else
  2431. dest = mod->module_core + shdr->sh_entsize;
  2432. if (shdr->sh_type != SHT_NOBITS)
  2433. memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
  2434. /* Update sh_addr to point to copy in image. */
  2435. shdr->sh_addr = (unsigned long)dest;
  2436. pr_debug("\t0x%lx %s\n",
  2437. (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
  2438. }
  2439. return 0;
  2440. }
  2441. static int check_module_license_and_versions(struct module *mod)
  2442. {
  2443. /*
  2444. * ndiswrapper is under GPL by itself, but loads proprietary modules.
  2445. * Don't use add_taint_module(), as it would prevent ndiswrapper from
  2446. * using GPL-only symbols it needs.
  2447. */
  2448. if (strcmp(mod->name, "ndiswrapper") == 0)
  2449. add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_NOW_UNRELIABLE);
  2450. /* driverloader was caught wrongly pretending to be under GPL */
  2451. if (strcmp(mod->name, "driverloader") == 0)
  2452. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  2453. LOCKDEP_NOW_UNRELIABLE);
  2454. /* lve claims to be GPL but upstream won't provide source */
  2455. if (strcmp(mod->name, "lve") == 0)
  2456. add_taint_module(mod, TAINT_PROPRIETARY_MODULE,
  2457. LOCKDEP_NOW_UNRELIABLE);
  2458. #ifdef CONFIG_MODVERSIONS
  2459. if ((mod->num_syms && !mod->crcs)
  2460. || (mod->num_gpl_syms && !mod->gpl_crcs)
  2461. || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
  2462. #ifdef CONFIG_UNUSED_SYMBOLS
  2463. || (mod->num_unused_syms && !mod->unused_crcs)
  2464. || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
  2465. #endif
  2466. ) {
  2467. return try_to_force_load(mod,
  2468. "no versions for exported symbols");
  2469. }
  2470. #endif
  2471. return 0;
  2472. }
  2473. static void flush_module_icache(const struct module *mod)
  2474. {
  2475. mm_segment_t old_fs;
  2476. /* flush the icache in correct context */
  2477. old_fs = get_fs();
  2478. set_fs(KERNEL_DS);
  2479. /*
  2480. * Flush the instruction cache, since we've played with text.
  2481. * Do it before processing of module parameters, so the module
  2482. * can provide parameter accessor functions of its own.
  2483. */
  2484. if (mod->module_init)
  2485. flush_icache_range((unsigned long)mod->module_init,
  2486. (unsigned long)mod->module_init
  2487. + mod->init_size);
  2488. flush_icache_range((unsigned long)mod->module_core,
  2489. (unsigned long)mod->module_core + mod->core_size);
  2490. set_fs(old_fs);
  2491. }
  2492. int __weak module_frob_arch_sections(Elf_Ehdr *hdr,
  2493. Elf_Shdr *sechdrs,
  2494. char *secstrings,
  2495. struct module *mod)
  2496. {
  2497. return 0;
  2498. }
  2499. static struct module *layout_and_allocate(struct load_info *info, int flags)
  2500. {
  2501. /* Module within temporary copy. */
  2502. struct module *mod;
  2503. int err;
  2504. mod = setup_load_info(info, flags);
  2505. if (IS_ERR(mod))
  2506. return mod;
  2507. err = check_modinfo(mod, info, flags);
  2508. if (err)
  2509. return ERR_PTR(err);
  2510. /* Allow arches to frob section contents and sizes. */
  2511. err = module_frob_arch_sections(info->hdr, info->sechdrs,
  2512. info->secstrings, mod);
  2513. if (err < 0)
  2514. return ERR_PTR(err);
  2515. /* We will do a special allocation for per-cpu sections later. */
  2516. info->sechdrs[info->index.pcpu].sh_flags &= ~(unsigned long)SHF_ALLOC;
  2517. /* Determine total sizes, and put offsets in sh_entsize. For now
  2518. this is done generically; there doesn't appear to be any
  2519. special cases for the architectures. */
  2520. layout_sections(mod, info);
  2521. layout_symtab(mod, info);
  2522. /* Allocate and move to the final place */
  2523. err = move_module(mod, info);
  2524. if (err)
  2525. return ERR_PTR(err);
  2526. /* Module has been copied to its final place now: return it. */
  2527. mod = (void *)info->sechdrs[info->index.mod].sh_addr;
  2528. kmemleak_load_module(mod, info);
  2529. return mod;
  2530. }
  2531. /* mod is no longer valid after this! */
  2532. static void module_deallocate(struct module *mod, struct load_info *info)
  2533. {
  2534. percpu_modfree(mod);
  2535. module_free(mod, mod->module_init);
  2536. module_free(mod, mod->module_core);
  2537. }
  2538. int __weak module_finalize(const Elf_Ehdr *hdr,
  2539. const Elf_Shdr *sechdrs,
  2540. struct module *me)
  2541. {
  2542. return 0;
  2543. }
  2544. static int post_relocation(struct module *mod, const struct load_info *info)
  2545. {
  2546. /* Sort exception table now relocations are done. */
  2547. sort_extable(mod->extable, mod->extable + mod->num_exentries);
  2548. /* Copy relocated percpu area over. */
  2549. percpu_modcopy(mod, (void *)info->sechdrs[info->index.pcpu].sh_addr,
  2550. info->sechdrs[info->index.pcpu].sh_size);
  2551. /* Setup kallsyms-specific fields. */
  2552. add_kallsyms(mod, info);
  2553. /* Arch-specific module finalizing. */
  2554. return module_finalize(info->hdr, info->sechdrs, mod);
  2555. }
  2556. /* Is this module of this name done loading? No locks held. */
  2557. static bool finished_loading(const char *name)
  2558. {
  2559. struct module *mod;
  2560. bool ret;
  2561. mutex_lock(&module_mutex);
  2562. mod = find_module_all(name, strlen(name), true);
  2563. ret = !mod || mod->state == MODULE_STATE_LIVE
  2564. || mod->state == MODULE_STATE_GOING;
  2565. mutex_unlock(&module_mutex);
  2566. return ret;
  2567. }
  2568. /* Call module constructors. */
  2569. static void do_mod_ctors(struct module *mod)
  2570. {
  2571. #ifdef CONFIG_CONSTRUCTORS
  2572. unsigned long i;
  2573. for (i = 0; i < mod->num_ctors; i++)
  2574. mod->ctors[i]();
  2575. #endif
  2576. }
  2577. /* This is where the real work happens */
  2578. static int do_init_module(struct module *mod)
  2579. {
  2580. int ret = 0;
  2581. /*
  2582. * We want to find out whether @mod uses async during init. Clear
  2583. * PF_USED_ASYNC. async_schedule*() will set it.
  2584. */
  2585. current->flags &= ~PF_USED_ASYNC;
  2586. blocking_notifier_call_chain(&module_notify_list,
  2587. MODULE_STATE_COMING, mod);
  2588. /* Set RO and NX regions for core */
  2589. set_section_ro_nx(mod->module_core,
  2590. mod->core_text_size,
  2591. mod->core_ro_size,
  2592. mod->core_size);
  2593. /* Set RO and NX regions for init */
  2594. set_section_ro_nx(mod->module_init,
  2595. mod->init_text_size,
  2596. mod->init_ro_size,
  2597. mod->init_size);
  2598. do_mod_ctors(mod);
  2599. /* Start the module */
  2600. if (mod->init != NULL)
  2601. ret = do_one_initcall(mod->init);
  2602. if (ret < 0) {
  2603. /* Init routine failed: abort. Try to protect us from
  2604. buggy refcounters. */
  2605. mod->state = MODULE_STATE_GOING;
  2606. synchronize_sched();
  2607. module_put(mod);
  2608. blocking_notifier_call_chain(&module_notify_list,
  2609. MODULE_STATE_GOING, mod);
  2610. free_module(mod);
  2611. wake_up_all(&module_wq);
  2612. return ret;
  2613. }
  2614. if (ret > 0) {
  2615. pr_warn("%s: '%s'->init suspiciously returned %d, it should "
  2616. "follow 0/-E convention\n"
  2617. "%s: loading module anyway...\n",
  2618. __func__, mod->name, ret, __func__);
  2619. dump_stack();
  2620. }
  2621. /* Now it's a first class citizen! */
  2622. mod->state = MODULE_STATE_LIVE;
  2623. blocking_notifier_call_chain(&module_notify_list,
  2624. MODULE_STATE_LIVE, mod);
  2625. /*
  2626. * We need to finish all async code before the module init sequence
  2627. * is done. This has potential to deadlock. For example, a newly
  2628. * detected block device can trigger request_module() of the
  2629. * default iosched from async probing task. Once userland helper
  2630. * reaches here, async_synchronize_full() will wait on the async
  2631. * task waiting on request_module() and deadlock.
  2632. *
  2633. * This deadlock is avoided by perfomring async_synchronize_full()
  2634. * iff module init queued any async jobs. This isn't a full
  2635. * solution as it will deadlock the same if module loading from
  2636. * async jobs nests more than once; however, due to the various
  2637. * constraints, this hack seems to be the best option for now.
  2638. * Please refer to the following thread for details.
  2639. *
  2640. * http://thread.gmane.org/gmane.linux.kernel/1420814
  2641. */
  2642. if (current->flags & PF_USED_ASYNC)
  2643. async_synchronize_full();
  2644. mutex_lock(&module_mutex);
  2645. /* Drop initial reference. */
  2646. module_put(mod);
  2647. trim_init_extable(mod);
  2648. #ifdef CONFIG_KALLSYMS
  2649. mod->num_symtab = mod->core_num_syms;
  2650. mod->symtab = mod->core_symtab;
  2651. mod->strtab = mod->core_strtab;
  2652. #endif
  2653. unset_module_init_ro_nx(mod);
  2654. module_free(mod, mod->module_init);
  2655. mod->module_init = NULL;
  2656. mod->init_size = 0;
  2657. mod->init_ro_size = 0;
  2658. mod->init_text_size = 0;
  2659. mutex_unlock(&module_mutex);
  2660. wake_up_all(&module_wq);
  2661. return 0;
  2662. }
  2663. static int may_init_module(void)
  2664. {
  2665. if (!capable(CAP_SYS_MODULE) || modules_disabled)
  2666. return -EPERM;
  2667. return 0;
  2668. }
  2669. /*
  2670. * We try to place it in the list now to make sure it's unique before
  2671. * we dedicate too many resources. In particular, temporary percpu
  2672. * memory exhaustion.
  2673. */
  2674. static int add_unformed_module(struct module *mod)
  2675. {
  2676. int err;
  2677. struct module *old;
  2678. mod->state = MODULE_STATE_UNFORMED;
  2679. again:
  2680. mutex_lock(&module_mutex);
  2681. old = find_module_all(mod->name, strlen(mod->name), true);
  2682. if (old != NULL) {
  2683. if (old->state == MODULE_STATE_COMING
  2684. || old->state == MODULE_STATE_UNFORMED) {
  2685. /* Wait in case it fails to load. */
  2686. mutex_unlock(&module_mutex);
  2687. err = wait_event_interruptible(module_wq,
  2688. finished_loading(mod->name));
  2689. if (err)
  2690. goto out_unlocked;
  2691. goto again;
  2692. }
  2693. err = -EEXIST;
  2694. goto out;
  2695. }
  2696. list_add_rcu(&mod->list, &modules);
  2697. err = 0;
  2698. out:
  2699. mutex_unlock(&module_mutex);
  2700. out_unlocked:
  2701. return err;
  2702. }
  2703. static int complete_formation(struct module *mod, struct load_info *info)
  2704. {
  2705. int err;
  2706. mutex_lock(&module_mutex);
  2707. /* Find duplicate symbols (must be called under lock). */
  2708. err = verify_export_symbols(mod);
  2709. if (err < 0)
  2710. goto out;
  2711. /* This relies on module_mutex for list integrity. */
  2712. module_bug_finalize(info->hdr, info->sechdrs, mod);
  2713. /* Mark state as coming so strong_try_module_get() ignores us,
  2714. * but kallsyms etc. can see us. */
  2715. mod->state = MODULE_STATE_COMING;
  2716. out:
  2717. mutex_unlock(&module_mutex);
  2718. return err;
  2719. }
  2720. static int unknown_module_param_cb(char *param, char *val, const char *modname)
  2721. {
  2722. /* Check for magic 'dyndbg' arg */
  2723. int ret = ddebug_dyndbg_module_param_cb(param, val, modname);
  2724. if (ret != 0)
  2725. pr_warn("%s: unknown parameter '%s' ignored\n", modname, param);
  2726. return 0;
  2727. }
  2728. /* Allocate and load the module: note that size of section 0 is always
  2729. zero, and we rely on this for optional sections. */
  2730. static int load_module(struct load_info *info, const char __user *uargs,
  2731. int flags)
  2732. {
  2733. struct module *mod;
  2734. long err;
  2735. err = module_sig_check(info);
  2736. if (err)
  2737. goto free_copy;
  2738. err = elf_header_check(info);
  2739. if (err)
  2740. goto free_copy;
  2741. /* Figure out module layout, and allocate all the memory. */
  2742. mod = layout_and_allocate(info, flags);
  2743. if (IS_ERR(mod)) {
  2744. err = PTR_ERR(mod);
  2745. goto free_copy;
  2746. }
  2747. /* Reserve our place in the list. */
  2748. err = add_unformed_module(mod);
  2749. if (err)
  2750. goto free_module;
  2751. #ifdef CONFIG_MODULE_SIG
  2752. mod->sig_ok = info->sig_ok;
  2753. if (!mod->sig_ok) {
  2754. pr_notice_once("%s: module verification failed: signature "
  2755. "and/or required key missing - tainting "
  2756. "kernel\n", mod->name);
  2757. add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK);
  2758. }
  2759. #endif
  2760. /* To avoid stressing percpu allocator, do this once we're unique. */
  2761. err = percpu_modalloc(mod, info);
  2762. if (err)
  2763. goto unlink_mod;
  2764. /* Now module is in final location, initialize linked lists, etc. */
  2765. err = module_unload_init(mod);
  2766. if (err)
  2767. goto unlink_mod;
  2768. /* Now we've got everything in the final locations, we can
  2769. * find optional sections. */
  2770. err = find_module_sections(mod, info);
  2771. if (err)
  2772. goto free_unload;
  2773. err = check_module_license_and_versions(mod);
  2774. if (err)
  2775. goto free_unload;
  2776. /* Set up MODINFO_ATTR fields */
  2777. setup_modinfo(mod, info);
  2778. /* Fix up syms, so that st_value is a pointer to location. */
  2779. err = simplify_symbols(mod, info);
  2780. if (err < 0)
  2781. goto free_modinfo;
  2782. err = apply_relocations(mod, info);
  2783. if (err < 0)
  2784. goto free_modinfo;
  2785. err = post_relocation(mod, info);
  2786. if (err < 0)
  2787. goto free_modinfo;
  2788. flush_module_icache(mod);
  2789. /* Now copy in args */
  2790. mod->args = strndup_user(uargs, ~0UL >> 1);
  2791. if (IS_ERR(mod->args)) {
  2792. err = PTR_ERR(mod->args);
  2793. goto free_arch_cleanup;
  2794. }
  2795. dynamic_debug_setup(info->debug, info->num_debug);
  2796. /* Ftrace init must be called in the MODULE_STATE_UNFORMED state */
  2797. ftrace_module_init(mod);
  2798. /* Finally it's fully formed, ready to start executing. */
  2799. err = complete_formation(mod, info);
  2800. if (err)
  2801. goto ddebug_cleanup;
  2802. /* Module is ready to execute: parsing args may do that. */
  2803. err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
  2804. -32768, 32767, unknown_module_param_cb);
  2805. if (err < 0)
  2806. goto bug_cleanup;
  2807. /* Link in to syfs. */
  2808. err = mod_sysfs_setup(mod, info, mod->kp, mod->num_kp);
  2809. if (err < 0)
  2810. goto bug_cleanup;
  2811. /* Get rid of temporary copy. */
  2812. free_copy(info);
  2813. /* Done! */
  2814. trace_module_load(mod);
  2815. return do_init_module(mod);
  2816. bug_cleanup:
  2817. /* module_bug_cleanup needs module_mutex protection */
  2818. mutex_lock(&module_mutex);
  2819. module_bug_cleanup(mod);
  2820. mutex_unlock(&module_mutex);
  2821. ddebug_cleanup:
  2822. dynamic_debug_remove(info->debug);
  2823. synchronize_sched();
  2824. kfree(mod->args);
  2825. free_arch_cleanup:
  2826. module_arch_cleanup(mod);
  2827. free_modinfo:
  2828. free_modinfo(mod);
  2829. free_unload:
  2830. module_unload_free(mod);
  2831. unlink_mod:
  2832. mutex_lock(&module_mutex);
  2833. /* Unlink carefully: kallsyms could be walking list. */
  2834. list_del_rcu(&mod->list);
  2835. wake_up_all(&module_wq);
  2836. mutex_unlock(&module_mutex);
  2837. free_module:
  2838. module_deallocate(mod, info);
  2839. free_copy:
  2840. free_copy(info);
  2841. return err;
  2842. }
  2843. SYSCALL_DEFINE3(init_module, void __user *, umod,
  2844. unsigned long, len, const char __user *, uargs)
  2845. {
  2846. int err;
  2847. struct load_info info = { };
  2848. err = may_init_module();
  2849. if (err)
  2850. return err;
  2851. pr_debug("init_module: umod=%p, len=%lu, uargs=%p\n",
  2852. umod, len, uargs);
  2853. err = copy_module_from_user(umod, len, &info);
  2854. if (err)
  2855. return err;
  2856. return load_module(&info, uargs, 0);
  2857. }
  2858. SYSCALL_DEFINE3(finit_module, int, fd, const char __user *, uargs, int, flags)
  2859. {
  2860. int err;
  2861. struct load_info info = { };
  2862. err = may_init_module();
  2863. if (err)
  2864. return err;
  2865. pr_debug("finit_module: fd=%d, uargs=%p, flags=%i\n", fd, uargs, flags);
  2866. if (flags & ~(MODULE_INIT_IGNORE_MODVERSIONS
  2867. |MODULE_INIT_IGNORE_VERMAGIC))
  2868. return -EINVAL;
  2869. err = copy_module_from_fd(fd, &info);
  2870. if (err)
  2871. return err;
  2872. return load_module(&info, uargs, flags);
  2873. }
  2874. static inline int within(unsigned long addr, void *start, unsigned long size)
  2875. {
  2876. return ((void *)addr >= start && (void *)addr < start + size);
  2877. }
  2878. #ifdef CONFIG_KALLSYMS
  2879. /*
  2880. * This ignores the intensely annoying "mapping symbols" found
  2881. * in ARM ELF files: $a, $t and $d.
  2882. */
  2883. static inline int is_arm_mapping_symbol(const char *str)
  2884. {
  2885. return str[0] == '$' && strchr("atd", str[1])
  2886. && (str[2] == '\0' || str[2] == '.');
  2887. }
  2888. static const char *get_ksymbol(struct module *mod,
  2889. unsigned long addr,
  2890. unsigned long *size,
  2891. unsigned long *offset)
  2892. {
  2893. unsigned int i, best = 0;
  2894. unsigned long nextval;
  2895. /* At worse, next value is at end of module */
  2896. if (within_module_init(addr, mod))
  2897. nextval = (unsigned long)mod->module_init+mod->init_text_size;
  2898. else
  2899. nextval = (unsigned long)mod->module_core+mod->core_text_size;
  2900. /* Scan for closest preceding symbol, and next symbol. (ELF
  2901. starts real symbols at 1). */
  2902. for (i = 1; i < mod->num_symtab; i++) {
  2903. if (mod->symtab[i].st_shndx == SHN_UNDEF)
  2904. continue;
  2905. /* We ignore unnamed symbols: they're uninformative
  2906. * and inserted at a whim. */
  2907. if (mod->symtab[i].st_value <= addr
  2908. && mod->symtab[i].st_value > mod->symtab[best].st_value
  2909. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2910. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2911. best = i;
  2912. if (mod->symtab[i].st_value > addr
  2913. && mod->symtab[i].st_value < nextval
  2914. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2915. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2916. nextval = mod->symtab[i].st_value;
  2917. }
  2918. if (!best)
  2919. return NULL;
  2920. if (size)
  2921. *size = nextval - mod->symtab[best].st_value;
  2922. if (offset)
  2923. *offset = addr - mod->symtab[best].st_value;
  2924. return mod->strtab + mod->symtab[best].st_name;
  2925. }
  2926. /* For kallsyms to ask for address resolution. NULL means not found. Careful
  2927. * not to lock to avoid deadlock on oopses, simply disable preemption. */
  2928. const char *module_address_lookup(unsigned long addr,
  2929. unsigned long *size,
  2930. unsigned long *offset,
  2931. char **modname,
  2932. char *namebuf)
  2933. {
  2934. struct module *mod;
  2935. const char *ret = NULL;
  2936. preempt_disable();
  2937. list_for_each_entry_rcu(mod, &modules, list) {
  2938. if (mod->state == MODULE_STATE_UNFORMED)
  2939. continue;
  2940. if (within_module_init(addr, mod) ||
  2941. within_module_core(addr, mod)) {
  2942. if (modname)
  2943. *modname = mod->name;
  2944. ret = get_ksymbol(mod, addr, size, offset);
  2945. break;
  2946. }
  2947. }
  2948. /* Make a copy in here where it's safe */
  2949. if (ret) {
  2950. strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
  2951. ret = namebuf;
  2952. }
  2953. preempt_enable();
  2954. return ret;
  2955. }
  2956. int lookup_module_symbol_name(unsigned long addr, char *symname)
  2957. {
  2958. struct module *mod;
  2959. preempt_disable();
  2960. list_for_each_entry_rcu(mod, &modules, list) {
  2961. if (mod->state == MODULE_STATE_UNFORMED)
  2962. continue;
  2963. if (within_module_init(addr, mod) ||
  2964. within_module_core(addr, mod)) {
  2965. const char *sym;
  2966. sym = get_ksymbol(mod, addr, NULL, NULL);
  2967. if (!sym)
  2968. goto out;
  2969. strlcpy(symname, sym, KSYM_NAME_LEN);
  2970. preempt_enable();
  2971. return 0;
  2972. }
  2973. }
  2974. out:
  2975. preempt_enable();
  2976. return -ERANGE;
  2977. }
  2978. int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
  2979. unsigned long *offset, char *modname, char *name)
  2980. {
  2981. struct module *mod;
  2982. preempt_disable();
  2983. list_for_each_entry_rcu(mod, &modules, list) {
  2984. if (mod->state == MODULE_STATE_UNFORMED)
  2985. continue;
  2986. if (within_module_init(addr, mod) ||
  2987. within_module_core(addr, mod)) {
  2988. const char *sym;
  2989. sym = get_ksymbol(mod, addr, size, offset);
  2990. if (!sym)
  2991. goto out;
  2992. if (modname)
  2993. strlcpy(modname, mod->name, MODULE_NAME_LEN);
  2994. if (name)
  2995. strlcpy(name, sym, KSYM_NAME_LEN);
  2996. preempt_enable();
  2997. return 0;
  2998. }
  2999. }
  3000. out:
  3001. preempt_enable();
  3002. return -ERANGE;
  3003. }
  3004. int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
  3005. char *name, char *module_name, int *exported)
  3006. {
  3007. struct module *mod;
  3008. preempt_disable();
  3009. list_for_each_entry_rcu(mod, &modules, list) {
  3010. if (mod->state == MODULE_STATE_UNFORMED)
  3011. continue;
  3012. if (symnum < mod->num_symtab) {
  3013. *value = mod->symtab[symnum].st_value;
  3014. *type = mod->symtab[symnum].st_info;
  3015. strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
  3016. KSYM_NAME_LEN);
  3017. strlcpy(module_name, mod->name, MODULE_NAME_LEN);
  3018. *exported = is_exported(name, *value, mod);
  3019. preempt_enable();
  3020. return 0;
  3021. }
  3022. symnum -= mod->num_symtab;
  3023. }
  3024. preempt_enable();
  3025. return -ERANGE;
  3026. }
  3027. static unsigned long mod_find_symname(struct module *mod, const char *name)
  3028. {
  3029. unsigned int i;
  3030. for (i = 0; i < mod->num_symtab; i++)
  3031. if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
  3032. mod->symtab[i].st_info != 'U')
  3033. return mod->symtab[i].st_value;
  3034. return 0;
  3035. }
  3036. /* Look for this name: can be of form module:name. */
  3037. unsigned long module_kallsyms_lookup_name(const char *name)
  3038. {
  3039. struct module *mod;
  3040. char *colon;
  3041. unsigned long ret = 0;
  3042. /* Don't lock: we're in enough trouble already. */
  3043. preempt_disable();
  3044. if ((colon = strchr(name, ':')) != NULL) {
  3045. if ((mod = find_module_all(name, colon - name, false)) != NULL)
  3046. ret = mod_find_symname(mod, colon+1);
  3047. } else {
  3048. list_for_each_entry_rcu(mod, &modules, list) {
  3049. if (mod->state == MODULE_STATE_UNFORMED)
  3050. continue;
  3051. if ((ret = mod_find_symname(mod, name)) != 0)
  3052. break;
  3053. }
  3054. }
  3055. preempt_enable();
  3056. return ret;
  3057. }
  3058. int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
  3059. struct module *, unsigned long),
  3060. void *data)
  3061. {
  3062. struct module *mod;
  3063. unsigned int i;
  3064. int ret;
  3065. list_for_each_entry(mod, &modules, list) {
  3066. if (mod->state == MODULE_STATE_UNFORMED)
  3067. continue;
  3068. for (i = 0; i < mod->num_symtab; i++) {
  3069. ret = fn(data, mod->strtab + mod->symtab[i].st_name,
  3070. mod, mod->symtab[i].st_value);
  3071. if (ret != 0)
  3072. return ret;
  3073. }
  3074. }
  3075. return 0;
  3076. }
  3077. #endif /* CONFIG_KALLSYMS */
  3078. static char *module_flags(struct module *mod, char *buf)
  3079. {
  3080. int bx = 0;
  3081. BUG_ON(mod->state == MODULE_STATE_UNFORMED);
  3082. if (mod->taints ||
  3083. mod->state == MODULE_STATE_GOING ||
  3084. mod->state == MODULE_STATE_COMING) {
  3085. buf[bx++] = '(';
  3086. bx += module_flags_taint(mod, buf + bx);
  3087. /* Show a - for module-is-being-unloaded */
  3088. if (mod->state == MODULE_STATE_GOING)
  3089. buf[bx++] = '-';
  3090. /* Show a + for module-is-being-loaded */
  3091. if (mod->state == MODULE_STATE_COMING)
  3092. buf[bx++] = '+';
  3093. buf[bx++] = ')';
  3094. }
  3095. buf[bx] = '\0';
  3096. return buf;
  3097. }
  3098. #ifdef CONFIG_PROC_FS
  3099. /* Called by the /proc file system to return a list of modules. */
  3100. static void *m_start(struct seq_file *m, loff_t *pos)
  3101. {
  3102. mutex_lock(&module_mutex);
  3103. return seq_list_start(&modules, *pos);
  3104. }
  3105. static void *m_next(struct seq_file *m, void *p, loff_t *pos)
  3106. {
  3107. return seq_list_next(p, &modules, pos);
  3108. }
  3109. static void m_stop(struct seq_file *m, void *p)
  3110. {
  3111. mutex_unlock(&module_mutex);
  3112. }
  3113. static int m_show(struct seq_file *m, void *p)
  3114. {
  3115. struct module *mod = list_entry(p, struct module, list);
  3116. char buf[8];
  3117. /* We always ignore unformed modules. */
  3118. if (mod->state == MODULE_STATE_UNFORMED)
  3119. return 0;
  3120. seq_printf(m, "%s %u",
  3121. mod->name, mod->init_size + mod->core_size);
  3122. print_unload_info(m, mod);
  3123. /* Informative for users. */
  3124. seq_printf(m, " %s",
  3125. mod->state == MODULE_STATE_GOING ? "Unloading":
  3126. mod->state == MODULE_STATE_COMING ? "Loading":
  3127. "Live");
  3128. /* Used by oprofile and other similar tools. */
  3129. seq_printf(m, " 0x%pK", mod->module_core);
  3130. /* Taints info */
  3131. if (mod->taints)
  3132. seq_printf(m, " %s", module_flags(mod, buf));
  3133. seq_printf(m, "\n");
  3134. return 0;
  3135. }
  3136. /* Format: modulename size refcount deps address
  3137. Where refcount is a number or -, and deps is a comma-separated list
  3138. of depends or -.
  3139. */
  3140. static const struct seq_operations modules_op = {
  3141. .start = m_start,
  3142. .next = m_next,
  3143. .stop = m_stop,
  3144. .show = m_show
  3145. };
  3146. static int modules_open(struct inode *inode, struct file *file)
  3147. {
  3148. return seq_open(file, &modules_op);
  3149. }
  3150. static const struct file_operations proc_modules_operations = {
  3151. .open = modules_open,
  3152. .read = seq_read,
  3153. .llseek = seq_lseek,
  3154. .release = seq_release,
  3155. };
  3156. static int __init proc_modules_init(void)
  3157. {
  3158. proc_create("modules", 0, NULL, &proc_modules_operations);
  3159. return 0;
  3160. }
  3161. module_init(proc_modules_init);
  3162. #endif
  3163. /* Given an address, look for it in the module exception tables. */
  3164. const struct exception_table_entry *search_module_extables(unsigned long addr)
  3165. {
  3166. const struct exception_table_entry *e = NULL;
  3167. struct module *mod;
  3168. preempt_disable();
  3169. list_for_each_entry_rcu(mod, &modules, list) {
  3170. if (mod->state == MODULE_STATE_UNFORMED)
  3171. continue;
  3172. if (mod->num_exentries == 0)
  3173. continue;
  3174. e = search_extable(mod->extable,
  3175. mod->extable + mod->num_exentries - 1,
  3176. addr);
  3177. if (e)
  3178. break;
  3179. }
  3180. preempt_enable();
  3181. /* Now, if we found one, we are running inside it now, hence
  3182. we cannot unload the module, hence no refcnt needed. */
  3183. return e;
  3184. }
  3185. /*
  3186. * is_module_address - is this address inside a module?
  3187. * @addr: the address to check.
  3188. *
  3189. * See is_module_text_address() if you simply want to see if the address
  3190. * is code (not data).
  3191. */
  3192. bool is_module_address(unsigned long addr)
  3193. {
  3194. bool ret;
  3195. preempt_disable();
  3196. ret = __module_address(addr) != NULL;
  3197. preempt_enable();
  3198. return ret;
  3199. }
  3200. /*
  3201. * __module_address - get the module which contains an address.
  3202. * @addr: the address.
  3203. *
  3204. * Must be called with preempt disabled or module mutex held so that
  3205. * module doesn't get freed during this.
  3206. */
  3207. struct module *__module_address(unsigned long addr)
  3208. {
  3209. struct module *mod;
  3210. if (addr < module_addr_min || addr > module_addr_max)
  3211. return NULL;
  3212. list_for_each_entry_rcu(mod, &modules, list) {
  3213. if (mod->state == MODULE_STATE_UNFORMED)
  3214. continue;
  3215. if (within_module_core(addr, mod)
  3216. || within_module_init(addr, mod))
  3217. return mod;
  3218. }
  3219. return NULL;
  3220. }
  3221. EXPORT_SYMBOL_GPL(__module_address);
  3222. /*
  3223. * is_module_text_address - is this address inside module code?
  3224. * @addr: the address to check.
  3225. *
  3226. * See is_module_address() if you simply want to see if the address is
  3227. * anywhere in a module. See kernel_text_address() for testing if an
  3228. * address corresponds to kernel or module code.
  3229. */
  3230. bool is_module_text_address(unsigned long addr)
  3231. {
  3232. bool ret;
  3233. preempt_disable();
  3234. ret = __module_text_address(addr) != NULL;
  3235. preempt_enable();
  3236. return ret;
  3237. }
  3238. /*
  3239. * __module_text_address - get the module whose code contains an address.
  3240. * @addr: the address.
  3241. *
  3242. * Must be called with preempt disabled or module mutex held so that
  3243. * module doesn't get freed during this.
  3244. */
  3245. struct module *__module_text_address(unsigned long addr)
  3246. {
  3247. struct module *mod = __module_address(addr);
  3248. if (mod) {
  3249. /* Make sure it's within the text section. */
  3250. if (!within(addr, mod->module_init, mod->init_text_size)
  3251. && !within(addr, mod->module_core, mod->core_text_size))
  3252. mod = NULL;
  3253. }
  3254. return mod;
  3255. }
  3256. EXPORT_SYMBOL_GPL(__module_text_address);
  3257. /* Don't grab lock, we're oopsing. */
  3258. void print_modules(void)
  3259. {
  3260. struct module *mod;
  3261. char buf[8];
  3262. printk(KERN_DEFAULT "Modules linked in:");
  3263. /* Most callers should already have preempt disabled, but make sure */
  3264. preempt_disable();
  3265. list_for_each_entry_rcu(mod, &modules, list) {
  3266. if (mod->state == MODULE_STATE_UNFORMED)
  3267. continue;
  3268. pr_cont(" %s%s", mod->name, module_flags(mod, buf));
  3269. }
  3270. preempt_enable();
  3271. if (last_unloaded_module[0])
  3272. pr_cont(" [last unloaded: %s]", last_unloaded_module);
  3273. pr_cont("\n");
  3274. }
  3275. #ifdef CONFIG_MODVERSIONS
  3276. /* Generate the signature for all relevant module structures here.
  3277. * If these change, we don't want to try to parse the module. */
  3278. void module_layout(struct module *mod,
  3279. struct modversion_info *ver,
  3280. struct kernel_param *kp,
  3281. struct kernel_symbol *ks,
  3282. struct tracepoint * const *tp)
  3283. {
  3284. }
  3285. EXPORT_SYMBOL(module_layout);
  3286. #endif