module.c 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087
  1. /*
  2. Copyright (C) 2002 Richard Henderson
  3. Copyright (C) 2001 Rusty Russell, 2002 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/module.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/fs.h>
  22. #include <linux/sysfs.h>
  23. #include <linux/kernel.h>
  24. #include <linux/slab.h>
  25. #include <linux/vmalloc.h>
  26. #include <linux/elf.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/seq_file.h>
  29. #include <linux/syscalls.h>
  30. #include <linux/fcntl.h>
  31. #include <linux/rcupdate.h>
  32. #include <linux/capability.h>
  33. #include <linux/cpu.h>
  34. #include <linux/moduleparam.h>
  35. #include <linux/errno.h>
  36. #include <linux/err.h>
  37. #include <linux/vermagic.h>
  38. #include <linux/notifier.h>
  39. #include <linux/sched.h>
  40. #include <linux/stop_machine.h>
  41. #include <linux/device.h>
  42. #include <linux/string.h>
  43. #include <linux/mutex.h>
  44. #include <linux/rculist.h>
  45. #include <asm/uaccess.h>
  46. #include <asm/cacheflush.h>
  47. #include <asm/mmu_context.h>
  48. #include <linux/license.h>
  49. #include <asm/sections.h>
  50. #include <linux/tracepoint.h>
  51. #include <linux/ftrace.h>
  52. #include <linux/async.h>
  53. #include <linux/percpu.h>
  54. #include <linux/kmemleak.h>
  55. #define CREATE_TRACE_POINTS
  56. #include <trace/events/module.h>
  57. #if 0
  58. #define DEBUGP printk
  59. #else
  60. #define DEBUGP(fmt , a...)
  61. #endif
  62. #ifndef ARCH_SHF_SMALL
  63. #define ARCH_SHF_SMALL 0
  64. #endif
  65. /* If this is set, the section belongs in the init part of the module */
  66. #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
  67. /* List of modules, protected by module_mutex or preempt_disable
  68. * (delete uses stop_machine/add uses RCU list operations). */
  69. DEFINE_MUTEX(module_mutex);
  70. EXPORT_SYMBOL_GPL(module_mutex);
  71. static LIST_HEAD(modules);
  72. #ifdef CONFIG_KGDB_KDB
  73. struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
  74. #endif /* CONFIG_KGDB_KDB */
  75. /* Block module loading/unloading? */
  76. int modules_disabled = 0;
  77. /* Waiting for a module to finish initializing? */
  78. static DECLARE_WAIT_QUEUE_HEAD(module_wq);
  79. static BLOCKING_NOTIFIER_HEAD(module_notify_list);
  80. /* Bounds of module allocation, for speeding __module_address */
  81. static unsigned long module_addr_min = -1UL, module_addr_max = 0;
  82. int register_module_notifier(struct notifier_block * nb)
  83. {
  84. return blocking_notifier_chain_register(&module_notify_list, nb);
  85. }
  86. EXPORT_SYMBOL(register_module_notifier);
  87. int unregister_module_notifier(struct notifier_block * nb)
  88. {
  89. return blocking_notifier_chain_unregister(&module_notify_list, nb);
  90. }
  91. EXPORT_SYMBOL(unregister_module_notifier);
  92. /* We require a truly strong try_module_get(): 0 means failure due to
  93. ongoing or failed initialization etc. */
  94. static inline int strong_try_module_get(struct module *mod)
  95. {
  96. if (mod && mod->state == MODULE_STATE_COMING)
  97. return -EBUSY;
  98. if (try_module_get(mod))
  99. return 0;
  100. else
  101. return -ENOENT;
  102. }
  103. static inline void add_taint_module(struct module *mod, unsigned flag)
  104. {
  105. add_taint(flag);
  106. mod->taints |= (1U << flag);
  107. }
  108. /*
  109. * A thread that wants to hold a reference to a module only while it
  110. * is running can call this to safely exit. nfsd and lockd use this.
  111. */
  112. void __module_put_and_exit(struct module *mod, long code)
  113. {
  114. module_put(mod);
  115. do_exit(code);
  116. }
  117. EXPORT_SYMBOL(__module_put_and_exit);
  118. /* Find a module section: 0 means not found. */
  119. static unsigned int find_sec(Elf_Ehdr *hdr,
  120. Elf_Shdr *sechdrs,
  121. const char *secstrings,
  122. const char *name)
  123. {
  124. unsigned int i;
  125. for (i = 1; i < hdr->e_shnum; i++)
  126. /* Alloc bit cleared means "ignore it." */
  127. if ((sechdrs[i].sh_flags & SHF_ALLOC)
  128. && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
  129. return i;
  130. return 0;
  131. }
  132. /* Find a module section, or NULL. */
  133. static void *section_addr(Elf_Ehdr *hdr, Elf_Shdr *shdrs,
  134. const char *secstrings, const char *name)
  135. {
  136. /* Section 0 has sh_addr 0. */
  137. return (void *)shdrs[find_sec(hdr, shdrs, secstrings, name)].sh_addr;
  138. }
  139. /* Find a module section, or NULL. Fill in number of "objects" in section. */
  140. static void *section_objs(Elf_Ehdr *hdr,
  141. Elf_Shdr *sechdrs,
  142. const char *secstrings,
  143. const char *name,
  144. size_t object_size,
  145. unsigned int *num)
  146. {
  147. unsigned int sec = find_sec(hdr, sechdrs, secstrings, name);
  148. /* Section 0 has sh_addr 0 and sh_size 0. */
  149. *num = sechdrs[sec].sh_size / object_size;
  150. return (void *)sechdrs[sec].sh_addr;
  151. }
  152. /* Provided by the linker */
  153. extern const struct kernel_symbol __start___ksymtab[];
  154. extern const struct kernel_symbol __stop___ksymtab[];
  155. extern const struct kernel_symbol __start___ksymtab_gpl[];
  156. extern const struct kernel_symbol __stop___ksymtab_gpl[];
  157. extern const struct kernel_symbol __start___ksymtab_gpl_future[];
  158. extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
  159. extern const unsigned long __start___kcrctab[];
  160. extern const unsigned long __start___kcrctab_gpl[];
  161. extern const unsigned long __start___kcrctab_gpl_future[];
  162. #ifdef CONFIG_UNUSED_SYMBOLS
  163. extern const struct kernel_symbol __start___ksymtab_unused[];
  164. extern const struct kernel_symbol __stop___ksymtab_unused[];
  165. extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
  166. extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
  167. extern const unsigned long __start___kcrctab_unused[];
  168. extern const unsigned long __start___kcrctab_unused_gpl[];
  169. #endif
  170. #ifndef CONFIG_MODVERSIONS
  171. #define symversion(base, idx) NULL
  172. #else
  173. #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
  174. #endif
  175. static bool each_symbol_in_section(const struct symsearch *arr,
  176. unsigned int arrsize,
  177. struct module *owner,
  178. bool (*fn)(const struct symsearch *syms,
  179. struct module *owner,
  180. unsigned int symnum, void *data),
  181. void *data)
  182. {
  183. unsigned int i, j;
  184. for (j = 0; j < arrsize; j++) {
  185. for (i = 0; i < arr[j].stop - arr[j].start; i++)
  186. if (fn(&arr[j], owner, i, data))
  187. return true;
  188. }
  189. return false;
  190. }
  191. /* Returns true as soon as fn returns true, otherwise false. */
  192. bool each_symbol(bool (*fn)(const struct symsearch *arr, struct module *owner,
  193. unsigned int symnum, void *data), void *data)
  194. {
  195. struct module *mod;
  196. const struct symsearch arr[] = {
  197. { __start___ksymtab, __stop___ksymtab, __start___kcrctab,
  198. NOT_GPL_ONLY, false },
  199. { __start___ksymtab_gpl, __stop___ksymtab_gpl,
  200. __start___kcrctab_gpl,
  201. GPL_ONLY, false },
  202. { __start___ksymtab_gpl_future, __stop___ksymtab_gpl_future,
  203. __start___kcrctab_gpl_future,
  204. WILL_BE_GPL_ONLY, false },
  205. #ifdef CONFIG_UNUSED_SYMBOLS
  206. { __start___ksymtab_unused, __stop___ksymtab_unused,
  207. __start___kcrctab_unused,
  208. NOT_GPL_ONLY, true },
  209. { __start___ksymtab_unused_gpl, __stop___ksymtab_unused_gpl,
  210. __start___kcrctab_unused_gpl,
  211. GPL_ONLY, true },
  212. #endif
  213. };
  214. if (each_symbol_in_section(arr, ARRAY_SIZE(arr), NULL, fn, data))
  215. return true;
  216. list_for_each_entry_rcu(mod, &modules, list) {
  217. struct symsearch arr[] = {
  218. { mod->syms, mod->syms + mod->num_syms, mod->crcs,
  219. NOT_GPL_ONLY, false },
  220. { mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
  221. mod->gpl_crcs,
  222. GPL_ONLY, false },
  223. { mod->gpl_future_syms,
  224. mod->gpl_future_syms + mod->num_gpl_future_syms,
  225. mod->gpl_future_crcs,
  226. WILL_BE_GPL_ONLY, false },
  227. #ifdef CONFIG_UNUSED_SYMBOLS
  228. { mod->unused_syms,
  229. mod->unused_syms + mod->num_unused_syms,
  230. mod->unused_crcs,
  231. NOT_GPL_ONLY, true },
  232. { mod->unused_gpl_syms,
  233. mod->unused_gpl_syms + mod->num_unused_gpl_syms,
  234. mod->unused_gpl_crcs,
  235. GPL_ONLY, true },
  236. #endif
  237. };
  238. if (each_symbol_in_section(arr, ARRAY_SIZE(arr), mod, fn, data))
  239. return true;
  240. }
  241. return false;
  242. }
  243. EXPORT_SYMBOL_GPL(each_symbol);
  244. struct find_symbol_arg {
  245. /* Input */
  246. const char *name;
  247. bool gplok;
  248. bool warn;
  249. /* Output */
  250. struct module *owner;
  251. const unsigned long *crc;
  252. const struct kernel_symbol *sym;
  253. };
  254. static bool find_symbol_in_section(const struct symsearch *syms,
  255. struct module *owner,
  256. unsigned int symnum, void *data)
  257. {
  258. struct find_symbol_arg *fsa = data;
  259. if (strcmp(syms->start[symnum].name, fsa->name) != 0)
  260. return false;
  261. if (!fsa->gplok) {
  262. if (syms->licence == GPL_ONLY)
  263. return false;
  264. if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) {
  265. printk(KERN_WARNING "Symbol %s is being used "
  266. "by a non-GPL module, which will not "
  267. "be allowed in the future\n", fsa->name);
  268. printk(KERN_WARNING "Please see the file "
  269. "Documentation/feature-removal-schedule.txt "
  270. "in the kernel source tree for more details.\n");
  271. }
  272. }
  273. #ifdef CONFIG_UNUSED_SYMBOLS
  274. if (syms->unused && fsa->warn) {
  275. printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
  276. "however this module is using it.\n", fsa->name);
  277. printk(KERN_WARNING
  278. "This symbol will go away in the future.\n");
  279. printk(KERN_WARNING
  280. "Please evalute if this is the right api to use and if "
  281. "it really is, submit a report the linux kernel "
  282. "mailinglist together with submitting your code for "
  283. "inclusion.\n");
  284. }
  285. #endif
  286. fsa->owner = owner;
  287. fsa->crc = symversion(syms->crcs, symnum);
  288. fsa->sym = &syms->start[symnum];
  289. return true;
  290. }
  291. /* Find a symbol and return it, along with, (optional) crc and
  292. * (optional) module which owns it */
  293. const struct kernel_symbol *find_symbol(const char *name,
  294. struct module **owner,
  295. const unsigned long **crc,
  296. bool gplok,
  297. bool warn)
  298. {
  299. struct find_symbol_arg fsa;
  300. fsa.name = name;
  301. fsa.gplok = gplok;
  302. fsa.warn = warn;
  303. if (each_symbol(find_symbol_in_section, &fsa)) {
  304. if (owner)
  305. *owner = fsa.owner;
  306. if (crc)
  307. *crc = fsa.crc;
  308. return fsa.sym;
  309. }
  310. DEBUGP("Failed to find symbol %s\n", name);
  311. return NULL;
  312. }
  313. EXPORT_SYMBOL_GPL(find_symbol);
  314. /* Search for module by name: must hold module_mutex. */
  315. struct module *find_module(const char *name)
  316. {
  317. struct module *mod;
  318. list_for_each_entry(mod, &modules, list) {
  319. if (strcmp(mod->name, name) == 0)
  320. return mod;
  321. }
  322. return NULL;
  323. }
  324. EXPORT_SYMBOL_GPL(find_module);
  325. #ifdef CONFIG_SMP
  326. static inline void __percpu *mod_percpu(struct module *mod)
  327. {
  328. return mod->percpu;
  329. }
  330. static int percpu_modalloc(struct module *mod,
  331. unsigned long size, unsigned long align)
  332. {
  333. if (align > PAGE_SIZE) {
  334. printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
  335. mod->name, align, PAGE_SIZE);
  336. align = PAGE_SIZE;
  337. }
  338. mod->percpu = __alloc_reserved_percpu(size, align);
  339. if (!mod->percpu) {
  340. printk(KERN_WARNING
  341. "Could not allocate %lu bytes percpu data\n", size);
  342. return -ENOMEM;
  343. }
  344. mod->percpu_size = size;
  345. return 0;
  346. }
  347. static void percpu_modfree(struct module *mod)
  348. {
  349. free_percpu(mod->percpu);
  350. }
  351. static unsigned int find_pcpusec(Elf_Ehdr *hdr,
  352. Elf_Shdr *sechdrs,
  353. const char *secstrings)
  354. {
  355. return find_sec(hdr, sechdrs, secstrings, ".data..percpu");
  356. }
  357. static void percpu_modcopy(struct module *mod,
  358. const void *from, unsigned long size)
  359. {
  360. int cpu;
  361. for_each_possible_cpu(cpu)
  362. memcpy(per_cpu_ptr(mod->percpu, cpu), from, size);
  363. }
  364. /**
  365. * is_module_percpu_address - test whether address is from module static percpu
  366. * @addr: address to test
  367. *
  368. * Test whether @addr belongs to module static percpu area.
  369. *
  370. * RETURNS:
  371. * %true if @addr is from module static percpu area
  372. */
  373. bool is_module_percpu_address(unsigned long addr)
  374. {
  375. struct module *mod;
  376. unsigned int cpu;
  377. preempt_disable();
  378. list_for_each_entry_rcu(mod, &modules, list) {
  379. if (!mod->percpu_size)
  380. continue;
  381. for_each_possible_cpu(cpu) {
  382. void *start = per_cpu_ptr(mod->percpu, cpu);
  383. if ((void *)addr >= start &&
  384. (void *)addr < start + mod->percpu_size) {
  385. preempt_enable();
  386. return true;
  387. }
  388. }
  389. }
  390. preempt_enable();
  391. return false;
  392. }
  393. #else /* ... !CONFIG_SMP */
  394. static inline void __percpu *mod_percpu(struct module *mod)
  395. {
  396. return NULL;
  397. }
  398. static inline int percpu_modalloc(struct module *mod,
  399. unsigned long size, unsigned long align)
  400. {
  401. return -ENOMEM;
  402. }
  403. static inline void percpu_modfree(struct module *mod)
  404. {
  405. }
  406. static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
  407. Elf_Shdr *sechdrs,
  408. const char *secstrings)
  409. {
  410. return 0;
  411. }
  412. static inline void percpu_modcopy(struct module *mod,
  413. const void *from, unsigned long size)
  414. {
  415. /* pcpusec should be 0, and size of that section should be 0. */
  416. BUG_ON(size != 0);
  417. }
  418. bool is_module_percpu_address(unsigned long addr)
  419. {
  420. return false;
  421. }
  422. #endif /* CONFIG_SMP */
  423. #define MODINFO_ATTR(field) \
  424. static void setup_modinfo_##field(struct module *mod, const char *s) \
  425. { \
  426. mod->field = kstrdup(s, GFP_KERNEL); \
  427. } \
  428. static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
  429. struct module *mod, char *buffer) \
  430. { \
  431. return sprintf(buffer, "%s\n", mod->field); \
  432. } \
  433. static int modinfo_##field##_exists(struct module *mod) \
  434. { \
  435. return mod->field != NULL; \
  436. } \
  437. static void free_modinfo_##field(struct module *mod) \
  438. { \
  439. kfree(mod->field); \
  440. mod->field = NULL; \
  441. } \
  442. static struct module_attribute modinfo_##field = { \
  443. .attr = { .name = __stringify(field), .mode = 0444 }, \
  444. .show = show_modinfo_##field, \
  445. .setup = setup_modinfo_##field, \
  446. .test = modinfo_##field##_exists, \
  447. .free = free_modinfo_##field, \
  448. };
  449. MODINFO_ATTR(version);
  450. MODINFO_ATTR(srcversion);
  451. static char last_unloaded_module[MODULE_NAME_LEN+1];
  452. #ifdef CONFIG_MODULE_UNLOAD
  453. EXPORT_TRACEPOINT_SYMBOL(module_get);
  454. /* Init the unload section of the module. */
  455. static void module_unload_init(struct module *mod)
  456. {
  457. int cpu;
  458. INIT_LIST_HEAD(&mod->source_list);
  459. INIT_LIST_HEAD(&mod->target_list);
  460. for_each_possible_cpu(cpu) {
  461. per_cpu_ptr(mod->refptr, cpu)->incs = 0;
  462. per_cpu_ptr(mod->refptr, cpu)->decs = 0;
  463. }
  464. /* Hold reference count during initialization. */
  465. __this_cpu_write(mod->refptr->incs, 1);
  466. /* Backwards compatibility macros put refcount during init. */
  467. mod->waiter = current;
  468. }
  469. /* Does a already use b? */
  470. static int already_uses(struct module *a, struct module *b)
  471. {
  472. struct module_use *use;
  473. list_for_each_entry(use, &b->source_list, source_list) {
  474. if (use->source == a) {
  475. DEBUGP("%s uses %s!\n", a->name, b->name);
  476. return 1;
  477. }
  478. }
  479. DEBUGP("%s does not use %s!\n", a->name, b->name);
  480. return 0;
  481. }
  482. /*
  483. * Module a uses b
  484. * - we add 'a' as a "source", 'b' as a "target" of module use
  485. * - the module_use is added to the list of 'b' sources (so
  486. * 'b' can walk the list to see who sourced them), and of 'a'
  487. * targets (so 'a' can see what modules it targets).
  488. */
  489. static int add_module_usage(struct module *a, struct module *b)
  490. {
  491. int no_warn;
  492. struct module_use *use;
  493. DEBUGP("Allocating new usage for %s.\n", a->name);
  494. use = kmalloc(sizeof(*use), GFP_ATOMIC);
  495. if (!use) {
  496. printk(KERN_WARNING "%s: out of memory loading\n", a->name);
  497. return -ENOMEM;
  498. }
  499. use->source = a;
  500. use->target = b;
  501. list_add(&use->source_list, &b->source_list);
  502. list_add(&use->target_list, &a->target_list);
  503. no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
  504. return 0;
  505. }
  506. /* Module a uses b */
  507. int use_module(struct module *a, struct module *b)
  508. {
  509. int err;
  510. if (b == NULL || already_uses(a, b)) return 1;
  511. /* If we're interrupted or time out, we fail. */
  512. if (wait_event_interruptible_timeout(
  513. module_wq, (err = strong_try_module_get(b)) != -EBUSY,
  514. 30 * HZ) <= 0) {
  515. printk("%s: gave up waiting for init of module %s.\n",
  516. a->name, b->name);
  517. return 0;
  518. }
  519. /* If strong_try_module_get() returned a different error, we fail. */
  520. if (err)
  521. return 0;
  522. err = add_module_usage(a, b);
  523. if (err) {
  524. module_put(b);
  525. return 0;
  526. }
  527. return 1;
  528. }
  529. EXPORT_SYMBOL_GPL(use_module);
  530. /* Clear the unload stuff of the module. */
  531. static void module_unload_free(struct module *mod)
  532. {
  533. struct module_use *use, *tmp;
  534. list_for_each_entry_safe(use, tmp, &mod->target_list, target_list) {
  535. struct module *i = use->target;
  536. DEBUGP("%s unusing %s\n", mod->name, i->name);
  537. module_put(i);
  538. list_del(&use->source_list);
  539. list_del(&use->target_list);
  540. kfree(use);
  541. sysfs_remove_link(i->holders_dir, mod->name);
  542. }
  543. }
  544. #ifdef CONFIG_MODULE_FORCE_UNLOAD
  545. static inline int try_force_unload(unsigned int flags)
  546. {
  547. int ret = (flags & O_TRUNC);
  548. if (ret)
  549. add_taint(TAINT_FORCED_RMMOD);
  550. return ret;
  551. }
  552. #else
  553. static inline int try_force_unload(unsigned int flags)
  554. {
  555. return 0;
  556. }
  557. #endif /* CONFIG_MODULE_FORCE_UNLOAD */
  558. struct stopref
  559. {
  560. struct module *mod;
  561. int flags;
  562. int *forced;
  563. };
  564. /* Whole machine is stopped with interrupts off when this runs. */
  565. static int __try_stop_module(void *_sref)
  566. {
  567. struct stopref *sref = _sref;
  568. /* If it's not unused, quit unless we're forcing. */
  569. if (module_refcount(sref->mod) != 0) {
  570. if (!(*sref->forced = try_force_unload(sref->flags)))
  571. return -EWOULDBLOCK;
  572. }
  573. /* Mark it as dying. */
  574. sref->mod->state = MODULE_STATE_GOING;
  575. return 0;
  576. }
  577. static int try_stop_module(struct module *mod, int flags, int *forced)
  578. {
  579. if (flags & O_NONBLOCK) {
  580. struct stopref sref = { mod, flags, forced };
  581. return stop_machine(__try_stop_module, &sref, NULL);
  582. } else {
  583. /* We don't need to stop the machine for this. */
  584. mod->state = MODULE_STATE_GOING;
  585. synchronize_sched();
  586. return 0;
  587. }
  588. }
  589. unsigned int module_refcount(struct module *mod)
  590. {
  591. unsigned int incs = 0, decs = 0;
  592. int cpu;
  593. for_each_possible_cpu(cpu)
  594. decs += per_cpu_ptr(mod->refptr, cpu)->decs;
  595. /*
  596. * ensure the incs are added up after the decs.
  597. * module_put ensures incs are visible before decs with smp_wmb.
  598. *
  599. * This 2-count scheme avoids the situation where the refcount
  600. * for CPU0 is read, then CPU0 increments the module refcount,
  601. * then CPU1 drops that refcount, then the refcount for CPU1 is
  602. * read. We would record a decrement but not its corresponding
  603. * increment so we would see a low count (disaster).
  604. *
  605. * Rare situation? But module_refcount can be preempted, and we
  606. * might be tallying up 4096+ CPUs. So it is not impossible.
  607. */
  608. smp_rmb();
  609. for_each_possible_cpu(cpu)
  610. incs += per_cpu_ptr(mod->refptr, cpu)->incs;
  611. return incs - decs;
  612. }
  613. EXPORT_SYMBOL(module_refcount);
  614. /* This exists whether we can unload or not */
  615. static void free_module(struct module *mod);
  616. static void wait_for_zero_refcount(struct module *mod)
  617. {
  618. /* Since we might sleep for some time, release the mutex first */
  619. mutex_unlock(&module_mutex);
  620. for (;;) {
  621. DEBUGP("Looking at refcount...\n");
  622. set_current_state(TASK_UNINTERRUPTIBLE);
  623. if (module_refcount(mod) == 0)
  624. break;
  625. schedule();
  626. }
  627. current->state = TASK_RUNNING;
  628. mutex_lock(&module_mutex);
  629. }
  630. SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
  631. unsigned int, flags)
  632. {
  633. struct module *mod;
  634. char name[MODULE_NAME_LEN];
  635. int ret, forced = 0;
  636. if (!capable(CAP_SYS_MODULE) || modules_disabled)
  637. return -EPERM;
  638. if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
  639. return -EFAULT;
  640. name[MODULE_NAME_LEN-1] = '\0';
  641. if (mutex_lock_interruptible(&module_mutex) != 0)
  642. return -EINTR;
  643. mod = find_module(name);
  644. if (!mod) {
  645. ret = -ENOENT;
  646. goto out;
  647. }
  648. if (!list_empty(&mod->source_list)) {
  649. /* Other modules depend on us: get rid of them first. */
  650. ret = -EWOULDBLOCK;
  651. goto out;
  652. }
  653. /* Doing init or already dying? */
  654. if (mod->state != MODULE_STATE_LIVE) {
  655. /* FIXME: if (force), slam module count and wake up
  656. waiter --RR */
  657. DEBUGP("%s already dying\n", mod->name);
  658. ret = -EBUSY;
  659. goto out;
  660. }
  661. /* If it has an init func, it must have an exit func to unload */
  662. if (mod->init && !mod->exit) {
  663. forced = try_force_unload(flags);
  664. if (!forced) {
  665. /* This module can't be removed */
  666. ret = -EBUSY;
  667. goto out;
  668. }
  669. }
  670. /* Set this up before setting mod->state */
  671. mod->waiter = current;
  672. /* Stop the machine so refcounts can't move and disable module. */
  673. ret = try_stop_module(mod, flags, &forced);
  674. if (ret != 0)
  675. goto out;
  676. /* Never wait if forced. */
  677. if (!forced && module_refcount(mod) != 0)
  678. wait_for_zero_refcount(mod);
  679. mutex_unlock(&module_mutex);
  680. /* Final destruction now noone is using it. */
  681. if (mod->exit != NULL)
  682. mod->exit();
  683. blocking_notifier_call_chain(&module_notify_list,
  684. MODULE_STATE_GOING, mod);
  685. async_synchronize_full();
  686. mutex_lock(&module_mutex);
  687. /* Store the name of the last unloaded module for diagnostic purposes */
  688. strlcpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
  689. ddebug_remove_module(mod->name);
  690. free_module(mod);
  691. out:
  692. mutex_unlock(&module_mutex);
  693. return ret;
  694. }
  695. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  696. {
  697. struct module_use *use;
  698. int printed_something = 0;
  699. seq_printf(m, " %u ", module_refcount(mod));
  700. /* Always include a trailing , so userspace can differentiate
  701. between this and the old multi-field proc format. */
  702. list_for_each_entry(use, &mod->source_list, source_list) {
  703. printed_something = 1;
  704. seq_printf(m, "%s,", use->source->name);
  705. }
  706. if (mod->init != NULL && mod->exit == NULL) {
  707. printed_something = 1;
  708. seq_printf(m, "[permanent],");
  709. }
  710. if (!printed_something)
  711. seq_printf(m, "-");
  712. }
  713. void __symbol_put(const char *symbol)
  714. {
  715. struct module *owner;
  716. preempt_disable();
  717. if (!find_symbol(symbol, &owner, NULL, true, false))
  718. BUG();
  719. module_put(owner);
  720. preempt_enable();
  721. }
  722. EXPORT_SYMBOL(__symbol_put);
  723. /* Note this assumes addr is a function, which it currently always is. */
  724. void symbol_put_addr(void *addr)
  725. {
  726. struct module *modaddr;
  727. unsigned long a = (unsigned long)dereference_function_descriptor(addr);
  728. if (core_kernel_text(a))
  729. return;
  730. /* module_text_address is safe here: we're supposed to have reference
  731. * to module from symbol_get, so it can't go away. */
  732. modaddr = __module_text_address(a);
  733. BUG_ON(!modaddr);
  734. module_put(modaddr);
  735. }
  736. EXPORT_SYMBOL_GPL(symbol_put_addr);
  737. static ssize_t show_refcnt(struct module_attribute *mattr,
  738. struct module *mod, char *buffer)
  739. {
  740. return sprintf(buffer, "%u\n", module_refcount(mod));
  741. }
  742. static struct module_attribute refcnt = {
  743. .attr = { .name = "refcnt", .mode = 0444 },
  744. .show = show_refcnt,
  745. };
  746. void module_put(struct module *module)
  747. {
  748. if (module) {
  749. preempt_disable();
  750. smp_wmb(); /* see comment in module_refcount */
  751. __this_cpu_inc(module->refptr->decs);
  752. trace_module_put(module, _RET_IP_);
  753. /* Maybe they're waiting for us to drop reference? */
  754. if (unlikely(!module_is_live(module)))
  755. wake_up_process(module->waiter);
  756. preempt_enable();
  757. }
  758. }
  759. EXPORT_SYMBOL(module_put);
  760. #else /* !CONFIG_MODULE_UNLOAD */
  761. static inline void print_unload_info(struct seq_file *m, struct module *mod)
  762. {
  763. /* We don't know the usage count, or what modules are using. */
  764. seq_printf(m, " - -");
  765. }
  766. static inline void module_unload_free(struct module *mod)
  767. {
  768. }
  769. int use_module(struct module *a, struct module *b)
  770. {
  771. return strong_try_module_get(b) == 0;
  772. }
  773. EXPORT_SYMBOL_GPL(use_module);
  774. static inline void module_unload_init(struct module *mod)
  775. {
  776. }
  777. #endif /* CONFIG_MODULE_UNLOAD */
  778. static ssize_t show_initstate(struct module_attribute *mattr,
  779. struct module *mod, char *buffer)
  780. {
  781. const char *state = "unknown";
  782. switch (mod->state) {
  783. case MODULE_STATE_LIVE:
  784. state = "live";
  785. break;
  786. case MODULE_STATE_COMING:
  787. state = "coming";
  788. break;
  789. case MODULE_STATE_GOING:
  790. state = "going";
  791. break;
  792. }
  793. return sprintf(buffer, "%s\n", state);
  794. }
  795. static struct module_attribute initstate = {
  796. .attr = { .name = "initstate", .mode = 0444 },
  797. .show = show_initstate,
  798. };
  799. static struct module_attribute *modinfo_attrs[] = {
  800. &modinfo_version,
  801. &modinfo_srcversion,
  802. &initstate,
  803. #ifdef CONFIG_MODULE_UNLOAD
  804. &refcnt,
  805. #endif
  806. NULL,
  807. };
  808. static const char vermagic[] = VERMAGIC_STRING;
  809. static int try_to_force_load(struct module *mod, const char *reason)
  810. {
  811. #ifdef CONFIG_MODULE_FORCE_LOAD
  812. if (!test_taint(TAINT_FORCED_MODULE))
  813. printk(KERN_WARNING "%s: %s: kernel tainted.\n",
  814. mod->name, reason);
  815. add_taint_module(mod, TAINT_FORCED_MODULE);
  816. return 0;
  817. #else
  818. return -ENOEXEC;
  819. #endif
  820. }
  821. #ifdef CONFIG_MODVERSIONS
  822. /* If the arch applies (non-zero) relocations to kernel kcrctab, unapply it. */
  823. static unsigned long maybe_relocated(unsigned long crc,
  824. const struct module *crc_owner)
  825. {
  826. #ifdef ARCH_RELOCATES_KCRCTAB
  827. if (crc_owner == NULL)
  828. return crc - (unsigned long)reloc_start;
  829. #endif
  830. return crc;
  831. }
  832. static int check_version(Elf_Shdr *sechdrs,
  833. unsigned int versindex,
  834. const char *symname,
  835. struct module *mod,
  836. const unsigned long *crc,
  837. const struct module *crc_owner)
  838. {
  839. unsigned int i, num_versions;
  840. struct modversion_info *versions;
  841. /* Exporting module didn't supply crcs? OK, we're already tainted. */
  842. if (!crc)
  843. return 1;
  844. /* No versions at all? modprobe --force does this. */
  845. if (versindex == 0)
  846. return try_to_force_load(mod, symname) == 0;
  847. versions = (void *) sechdrs[versindex].sh_addr;
  848. num_versions = sechdrs[versindex].sh_size
  849. / sizeof(struct modversion_info);
  850. for (i = 0; i < num_versions; i++) {
  851. if (strcmp(versions[i].name, symname) != 0)
  852. continue;
  853. if (versions[i].crc == maybe_relocated(*crc, crc_owner))
  854. return 1;
  855. DEBUGP("Found checksum %lX vs module %lX\n",
  856. maybe_relocated(*crc, crc_owner), versions[i].crc);
  857. goto bad_version;
  858. }
  859. printk(KERN_WARNING "%s: no symbol version for %s\n",
  860. mod->name, symname);
  861. return 0;
  862. bad_version:
  863. printk("%s: disagrees about version of symbol %s\n",
  864. mod->name, symname);
  865. return 0;
  866. }
  867. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  868. unsigned int versindex,
  869. struct module *mod)
  870. {
  871. const unsigned long *crc;
  872. if (!find_symbol(MODULE_SYMBOL_PREFIX "module_layout", NULL,
  873. &crc, true, false))
  874. BUG();
  875. return check_version(sechdrs, versindex, "module_layout", mod, crc,
  876. NULL);
  877. }
  878. /* First part is kernel version, which we ignore if module has crcs. */
  879. static inline int same_magic(const char *amagic, const char *bmagic,
  880. bool has_crcs)
  881. {
  882. if (has_crcs) {
  883. amagic += strcspn(amagic, " ");
  884. bmagic += strcspn(bmagic, " ");
  885. }
  886. return strcmp(amagic, bmagic) == 0;
  887. }
  888. #else
  889. static inline int check_version(Elf_Shdr *sechdrs,
  890. unsigned int versindex,
  891. const char *symname,
  892. struct module *mod,
  893. const unsigned long *crc,
  894. const struct module *crc_owner)
  895. {
  896. return 1;
  897. }
  898. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  899. unsigned int versindex,
  900. struct module *mod)
  901. {
  902. return 1;
  903. }
  904. static inline int same_magic(const char *amagic, const char *bmagic,
  905. bool has_crcs)
  906. {
  907. return strcmp(amagic, bmagic) == 0;
  908. }
  909. #endif /* CONFIG_MODVERSIONS */
  910. /* Resolve a symbol for this module. I.e. if we find one, record usage.
  911. Must be holding module_mutex. */
  912. static const struct kernel_symbol *resolve_symbol(Elf_Shdr *sechdrs,
  913. unsigned int versindex,
  914. const char *name,
  915. struct module *mod)
  916. {
  917. struct module *owner;
  918. const struct kernel_symbol *sym;
  919. const unsigned long *crc;
  920. sym = find_symbol(name, &owner, &crc,
  921. !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true);
  922. /* use_module can fail due to OOM,
  923. or module initialization or unloading */
  924. if (sym) {
  925. if (!check_version(sechdrs, versindex, name, mod, crc, owner)
  926. || !use_module(mod, owner))
  927. sym = NULL;
  928. }
  929. return sym;
  930. }
  931. /*
  932. * /sys/module/foo/sections stuff
  933. * J. Corbet <corbet@lwn.net>
  934. */
  935. #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
  936. static inline bool sect_empty(const Elf_Shdr *sect)
  937. {
  938. return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
  939. }
  940. struct module_sect_attr
  941. {
  942. struct module_attribute mattr;
  943. char *name;
  944. unsigned long address;
  945. };
  946. struct module_sect_attrs
  947. {
  948. struct attribute_group grp;
  949. unsigned int nsections;
  950. struct module_sect_attr attrs[0];
  951. };
  952. static ssize_t module_sect_show(struct module_attribute *mattr,
  953. struct module *mod, char *buf)
  954. {
  955. struct module_sect_attr *sattr =
  956. container_of(mattr, struct module_sect_attr, mattr);
  957. return sprintf(buf, "0x%lx\n", sattr->address);
  958. }
  959. static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
  960. {
  961. unsigned int section;
  962. for (section = 0; section < sect_attrs->nsections; section++)
  963. kfree(sect_attrs->attrs[section].name);
  964. kfree(sect_attrs);
  965. }
  966. static void add_sect_attrs(struct module *mod, unsigned int nsect,
  967. char *secstrings, Elf_Shdr *sechdrs)
  968. {
  969. unsigned int nloaded = 0, i, size[2];
  970. struct module_sect_attrs *sect_attrs;
  971. struct module_sect_attr *sattr;
  972. struct attribute **gattr;
  973. /* Count loaded sections and allocate structures */
  974. for (i = 0; i < nsect; i++)
  975. if (!sect_empty(&sechdrs[i]))
  976. nloaded++;
  977. size[0] = ALIGN(sizeof(*sect_attrs)
  978. + nloaded * sizeof(sect_attrs->attrs[0]),
  979. sizeof(sect_attrs->grp.attrs[0]));
  980. size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
  981. sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
  982. if (sect_attrs == NULL)
  983. return;
  984. /* Setup section attributes. */
  985. sect_attrs->grp.name = "sections";
  986. sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
  987. sect_attrs->nsections = 0;
  988. sattr = &sect_attrs->attrs[0];
  989. gattr = &sect_attrs->grp.attrs[0];
  990. for (i = 0; i < nsect; i++) {
  991. if (sect_empty(&sechdrs[i]))
  992. continue;
  993. sattr->address = sechdrs[i].sh_addr;
  994. sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
  995. GFP_KERNEL);
  996. if (sattr->name == NULL)
  997. goto out;
  998. sect_attrs->nsections++;
  999. sysfs_attr_init(&sattr->mattr.attr);
  1000. sattr->mattr.show = module_sect_show;
  1001. sattr->mattr.store = NULL;
  1002. sattr->mattr.attr.name = sattr->name;
  1003. sattr->mattr.attr.mode = S_IRUGO;
  1004. *(gattr++) = &(sattr++)->mattr.attr;
  1005. }
  1006. *gattr = NULL;
  1007. if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
  1008. goto out;
  1009. mod->sect_attrs = sect_attrs;
  1010. return;
  1011. out:
  1012. free_sect_attrs(sect_attrs);
  1013. }
  1014. static void remove_sect_attrs(struct module *mod)
  1015. {
  1016. if (mod->sect_attrs) {
  1017. sysfs_remove_group(&mod->mkobj.kobj,
  1018. &mod->sect_attrs->grp);
  1019. /* We are positive that no one is using any sect attrs
  1020. * at this point. Deallocate immediately. */
  1021. free_sect_attrs(mod->sect_attrs);
  1022. mod->sect_attrs = NULL;
  1023. }
  1024. }
  1025. /*
  1026. * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
  1027. */
  1028. struct module_notes_attrs {
  1029. struct kobject *dir;
  1030. unsigned int notes;
  1031. struct bin_attribute attrs[0];
  1032. };
  1033. static ssize_t module_notes_read(struct file *filp, struct kobject *kobj,
  1034. struct bin_attribute *bin_attr,
  1035. char *buf, loff_t pos, size_t count)
  1036. {
  1037. /*
  1038. * The caller checked the pos and count against our size.
  1039. */
  1040. memcpy(buf, bin_attr->private + pos, count);
  1041. return count;
  1042. }
  1043. static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
  1044. unsigned int i)
  1045. {
  1046. if (notes_attrs->dir) {
  1047. while (i-- > 0)
  1048. sysfs_remove_bin_file(notes_attrs->dir,
  1049. &notes_attrs->attrs[i]);
  1050. kobject_put(notes_attrs->dir);
  1051. }
  1052. kfree(notes_attrs);
  1053. }
  1054. static void add_notes_attrs(struct module *mod, unsigned int nsect,
  1055. char *secstrings, Elf_Shdr *sechdrs)
  1056. {
  1057. unsigned int notes, loaded, i;
  1058. struct module_notes_attrs *notes_attrs;
  1059. struct bin_attribute *nattr;
  1060. /* failed to create section attributes, so can't create notes */
  1061. if (!mod->sect_attrs)
  1062. return;
  1063. /* Count notes sections and allocate structures. */
  1064. notes = 0;
  1065. for (i = 0; i < nsect; i++)
  1066. if (!sect_empty(&sechdrs[i]) &&
  1067. (sechdrs[i].sh_type == SHT_NOTE))
  1068. ++notes;
  1069. if (notes == 0)
  1070. return;
  1071. notes_attrs = kzalloc(sizeof(*notes_attrs)
  1072. + notes * sizeof(notes_attrs->attrs[0]),
  1073. GFP_KERNEL);
  1074. if (notes_attrs == NULL)
  1075. return;
  1076. notes_attrs->notes = notes;
  1077. nattr = &notes_attrs->attrs[0];
  1078. for (loaded = i = 0; i < nsect; ++i) {
  1079. if (sect_empty(&sechdrs[i]))
  1080. continue;
  1081. if (sechdrs[i].sh_type == SHT_NOTE) {
  1082. sysfs_bin_attr_init(nattr);
  1083. nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
  1084. nattr->attr.mode = S_IRUGO;
  1085. nattr->size = sechdrs[i].sh_size;
  1086. nattr->private = (void *) sechdrs[i].sh_addr;
  1087. nattr->read = module_notes_read;
  1088. ++nattr;
  1089. }
  1090. ++loaded;
  1091. }
  1092. notes_attrs->dir = kobject_create_and_add("notes", &mod->mkobj.kobj);
  1093. if (!notes_attrs->dir)
  1094. goto out;
  1095. for (i = 0; i < notes; ++i)
  1096. if (sysfs_create_bin_file(notes_attrs->dir,
  1097. &notes_attrs->attrs[i]))
  1098. goto out;
  1099. mod->notes_attrs = notes_attrs;
  1100. return;
  1101. out:
  1102. free_notes_attrs(notes_attrs, i);
  1103. }
  1104. static void remove_notes_attrs(struct module *mod)
  1105. {
  1106. if (mod->notes_attrs)
  1107. free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
  1108. }
  1109. #else
  1110. static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
  1111. char *sectstrings, Elf_Shdr *sechdrs)
  1112. {
  1113. }
  1114. static inline void remove_sect_attrs(struct module *mod)
  1115. {
  1116. }
  1117. static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
  1118. char *sectstrings, Elf_Shdr *sechdrs)
  1119. {
  1120. }
  1121. static inline void remove_notes_attrs(struct module *mod)
  1122. {
  1123. }
  1124. #endif
  1125. #ifdef CONFIG_SYSFS
  1126. int module_add_modinfo_attrs(struct module *mod)
  1127. {
  1128. struct module_attribute *attr;
  1129. struct module_attribute *temp_attr;
  1130. int error = 0;
  1131. int i;
  1132. mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
  1133. (ARRAY_SIZE(modinfo_attrs) + 1)),
  1134. GFP_KERNEL);
  1135. if (!mod->modinfo_attrs)
  1136. return -ENOMEM;
  1137. temp_attr = mod->modinfo_attrs;
  1138. for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
  1139. if (!attr->test ||
  1140. (attr->test && attr->test(mod))) {
  1141. memcpy(temp_attr, attr, sizeof(*temp_attr));
  1142. sysfs_attr_init(&temp_attr->attr);
  1143. error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
  1144. ++temp_attr;
  1145. }
  1146. }
  1147. return error;
  1148. }
  1149. void module_remove_modinfo_attrs(struct module *mod)
  1150. {
  1151. struct module_attribute *attr;
  1152. int i;
  1153. for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
  1154. /* pick a field to test for end of list */
  1155. if (!attr->attr.name)
  1156. break;
  1157. sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
  1158. if (attr->free)
  1159. attr->free(mod);
  1160. }
  1161. kfree(mod->modinfo_attrs);
  1162. }
  1163. int mod_sysfs_init(struct module *mod)
  1164. {
  1165. int err;
  1166. struct kobject *kobj;
  1167. if (!module_sysfs_initialized) {
  1168. printk(KERN_ERR "%s: module sysfs not initialized\n",
  1169. mod->name);
  1170. err = -EINVAL;
  1171. goto out;
  1172. }
  1173. kobj = kset_find_obj(module_kset, mod->name);
  1174. if (kobj) {
  1175. printk(KERN_ERR "%s: module is already loaded\n", mod->name);
  1176. kobject_put(kobj);
  1177. err = -EINVAL;
  1178. goto out;
  1179. }
  1180. mod->mkobj.mod = mod;
  1181. memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
  1182. mod->mkobj.kobj.kset = module_kset;
  1183. err = kobject_init_and_add(&mod->mkobj.kobj, &module_ktype, NULL,
  1184. "%s", mod->name);
  1185. if (err)
  1186. kobject_put(&mod->mkobj.kobj);
  1187. /* delay uevent until full sysfs population */
  1188. out:
  1189. return err;
  1190. }
  1191. int mod_sysfs_setup(struct module *mod,
  1192. struct kernel_param *kparam,
  1193. unsigned int num_params)
  1194. {
  1195. int err;
  1196. mod->holders_dir = kobject_create_and_add("holders", &mod->mkobj.kobj);
  1197. if (!mod->holders_dir) {
  1198. err = -ENOMEM;
  1199. goto out_unreg;
  1200. }
  1201. err = module_param_sysfs_setup(mod, kparam, num_params);
  1202. if (err)
  1203. goto out_unreg_holders;
  1204. err = module_add_modinfo_attrs(mod);
  1205. if (err)
  1206. goto out_unreg_param;
  1207. kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
  1208. return 0;
  1209. out_unreg_param:
  1210. module_param_sysfs_remove(mod);
  1211. out_unreg_holders:
  1212. kobject_put(mod->holders_dir);
  1213. out_unreg:
  1214. kobject_put(&mod->mkobj.kobj);
  1215. return err;
  1216. }
  1217. static void mod_sysfs_fini(struct module *mod)
  1218. {
  1219. kobject_put(&mod->mkobj.kobj);
  1220. }
  1221. #else /* CONFIG_SYSFS */
  1222. static void mod_sysfs_fini(struct module *mod)
  1223. {
  1224. }
  1225. #endif /* CONFIG_SYSFS */
  1226. static void mod_kobject_remove(struct module *mod)
  1227. {
  1228. module_remove_modinfo_attrs(mod);
  1229. module_param_sysfs_remove(mod);
  1230. kobject_put(mod->mkobj.drivers_dir);
  1231. kobject_put(mod->holders_dir);
  1232. mod_sysfs_fini(mod);
  1233. }
  1234. /*
  1235. * unlink the module with the whole machine is stopped with interrupts off
  1236. * - this defends against kallsyms not taking locks
  1237. */
  1238. static int __unlink_module(void *_mod)
  1239. {
  1240. struct module *mod = _mod;
  1241. list_del(&mod->list);
  1242. return 0;
  1243. }
  1244. /* Free a module, remove from lists, etc (must hold module_mutex). */
  1245. static void free_module(struct module *mod)
  1246. {
  1247. trace_module_free(mod);
  1248. /* Delete from various lists */
  1249. stop_machine(__unlink_module, mod, NULL);
  1250. remove_notes_attrs(mod);
  1251. remove_sect_attrs(mod);
  1252. mod_kobject_remove(mod);
  1253. /* Arch-specific cleanup. */
  1254. module_arch_cleanup(mod);
  1255. /* Module unload stuff */
  1256. module_unload_free(mod);
  1257. /* Free any allocated parameters. */
  1258. destroy_params(mod->kp, mod->num_kp);
  1259. /* This may be NULL, but that's OK */
  1260. module_free(mod, mod->module_init);
  1261. kfree(mod->args);
  1262. percpu_modfree(mod);
  1263. #if defined(CONFIG_MODULE_UNLOAD)
  1264. if (mod->refptr)
  1265. free_percpu(mod->refptr);
  1266. #endif
  1267. /* Free lock-classes: */
  1268. lockdep_free_key_range(mod->module_core, mod->core_size);
  1269. /* Finally, free the core (containing the module structure) */
  1270. module_free(mod, mod->module_core);
  1271. #ifdef CONFIG_MPU
  1272. update_protections(current->mm);
  1273. #endif
  1274. }
  1275. void *__symbol_get(const char *symbol)
  1276. {
  1277. struct module *owner;
  1278. const struct kernel_symbol *sym;
  1279. preempt_disable();
  1280. sym = find_symbol(symbol, &owner, NULL, true, true);
  1281. if (sym && strong_try_module_get(owner))
  1282. sym = NULL;
  1283. preempt_enable();
  1284. return sym ? (void *)sym->value : NULL;
  1285. }
  1286. EXPORT_SYMBOL_GPL(__symbol_get);
  1287. /*
  1288. * Ensure that an exported symbol [global namespace] does not already exist
  1289. * in the kernel or in some other module's exported symbol table.
  1290. */
  1291. static int verify_export_symbols(struct module *mod)
  1292. {
  1293. unsigned int i;
  1294. struct module *owner;
  1295. const struct kernel_symbol *s;
  1296. struct {
  1297. const struct kernel_symbol *sym;
  1298. unsigned int num;
  1299. } arr[] = {
  1300. { mod->syms, mod->num_syms },
  1301. { mod->gpl_syms, mod->num_gpl_syms },
  1302. { mod->gpl_future_syms, mod->num_gpl_future_syms },
  1303. #ifdef CONFIG_UNUSED_SYMBOLS
  1304. { mod->unused_syms, mod->num_unused_syms },
  1305. { mod->unused_gpl_syms, mod->num_unused_gpl_syms },
  1306. #endif
  1307. };
  1308. for (i = 0; i < ARRAY_SIZE(arr); i++) {
  1309. for (s = arr[i].sym; s < arr[i].sym + arr[i].num; s++) {
  1310. if (find_symbol(s->name, &owner, NULL, true, false)) {
  1311. printk(KERN_ERR
  1312. "%s: exports duplicate symbol %s"
  1313. " (owned by %s)\n",
  1314. mod->name, s->name, module_name(owner));
  1315. return -ENOEXEC;
  1316. }
  1317. }
  1318. }
  1319. return 0;
  1320. }
  1321. /* Change all symbols so that st_value encodes the pointer directly. */
  1322. static int simplify_symbols(Elf_Shdr *sechdrs,
  1323. unsigned int symindex,
  1324. const char *strtab,
  1325. unsigned int versindex,
  1326. unsigned int pcpuindex,
  1327. struct module *mod)
  1328. {
  1329. Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
  1330. unsigned long secbase;
  1331. unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1332. int ret = 0;
  1333. const struct kernel_symbol *ksym;
  1334. for (i = 1; i < n; i++) {
  1335. switch (sym[i].st_shndx) {
  1336. case SHN_COMMON:
  1337. /* We compiled with -fno-common. These are not
  1338. supposed to happen. */
  1339. DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
  1340. printk("%s: please compile with -fno-common\n",
  1341. mod->name);
  1342. ret = -ENOEXEC;
  1343. break;
  1344. case SHN_ABS:
  1345. /* Don't need to do anything */
  1346. DEBUGP("Absolute symbol: 0x%08lx\n",
  1347. (long)sym[i].st_value);
  1348. break;
  1349. case SHN_UNDEF:
  1350. ksym = resolve_symbol(sechdrs, versindex,
  1351. strtab + sym[i].st_name, mod);
  1352. /* Ok if resolved. */
  1353. if (ksym) {
  1354. sym[i].st_value = ksym->value;
  1355. break;
  1356. }
  1357. /* Ok if weak. */
  1358. if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
  1359. break;
  1360. printk(KERN_WARNING "%s: Unknown symbol %s\n",
  1361. mod->name, strtab + sym[i].st_name);
  1362. ret = -ENOENT;
  1363. break;
  1364. default:
  1365. /* Divert to percpu allocation if a percpu var. */
  1366. if (sym[i].st_shndx == pcpuindex)
  1367. secbase = (unsigned long)mod_percpu(mod);
  1368. else
  1369. secbase = sechdrs[sym[i].st_shndx].sh_addr;
  1370. sym[i].st_value += secbase;
  1371. break;
  1372. }
  1373. }
  1374. return ret;
  1375. }
  1376. /* Additional bytes needed by arch in front of individual sections */
  1377. unsigned int __weak arch_mod_section_prepend(struct module *mod,
  1378. unsigned int section)
  1379. {
  1380. /* default implementation just returns zero */
  1381. return 0;
  1382. }
  1383. /* Update size with this section: return offset. */
  1384. static long get_offset(struct module *mod, unsigned int *size,
  1385. Elf_Shdr *sechdr, unsigned int section)
  1386. {
  1387. long ret;
  1388. *size += arch_mod_section_prepend(mod, section);
  1389. ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
  1390. *size = ret + sechdr->sh_size;
  1391. return ret;
  1392. }
  1393. /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
  1394. might -- code, read-only data, read-write data, small data. Tally
  1395. sizes, and place the offsets into sh_entsize fields: high bit means it
  1396. belongs in init. */
  1397. static void layout_sections(struct module *mod,
  1398. const Elf_Ehdr *hdr,
  1399. Elf_Shdr *sechdrs,
  1400. const char *secstrings)
  1401. {
  1402. static unsigned long const masks[][2] = {
  1403. /* NOTE: all executable code must be the first section
  1404. * in this array; otherwise modify the text_size
  1405. * finder in the two loops below */
  1406. { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
  1407. { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
  1408. { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
  1409. { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
  1410. };
  1411. unsigned int m, i;
  1412. for (i = 0; i < hdr->e_shnum; i++)
  1413. sechdrs[i].sh_entsize = ~0UL;
  1414. DEBUGP("Core section allocation order:\n");
  1415. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1416. for (i = 0; i < hdr->e_shnum; ++i) {
  1417. Elf_Shdr *s = &sechdrs[i];
  1418. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1419. || (s->sh_flags & masks[m][1])
  1420. || s->sh_entsize != ~0UL
  1421. || strstarts(secstrings + s->sh_name, ".init"))
  1422. continue;
  1423. s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
  1424. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1425. }
  1426. if (m == 0)
  1427. mod->core_text_size = mod->core_size;
  1428. }
  1429. DEBUGP("Init section allocation order:\n");
  1430. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1431. for (i = 0; i < hdr->e_shnum; ++i) {
  1432. Elf_Shdr *s = &sechdrs[i];
  1433. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1434. || (s->sh_flags & masks[m][1])
  1435. || s->sh_entsize != ~0UL
  1436. || !strstarts(secstrings + s->sh_name, ".init"))
  1437. continue;
  1438. s->sh_entsize = (get_offset(mod, &mod->init_size, s, i)
  1439. | INIT_OFFSET_MASK);
  1440. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1441. }
  1442. if (m == 0)
  1443. mod->init_text_size = mod->init_size;
  1444. }
  1445. }
  1446. static void set_license(struct module *mod, const char *license)
  1447. {
  1448. if (!license)
  1449. license = "unspecified";
  1450. if (!license_is_gpl_compatible(license)) {
  1451. if (!test_taint(TAINT_PROPRIETARY_MODULE))
  1452. printk(KERN_WARNING "%s: module license '%s' taints "
  1453. "kernel.\n", mod->name, license);
  1454. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1455. }
  1456. }
  1457. /* Parse tag=value strings from .modinfo section */
  1458. static char *next_string(char *string, unsigned long *secsize)
  1459. {
  1460. /* Skip non-zero chars */
  1461. while (string[0]) {
  1462. string++;
  1463. if ((*secsize)-- <= 1)
  1464. return NULL;
  1465. }
  1466. /* Skip any zero padding. */
  1467. while (!string[0]) {
  1468. string++;
  1469. if ((*secsize)-- <= 1)
  1470. return NULL;
  1471. }
  1472. return string;
  1473. }
  1474. static char *get_modinfo(Elf_Shdr *sechdrs,
  1475. unsigned int info,
  1476. const char *tag)
  1477. {
  1478. char *p;
  1479. unsigned int taglen = strlen(tag);
  1480. unsigned long size = sechdrs[info].sh_size;
  1481. for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
  1482. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  1483. return p + taglen + 1;
  1484. }
  1485. return NULL;
  1486. }
  1487. static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
  1488. unsigned int infoindex)
  1489. {
  1490. struct module_attribute *attr;
  1491. int i;
  1492. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1493. if (attr->setup)
  1494. attr->setup(mod,
  1495. get_modinfo(sechdrs,
  1496. infoindex,
  1497. attr->attr.name));
  1498. }
  1499. }
  1500. static void free_modinfo(struct module *mod)
  1501. {
  1502. struct module_attribute *attr;
  1503. int i;
  1504. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1505. if (attr->free)
  1506. attr->free(mod);
  1507. }
  1508. }
  1509. #ifdef CONFIG_KALLSYMS
  1510. /* lookup symbol in given range of kernel_symbols */
  1511. static const struct kernel_symbol *lookup_symbol(const char *name,
  1512. const struct kernel_symbol *start,
  1513. const struct kernel_symbol *stop)
  1514. {
  1515. const struct kernel_symbol *ks = start;
  1516. for (; ks < stop; ks++)
  1517. if (strcmp(ks->name, name) == 0)
  1518. return ks;
  1519. return NULL;
  1520. }
  1521. static int is_exported(const char *name, unsigned long value,
  1522. const struct module *mod)
  1523. {
  1524. const struct kernel_symbol *ks;
  1525. if (!mod)
  1526. ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
  1527. else
  1528. ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
  1529. return ks != NULL && ks->value == value;
  1530. }
  1531. /* As per nm */
  1532. static char elf_type(const Elf_Sym *sym,
  1533. Elf_Shdr *sechdrs,
  1534. const char *secstrings,
  1535. struct module *mod)
  1536. {
  1537. if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
  1538. if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
  1539. return 'v';
  1540. else
  1541. return 'w';
  1542. }
  1543. if (sym->st_shndx == SHN_UNDEF)
  1544. return 'U';
  1545. if (sym->st_shndx == SHN_ABS)
  1546. return 'a';
  1547. if (sym->st_shndx >= SHN_LORESERVE)
  1548. return '?';
  1549. if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
  1550. return 't';
  1551. if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
  1552. && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
  1553. if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
  1554. return 'r';
  1555. else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1556. return 'g';
  1557. else
  1558. return 'd';
  1559. }
  1560. if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
  1561. if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1562. return 's';
  1563. else
  1564. return 'b';
  1565. }
  1566. if (strstarts(secstrings + sechdrs[sym->st_shndx].sh_name, ".debug"))
  1567. return 'n';
  1568. return '?';
  1569. }
  1570. static bool is_core_symbol(const Elf_Sym *src, const Elf_Shdr *sechdrs,
  1571. unsigned int shnum)
  1572. {
  1573. const Elf_Shdr *sec;
  1574. if (src->st_shndx == SHN_UNDEF
  1575. || src->st_shndx >= shnum
  1576. || !src->st_name)
  1577. return false;
  1578. sec = sechdrs + src->st_shndx;
  1579. if (!(sec->sh_flags & SHF_ALLOC)
  1580. #ifndef CONFIG_KALLSYMS_ALL
  1581. || !(sec->sh_flags & SHF_EXECINSTR)
  1582. #endif
  1583. || (sec->sh_entsize & INIT_OFFSET_MASK))
  1584. return false;
  1585. return true;
  1586. }
  1587. static unsigned long layout_symtab(struct module *mod,
  1588. Elf_Shdr *sechdrs,
  1589. unsigned int symindex,
  1590. unsigned int strindex,
  1591. const Elf_Ehdr *hdr,
  1592. const char *secstrings,
  1593. unsigned long *pstroffs,
  1594. unsigned long *strmap)
  1595. {
  1596. unsigned long symoffs;
  1597. Elf_Shdr *symsect = sechdrs + symindex;
  1598. Elf_Shdr *strsect = sechdrs + strindex;
  1599. const Elf_Sym *src;
  1600. const char *strtab;
  1601. unsigned int i, nsrc, ndst;
  1602. /* Put symbol section at end of init part of module. */
  1603. symsect->sh_flags |= SHF_ALLOC;
  1604. symsect->sh_entsize = get_offset(mod, &mod->init_size, symsect,
  1605. symindex) | INIT_OFFSET_MASK;
  1606. DEBUGP("\t%s\n", secstrings + symsect->sh_name);
  1607. src = (void *)hdr + symsect->sh_offset;
  1608. nsrc = symsect->sh_size / sizeof(*src);
  1609. strtab = (void *)hdr + strsect->sh_offset;
  1610. for (ndst = i = 1; i < nsrc; ++i, ++src)
  1611. if (is_core_symbol(src, sechdrs, hdr->e_shnum)) {
  1612. unsigned int j = src->st_name;
  1613. while(!__test_and_set_bit(j, strmap) && strtab[j])
  1614. ++j;
  1615. ++ndst;
  1616. }
  1617. /* Append room for core symbols at end of core part. */
  1618. symoffs = ALIGN(mod->core_size, symsect->sh_addralign ?: 1);
  1619. mod->core_size = symoffs + ndst * sizeof(Elf_Sym);
  1620. /* Put string table section at end of init part of module. */
  1621. strsect->sh_flags |= SHF_ALLOC;
  1622. strsect->sh_entsize = get_offset(mod, &mod->init_size, strsect,
  1623. strindex) | INIT_OFFSET_MASK;
  1624. DEBUGP("\t%s\n", secstrings + strsect->sh_name);
  1625. /* Append room for core symbols' strings at end of core part. */
  1626. *pstroffs = mod->core_size;
  1627. __set_bit(0, strmap);
  1628. mod->core_size += bitmap_weight(strmap, strsect->sh_size);
  1629. return symoffs;
  1630. }
  1631. static void add_kallsyms(struct module *mod,
  1632. Elf_Shdr *sechdrs,
  1633. unsigned int shnum,
  1634. unsigned int symindex,
  1635. unsigned int strindex,
  1636. unsigned long symoffs,
  1637. unsigned long stroffs,
  1638. const char *secstrings,
  1639. unsigned long *strmap)
  1640. {
  1641. unsigned int i, ndst;
  1642. const Elf_Sym *src;
  1643. Elf_Sym *dst;
  1644. char *s;
  1645. mod->symtab = (void *)sechdrs[symindex].sh_addr;
  1646. mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1647. mod->strtab = (void *)sechdrs[strindex].sh_addr;
  1648. /* Set types up while we still have access to sections. */
  1649. for (i = 0; i < mod->num_symtab; i++)
  1650. mod->symtab[i].st_info
  1651. = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
  1652. mod->core_symtab = dst = mod->module_core + symoffs;
  1653. src = mod->symtab;
  1654. *dst = *src;
  1655. for (ndst = i = 1; i < mod->num_symtab; ++i, ++src) {
  1656. if (!is_core_symbol(src, sechdrs, shnum))
  1657. continue;
  1658. dst[ndst] = *src;
  1659. dst[ndst].st_name = bitmap_weight(strmap, dst[ndst].st_name);
  1660. ++ndst;
  1661. }
  1662. mod->core_num_syms = ndst;
  1663. mod->core_strtab = s = mod->module_core + stroffs;
  1664. for (*s = 0, i = 1; i < sechdrs[strindex].sh_size; ++i)
  1665. if (test_bit(i, strmap))
  1666. *++s = mod->strtab[i];
  1667. }
  1668. #else
  1669. static inline unsigned long layout_symtab(struct module *mod,
  1670. Elf_Shdr *sechdrs,
  1671. unsigned int symindex,
  1672. unsigned int strindex,
  1673. const Elf_Ehdr *hdr,
  1674. const char *secstrings,
  1675. unsigned long *pstroffs,
  1676. unsigned long *strmap)
  1677. {
  1678. return 0;
  1679. }
  1680. static inline void add_kallsyms(struct module *mod,
  1681. Elf_Shdr *sechdrs,
  1682. unsigned int shnum,
  1683. unsigned int symindex,
  1684. unsigned int strindex,
  1685. unsigned long symoffs,
  1686. unsigned long stroffs,
  1687. const char *secstrings,
  1688. const unsigned long *strmap)
  1689. {
  1690. }
  1691. #endif /* CONFIG_KALLSYMS */
  1692. static void dynamic_debug_setup(struct _ddebug *debug, unsigned int num)
  1693. {
  1694. #ifdef CONFIG_DYNAMIC_DEBUG
  1695. if (ddebug_add_module(debug, num, debug->modname))
  1696. printk(KERN_ERR "dynamic debug error adding module: %s\n",
  1697. debug->modname);
  1698. #endif
  1699. }
  1700. static void *module_alloc_update_bounds(unsigned long size)
  1701. {
  1702. void *ret = module_alloc(size);
  1703. if (ret) {
  1704. /* Update module bounds. */
  1705. if ((unsigned long)ret < module_addr_min)
  1706. module_addr_min = (unsigned long)ret;
  1707. if ((unsigned long)ret + size > module_addr_max)
  1708. module_addr_max = (unsigned long)ret + size;
  1709. }
  1710. return ret;
  1711. }
  1712. #ifdef CONFIG_DEBUG_KMEMLEAK
  1713. static void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
  1714. Elf_Shdr *sechdrs, char *secstrings)
  1715. {
  1716. unsigned int i;
  1717. /* only scan the sections containing data */
  1718. kmemleak_scan_area(mod, sizeof(struct module), GFP_KERNEL);
  1719. for (i = 1; i < hdr->e_shnum; i++) {
  1720. if (!(sechdrs[i].sh_flags & SHF_ALLOC))
  1721. continue;
  1722. if (strncmp(secstrings + sechdrs[i].sh_name, ".data", 5) != 0
  1723. && strncmp(secstrings + sechdrs[i].sh_name, ".bss", 4) != 0)
  1724. continue;
  1725. kmemleak_scan_area((void *)sechdrs[i].sh_addr,
  1726. sechdrs[i].sh_size, GFP_KERNEL);
  1727. }
  1728. }
  1729. #else
  1730. static inline void kmemleak_load_module(struct module *mod, Elf_Ehdr *hdr,
  1731. Elf_Shdr *sechdrs, char *secstrings)
  1732. {
  1733. }
  1734. #endif
  1735. /* Allocate and load the module: note that size of section 0 is always
  1736. zero, and we rely on this for optional sections. */
  1737. static noinline struct module *load_module(void __user *umod,
  1738. unsigned long len,
  1739. const char __user *uargs)
  1740. {
  1741. Elf_Ehdr *hdr;
  1742. Elf_Shdr *sechdrs;
  1743. char *secstrings, *args, *modmagic, *strtab = NULL;
  1744. char *staging;
  1745. unsigned int i;
  1746. unsigned int symindex = 0;
  1747. unsigned int strindex = 0;
  1748. unsigned int modindex, versindex, infoindex, pcpuindex;
  1749. struct module *mod;
  1750. long err = 0;
  1751. void *ptr = NULL; /* Stops spurious gcc warning */
  1752. unsigned long symoffs, stroffs, *strmap;
  1753. void __percpu *percpu;
  1754. mm_segment_t old_fs;
  1755. DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
  1756. umod, len, uargs);
  1757. if (len < sizeof(*hdr))
  1758. return ERR_PTR(-ENOEXEC);
  1759. /* Suck in entire file: we'll want most of it. */
  1760. /* vmalloc barfs on "unusual" numbers. Check here */
  1761. if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
  1762. return ERR_PTR(-ENOMEM);
  1763. if (copy_from_user(hdr, umod, len) != 0) {
  1764. err = -EFAULT;
  1765. goto free_hdr;
  1766. }
  1767. /* Sanity checks against insmoding binaries or wrong arch,
  1768. weird elf version */
  1769. if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0
  1770. || hdr->e_type != ET_REL
  1771. || !elf_check_arch(hdr)
  1772. || hdr->e_shentsize != sizeof(*sechdrs)) {
  1773. err = -ENOEXEC;
  1774. goto free_hdr;
  1775. }
  1776. if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
  1777. goto truncated;
  1778. /* Convenience variables */
  1779. sechdrs = (void *)hdr + hdr->e_shoff;
  1780. secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  1781. sechdrs[0].sh_addr = 0;
  1782. for (i = 1; i < hdr->e_shnum; i++) {
  1783. if (sechdrs[i].sh_type != SHT_NOBITS
  1784. && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
  1785. goto truncated;
  1786. /* Mark all sections sh_addr with their address in the
  1787. temporary image. */
  1788. sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
  1789. /* Internal symbols and strings. */
  1790. if (sechdrs[i].sh_type == SHT_SYMTAB) {
  1791. symindex = i;
  1792. strindex = sechdrs[i].sh_link;
  1793. strtab = (char *)hdr + sechdrs[strindex].sh_offset;
  1794. }
  1795. #ifndef CONFIG_MODULE_UNLOAD
  1796. /* Don't load .exit sections */
  1797. if (strstarts(secstrings+sechdrs[i].sh_name, ".exit"))
  1798. sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1799. #endif
  1800. }
  1801. modindex = find_sec(hdr, sechdrs, secstrings,
  1802. ".gnu.linkonce.this_module");
  1803. if (!modindex) {
  1804. printk(KERN_WARNING "No module found in object\n");
  1805. err = -ENOEXEC;
  1806. goto free_hdr;
  1807. }
  1808. /* This is temporary: point mod into copy of data. */
  1809. mod = (void *)sechdrs[modindex].sh_addr;
  1810. if (symindex == 0) {
  1811. printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
  1812. mod->name);
  1813. err = -ENOEXEC;
  1814. goto free_hdr;
  1815. }
  1816. versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
  1817. infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
  1818. pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
  1819. /* Don't keep modinfo and version sections. */
  1820. sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1821. sechdrs[versindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1822. /* Check module struct version now, before we try to use module. */
  1823. if (!check_modstruct_version(sechdrs, versindex, mod)) {
  1824. err = -ENOEXEC;
  1825. goto free_hdr;
  1826. }
  1827. modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
  1828. /* This is allowed: modprobe --force will invalidate it. */
  1829. if (!modmagic) {
  1830. err = try_to_force_load(mod, "bad vermagic");
  1831. if (err)
  1832. goto free_hdr;
  1833. } else if (!same_magic(modmagic, vermagic, versindex)) {
  1834. printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
  1835. mod->name, modmagic, vermagic);
  1836. err = -ENOEXEC;
  1837. goto free_hdr;
  1838. }
  1839. staging = get_modinfo(sechdrs, infoindex, "staging");
  1840. if (staging) {
  1841. add_taint_module(mod, TAINT_CRAP);
  1842. printk(KERN_WARNING "%s: module is from the staging directory,"
  1843. " the quality is unknown, you have been warned.\n",
  1844. mod->name);
  1845. }
  1846. /* Now copy in args */
  1847. args = strndup_user(uargs, ~0UL >> 1);
  1848. if (IS_ERR(args)) {
  1849. err = PTR_ERR(args);
  1850. goto free_hdr;
  1851. }
  1852. strmap = kzalloc(BITS_TO_LONGS(sechdrs[strindex].sh_size)
  1853. * sizeof(long), GFP_KERNEL);
  1854. if (!strmap) {
  1855. err = -ENOMEM;
  1856. goto free_mod;
  1857. }
  1858. if (find_module(mod->name)) {
  1859. err = -EEXIST;
  1860. goto free_mod;
  1861. }
  1862. mod->state = MODULE_STATE_COMING;
  1863. /* Allow arches to frob section contents and sizes. */
  1864. err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
  1865. if (err < 0)
  1866. goto free_mod;
  1867. if (pcpuindex) {
  1868. /* We have a special allocation for this section. */
  1869. err = percpu_modalloc(mod, sechdrs[pcpuindex].sh_size,
  1870. sechdrs[pcpuindex].sh_addralign);
  1871. if (err)
  1872. goto free_mod;
  1873. sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1874. }
  1875. /* Keep this around for failure path. */
  1876. percpu = mod_percpu(mod);
  1877. /* Determine total sizes, and put offsets in sh_entsize. For now
  1878. this is done generically; there doesn't appear to be any
  1879. special cases for the architectures. */
  1880. layout_sections(mod, hdr, sechdrs, secstrings);
  1881. symoffs = layout_symtab(mod, sechdrs, symindex, strindex, hdr,
  1882. secstrings, &stroffs, strmap);
  1883. /* Do the allocs. */
  1884. ptr = module_alloc_update_bounds(mod->core_size);
  1885. /*
  1886. * The pointer to this block is stored in the module structure
  1887. * which is inside the block. Just mark it as not being a
  1888. * leak.
  1889. */
  1890. kmemleak_not_leak(ptr);
  1891. if (!ptr) {
  1892. err = -ENOMEM;
  1893. goto free_percpu;
  1894. }
  1895. memset(ptr, 0, mod->core_size);
  1896. mod->module_core = ptr;
  1897. ptr = module_alloc_update_bounds(mod->init_size);
  1898. /*
  1899. * The pointer to this block is stored in the module structure
  1900. * which is inside the block. This block doesn't need to be
  1901. * scanned as it contains data and code that will be freed
  1902. * after the module is initialized.
  1903. */
  1904. kmemleak_ignore(ptr);
  1905. if (!ptr && mod->init_size) {
  1906. err = -ENOMEM;
  1907. goto free_core;
  1908. }
  1909. memset(ptr, 0, mod->init_size);
  1910. mod->module_init = ptr;
  1911. /* Transfer each section which specifies SHF_ALLOC */
  1912. DEBUGP("final section addresses:\n");
  1913. for (i = 0; i < hdr->e_shnum; i++) {
  1914. void *dest;
  1915. if (!(sechdrs[i].sh_flags & SHF_ALLOC))
  1916. continue;
  1917. if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
  1918. dest = mod->module_init
  1919. + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
  1920. else
  1921. dest = mod->module_core + sechdrs[i].sh_entsize;
  1922. if (sechdrs[i].sh_type != SHT_NOBITS)
  1923. memcpy(dest, (void *)sechdrs[i].sh_addr,
  1924. sechdrs[i].sh_size);
  1925. /* Update sh_addr to point to copy in image. */
  1926. sechdrs[i].sh_addr = (unsigned long)dest;
  1927. DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
  1928. }
  1929. /* Module has been moved. */
  1930. mod = (void *)sechdrs[modindex].sh_addr;
  1931. kmemleak_load_module(mod, hdr, sechdrs, secstrings);
  1932. #if defined(CONFIG_MODULE_UNLOAD)
  1933. mod->refptr = alloc_percpu(struct module_ref);
  1934. if (!mod->refptr) {
  1935. err = -ENOMEM;
  1936. goto free_init;
  1937. }
  1938. #endif
  1939. /* Now we've moved module, initialize linked lists, etc. */
  1940. module_unload_init(mod);
  1941. /* add kobject, so we can reference it. */
  1942. err = mod_sysfs_init(mod);
  1943. if (err)
  1944. goto free_unload;
  1945. /* Set up license info based on the info section */
  1946. set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
  1947. /*
  1948. * ndiswrapper is under GPL by itself, but loads proprietary modules.
  1949. * Don't use add_taint_module(), as it would prevent ndiswrapper from
  1950. * using GPL-only symbols it needs.
  1951. */
  1952. if (strcmp(mod->name, "ndiswrapper") == 0)
  1953. add_taint(TAINT_PROPRIETARY_MODULE);
  1954. /* driverloader was caught wrongly pretending to be under GPL */
  1955. if (strcmp(mod->name, "driverloader") == 0)
  1956. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1957. /* Set up MODINFO_ATTR fields */
  1958. setup_modinfo(mod, sechdrs, infoindex);
  1959. /* Fix up syms, so that st_value is a pointer to location. */
  1960. err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
  1961. mod);
  1962. if (err < 0)
  1963. goto cleanup;
  1964. /* Now we've got everything in the final locations, we can
  1965. * find optional sections. */
  1966. mod->kp = section_objs(hdr, sechdrs, secstrings, "__param",
  1967. sizeof(*mod->kp), &mod->num_kp);
  1968. mod->syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab",
  1969. sizeof(*mod->syms), &mod->num_syms);
  1970. mod->crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab");
  1971. mod->gpl_syms = section_objs(hdr, sechdrs, secstrings, "__ksymtab_gpl",
  1972. sizeof(*mod->gpl_syms),
  1973. &mod->num_gpl_syms);
  1974. mod->gpl_crcs = section_addr(hdr, sechdrs, secstrings, "__kcrctab_gpl");
  1975. mod->gpl_future_syms = section_objs(hdr, sechdrs, secstrings,
  1976. "__ksymtab_gpl_future",
  1977. sizeof(*mod->gpl_future_syms),
  1978. &mod->num_gpl_future_syms);
  1979. mod->gpl_future_crcs = section_addr(hdr, sechdrs, secstrings,
  1980. "__kcrctab_gpl_future");
  1981. #ifdef CONFIG_UNUSED_SYMBOLS
  1982. mod->unused_syms = section_objs(hdr, sechdrs, secstrings,
  1983. "__ksymtab_unused",
  1984. sizeof(*mod->unused_syms),
  1985. &mod->num_unused_syms);
  1986. mod->unused_crcs = section_addr(hdr, sechdrs, secstrings,
  1987. "__kcrctab_unused");
  1988. mod->unused_gpl_syms = section_objs(hdr, sechdrs, secstrings,
  1989. "__ksymtab_unused_gpl",
  1990. sizeof(*mod->unused_gpl_syms),
  1991. &mod->num_unused_gpl_syms);
  1992. mod->unused_gpl_crcs = section_addr(hdr, sechdrs, secstrings,
  1993. "__kcrctab_unused_gpl");
  1994. #endif
  1995. #ifdef CONFIG_CONSTRUCTORS
  1996. mod->ctors = section_objs(hdr, sechdrs, secstrings, ".ctors",
  1997. sizeof(*mod->ctors), &mod->num_ctors);
  1998. #endif
  1999. #ifdef CONFIG_TRACEPOINTS
  2000. mod->tracepoints = section_objs(hdr, sechdrs, secstrings,
  2001. "__tracepoints",
  2002. sizeof(*mod->tracepoints),
  2003. &mod->num_tracepoints);
  2004. #endif
  2005. #ifdef CONFIG_EVENT_TRACING
  2006. mod->trace_events = section_objs(hdr, sechdrs, secstrings,
  2007. "_ftrace_events",
  2008. sizeof(*mod->trace_events),
  2009. &mod->num_trace_events);
  2010. /*
  2011. * This section contains pointers to allocated objects in the trace
  2012. * code and not scanning it leads to false positives.
  2013. */
  2014. kmemleak_scan_area(mod->trace_events, sizeof(*mod->trace_events) *
  2015. mod->num_trace_events, GFP_KERNEL);
  2016. #endif
  2017. #ifdef CONFIG_FTRACE_MCOUNT_RECORD
  2018. /* sechdrs[0].sh_size is always zero */
  2019. mod->ftrace_callsites = section_objs(hdr, sechdrs, secstrings,
  2020. "__mcount_loc",
  2021. sizeof(*mod->ftrace_callsites),
  2022. &mod->num_ftrace_callsites);
  2023. #endif
  2024. #ifdef CONFIG_MODVERSIONS
  2025. if ((mod->num_syms && !mod->crcs)
  2026. || (mod->num_gpl_syms && !mod->gpl_crcs)
  2027. || (mod->num_gpl_future_syms && !mod->gpl_future_crcs)
  2028. #ifdef CONFIG_UNUSED_SYMBOLS
  2029. || (mod->num_unused_syms && !mod->unused_crcs)
  2030. || (mod->num_unused_gpl_syms && !mod->unused_gpl_crcs)
  2031. #endif
  2032. ) {
  2033. err = try_to_force_load(mod,
  2034. "no versions for exported symbols");
  2035. if (err)
  2036. goto cleanup;
  2037. }
  2038. #endif
  2039. /* Now do relocations. */
  2040. for (i = 1; i < hdr->e_shnum; i++) {
  2041. const char *strtab = (char *)sechdrs[strindex].sh_addr;
  2042. unsigned int info = sechdrs[i].sh_info;
  2043. /* Not a valid relocation section? */
  2044. if (info >= hdr->e_shnum)
  2045. continue;
  2046. /* Don't bother with non-allocated sections */
  2047. if (!(sechdrs[info].sh_flags & SHF_ALLOC))
  2048. continue;
  2049. if (sechdrs[i].sh_type == SHT_REL)
  2050. err = apply_relocate(sechdrs, strtab, symindex, i,mod);
  2051. else if (sechdrs[i].sh_type == SHT_RELA)
  2052. err = apply_relocate_add(sechdrs, strtab, symindex, i,
  2053. mod);
  2054. if (err < 0)
  2055. goto cleanup;
  2056. }
  2057. /* Find duplicate symbols */
  2058. err = verify_export_symbols(mod);
  2059. if (err < 0)
  2060. goto cleanup;
  2061. /* Set up and sort exception table */
  2062. mod->extable = section_objs(hdr, sechdrs, secstrings, "__ex_table",
  2063. sizeof(*mod->extable), &mod->num_exentries);
  2064. sort_extable(mod->extable, mod->extable + mod->num_exentries);
  2065. /* Finally, copy percpu area over. */
  2066. percpu_modcopy(mod, (void *)sechdrs[pcpuindex].sh_addr,
  2067. sechdrs[pcpuindex].sh_size);
  2068. add_kallsyms(mod, sechdrs, hdr->e_shnum, symindex, strindex,
  2069. symoffs, stroffs, secstrings, strmap);
  2070. kfree(strmap);
  2071. strmap = NULL;
  2072. if (!mod->taints) {
  2073. struct _ddebug *debug;
  2074. unsigned int num_debug;
  2075. debug = section_objs(hdr, sechdrs, secstrings, "__verbose",
  2076. sizeof(*debug), &num_debug);
  2077. if (debug)
  2078. dynamic_debug_setup(debug, num_debug);
  2079. }
  2080. err = module_finalize(hdr, sechdrs, mod);
  2081. if (err < 0)
  2082. goto cleanup;
  2083. /* flush the icache in correct context */
  2084. old_fs = get_fs();
  2085. set_fs(KERNEL_DS);
  2086. /*
  2087. * Flush the instruction cache, since we've played with text.
  2088. * Do it before processing of module parameters, so the module
  2089. * can provide parameter accessor functions of its own.
  2090. */
  2091. if (mod->module_init)
  2092. flush_icache_range((unsigned long)mod->module_init,
  2093. (unsigned long)mod->module_init
  2094. + mod->init_size);
  2095. flush_icache_range((unsigned long)mod->module_core,
  2096. (unsigned long)mod->module_core + mod->core_size);
  2097. set_fs(old_fs);
  2098. mod->args = args;
  2099. if (section_addr(hdr, sechdrs, secstrings, "__obsparm"))
  2100. printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
  2101. mod->name);
  2102. /* Now sew it into the lists so we can get lockdep and oops
  2103. * info during argument parsing. Noone should access us, since
  2104. * strong_try_module_get() will fail.
  2105. * lockdep/oops can run asynchronous, so use the RCU list insertion
  2106. * function to insert in a way safe to concurrent readers.
  2107. * The mutex protects against concurrent writers.
  2108. */
  2109. list_add_rcu(&mod->list, &modules);
  2110. err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL);
  2111. if (err < 0)
  2112. goto unlink;
  2113. err = mod_sysfs_setup(mod, mod->kp, mod->num_kp);
  2114. if (err < 0)
  2115. goto unlink;
  2116. add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
  2117. add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
  2118. /* Get rid of temporary copy */
  2119. vfree(hdr);
  2120. trace_module_load(mod);
  2121. /* Done! */
  2122. return mod;
  2123. unlink:
  2124. /* Unlink carefully: kallsyms could be walking list. */
  2125. list_del_rcu(&mod->list);
  2126. synchronize_sched();
  2127. module_arch_cleanup(mod);
  2128. cleanup:
  2129. free_modinfo(mod);
  2130. kobject_del(&mod->mkobj.kobj);
  2131. kobject_put(&mod->mkobj.kobj);
  2132. free_unload:
  2133. module_unload_free(mod);
  2134. #if defined(CONFIG_MODULE_UNLOAD)
  2135. free_percpu(mod->refptr);
  2136. free_init:
  2137. #endif
  2138. module_free(mod, mod->module_init);
  2139. free_core:
  2140. module_free(mod, mod->module_core);
  2141. /* mod will be freed with core. Don't access it beyond this line! */
  2142. free_percpu:
  2143. free_percpu(percpu);
  2144. free_mod:
  2145. kfree(args);
  2146. kfree(strmap);
  2147. free_hdr:
  2148. vfree(hdr);
  2149. return ERR_PTR(err);
  2150. truncated:
  2151. printk(KERN_ERR "Module len %lu truncated\n", len);
  2152. err = -ENOEXEC;
  2153. goto free_hdr;
  2154. }
  2155. /* Call module constructors. */
  2156. static void do_mod_ctors(struct module *mod)
  2157. {
  2158. #ifdef CONFIG_CONSTRUCTORS
  2159. unsigned long i;
  2160. for (i = 0; i < mod->num_ctors; i++)
  2161. mod->ctors[i]();
  2162. #endif
  2163. }
  2164. /* This is where the real work happens */
  2165. SYSCALL_DEFINE3(init_module, void __user *, umod,
  2166. unsigned long, len, const char __user *, uargs)
  2167. {
  2168. struct module *mod;
  2169. int ret = 0;
  2170. /* Must have permission */
  2171. if (!capable(CAP_SYS_MODULE) || modules_disabled)
  2172. return -EPERM;
  2173. /* Only one module load at a time, please */
  2174. if (mutex_lock_interruptible(&module_mutex) != 0)
  2175. return -EINTR;
  2176. /* Do all the hard work */
  2177. mod = load_module(umod, len, uargs);
  2178. if (IS_ERR(mod)) {
  2179. mutex_unlock(&module_mutex);
  2180. return PTR_ERR(mod);
  2181. }
  2182. /* Drop lock so they can recurse */
  2183. mutex_unlock(&module_mutex);
  2184. blocking_notifier_call_chain(&module_notify_list,
  2185. MODULE_STATE_COMING, mod);
  2186. do_mod_ctors(mod);
  2187. /* Start the module */
  2188. if (mod->init != NULL)
  2189. ret = do_one_initcall(mod->init);
  2190. if (ret < 0) {
  2191. /* Init routine failed: abort. Try to protect us from
  2192. buggy refcounters. */
  2193. mod->state = MODULE_STATE_GOING;
  2194. synchronize_sched();
  2195. module_put(mod);
  2196. blocking_notifier_call_chain(&module_notify_list,
  2197. MODULE_STATE_GOING, mod);
  2198. mutex_lock(&module_mutex);
  2199. free_module(mod);
  2200. mutex_unlock(&module_mutex);
  2201. wake_up(&module_wq);
  2202. return ret;
  2203. }
  2204. if (ret > 0) {
  2205. printk(KERN_WARNING
  2206. "%s: '%s'->init suspiciously returned %d, it should follow 0/-E convention\n"
  2207. "%s: loading module anyway...\n",
  2208. __func__, mod->name, ret,
  2209. __func__);
  2210. dump_stack();
  2211. }
  2212. /* Now it's a first class citizen! Wake up anyone waiting for it. */
  2213. mod->state = MODULE_STATE_LIVE;
  2214. wake_up(&module_wq);
  2215. blocking_notifier_call_chain(&module_notify_list,
  2216. MODULE_STATE_LIVE, mod);
  2217. /* We need to finish all async code before the module init sequence is done */
  2218. async_synchronize_full();
  2219. mutex_lock(&module_mutex);
  2220. /* Drop initial reference. */
  2221. module_put(mod);
  2222. trim_init_extable(mod);
  2223. #ifdef CONFIG_KALLSYMS
  2224. mod->num_symtab = mod->core_num_syms;
  2225. mod->symtab = mod->core_symtab;
  2226. mod->strtab = mod->core_strtab;
  2227. #endif
  2228. module_free(mod, mod->module_init);
  2229. mod->module_init = NULL;
  2230. mod->init_size = 0;
  2231. mod->init_text_size = 0;
  2232. mutex_unlock(&module_mutex);
  2233. return 0;
  2234. }
  2235. static inline int within(unsigned long addr, void *start, unsigned long size)
  2236. {
  2237. return ((void *)addr >= start && (void *)addr < start + size);
  2238. }
  2239. #ifdef CONFIG_KALLSYMS
  2240. /*
  2241. * This ignores the intensely annoying "mapping symbols" found
  2242. * in ARM ELF files: $a, $t and $d.
  2243. */
  2244. static inline int is_arm_mapping_symbol(const char *str)
  2245. {
  2246. return str[0] == '$' && strchr("atd", str[1])
  2247. && (str[2] == '\0' || str[2] == '.');
  2248. }
  2249. static const char *get_ksymbol(struct module *mod,
  2250. unsigned long addr,
  2251. unsigned long *size,
  2252. unsigned long *offset)
  2253. {
  2254. unsigned int i, best = 0;
  2255. unsigned long nextval;
  2256. /* At worse, next value is at end of module */
  2257. if (within_module_init(addr, mod))
  2258. nextval = (unsigned long)mod->module_init+mod->init_text_size;
  2259. else
  2260. nextval = (unsigned long)mod->module_core+mod->core_text_size;
  2261. /* Scan for closest preceeding symbol, and next symbol. (ELF
  2262. starts real symbols at 1). */
  2263. for (i = 1; i < mod->num_symtab; i++) {
  2264. if (mod->symtab[i].st_shndx == SHN_UNDEF)
  2265. continue;
  2266. /* We ignore unnamed symbols: they're uninformative
  2267. * and inserted at a whim. */
  2268. if (mod->symtab[i].st_value <= addr
  2269. && mod->symtab[i].st_value > mod->symtab[best].st_value
  2270. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2271. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2272. best = i;
  2273. if (mod->symtab[i].st_value > addr
  2274. && mod->symtab[i].st_value < nextval
  2275. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  2276. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  2277. nextval = mod->symtab[i].st_value;
  2278. }
  2279. if (!best)
  2280. return NULL;
  2281. if (size)
  2282. *size = nextval - mod->symtab[best].st_value;
  2283. if (offset)
  2284. *offset = addr - mod->symtab[best].st_value;
  2285. return mod->strtab + mod->symtab[best].st_name;
  2286. }
  2287. /* For kallsyms to ask for address resolution. NULL means not found. Careful
  2288. * not to lock to avoid deadlock on oopses, simply disable preemption. */
  2289. const char *module_address_lookup(unsigned long addr,
  2290. unsigned long *size,
  2291. unsigned long *offset,
  2292. char **modname,
  2293. char *namebuf)
  2294. {
  2295. struct module *mod;
  2296. const char *ret = NULL;
  2297. preempt_disable();
  2298. list_for_each_entry_rcu(mod, &modules, list) {
  2299. if (within_module_init(addr, mod) ||
  2300. within_module_core(addr, mod)) {
  2301. if (modname)
  2302. *modname = mod->name;
  2303. ret = get_ksymbol(mod, addr, size, offset);
  2304. break;
  2305. }
  2306. }
  2307. /* Make a copy in here where it's safe */
  2308. if (ret) {
  2309. strncpy(namebuf, ret, KSYM_NAME_LEN - 1);
  2310. ret = namebuf;
  2311. }
  2312. preempt_enable();
  2313. return ret;
  2314. }
  2315. int lookup_module_symbol_name(unsigned long addr, char *symname)
  2316. {
  2317. struct module *mod;
  2318. preempt_disable();
  2319. list_for_each_entry_rcu(mod, &modules, list) {
  2320. if (within_module_init(addr, mod) ||
  2321. within_module_core(addr, mod)) {
  2322. const char *sym;
  2323. sym = get_ksymbol(mod, addr, NULL, NULL);
  2324. if (!sym)
  2325. goto out;
  2326. strlcpy(symname, sym, KSYM_NAME_LEN);
  2327. preempt_enable();
  2328. return 0;
  2329. }
  2330. }
  2331. out:
  2332. preempt_enable();
  2333. return -ERANGE;
  2334. }
  2335. int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
  2336. unsigned long *offset, char *modname, char *name)
  2337. {
  2338. struct module *mod;
  2339. preempt_disable();
  2340. list_for_each_entry_rcu(mod, &modules, list) {
  2341. if (within_module_init(addr, mod) ||
  2342. within_module_core(addr, mod)) {
  2343. const char *sym;
  2344. sym = get_ksymbol(mod, addr, size, offset);
  2345. if (!sym)
  2346. goto out;
  2347. if (modname)
  2348. strlcpy(modname, mod->name, MODULE_NAME_LEN);
  2349. if (name)
  2350. strlcpy(name, sym, KSYM_NAME_LEN);
  2351. preempt_enable();
  2352. return 0;
  2353. }
  2354. }
  2355. out:
  2356. preempt_enable();
  2357. return -ERANGE;
  2358. }
  2359. int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
  2360. char *name, char *module_name, int *exported)
  2361. {
  2362. struct module *mod;
  2363. preempt_disable();
  2364. list_for_each_entry_rcu(mod, &modules, list) {
  2365. if (symnum < mod->num_symtab) {
  2366. *value = mod->symtab[symnum].st_value;
  2367. *type = mod->symtab[symnum].st_info;
  2368. strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
  2369. KSYM_NAME_LEN);
  2370. strlcpy(module_name, mod->name, MODULE_NAME_LEN);
  2371. *exported = is_exported(name, *value, mod);
  2372. preempt_enable();
  2373. return 0;
  2374. }
  2375. symnum -= mod->num_symtab;
  2376. }
  2377. preempt_enable();
  2378. return -ERANGE;
  2379. }
  2380. static unsigned long mod_find_symname(struct module *mod, const char *name)
  2381. {
  2382. unsigned int i;
  2383. for (i = 0; i < mod->num_symtab; i++)
  2384. if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
  2385. mod->symtab[i].st_info != 'U')
  2386. return mod->symtab[i].st_value;
  2387. return 0;
  2388. }
  2389. /* Look for this name: can be of form module:name. */
  2390. unsigned long module_kallsyms_lookup_name(const char *name)
  2391. {
  2392. struct module *mod;
  2393. char *colon;
  2394. unsigned long ret = 0;
  2395. /* Don't lock: we're in enough trouble already. */
  2396. preempt_disable();
  2397. if ((colon = strchr(name, ':')) != NULL) {
  2398. *colon = '\0';
  2399. if ((mod = find_module(name)) != NULL)
  2400. ret = mod_find_symname(mod, colon+1);
  2401. *colon = ':';
  2402. } else {
  2403. list_for_each_entry_rcu(mod, &modules, list)
  2404. if ((ret = mod_find_symname(mod, name)) != 0)
  2405. break;
  2406. }
  2407. preempt_enable();
  2408. return ret;
  2409. }
  2410. int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
  2411. struct module *, unsigned long),
  2412. void *data)
  2413. {
  2414. struct module *mod;
  2415. unsigned int i;
  2416. int ret;
  2417. list_for_each_entry(mod, &modules, list) {
  2418. for (i = 0; i < mod->num_symtab; i++) {
  2419. ret = fn(data, mod->strtab + mod->symtab[i].st_name,
  2420. mod, mod->symtab[i].st_value);
  2421. if (ret != 0)
  2422. return ret;
  2423. }
  2424. }
  2425. return 0;
  2426. }
  2427. #endif /* CONFIG_KALLSYMS */
  2428. static char *module_flags(struct module *mod, char *buf)
  2429. {
  2430. int bx = 0;
  2431. if (mod->taints ||
  2432. mod->state == MODULE_STATE_GOING ||
  2433. mod->state == MODULE_STATE_COMING) {
  2434. buf[bx++] = '(';
  2435. if (mod->taints & (1 << TAINT_PROPRIETARY_MODULE))
  2436. buf[bx++] = 'P';
  2437. if (mod->taints & (1 << TAINT_FORCED_MODULE))
  2438. buf[bx++] = 'F';
  2439. if (mod->taints & (1 << TAINT_CRAP))
  2440. buf[bx++] = 'C';
  2441. /*
  2442. * TAINT_FORCED_RMMOD: could be added.
  2443. * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
  2444. * apply to modules.
  2445. */
  2446. /* Show a - for module-is-being-unloaded */
  2447. if (mod->state == MODULE_STATE_GOING)
  2448. buf[bx++] = '-';
  2449. /* Show a + for module-is-being-loaded */
  2450. if (mod->state == MODULE_STATE_COMING)
  2451. buf[bx++] = '+';
  2452. buf[bx++] = ')';
  2453. }
  2454. buf[bx] = '\0';
  2455. return buf;
  2456. }
  2457. #ifdef CONFIG_PROC_FS
  2458. /* Called by the /proc file system to return a list of modules. */
  2459. static void *m_start(struct seq_file *m, loff_t *pos)
  2460. {
  2461. mutex_lock(&module_mutex);
  2462. return seq_list_start(&modules, *pos);
  2463. }
  2464. static void *m_next(struct seq_file *m, void *p, loff_t *pos)
  2465. {
  2466. return seq_list_next(p, &modules, pos);
  2467. }
  2468. static void m_stop(struct seq_file *m, void *p)
  2469. {
  2470. mutex_unlock(&module_mutex);
  2471. }
  2472. static int m_show(struct seq_file *m, void *p)
  2473. {
  2474. struct module *mod = list_entry(p, struct module, list);
  2475. char buf[8];
  2476. seq_printf(m, "%s %u",
  2477. mod->name, mod->init_size + mod->core_size);
  2478. print_unload_info(m, mod);
  2479. /* Informative for users. */
  2480. seq_printf(m, " %s",
  2481. mod->state == MODULE_STATE_GOING ? "Unloading":
  2482. mod->state == MODULE_STATE_COMING ? "Loading":
  2483. "Live");
  2484. /* Used by oprofile and other similar tools. */
  2485. seq_printf(m, " 0x%p", mod->module_core);
  2486. /* Taints info */
  2487. if (mod->taints)
  2488. seq_printf(m, " %s", module_flags(mod, buf));
  2489. seq_printf(m, "\n");
  2490. return 0;
  2491. }
  2492. /* Format: modulename size refcount deps address
  2493. Where refcount is a number or -, and deps is a comma-separated list
  2494. of depends or -.
  2495. */
  2496. static const struct seq_operations modules_op = {
  2497. .start = m_start,
  2498. .next = m_next,
  2499. .stop = m_stop,
  2500. .show = m_show
  2501. };
  2502. static int modules_open(struct inode *inode, struct file *file)
  2503. {
  2504. return seq_open(file, &modules_op);
  2505. }
  2506. static const struct file_operations proc_modules_operations = {
  2507. .open = modules_open,
  2508. .read = seq_read,
  2509. .llseek = seq_lseek,
  2510. .release = seq_release,
  2511. };
  2512. static int __init proc_modules_init(void)
  2513. {
  2514. proc_create("modules", 0, NULL, &proc_modules_operations);
  2515. return 0;
  2516. }
  2517. module_init(proc_modules_init);
  2518. #endif
  2519. /* Given an address, look for it in the module exception tables. */
  2520. const struct exception_table_entry *search_module_extables(unsigned long addr)
  2521. {
  2522. const struct exception_table_entry *e = NULL;
  2523. struct module *mod;
  2524. preempt_disable();
  2525. list_for_each_entry_rcu(mod, &modules, list) {
  2526. if (mod->num_exentries == 0)
  2527. continue;
  2528. e = search_extable(mod->extable,
  2529. mod->extable + mod->num_exentries - 1,
  2530. addr);
  2531. if (e)
  2532. break;
  2533. }
  2534. preempt_enable();
  2535. /* Now, if we found one, we are running inside it now, hence
  2536. we cannot unload the module, hence no refcnt needed. */
  2537. return e;
  2538. }
  2539. /*
  2540. * is_module_address - is this address inside a module?
  2541. * @addr: the address to check.
  2542. *
  2543. * See is_module_text_address() if you simply want to see if the address
  2544. * is code (not data).
  2545. */
  2546. bool is_module_address(unsigned long addr)
  2547. {
  2548. bool ret;
  2549. preempt_disable();
  2550. ret = __module_address(addr) != NULL;
  2551. preempt_enable();
  2552. return ret;
  2553. }
  2554. /*
  2555. * __module_address - get the module which contains an address.
  2556. * @addr: the address.
  2557. *
  2558. * Must be called with preempt disabled or module mutex held so that
  2559. * module doesn't get freed during this.
  2560. */
  2561. struct module *__module_address(unsigned long addr)
  2562. {
  2563. struct module *mod;
  2564. if (addr < module_addr_min || addr > module_addr_max)
  2565. return NULL;
  2566. list_for_each_entry_rcu(mod, &modules, list)
  2567. if (within_module_core(addr, mod)
  2568. || within_module_init(addr, mod))
  2569. return mod;
  2570. return NULL;
  2571. }
  2572. EXPORT_SYMBOL_GPL(__module_address);
  2573. /*
  2574. * is_module_text_address - is this address inside module code?
  2575. * @addr: the address to check.
  2576. *
  2577. * See is_module_address() if you simply want to see if the address is
  2578. * anywhere in a module. See kernel_text_address() for testing if an
  2579. * address corresponds to kernel or module code.
  2580. */
  2581. bool is_module_text_address(unsigned long addr)
  2582. {
  2583. bool ret;
  2584. preempt_disable();
  2585. ret = __module_text_address(addr) != NULL;
  2586. preempt_enable();
  2587. return ret;
  2588. }
  2589. /*
  2590. * __module_text_address - get the module whose code contains an address.
  2591. * @addr: the address.
  2592. *
  2593. * Must be called with preempt disabled or module mutex held so that
  2594. * module doesn't get freed during this.
  2595. */
  2596. struct module *__module_text_address(unsigned long addr)
  2597. {
  2598. struct module *mod = __module_address(addr);
  2599. if (mod) {
  2600. /* Make sure it's within the text section. */
  2601. if (!within(addr, mod->module_init, mod->init_text_size)
  2602. && !within(addr, mod->module_core, mod->core_text_size))
  2603. mod = NULL;
  2604. }
  2605. return mod;
  2606. }
  2607. EXPORT_SYMBOL_GPL(__module_text_address);
  2608. /* Don't grab lock, we're oopsing. */
  2609. void print_modules(void)
  2610. {
  2611. struct module *mod;
  2612. char buf[8];
  2613. printk(KERN_DEFAULT "Modules linked in:");
  2614. /* Most callers should already have preempt disabled, but make sure */
  2615. preempt_disable();
  2616. list_for_each_entry_rcu(mod, &modules, list)
  2617. printk(" %s%s", mod->name, module_flags(mod, buf));
  2618. preempt_enable();
  2619. if (last_unloaded_module[0])
  2620. printk(" [last unloaded: %s]", last_unloaded_module);
  2621. printk("\n");
  2622. }
  2623. #ifdef CONFIG_MODVERSIONS
  2624. /* Generate the signature for all relevant module structures here.
  2625. * If these change, we don't want to try to parse the module. */
  2626. void module_layout(struct module *mod,
  2627. struct modversion_info *ver,
  2628. struct kernel_param *kp,
  2629. struct kernel_symbol *ks,
  2630. struct tracepoint *tp)
  2631. {
  2632. }
  2633. EXPORT_SYMBOL(module_layout);
  2634. #endif
  2635. #ifdef CONFIG_TRACEPOINTS
  2636. void module_update_tracepoints(void)
  2637. {
  2638. struct module *mod;
  2639. mutex_lock(&module_mutex);
  2640. list_for_each_entry(mod, &modules, list)
  2641. if (!mod->taints)
  2642. tracepoint_update_probe_range(mod->tracepoints,
  2643. mod->tracepoints + mod->num_tracepoints);
  2644. mutex_unlock(&module_mutex);
  2645. }
  2646. /*
  2647. * Returns 0 if current not found.
  2648. * Returns 1 if current found.
  2649. */
  2650. int module_get_iter_tracepoints(struct tracepoint_iter *iter)
  2651. {
  2652. struct module *iter_mod;
  2653. int found = 0;
  2654. mutex_lock(&module_mutex);
  2655. list_for_each_entry(iter_mod, &modules, list) {
  2656. if (!iter_mod->taints) {
  2657. /*
  2658. * Sorted module list
  2659. */
  2660. if (iter_mod < iter->module)
  2661. continue;
  2662. else if (iter_mod > iter->module)
  2663. iter->tracepoint = NULL;
  2664. found = tracepoint_get_iter_range(&iter->tracepoint,
  2665. iter_mod->tracepoints,
  2666. iter_mod->tracepoints
  2667. + iter_mod->num_tracepoints);
  2668. if (found) {
  2669. iter->module = iter_mod;
  2670. break;
  2671. }
  2672. }
  2673. }
  2674. mutex_unlock(&module_mutex);
  2675. return found;
  2676. }
  2677. #endif