module.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496
  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/init.h>
  19. #include <linux/kallsyms.h>
  20. #include <linux/kernel.h>
  21. #include <linux/slab.h>
  22. #include <linux/vmalloc.h>
  23. #include <linux/elf.h>
  24. #include <linux/seq_file.h>
  25. #include <linux/syscalls.h>
  26. #include <linux/fcntl.h>
  27. #include <linux/rcupdate.h>
  28. #include <linux/capability.h>
  29. #include <linux/cpu.h>
  30. #include <linux/moduleparam.h>
  31. #include <linux/errno.h>
  32. #include <linux/err.h>
  33. #include <linux/vermagic.h>
  34. #include <linux/notifier.h>
  35. #include <linux/sched.h>
  36. #include <linux/stop_machine.h>
  37. #include <linux/device.h>
  38. #include <linux/string.h>
  39. #include <linux/mutex.h>
  40. #include <linux/unwind.h>
  41. #include <asm/uaccess.h>
  42. #include <asm/semaphore.h>
  43. #include <asm/cacheflush.h>
  44. #include <linux/license.h>
  45. extern int module_sysfs_initialized;
  46. #if 0
  47. #define DEBUGP printk
  48. #else
  49. #define DEBUGP(fmt , a...)
  50. #endif
  51. #ifndef ARCH_SHF_SMALL
  52. #define ARCH_SHF_SMALL 0
  53. #endif
  54. /* If this is set, the section belongs in the init part of the module */
  55. #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
  56. /* Protects module list */
  57. static DEFINE_SPINLOCK(modlist_lock);
  58. /* List of modules, protected by module_mutex AND modlist_lock */
  59. static DEFINE_MUTEX(module_mutex);
  60. static LIST_HEAD(modules);
  61. static BLOCKING_NOTIFIER_HEAD(module_notify_list);
  62. int register_module_notifier(struct notifier_block * nb)
  63. {
  64. return blocking_notifier_chain_register(&module_notify_list, nb);
  65. }
  66. EXPORT_SYMBOL(register_module_notifier);
  67. int unregister_module_notifier(struct notifier_block * nb)
  68. {
  69. return blocking_notifier_chain_unregister(&module_notify_list, nb);
  70. }
  71. EXPORT_SYMBOL(unregister_module_notifier);
  72. /* We require a truly strong try_module_get() */
  73. static inline int strong_try_module_get(struct module *mod)
  74. {
  75. if (mod && mod->state == MODULE_STATE_COMING)
  76. return 0;
  77. return try_module_get(mod);
  78. }
  79. static inline void add_taint_module(struct module *mod, unsigned flag)
  80. {
  81. add_taint(flag);
  82. mod->taints |= flag;
  83. }
  84. /*
  85. * A thread that wants to hold a reference to a module only while it
  86. * is running can call this to safely exit. nfsd and lockd use this.
  87. */
  88. void __module_put_and_exit(struct module *mod, long code)
  89. {
  90. module_put(mod);
  91. do_exit(code);
  92. }
  93. EXPORT_SYMBOL(__module_put_and_exit);
  94. /* Find a module section: 0 means not found. */
  95. static unsigned int find_sec(Elf_Ehdr *hdr,
  96. Elf_Shdr *sechdrs,
  97. const char *secstrings,
  98. const char *name)
  99. {
  100. unsigned int i;
  101. for (i = 1; i < hdr->e_shnum; i++)
  102. /* Alloc bit cleared means "ignore it." */
  103. if ((sechdrs[i].sh_flags & SHF_ALLOC)
  104. && strcmp(secstrings+sechdrs[i].sh_name, name) == 0)
  105. return i;
  106. return 0;
  107. }
  108. /* Provided by the linker */
  109. extern const struct kernel_symbol __start___ksymtab[];
  110. extern const struct kernel_symbol __stop___ksymtab[];
  111. extern const struct kernel_symbol __start___ksymtab_gpl[];
  112. extern const struct kernel_symbol __stop___ksymtab_gpl[];
  113. extern const struct kernel_symbol __start___ksymtab_gpl_future[];
  114. extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
  115. extern const struct kernel_symbol __start___ksymtab_unused[];
  116. extern const struct kernel_symbol __stop___ksymtab_unused[];
  117. extern const struct kernel_symbol __start___ksymtab_unused_gpl[];
  118. extern const struct kernel_symbol __stop___ksymtab_unused_gpl[];
  119. extern const struct kernel_symbol __start___ksymtab_gpl_future[];
  120. extern const struct kernel_symbol __stop___ksymtab_gpl_future[];
  121. extern const unsigned long __start___kcrctab[];
  122. extern const unsigned long __start___kcrctab_gpl[];
  123. extern const unsigned long __start___kcrctab_gpl_future[];
  124. extern const unsigned long __start___kcrctab_unused[];
  125. extern const unsigned long __start___kcrctab_unused_gpl[];
  126. #ifndef CONFIG_MODVERSIONS
  127. #define symversion(base, idx) NULL
  128. #else
  129. #define symversion(base, idx) ((base != NULL) ? ((base) + (idx)) : NULL)
  130. #endif
  131. /* lookup symbol in given range of kernel_symbols */
  132. static const struct kernel_symbol *lookup_symbol(const char *name,
  133. const struct kernel_symbol *start,
  134. const struct kernel_symbol *stop)
  135. {
  136. const struct kernel_symbol *ks = start;
  137. for (; ks < stop; ks++)
  138. if (strcmp(ks->name, name) == 0)
  139. return ks;
  140. return NULL;
  141. }
  142. static void printk_unused_warning(const char *name)
  143. {
  144. printk(KERN_WARNING "Symbol %s is marked as UNUSED, "
  145. "however this module is using it.\n", name);
  146. printk(KERN_WARNING "This symbol will go away in the future.\n");
  147. printk(KERN_WARNING "Please evalute if this is the right api to use, "
  148. "and if it really is, submit a report the linux kernel "
  149. "mailinglist together with submitting your code for "
  150. "inclusion.\n");
  151. }
  152. /* Find a symbol, return value, crc and module which owns it */
  153. static unsigned long __find_symbol(const char *name,
  154. struct module **owner,
  155. const unsigned long **crc,
  156. int gplok)
  157. {
  158. struct module *mod;
  159. const struct kernel_symbol *ks;
  160. /* Core kernel first. */
  161. *owner = NULL;
  162. ks = lookup_symbol(name, __start___ksymtab, __stop___ksymtab);
  163. if (ks) {
  164. *crc = symversion(__start___kcrctab, (ks - __start___ksymtab));
  165. return ks->value;
  166. }
  167. if (gplok) {
  168. ks = lookup_symbol(name, __start___ksymtab_gpl,
  169. __stop___ksymtab_gpl);
  170. if (ks) {
  171. *crc = symversion(__start___kcrctab_gpl,
  172. (ks - __start___ksymtab_gpl));
  173. return ks->value;
  174. }
  175. }
  176. ks = lookup_symbol(name, __start___ksymtab_gpl_future,
  177. __stop___ksymtab_gpl_future);
  178. if (ks) {
  179. if (!gplok) {
  180. printk(KERN_WARNING "Symbol %s is being used "
  181. "by a non-GPL module, which will not "
  182. "be allowed in the future\n", name);
  183. printk(KERN_WARNING "Please see the file "
  184. "Documentation/feature-removal-schedule.txt "
  185. "in the kernel source tree for more "
  186. "details.\n");
  187. }
  188. *crc = symversion(__start___kcrctab_gpl_future,
  189. (ks - __start___ksymtab_gpl_future));
  190. return ks->value;
  191. }
  192. ks = lookup_symbol(name, __start___ksymtab_unused,
  193. __stop___ksymtab_unused);
  194. if (ks) {
  195. printk_unused_warning(name);
  196. *crc = symversion(__start___kcrctab_unused,
  197. (ks - __start___ksymtab_unused));
  198. return ks->value;
  199. }
  200. if (gplok)
  201. ks = lookup_symbol(name, __start___ksymtab_unused_gpl,
  202. __stop___ksymtab_unused_gpl);
  203. if (ks) {
  204. printk_unused_warning(name);
  205. *crc = symversion(__start___kcrctab_unused_gpl,
  206. (ks - __start___ksymtab_unused_gpl));
  207. return ks->value;
  208. }
  209. /* Now try modules. */
  210. list_for_each_entry(mod, &modules, list) {
  211. *owner = mod;
  212. ks = lookup_symbol(name, mod->syms, mod->syms + mod->num_syms);
  213. if (ks) {
  214. *crc = symversion(mod->crcs, (ks - mod->syms));
  215. return ks->value;
  216. }
  217. if (gplok) {
  218. ks = lookup_symbol(name, mod->gpl_syms,
  219. mod->gpl_syms + mod->num_gpl_syms);
  220. if (ks) {
  221. *crc = symversion(mod->gpl_crcs,
  222. (ks - mod->gpl_syms));
  223. return ks->value;
  224. }
  225. }
  226. ks = lookup_symbol(name, mod->unused_syms, mod->unused_syms + mod->num_unused_syms);
  227. if (ks) {
  228. printk_unused_warning(name);
  229. *crc = symversion(mod->unused_crcs, (ks - mod->unused_syms));
  230. return ks->value;
  231. }
  232. if (gplok) {
  233. ks = lookup_symbol(name, mod->unused_gpl_syms,
  234. mod->unused_gpl_syms + mod->num_unused_gpl_syms);
  235. if (ks) {
  236. printk_unused_warning(name);
  237. *crc = symversion(mod->unused_gpl_crcs,
  238. (ks - mod->unused_gpl_syms));
  239. return ks->value;
  240. }
  241. }
  242. ks = lookup_symbol(name, mod->gpl_future_syms,
  243. (mod->gpl_future_syms +
  244. mod->num_gpl_future_syms));
  245. if (ks) {
  246. if (!gplok) {
  247. printk(KERN_WARNING "Symbol %s is being used "
  248. "by a non-GPL module, which will not "
  249. "be allowed in the future\n", name);
  250. printk(KERN_WARNING "Please see the file "
  251. "Documentation/feature-removal-schedule.txt "
  252. "in the kernel source tree for more "
  253. "details.\n");
  254. }
  255. *crc = symversion(mod->gpl_future_crcs,
  256. (ks - mod->gpl_future_syms));
  257. return ks->value;
  258. }
  259. }
  260. DEBUGP("Failed to find symbol %s\n", name);
  261. return 0;
  262. }
  263. /* Search for module by name: must hold module_mutex. */
  264. static struct module *find_module(const char *name)
  265. {
  266. struct module *mod;
  267. list_for_each_entry(mod, &modules, list) {
  268. if (strcmp(mod->name, name) == 0)
  269. return mod;
  270. }
  271. return NULL;
  272. }
  273. #ifdef CONFIG_SMP
  274. /* Number of blocks used and allocated. */
  275. static unsigned int pcpu_num_used, pcpu_num_allocated;
  276. /* Size of each block. -ve means used. */
  277. static int *pcpu_size;
  278. static int split_block(unsigned int i, unsigned short size)
  279. {
  280. /* Reallocation required? */
  281. if (pcpu_num_used + 1 > pcpu_num_allocated) {
  282. int *new;
  283. new = krealloc(pcpu_size, sizeof(new[0])*pcpu_num_allocated*2,
  284. GFP_KERNEL);
  285. if (!new)
  286. return 0;
  287. pcpu_num_allocated *= 2;
  288. pcpu_size = new;
  289. }
  290. /* Insert a new subblock */
  291. memmove(&pcpu_size[i+1], &pcpu_size[i],
  292. sizeof(pcpu_size[0]) * (pcpu_num_used - i));
  293. pcpu_num_used++;
  294. pcpu_size[i+1] -= size;
  295. pcpu_size[i] = size;
  296. return 1;
  297. }
  298. static inline unsigned int block_size(int val)
  299. {
  300. if (val < 0)
  301. return -val;
  302. return val;
  303. }
  304. /* Created by linker magic */
  305. extern char __per_cpu_start[], __per_cpu_end[];
  306. static void *percpu_modalloc(unsigned long size, unsigned long align,
  307. const char *name)
  308. {
  309. unsigned long extra;
  310. unsigned int i;
  311. void *ptr;
  312. if (align > PAGE_SIZE) {
  313. printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
  314. name, align, PAGE_SIZE);
  315. align = PAGE_SIZE;
  316. }
  317. ptr = __per_cpu_start;
  318. for (i = 0; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
  319. /* Extra for alignment requirement. */
  320. extra = ALIGN((unsigned long)ptr, align) - (unsigned long)ptr;
  321. BUG_ON(i == 0 && extra != 0);
  322. if (pcpu_size[i] < 0 || pcpu_size[i] < extra + size)
  323. continue;
  324. /* Transfer extra to previous block. */
  325. if (pcpu_size[i-1] < 0)
  326. pcpu_size[i-1] -= extra;
  327. else
  328. pcpu_size[i-1] += extra;
  329. pcpu_size[i] -= extra;
  330. ptr += extra;
  331. /* Split block if warranted */
  332. if (pcpu_size[i] - size > sizeof(unsigned long))
  333. if (!split_block(i, size))
  334. return NULL;
  335. /* Mark allocated */
  336. pcpu_size[i] = -pcpu_size[i];
  337. return ptr;
  338. }
  339. printk(KERN_WARNING "Could not allocate %lu bytes percpu data\n",
  340. size);
  341. return NULL;
  342. }
  343. static void percpu_modfree(void *freeme)
  344. {
  345. unsigned int i;
  346. void *ptr = __per_cpu_start + block_size(pcpu_size[0]);
  347. /* First entry is core kernel percpu data. */
  348. for (i = 1; i < pcpu_num_used; ptr += block_size(pcpu_size[i]), i++) {
  349. if (ptr == freeme) {
  350. pcpu_size[i] = -pcpu_size[i];
  351. goto free;
  352. }
  353. }
  354. BUG();
  355. free:
  356. /* Merge with previous? */
  357. if (pcpu_size[i-1] >= 0) {
  358. pcpu_size[i-1] += pcpu_size[i];
  359. pcpu_num_used--;
  360. memmove(&pcpu_size[i], &pcpu_size[i+1],
  361. (pcpu_num_used - i) * sizeof(pcpu_size[0]));
  362. i--;
  363. }
  364. /* Merge with next? */
  365. if (i+1 < pcpu_num_used && pcpu_size[i+1] >= 0) {
  366. pcpu_size[i] += pcpu_size[i+1];
  367. pcpu_num_used--;
  368. memmove(&pcpu_size[i+1], &pcpu_size[i+2],
  369. (pcpu_num_used - (i+1)) * sizeof(pcpu_size[0]));
  370. }
  371. }
  372. static unsigned int find_pcpusec(Elf_Ehdr *hdr,
  373. Elf_Shdr *sechdrs,
  374. const char *secstrings)
  375. {
  376. return find_sec(hdr, sechdrs, secstrings, ".data.percpu");
  377. }
  378. static int percpu_modinit(void)
  379. {
  380. pcpu_num_used = 2;
  381. pcpu_num_allocated = 2;
  382. pcpu_size = kmalloc(sizeof(pcpu_size[0]) * pcpu_num_allocated,
  383. GFP_KERNEL);
  384. /* Static in-kernel percpu data (used). */
  385. pcpu_size[0] = -(__per_cpu_end-__per_cpu_start);
  386. /* Free room. */
  387. pcpu_size[1] = PERCPU_ENOUGH_ROOM + pcpu_size[0];
  388. if (pcpu_size[1] < 0) {
  389. printk(KERN_ERR "No per-cpu room for modules.\n");
  390. pcpu_num_used = 1;
  391. }
  392. return 0;
  393. }
  394. __initcall(percpu_modinit);
  395. #else /* ... !CONFIG_SMP */
  396. static inline void *percpu_modalloc(unsigned long size, unsigned long align,
  397. const char *name)
  398. {
  399. return NULL;
  400. }
  401. static inline void percpu_modfree(void *pcpuptr)
  402. {
  403. BUG();
  404. }
  405. static inline unsigned int find_pcpusec(Elf_Ehdr *hdr,
  406. Elf_Shdr *sechdrs,
  407. const char *secstrings)
  408. {
  409. return 0;
  410. }
  411. static inline void percpu_modcopy(void *pcpudst, const void *src,
  412. unsigned long size)
  413. {
  414. /* pcpusec should be 0, and size of that section should be 0. */
  415. BUG_ON(size != 0);
  416. }
  417. #endif /* CONFIG_SMP */
  418. #define MODINFO_ATTR(field) \
  419. static void setup_modinfo_##field(struct module *mod, const char *s) \
  420. { \
  421. mod->field = kstrdup(s, GFP_KERNEL); \
  422. } \
  423. static ssize_t show_modinfo_##field(struct module_attribute *mattr, \
  424. struct module *mod, char *buffer) \
  425. { \
  426. return sprintf(buffer, "%s\n", mod->field); \
  427. } \
  428. static int modinfo_##field##_exists(struct module *mod) \
  429. { \
  430. return mod->field != NULL; \
  431. } \
  432. static void free_modinfo_##field(struct module *mod) \
  433. { \
  434. kfree(mod->field); \
  435. mod->field = NULL; \
  436. } \
  437. static struct module_attribute modinfo_##field = { \
  438. .attr = { .name = __stringify(field), .mode = 0444 }, \
  439. .show = show_modinfo_##field, \
  440. .setup = setup_modinfo_##field, \
  441. .test = modinfo_##field##_exists, \
  442. .free = free_modinfo_##field, \
  443. };
  444. MODINFO_ATTR(version);
  445. MODINFO_ATTR(srcversion);
  446. #ifdef CONFIG_MODULE_UNLOAD
  447. /* Init the unload section of the module. */
  448. static void module_unload_init(struct module *mod)
  449. {
  450. unsigned int i;
  451. INIT_LIST_HEAD(&mod->modules_which_use_me);
  452. for (i = 0; i < NR_CPUS; i++)
  453. local_set(&mod->ref[i].count, 0);
  454. /* Hold reference count during initialization. */
  455. local_set(&mod->ref[raw_smp_processor_id()].count, 1);
  456. /* Backwards compatibility macros put refcount during init. */
  457. mod->waiter = current;
  458. }
  459. /* modules using other modules */
  460. struct module_use
  461. {
  462. struct list_head list;
  463. struct module *module_which_uses;
  464. };
  465. /* Does a already use b? */
  466. static int already_uses(struct module *a, struct module *b)
  467. {
  468. struct module_use *use;
  469. list_for_each_entry(use, &b->modules_which_use_me, list) {
  470. if (use->module_which_uses == a) {
  471. DEBUGP("%s uses %s!\n", a->name, b->name);
  472. return 1;
  473. }
  474. }
  475. DEBUGP("%s does not use %s!\n", a->name, b->name);
  476. return 0;
  477. }
  478. /* Module a uses b */
  479. static int use_module(struct module *a, struct module *b)
  480. {
  481. struct module_use *use;
  482. int no_warn;
  483. if (b == NULL || already_uses(a, b)) return 1;
  484. if (!strong_try_module_get(b))
  485. return 0;
  486. DEBUGP("Allocating new usage for %s.\n", a->name);
  487. use = kmalloc(sizeof(*use), GFP_ATOMIC);
  488. if (!use) {
  489. printk("%s: out of memory loading\n", a->name);
  490. module_put(b);
  491. return 0;
  492. }
  493. use->module_which_uses = a;
  494. list_add(&use->list, &b->modules_which_use_me);
  495. no_warn = sysfs_create_link(b->holders_dir, &a->mkobj.kobj, a->name);
  496. return 1;
  497. }
  498. /* Clear the unload stuff of the module. */
  499. static void module_unload_free(struct module *mod)
  500. {
  501. struct module *i;
  502. list_for_each_entry(i, &modules, list) {
  503. struct module_use *use;
  504. list_for_each_entry(use, &i->modules_which_use_me, list) {
  505. if (use->module_which_uses == mod) {
  506. DEBUGP("%s unusing %s\n", mod->name, i->name);
  507. module_put(i);
  508. list_del(&use->list);
  509. kfree(use);
  510. sysfs_remove_link(i->holders_dir, mod->name);
  511. /* There can be at most one match. */
  512. break;
  513. }
  514. }
  515. }
  516. }
  517. #ifdef CONFIG_MODULE_FORCE_UNLOAD
  518. static inline int try_force_unload(unsigned int flags)
  519. {
  520. int ret = (flags & O_TRUNC);
  521. if (ret)
  522. add_taint(TAINT_FORCED_RMMOD);
  523. return ret;
  524. }
  525. #else
  526. static inline int try_force_unload(unsigned int flags)
  527. {
  528. return 0;
  529. }
  530. #endif /* CONFIG_MODULE_FORCE_UNLOAD */
  531. struct stopref
  532. {
  533. struct module *mod;
  534. int flags;
  535. int *forced;
  536. };
  537. /* Whole machine is stopped with interrupts off when this runs. */
  538. static int __try_stop_module(void *_sref)
  539. {
  540. struct stopref *sref = _sref;
  541. /* If it's not unused, quit unless we are told to block. */
  542. if ((sref->flags & O_NONBLOCK) && module_refcount(sref->mod) != 0) {
  543. if (!(*sref->forced = try_force_unload(sref->flags)))
  544. return -EWOULDBLOCK;
  545. }
  546. /* Mark it as dying. */
  547. sref->mod->state = MODULE_STATE_GOING;
  548. return 0;
  549. }
  550. static int try_stop_module(struct module *mod, int flags, int *forced)
  551. {
  552. struct stopref sref = { mod, flags, forced };
  553. return stop_machine_run(__try_stop_module, &sref, NR_CPUS);
  554. }
  555. unsigned int module_refcount(struct module *mod)
  556. {
  557. unsigned int i, total = 0;
  558. for (i = 0; i < NR_CPUS; i++)
  559. total += local_read(&mod->ref[i].count);
  560. return total;
  561. }
  562. EXPORT_SYMBOL(module_refcount);
  563. /* This exists whether we can unload or not */
  564. static void free_module(struct module *mod);
  565. static void wait_for_zero_refcount(struct module *mod)
  566. {
  567. /* Since we might sleep for some time, drop the semaphore first */
  568. mutex_unlock(&module_mutex);
  569. for (;;) {
  570. DEBUGP("Looking at refcount...\n");
  571. set_current_state(TASK_UNINTERRUPTIBLE);
  572. if (module_refcount(mod) == 0)
  573. break;
  574. schedule();
  575. }
  576. current->state = TASK_RUNNING;
  577. mutex_lock(&module_mutex);
  578. }
  579. asmlinkage long
  580. sys_delete_module(const char __user *name_user, unsigned int flags)
  581. {
  582. struct module *mod;
  583. char name[MODULE_NAME_LEN];
  584. int ret, forced = 0;
  585. if (!capable(CAP_SYS_MODULE))
  586. return -EPERM;
  587. if (strncpy_from_user(name, name_user, MODULE_NAME_LEN-1) < 0)
  588. return -EFAULT;
  589. name[MODULE_NAME_LEN-1] = '\0';
  590. if (mutex_lock_interruptible(&module_mutex) != 0)
  591. return -EINTR;
  592. mod = find_module(name);
  593. if (!mod) {
  594. ret = -ENOENT;
  595. goto out;
  596. }
  597. if (!list_empty(&mod->modules_which_use_me)) {
  598. /* Other modules depend on us: get rid of them first. */
  599. ret = -EWOULDBLOCK;
  600. goto out;
  601. }
  602. /* Doing init or already dying? */
  603. if (mod->state != MODULE_STATE_LIVE) {
  604. /* FIXME: if (force), slam module count and wake up
  605. waiter --RR */
  606. DEBUGP("%s already dying\n", mod->name);
  607. ret = -EBUSY;
  608. goto out;
  609. }
  610. /* If it has an init func, it must have an exit func to unload */
  611. if ((mod->init != NULL && mod->exit == NULL)
  612. || mod->unsafe) {
  613. forced = try_force_unload(flags);
  614. if (!forced) {
  615. /* This module can't be removed */
  616. ret = -EBUSY;
  617. goto out;
  618. }
  619. }
  620. /* Set this up before setting mod->state */
  621. mod->waiter = current;
  622. /* Stop the machine so refcounts can't move and disable module. */
  623. ret = try_stop_module(mod, flags, &forced);
  624. if (ret != 0)
  625. goto out;
  626. /* Never wait if forced. */
  627. if (!forced && module_refcount(mod) != 0)
  628. wait_for_zero_refcount(mod);
  629. /* Final destruction now noone is using it. */
  630. if (mod->exit != NULL) {
  631. mutex_unlock(&module_mutex);
  632. mod->exit();
  633. mutex_lock(&module_mutex);
  634. }
  635. free_module(mod);
  636. out:
  637. mutex_unlock(&module_mutex);
  638. return ret;
  639. }
  640. static void print_unload_info(struct seq_file *m, struct module *mod)
  641. {
  642. struct module_use *use;
  643. int printed_something = 0;
  644. seq_printf(m, " %u ", module_refcount(mod));
  645. /* Always include a trailing , so userspace can differentiate
  646. between this and the old multi-field proc format. */
  647. list_for_each_entry(use, &mod->modules_which_use_me, list) {
  648. printed_something = 1;
  649. seq_printf(m, "%s,", use->module_which_uses->name);
  650. }
  651. if (mod->unsafe) {
  652. printed_something = 1;
  653. seq_printf(m, "[unsafe],");
  654. }
  655. if (mod->init != NULL && mod->exit == NULL) {
  656. printed_something = 1;
  657. seq_printf(m, "[permanent],");
  658. }
  659. if (!printed_something)
  660. seq_printf(m, "-");
  661. }
  662. void __symbol_put(const char *symbol)
  663. {
  664. struct module *owner;
  665. unsigned long flags;
  666. const unsigned long *crc;
  667. spin_lock_irqsave(&modlist_lock, flags);
  668. if (!__find_symbol(symbol, &owner, &crc, 1))
  669. BUG();
  670. module_put(owner);
  671. spin_unlock_irqrestore(&modlist_lock, flags);
  672. }
  673. EXPORT_SYMBOL(__symbol_put);
  674. void symbol_put_addr(void *addr)
  675. {
  676. struct module *modaddr;
  677. if (core_kernel_text((unsigned long)addr))
  678. return;
  679. if (!(modaddr = module_text_address((unsigned long)addr)))
  680. BUG();
  681. module_put(modaddr);
  682. }
  683. EXPORT_SYMBOL_GPL(symbol_put_addr);
  684. static ssize_t show_refcnt(struct module_attribute *mattr,
  685. struct module *mod, char *buffer)
  686. {
  687. /* sysfs holds a reference */
  688. return sprintf(buffer, "%u\n", module_refcount(mod)-1);
  689. }
  690. static struct module_attribute refcnt = {
  691. .attr = { .name = "refcnt", .mode = 0444 },
  692. .show = show_refcnt,
  693. };
  694. void module_put(struct module *module)
  695. {
  696. if (module) {
  697. unsigned int cpu = get_cpu();
  698. local_dec(&module->ref[cpu].count);
  699. /* Maybe they're waiting for us to drop reference? */
  700. if (unlikely(!module_is_live(module)))
  701. wake_up_process(module->waiter);
  702. put_cpu();
  703. }
  704. }
  705. EXPORT_SYMBOL(module_put);
  706. #else /* !CONFIG_MODULE_UNLOAD */
  707. static void print_unload_info(struct seq_file *m, struct module *mod)
  708. {
  709. /* We don't know the usage count, or what modules are using. */
  710. seq_printf(m, " - -");
  711. }
  712. static inline void module_unload_free(struct module *mod)
  713. {
  714. }
  715. static inline int use_module(struct module *a, struct module *b)
  716. {
  717. return strong_try_module_get(b);
  718. }
  719. static inline void module_unload_init(struct module *mod)
  720. {
  721. }
  722. #endif /* CONFIG_MODULE_UNLOAD */
  723. static ssize_t show_initstate(struct module_attribute *mattr,
  724. struct module *mod, char *buffer)
  725. {
  726. const char *state = "unknown";
  727. switch (mod->state) {
  728. case MODULE_STATE_LIVE:
  729. state = "live";
  730. break;
  731. case MODULE_STATE_COMING:
  732. state = "coming";
  733. break;
  734. case MODULE_STATE_GOING:
  735. state = "going";
  736. break;
  737. }
  738. return sprintf(buffer, "%s\n", state);
  739. }
  740. static struct module_attribute initstate = {
  741. .attr = { .name = "initstate", .mode = 0444 },
  742. .show = show_initstate,
  743. };
  744. static struct module_attribute *modinfo_attrs[] = {
  745. &modinfo_version,
  746. &modinfo_srcversion,
  747. &initstate,
  748. #ifdef CONFIG_MODULE_UNLOAD
  749. &refcnt,
  750. #endif
  751. NULL,
  752. };
  753. static const char vermagic[] = VERMAGIC_STRING;
  754. #ifdef CONFIG_MODVERSIONS
  755. static int check_version(Elf_Shdr *sechdrs,
  756. unsigned int versindex,
  757. const char *symname,
  758. struct module *mod,
  759. const unsigned long *crc)
  760. {
  761. unsigned int i, num_versions;
  762. struct modversion_info *versions;
  763. /* Exporting module didn't supply crcs? OK, we're already tainted. */
  764. if (!crc)
  765. return 1;
  766. versions = (void *) sechdrs[versindex].sh_addr;
  767. num_versions = sechdrs[versindex].sh_size
  768. / sizeof(struct modversion_info);
  769. for (i = 0; i < num_versions; i++) {
  770. if (strcmp(versions[i].name, symname) != 0)
  771. continue;
  772. if (versions[i].crc == *crc)
  773. return 1;
  774. printk("%s: disagrees about version of symbol %s\n",
  775. mod->name, symname);
  776. DEBUGP("Found checksum %lX vs module %lX\n",
  777. *crc, versions[i].crc);
  778. return 0;
  779. }
  780. /* Not in module's version table. OK, but that taints the kernel. */
  781. if (!(tainted & TAINT_FORCED_MODULE))
  782. printk("%s: no version for \"%s\" found: kernel tainted.\n",
  783. mod->name, symname);
  784. add_taint_module(mod, TAINT_FORCED_MODULE);
  785. return 1;
  786. }
  787. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  788. unsigned int versindex,
  789. struct module *mod)
  790. {
  791. const unsigned long *crc;
  792. struct module *owner;
  793. if (!__find_symbol("struct_module", &owner, &crc, 1))
  794. BUG();
  795. return check_version(sechdrs, versindex, "struct_module", mod,
  796. crc);
  797. }
  798. /* First part is kernel version, which we ignore. */
  799. static inline int same_magic(const char *amagic, const char *bmagic)
  800. {
  801. amagic += strcspn(amagic, " ");
  802. bmagic += strcspn(bmagic, " ");
  803. return strcmp(amagic, bmagic) == 0;
  804. }
  805. #else
  806. static inline int check_version(Elf_Shdr *sechdrs,
  807. unsigned int versindex,
  808. const char *symname,
  809. struct module *mod,
  810. const unsigned long *crc)
  811. {
  812. return 1;
  813. }
  814. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  815. unsigned int versindex,
  816. struct module *mod)
  817. {
  818. return 1;
  819. }
  820. static inline int same_magic(const char *amagic, const char *bmagic)
  821. {
  822. return strcmp(amagic, bmagic) == 0;
  823. }
  824. #endif /* CONFIG_MODVERSIONS */
  825. /* Resolve a symbol for this module. I.e. if we find one, record usage.
  826. Must be holding module_mutex. */
  827. static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
  828. unsigned int versindex,
  829. const char *name,
  830. struct module *mod)
  831. {
  832. struct module *owner;
  833. unsigned long ret;
  834. const unsigned long *crc;
  835. ret = __find_symbol(name, &owner, &crc,
  836. !(mod->taints & TAINT_PROPRIETARY_MODULE));
  837. if (ret) {
  838. /* use_module can fail due to OOM, or module unloading */
  839. if (!check_version(sechdrs, versindex, name, mod, crc) ||
  840. !use_module(mod, owner))
  841. ret = 0;
  842. }
  843. return ret;
  844. }
  845. /*
  846. * /sys/module/foo/sections stuff
  847. * J. Corbet <corbet@lwn.net>
  848. */
  849. #ifdef CONFIG_KALLSYMS
  850. static ssize_t module_sect_show(struct module_attribute *mattr,
  851. struct module *mod, char *buf)
  852. {
  853. struct module_sect_attr *sattr =
  854. container_of(mattr, struct module_sect_attr, mattr);
  855. return sprintf(buf, "0x%lx\n", sattr->address);
  856. }
  857. static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
  858. {
  859. int section;
  860. for (section = 0; section < sect_attrs->nsections; section++)
  861. kfree(sect_attrs->attrs[section].name);
  862. kfree(sect_attrs);
  863. }
  864. static void add_sect_attrs(struct module *mod, unsigned int nsect,
  865. char *secstrings, Elf_Shdr *sechdrs)
  866. {
  867. unsigned int nloaded = 0, i, size[2];
  868. struct module_sect_attrs *sect_attrs;
  869. struct module_sect_attr *sattr;
  870. struct attribute **gattr;
  871. /* Count loaded sections and allocate structures */
  872. for (i = 0; i < nsect; i++)
  873. if (sechdrs[i].sh_flags & SHF_ALLOC)
  874. nloaded++;
  875. size[0] = ALIGN(sizeof(*sect_attrs)
  876. + nloaded * sizeof(sect_attrs->attrs[0]),
  877. sizeof(sect_attrs->grp.attrs[0]));
  878. size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
  879. sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
  880. if (sect_attrs == NULL)
  881. return;
  882. /* Setup section attributes. */
  883. sect_attrs->grp.name = "sections";
  884. sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
  885. sect_attrs->nsections = 0;
  886. sattr = &sect_attrs->attrs[0];
  887. gattr = &sect_attrs->grp.attrs[0];
  888. for (i = 0; i < nsect; i++) {
  889. if (! (sechdrs[i].sh_flags & SHF_ALLOC))
  890. continue;
  891. sattr->address = sechdrs[i].sh_addr;
  892. sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
  893. GFP_KERNEL);
  894. if (sattr->name == NULL)
  895. goto out;
  896. sect_attrs->nsections++;
  897. sattr->mattr.show = module_sect_show;
  898. sattr->mattr.store = NULL;
  899. sattr->mattr.attr.name = sattr->name;
  900. sattr->mattr.attr.mode = S_IRUGO;
  901. *(gattr++) = &(sattr++)->mattr.attr;
  902. }
  903. *gattr = NULL;
  904. if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
  905. goto out;
  906. mod->sect_attrs = sect_attrs;
  907. return;
  908. out:
  909. free_sect_attrs(sect_attrs);
  910. }
  911. static void remove_sect_attrs(struct module *mod)
  912. {
  913. if (mod->sect_attrs) {
  914. sysfs_remove_group(&mod->mkobj.kobj,
  915. &mod->sect_attrs->grp);
  916. /* We are positive that no one is using any sect attrs
  917. * at this point. Deallocate immediately. */
  918. free_sect_attrs(mod->sect_attrs);
  919. mod->sect_attrs = NULL;
  920. }
  921. }
  922. #else
  923. static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
  924. char *sectstrings, Elf_Shdr *sechdrs)
  925. {
  926. }
  927. static inline void remove_sect_attrs(struct module *mod)
  928. {
  929. }
  930. #endif /* CONFIG_KALLSYMS */
  931. #ifdef CONFIG_SYSFS
  932. int module_add_modinfo_attrs(struct module *mod)
  933. {
  934. struct module_attribute *attr;
  935. struct module_attribute *temp_attr;
  936. int error = 0;
  937. int i;
  938. mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
  939. (ARRAY_SIZE(modinfo_attrs) + 1)),
  940. GFP_KERNEL);
  941. if (!mod->modinfo_attrs)
  942. return -ENOMEM;
  943. temp_attr = mod->modinfo_attrs;
  944. for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
  945. if (!attr->test ||
  946. (attr->test && attr->test(mod))) {
  947. memcpy(temp_attr, attr, sizeof(*temp_attr));
  948. error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
  949. ++temp_attr;
  950. }
  951. }
  952. return error;
  953. }
  954. void module_remove_modinfo_attrs(struct module *mod)
  955. {
  956. struct module_attribute *attr;
  957. int i;
  958. for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
  959. /* pick a field to test for end of list */
  960. if (!attr->attr.name)
  961. break;
  962. sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
  963. if (attr->free)
  964. attr->free(mod);
  965. }
  966. kfree(mod->modinfo_attrs);
  967. }
  968. #endif
  969. #ifdef CONFIG_SYSFS
  970. int mod_sysfs_init(struct module *mod)
  971. {
  972. int err;
  973. if (!module_sysfs_initialized) {
  974. printk(KERN_ERR "%s: module sysfs not initialized\n",
  975. mod->name);
  976. err = -EINVAL;
  977. goto out;
  978. }
  979. memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
  980. err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
  981. if (err)
  982. goto out;
  983. kobj_set_kset_s(&mod->mkobj, module_subsys);
  984. mod->mkobj.mod = mod;
  985. kobject_init(&mod->mkobj.kobj);
  986. out:
  987. return err;
  988. }
  989. int mod_sysfs_setup(struct module *mod,
  990. struct kernel_param *kparam,
  991. unsigned int num_params)
  992. {
  993. int err;
  994. /* delay uevent until full sysfs population */
  995. err = kobject_add(&mod->mkobj.kobj);
  996. if (err)
  997. goto out;
  998. mod->holders_dir = kobject_add_dir(&mod->mkobj.kobj, "holders");
  999. if (!mod->holders_dir) {
  1000. err = -ENOMEM;
  1001. goto out_unreg;
  1002. }
  1003. err = module_param_sysfs_setup(mod, kparam, num_params);
  1004. if (err)
  1005. goto out_unreg_holders;
  1006. err = module_add_modinfo_attrs(mod);
  1007. if (err)
  1008. goto out_unreg_param;
  1009. kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
  1010. return 0;
  1011. out_unreg_param:
  1012. module_param_sysfs_remove(mod);
  1013. out_unreg_holders:
  1014. kobject_unregister(mod->holders_dir);
  1015. out_unreg:
  1016. kobject_del(&mod->mkobj.kobj);
  1017. kobject_put(&mod->mkobj.kobj);
  1018. out:
  1019. return err;
  1020. }
  1021. #endif
  1022. static void mod_kobject_remove(struct module *mod)
  1023. {
  1024. module_remove_modinfo_attrs(mod);
  1025. module_param_sysfs_remove(mod);
  1026. kobject_unregister(mod->mkobj.drivers_dir);
  1027. kobject_unregister(mod->holders_dir);
  1028. kobject_unregister(&mod->mkobj.kobj);
  1029. }
  1030. /*
  1031. * unlink the module with the whole machine is stopped with interrupts off
  1032. * - this defends against kallsyms not taking locks
  1033. */
  1034. static int __unlink_module(void *_mod)
  1035. {
  1036. struct module *mod = _mod;
  1037. list_del(&mod->list);
  1038. return 0;
  1039. }
  1040. /* Free a module, remove from lists, etc (must hold module_mutex). */
  1041. static void free_module(struct module *mod)
  1042. {
  1043. /* Delete from various lists */
  1044. stop_machine_run(__unlink_module, mod, NR_CPUS);
  1045. remove_sect_attrs(mod);
  1046. mod_kobject_remove(mod);
  1047. unwind_remove_table(mod->unwind_info, 0);
  1048. /* Arch-specific cleanup. */
  1049. module_arch_cleanup(mod);
  1050. /* Module unload stuff */
  1051. module_unload_free(mod);
  1052. /* This may be NULL, but that's OK */
  1053. module_free(mod, mod->module_init);
  1054. kfree(mod->args);
  1055. if (mod->percpu)
  1056. percpu_modfree(mod->percpu);
  1057. /* Free lock-classes: */
  1058. lockdep_free_key_range(mod->module_core, mod->core_size);
  1059. /* Finally, free the core (containing the module structure) */
  1060. module_free(mod, mod->module_core);
  1061. }
  1062. void *__symbol_get(const char *symbol)
  1063. {
  1064. struct module *owner;
  1065. unsigned long value, flags;
  1066. const unsigned long *crc;
  1067. spin_lock_irqsave(&modlist_lock, flags);
  1068. value = __find_symbol(symbol, &owner, &crc, 1);
  1069. if (value && !strong_try_module_get(owner))
  1070. value = 0;
  1071. spin_unlock_irqrestore(&modlist_lock, flags);
  1072. return (void *)value;
  1073. }
  1074. EXPORT_SYMBOL_GPL(__symbol_get);
  1075. /*
  1076. * Ensure that an exported symbol [global namespace] does not already exist
  1077. * in the kernel or in some other module's exported symbol table.
  1078. */
  1079. static int verify_export_symbols(struct module *mod)
  1080. {
  1081. const char *name = NULL;
  1082. unsigned long i, ret = 0;
  1083. struct module *owner;
  1084. const unsigned long *crc;
  1085. for (i = 0; i < mod->num_syms; i++)
  1086. if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
  1087. name = mod->syms[i].name;
  1088. ret = -ENOEXEC;
  1089. goto dup;
  1090. }
  1091. for (i = 0; i < mod->num_gpl_syms; i++)
  1092. if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
  1093. name = mod->gpl_syms[i].name;
  1094. ret = -ENOEXEC;
  1095. goto dup;
  1096. }
  1097. dup:
  1098. if (ret)
  1099. printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
  1100. mod->name, name, module_name(owner));
  1101. return ret;
  1102. }
  1103. /* Change all symbols so that sh_value encodes the pointer directly. */
  1104. static int simplify_symbols(Elf_Shdr *sechdrs,
  1105. unsigned int symindex,
  1106. const char *strtab,
  1107. unsigned int versindex,
  1108. unsigned int pcpuindex,
  1109. struct module *mod)
  1110. {
  1111. Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
  1112. unsigned long secbase;
  1113. unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1114. int ret = 0;
  1115. for (i = 1; i < n; i++) {
  1116. switch (sym[i].st_shndx) {
  1117. case SHN_COMMON:
  1118. /* We compiled with -fno-common. These are not
  1119. supposed to happen. */
  1120. DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
  1121. printk("%s: please compile with -fno-common\n",
  1122. mod->name);
  1123. ret = -ENOEXEC;
  1124. break;
  1125. case SHN_ABS:
  1126. /* Don't need to do anything */
  1127. DEBUGP("Absolute symbol: 0x%08lx\n",
  1128. (long)sym[i].st_value);
  1129. break;
  1130. case SHN_UNDEF:
  1131. sym[i].st_value
  1132. = resolve_symbol(sechdrs, versindex,
  1133. strtab + sym[i].st_name, mod);
  1134. /* Ok if resolved. */
  1135. if (sym[i].st_value != 0)
  1136. break;
  1137. /* Ok if weak. */
  1138. if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
  1139. break;
  1140. printk(KERN_WARNING "%s: Unknown symbol %s\n",
  1141. mod->name, strtab + sym[i].st_name);
  1142. ret = -ENOENT;
  1143. break;
  1144. default:
  1145. /* Divert to percpu allocation if a percpu var. */
  1146. if (sym[i].st_shndx == pcpuindex)
  1147. secbase = (unsigned long)mod->percpu;
  1148. else
  1149. secbase = sechdrs[sym[i].st_shndx].sh_addr;
  1150. sym[i].st_value += secbase;
  1151. break;
  1152. }
  1153. }
  1154. return ret;
  1155. }
  1156. /* Update size with this section: return offset. */
  1157. static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
  1158. {
  1159. long ret;
  1160. ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
  1161. *size = ret + sechdr->sh_size;
  1162. return ret;
  1163. }
  1164. /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
  1165. might -- code, read-only data, read-write data, small data. Tally
  1166. sizes, and place the offsets into sh_entsize fields: high bit means it
  1167. belongs in init. */
  1168. static void layout_sections(struct module *mod,
  1169. const Elf_Ehdr *hdr,
  1170. Elf_Shdr *sechdrs,
  1171. const char *secstrings)
  1172. {
  1173. static unsigned long const masks[][2] = {
  1174. /* NOTE: all executable code must be the first section
  1175. * in this array; otherwise modify the text_size
  1176. * finder in the two loops below */
  1177. { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
  1178. { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
  1179. { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
  1180. { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
  1181. };
  1182. unsigned int m, i;
  1183. for (i = 0; i < hdr->e_shnum; i++)
  1184. sechdrs[i].sh_entsize = ~0UL;
  1185. DEBUGP("Core section allocation order:\n");
  1186. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1187. for (i = 0; i < hdr->e_shnum; ++i) {
  1188. Elf_Shdr *s = &sechdrs[i];
  1189. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1190. || (s->sh_flags & masks[m][1])
  1191. || s->sh_entsize != ~0UL
  1192. || strncmp(secstrings + s->sh_name,
  1193. ".init", 5) == 0)
  1194. continue;
  1195. s->sh_entsize = get_offset(&mod->core_size, s);
  1196. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1197. }
  1198. if (m == 0)
  1199. mod->core_text_size = mod->core_size;
  1200. }
  1201. DEBUGP("Init section allocation order:\n");
  1202. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1203. for (i = 0; i < hdr->e_shnum; ++i) {
  1204. Elf_Shdr *s = &sechdrs[i];
  1205. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1206. || (s->sh_flags & masks[m][1])
  1207. || s->sh_entsize != ~0UL
  1208. || strncmp(secstrings + s->sh_name,
  1209. ".init", 5) != 0)
  1210. continue;
  1211. s->sh_entsize = (get_offset(&mod->init_size, s)
  1212. | INIT_OFFSET_MASK);
  1213. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1214. }
  1215. if (m == 0)
  1216. mod->init_text_size = mod->init_size;
  1217. }
  1218. }
  1219. static void set_license(struct module *mod, const char *license)
  1220. {
  1221. if (!license)
  1222. license = "unspecified";
  1223. if (!license_is_gpl_compatible(license)) {
  1224. if (!(tainted & TAINT_PROPRIETARY_MODULE))
  1225. printk(KERN_WARNING "%s: module license '%s' taints "
  1226. "kernel.\n", mod->name, license);
  1227. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1228. }
  1229. }
  1230. /* Parse tag=value strings from .modinfo section */
  1231. static char *next_string(char *string, unsigned long *secsize)
  1232. {
  1233. /* Skip non-zero chars */
  1234. while (string[0]) {
  1235. string++;
  1236. if ((*secsize)-- <= 1)
  1237. return NULL;
  1238. }
  1239. /* Skip any zero padding. */
  1240. while (!string[0]) {
  1241. string++;
  1242. if ((*secsize)-- <= 1)
  1243. return NULL;
  1244. }
  1245. return string;
  1246. }
  1247. static char *get_modinfo(Elf_Shdr *sechdrs,
  1248. unsigned int info,
  1249. const char *tag)
  1250. {
  1251. char *p;
  1252. unsigned int taglen = strlen(tag);
  1253. unsigned long size = sechdrs[info].sh_size;
  1254. for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
  1255. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  1256. return p + taglen + 1;
  1257. }
  1258. return NULL;
  1259. }
  1260. static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
  1261. unsigned int infoindex)
  1262. {
  1263. struct module_attribute *attr;
  1264. int i;
  1265. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1266. if (attr->setup)
  1267. attr->setup(mod,
  1268. get_modinfo(sechdrs,
  1269. infoindex,
  1270. attr->attr.name));
  1271. }
  1272. }
  1273. #ifdef CONFIG_KALLSYMS
  1274. static int is_exported(const char *name, const struct module *mod)
  1275. {
  1276. if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
  1277. return 1;
  1278. else
  1279. if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
  1280. return 1;
  1281. else
  1282. return 0;
  1283. }
  1284. /* As per nm */
  1285. static char elf_type(const Elf_Sym *sym,
  1286. Elf_Shdr *sechdrs,
  1287. const char *secstrings,
  1288. struct module *mod)
  1289. {
  1290. if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
  1291. if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
  1292. return 'v';
  1293. else
  1294. return 'w';
  1295. }
  1296. if (sym->st_shndx == SHN_UNDEF)
  1297. return 'U';
  1298. if (sym->st_shndx == SHN_ABS)
  1299. return 'a';
  1300. if (sym->st_shndx >= SHN_LORESERVE)
  1301. return '?';
  1302. if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
  1303. return 't';
  1304. if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
  1305. && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
  1306. if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
  1307. return 'r';
  1308. else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1309. return 'g';
  1310. else
  1311. return 'd';
  1312. }
  1313. if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
  1314. if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1315. return 's';
  1316. else
  1317. return 'b';
  1318. }
  1319. if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
  1320. ".debug", strlen(".debug")) == 0)
  1321. return 'n';
  1322. return '?';
  1323. }
  1324. static void add_kallsyms(struct module *mod,
  1325. Elf_Shdr *sechdrs,
  1326. unsigned int symindex,
  1327. unsigned int strindex,
  1328. const char *secstrings)
  1329. {
  1330. unsigned int i;
  1331. mod->symtab = (void *)sechdrs[symindex].sh_addr;
  1332. mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1333. mod->strtab = (void *)sechdrs[strindex].sh_addr;
  1334. /* Set types up while we still have access to sections. */
  1335. for (i = 0; i < mod->num_symtab; i++)
  1336. mod->symtab[i].st_info
  1337. = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
  1338. }
  1339. #else
  1340. static inline void add_kallsyms(struct module *mod,
  1341. Elf_Shdr *sechdrs,
  1342. unsigned int symindex,
  1343. unsigned int strindex,
  1344. const char *secstrings)
  1345. {
  1346. }
  1347. #endif /* CONFIG_KALLSYMS */
  1348. /* Allocate and load the module: note that size of section 0 is always
  1349. zero, and we rely on this for optional sections. */
  1350. static struct module *load_module(void __user *umod,
  1351. unsigned long len,
  1352. const char __user *uargs)
  1353. {
  1354. Elf_Ehdr *hdr;
  1355. Elf_Shdr *sechdrs;
  1356. char *secstrings, *args, *modmagic, *strtab = NULL;
  1357. unsigned int i;
  1358. unsigned int symindex = 0;
  1359. unsigned int strindex = 0;
  1360. unsigned int setupindex;
  1361. unsigned int exindex;
  1362. unsigned int exportindex;
  1363. unsigned int modindex;
  1364. unsigned int obsparmindex;
  1365. unsigned int infoindex;
  1366. unsigned int gplindex;
  1367. unsigned int crcindex;
  1368. unsigned int gplcrcindex;
  1369. unsigned int versindex;
  1370. unsigned int pcpuindex;
  1371. unsigned int gplfutureindex;
  1372. unsigned int gplfuturecrcindex;
  1373. unsigned int unwindex = 0;
  1374. unsigned int unusedindex;
  1375. unsigned int unusedcrcindex;
  1376. unsigned int unusedgplindex;
  1377. unsigned int unusedgplcrcindex;
  1378. struct module *mod;
  1379. long err = 0;
  1380. void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
  1381. struct exception_table_entry *extable;
  1382. mm_segment_t old_fs;
  1383. DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
  1384. umod, len, uargs);
  1385. if (len < sizeof(*hdr))
  1386. return ERR_PTR(-ENOEXEC);
  1387. /* Suck in entire file: we'll want most of it. */
  1388. /* vmalloc barfs on "unusual" numbers. Check here */
  1389. if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
  1390. return ERR_PTR(-ENOMEM);
  1391. if (copy_from_user(hdr, umod, len) != 0) {
  1392. err = -EFAULT;
  1393. goto free_hdr;
  1394. }
  1395. /* Sanity checks against insmoding binaries or wrong arch,
  1396. weird elf version */
  1397. if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
  1398. || hdr->e_type != ET_REL
  1399. || !elf_check_arch(hdr)
  1400. || hdr->e_shentsize != sizeof(*sechdrs)) {
  1401. err = -ENOEXEC;
  1402. goto free_hdr;
  1403. }
  1404. if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
  1405. goto truncated;
  1406. /* Convenience variables */
  1407. sechdrs = (void *)hdr + hdr->e_shoff;
  1408. secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  1409. sechdrs[0].sh_addr = 0;
  1410. for (i = 1; i < hdr->e_shnum; i++) {
  1411. if (sechdrs[i].sh_type != SHT_NOBITS
  1412. && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
  1413. goto truncated;
  1414. /* Mark all sections sh_addr with their address in the
  1415. temporary image. */
  1416. sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
  1417. /* Internal symbols and strings. */
  1418. if (sechdrs[i].sh_type == SHT_SYMTAB) {
  1419. symindex = i;
  1420. strindex = sechdrs[i].sh_link;
  1421. strtab = (char *)hdr + sechdrs[strindex].sh_offset;
  1422. }
  1423. #ifndef CONFIG_MODULE_UNLOAD
  1424. /* Don't load .exit sections */
  1425. if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
  1426. sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1427. #endif
  1428. }
  1429. modindex = find_sec(hdr, sechdrs, secstrings,
  1430. ".gnu.linkonce.this_module");
  1431. if (!modindex) {
  1432. printk(KERN_WARNING "No module found in object\n");
  1433. err = -ENOEXEC;
  1434. goto free_hdr;
  1435. }
  1436. mod = (void *)sechdrs[modindex].sh_addr;
  1437. if (symindex == 0) {
  1438. printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
  1439. mod->name);
  1440. err = -ENOEXEC;
  1441. goto free_hdr;
  1442. }
  1443. /* Optional sections */
  1444. exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
  1445. gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
  1446. gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
  1447. unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
  1448. unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
  1449. crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
  1450. gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
  1451. gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
  1452. unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
  1453. unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
  1454. setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
  1455. exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
  1456. obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
  1457. versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
  1458. infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
  1459. pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
  1460. #ifdef ARCH_UNWIND_SECTION_NAME
  1461. unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
  1462. #endif
  1463. /* Don't keep modinfo section */
  1464. sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1465. #ifdef CONFIG_KALLSYMS
  1466. /* Keep symbol and string tables for decoding later. */
  1467. sechdrs[symindex].sh_flags |= SHF_ALLOC;
  1468. sechdrs[strindex].sh_flags |= SHF_ALLOC;
  1469. #endif
  1470. if (unwindex)
  1471. sechdrs[unwindex].sh_flags |= SHF_ALLOC;
  1472. /* Check module struct version now, before we try to use module. */
  1473. if (!check_modstruct_version(sechdrs, versindex, mod)) {
  1474. err = -ENOEXEC;
  1475. goto free_hdr;
  1476. }
  1477. modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
  1478. /* This is allowed: modprobe --force will invalidate it. */
  1479. if (!modmagic) {
  1480. add_taint_module(mod, TAINT_FORCED_MODULE);
  1481. printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
  1482. mod->name);
  1483. } else if (!same_magic(modmagic, vermagic)) {
  1484. printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
  1485. mod->name, modmagic, vermagic);
  1486. err = -ENOEXEC;
  1487. goto free_hdr;
  1488. }
  1489. /* Now copy in args */
  1490. args = strndup_user(uargs, ~0UL >> 1);
  1491. if (IS_ERR(args)) {
  1492. err = PTR_ERR(args);
  1493. goto free_hdr;
  1494. }
  1495. if (find_module(mod->name)) {
  1496. err = -EEXIST;
  1497. goto free_mod;
  1498. }
  1499. mod->state = MODULE_STATE_COMING;
  1500. /* Allow arches to frob section contents and sizes. */
  1501. err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
  1502. if (err < 0)
  1503. goto free_mod;
  1504. if (pcpuindex) {
  1505. /* We have a special allocation for this section. */
  1506. percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
  1507. sechdrs[pcpuindex].sh_addralign,
  1508. mod->name);
  1509. if (!percpu) {
  1510. err = -ENOMEM;
  1511. goto free_mod;
  1512. }
  1513. sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1514. mod->percpu = percpu;
  1515. }
  1516. /* Determine total sizes, and put offsets in sh_entsize. For now
  1517. this is done generically; there doesn't appear to be any
  1518. special cases for the architectures. */
  1519. layout_sections(mod, hdr, sechdrs, secstrings);
  1520. /* Do the allocs. */
  1521. ptr = module_alloc(mod->core_size);
  1522. if (!ptr) {
  1523. err = -ENOMEM;
  1524. goto free_percpu;
  1525. }
  1526. memset(ptr, 0, mod->core_size);
  1527. mod->module_core = ptr;
  1528. ptr = module_alloc(mod->init_size);
  1529. if (!ptr && mod->init_size) {
  1530. err = -ENOMEM;
  1531. goto free_core;
  1532. }
  1533. memset(ptr, 0, mod->init_size);
  1534. mod->module_init = ptr;
  1535. /* Transfer each section which specifies SHF_ALLOC */
  1536. DEBUGP("final section addresses:\n");
  1537. for (i = 0; i < hdr->e_shnum; i++) {
  1538. void *dest;
  1539. if (!(sechdrs[i].sh_flags & SHF_ALLOC))
  1540. continue;
  1541. if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
  1542. dest = mod->module_init
  1543. + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
  1544. else
  1545. dest = mod->module_core + sechdrs[i].sh_entsize;
  1546. if (sechdrs[i].sh_type != SHT_NOBITS)
  1547. memcpy(dest, (void *)sechdrs[i].sh_addr,
  1548. sechdrs[i].sh_size);
  1549. /* Update sh_addr to point to copy in image. */
  1550. sechdrs[i].sh_addr = (unsigned long)dest;
  1551. DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
  1552. }
  1553. /* Module has been moved. */
  1554. mod = (void *)sechdrs[modindex].sh_addr;
  1555. /* Now we've moved module, initialize linked lists, etc. */
  1556. module_unload_init(mod);
  1557. /* Initialize kobject, so we can reference it. */
  1558. if (mod_sysfs_init(mod) != 0)
  1559. goto cleanup;
  1560. /* Set up license info based on the info section */
  1561. set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
  1562. if (strcmp(mod->name, "ndiswrapper") == 0)
  1563. add_taint(TAINT_PROPRIETARY_MODULE);
  1564. if (strcmp(mod->name, "driverloader") == 0)
  1565. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1566. /* Set up MODINFO_ATTR fields */
  1567. setup_modinfo(mod, sechdrs, infoindex);
  1568. /* Fix up syms, so that st_value is a pointer to location. */
  1569. err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
  1570. mod);
  1571. if (err < 0)
  1572. goto cleanup;
  1573. /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
  1574. mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
  1575. mod->syms = (void *)sechdrs[exportindex].sh_addr;
  1576. if (crcindex)
  1577. mod->crcs = (void *)sechdrs[crcindex].sh_addr;
  1578. mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
  1579. mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
  1580. if (gplcrcindex)
  1581. mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
  1582. mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
  1583. sizeof(*mod->gpl_future_syms);
  1584. mod->num_unused_syms = sechdrs[unusedindex].sh_size /
  1585. sizeof(*mod->unused_syms);
  1586. mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
  1587. sizeof(*mod->unused_gpl_syms);
  1588. mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
  1589. if (gplfuturecrcindex)
  1590. mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
  1591. mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
  1592. if (unusedcrcindex)
  1593. mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
  1594. mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
  1595. if (unusedgplcrcindex)
  1596. mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
  1597. #ifdef CONFIG_MODVERSIONS
  1598. if ((mod->num_syms && !crcindex) ||
  1599. (mod->num_gpl_syms && !gplcrcindex) ||
  1600. (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
  1601. (mod->num_unused_syms && !unusedcrcindex) ||
  1602. (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
  1603. printk(KERN_WARNING "%s: No versions for exported symbols."
  1604. " Tainting kernel.\n", mod->name);
  1605. add_taint_module(mod, TAINT_FORCED_MODULE);
  1606. }
  1607. #endif
  1608. /* Now do relocations. */
  1609. for (i = 1; i < hdr->e_shnum; i++) {
  1610. const char *strtab = (char *)sechdrs[strindex].sh_addr;
  1611. unsigned int info = sechdrs[i].sh_info;
  1612. /* Not a valid relocation section? */
  1613. if (info >= hdr->e_shnum)
  1614. continue;
  1615. /* Don't bother with non-allocated sections */
  1616. if (!(sechdrs[info].sh_flags & SHF_ALLOC))
  1617. continue;
  1618. if (sechdrs[i].sh_type == SHT_REL)
  1619. err = apply_relocate(sechdrs, strtab, symindex, i,mod);
  1620. else if (sechdrs[i].sh_type == SHT_RELA)
  1621. err = apply_relocate_add(sechdrs, strtab, symindex, i,
  1622. mod);
  1623. if (err < 0)
  1624. goto cleanup;
  1625. }
  1626. /* Find duplicate symbols */
  1627. err = verify_export_symbols(mod);
  1628. if (err < 0)
  1629. goto cleanup;
  1630. /* Set up and sort exception table */
  1631. mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
  1632. mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
  1633. sort_extable(extable, extable + mod->num_exentries);
  1634. /* Finally, copy percpu area over. */
  1635. percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
  1636. sechdrs[pcpuindex].sh_size);
  1637. add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
  1638. err = module_finalize(hdr, sechdrs, mod);
  1639. if (err < 0)
  1640. goto cleanup;
  1641. /* flush the icache in correct context */
  1642. old_fs = get_fs();
  1643. set_fs(KERNEL_DS);
  1644. /*
  1645. * Flush the instruction cache, since we've played with text.
  1646. * Do it before processing of module parameters, so the module
  1647. * can provide parameter accessor functions of its own.
  1648. */
  1649. if (mod->module_init)
  1650. flush_icache_range((unsigned long)mod->module_init,
  1651. (unsigned long)mod->module_init
  1652. + mod->init_size);
  1653. flush_icache_range((unsigned long)mod->module_core,
  1654. (unsigned long)mod->module_core + mod->core_size);
  1655. set_fs(old_fs);
  1656. mod->args = args;
  1657. if (obsparmindex)
  1658. printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
  1659. mod->name);
  1660. /* Size of section 0 is 0, so this works well if no params */
  1661. err = parse_args(mod->name, mod->args,
  1662. (struct kernel_param *)
  1663. sechdrs[setupindex].sh_addr,
  1664. sechdrs[setupindex].sh_size
  1665. / sizeof(struct kernel_param),
  1666. NULL);
  1667. if (err < 0)
  1668. goto arch_cleanup;
  1669. err = mod_sysfs_setup(mod,
  1670. (struct kernel_param *)
  1671. sechdrs[setupindex].sh_addr,
  1672. sechdrs[setupindex].sh_size
  1673. / sizeof(struct kernel_param));
  1674. if (err < 0)
  1675. goto arch_cleanup;
  1676. add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
  1677. /* Size of section 0 is 0, so this works well if no unwind info. */
  1678. mod->unwind_info = unwind_add_table(mod,
  1679. (void *)sechdrs[unwindex].sh_addr,
  1680. sechdrs[unwindex].sh_size);
  1681. /* Get rid of temporary copy */
  1682. vfree(hdr);
  1683. /* Done! */
  1684. return mod;
  1685. arch_cleanup:
  1686. module_arch_cleanup(mod);
  1687. cleanup:
  1688. module_unload_free(mod);
  1689. module_free(mod, mod->module_init);
  1690. free_core:
  1691. module_free(mod, mod->module_core);
  1692. free_percpu:
  1693. if (percpu)
  1694. percpu_modfree(percpu);
  1695. free_mod:
  1696. kfree(args);
  1697. free_hdr:
  1698. vfree(hdr);
  1699. return ERR_PTR(err);
  1700. truncated:
  1701. printk(KERN_ERR "Module len %lu truncated\n", len);
  1702. err = -ENOEXEC;
  1703. goto free_hdr;
  1704. }
  1705. /*
  1706. * link the module with the whole machine is stopped with interrupts off
  1707. * - this defends against kallsyms not taking locks
  1708. */
  1709. static int __link_module(void *_mod)
  1710. {
  1711. struct module *mod = _mod;
  1712. list_add(&mod->list, &modules);
  1713. return 0;
  1714. }
  1715. /* This is where the real work happens */
  1716. asmlinkage long
  1717. sys_init_module(void __user *umod,
  1718. unsigned long len,
  1719. const char __user *uargs)
  1720. {
  1721. struct module *mod;
  1722. int ret = 0;
  1723. /* Must have permission */
  1724. if (!capable(CAP_SYS_MODULE))
  1725. return -EPERM;
  1726. /* Only one module load at a time, please */
  1727. if (mutex_lock_interruptible(&module_mutex) != 0)
  1728. return -EINTR;
  1729. /* Do all the hard work */
  1730. mod = load_module(umod, len, uargs);
  1731. if (IS_ERR(mod)) {
  1732. mutex_unlock(&module_mutex);
  1733. return PTR_ERR(mod);
  1734. }
  1735. /* Now sew it into the lists. They won't access us, since
  1736. strong_try_module_get() will fail. */
  1737. stop_machine_run(__link_module, mod, NR_CPUS);
  1738. /* Drop lock so they can recurse */
  1739. mutex_unlock(&module_mutex);
  1740. blocking_notifier_call_chain(&module_notify_list,
  1741. MODULE_STATE_COMING, mod);
  1742. /* Start the module */
  1743. if (mod->init != NULL)
  1744. ret = mod->init();
  1745. if (ret < 0) {
  1746. /* Init routine failed: abort. Try to protect us from
  1747. buggy refcounters. */
  1748. mod->state = MODULE_STATE_GOING;
  1749. synchronize_sched();
  1750. if (mod->unsafe)
  1751. printk(KERN_ERR "%s: module is now stuck!\n",
  1752. mod->name);
  1753. else {
  1754. module_put(mod);
  1755. mutex_lock(&module_mutex);
  1756. free_module(mod);
  1757. mutex_unlock(&module_mutex);
  1758. }
  1759. return ret;
  1760. }
  1761. /* Now it's a first class citizen! */
  1762. mutex_lock(&module_mutex);
  1763. mod->state = MODULE_STATE_LIVE;
  1764. /* Drop initial reference. */
  1765. module_put(mod);
  1766. unwind_remove_table(mod->unwind_info, 1);
  1767. module_free(mod, mod->module_init);
  1768. mod->module_init = NULL;
  1769. mod->init_size = 0;
  1770. mod->init_text_size = 0;
  1771. mutex_unlock(&module_mutex);
  1772. return 0;
  1773. }
  1774. static inline int within(unsigned long addr, void *start, unsigned long size)
  1775. {
  1776. return ((void *)addr >= start && (void *)addr < start + size);
  1777. }
  1778. #ifdef CONFIG_KALLSYMS
  1779. /*
  1780. * This ignores the intensely annoying "mapping symbols" found
  1781. * in ARM ELF files: $a, $t and $d.
  1782. */
  1783. static inline int is_arm_mapping_symbol(const char *str)
  1784. {
  1785. return str[0] == '$' && strchr("atd", str[1])
  1786. && (str[2] == '\0' || str[2] == '.');
  1787. }
  1788. static const char *get_ksymbol(struct module *mod,
  1789. unsigned long addr,
  1790. unsigned long *size,
  1791. unsigned long *offset)
  1792. {
  1793. unsigned int i, best = 0;
  1794. unsigned long nextval;
  1795. /* At worse, next value is at end of module */
  1796. if (within(addr, mod->module_init, mod->init_size))
  1797. nextval = (unsigned long)mod->module_init+mod->init_text_size;
  1798. else
  1799. nextval = (unsigned long)mod->module_core+mod->core_text_size;
  1800. /* Scan for closest preceeding symbol, and next symbol. (ELF
  1801. starts real symbols at 1). */
  1802. for (i = 1; i < mod->num_symtab; i++) {
  1803. if (mod->symtab[i].st_shndx == SHN_UNDEF)
  1804. continue;
  1805. /* We ignore unnamed symbols: they're uninformative
  1806. * and inserted at a whim. */
  1807. if (mod->symtab[i].st_value <= addr
  1808. && mod->symtab[i].st_value > mod->symtab[best].st_value
  1809. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  1810. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  1811. best = i;
  1812. if (mod->symtab[i].st_value > addr
  1813. && mod->symtab[i].st_value < nextval
  1814. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  1815. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  1816. nextval = mod->symtab[i].st_value;
  1817. }
  1818. if (!best)
  1819. return NULL;
  1820. if (size)
  1821. *size = nextval - mod->symtab[best].st_value;
  1822. if (offset)
  1823. *offset = addr - mod->symtab[best].st_value;
  1824. return mod->strtab + mod->symtab[best].st_name;
  1825. }
  1826. /* For kallsyms to ask for address resolution. NULL means not found.
  1827. We don't lock, as this is used for oops resolution and races are a
  1828. lesser concern. */
  1829. const char *module_address_lookup(unsigned long addr,
  1830. unsigned long *size,
  1831. unsigned long *offset,
  1832. char **modname)
  1833. {
  1834. struct module *mod;
  1835. list_for_each_entry(mod, &modules, list) {
  1836. if (within(addr, mod->module_init, mod->init_size)
  1837. || within(addr, mod->module_core, mod->core_size)) {
  1838. if (modname)
  1839. *modname = mod->name;
  1840. return get_ksymbol(mod, addr, size, offset);
  1841. }
  1842. }
  1843. return NULL;
  1844. }
  1845. int lookup_module_symbol_name(unsigned long addr, char *symname)
  1846. {
  1847. struct module *mod;
  1848. mutex_lock(&module_mutex);
  1849. list_for_each_entry(mod, &modules, list) {
  1850. if (within(addr, mod->module_init, mod->init_size) ||
  1851. within(addr, mod->module_core, mod->core_size)) {
  1852. const char *sym;
  1853. sym = get_ksymbol(mod, addr, NULL, NULL);
  1854. if (!sym)
  1855. goto out;
  1856. strlcpy(symname, sym, KSYM_NAME_LEN + 1);
  1857. mutex_unlock(&module_mutex);
  1858. return 0;
  1859. }
  1860. }
  1861. out:
  1862. mutex_unlock(&module_mutex);
  1863. return -ERANGE;
  1864. }
  1865. int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
  1866. unsigned long *offset, char *modname, char *name)
  1867. {
  1868. struct module *mod;
  1869. mutex_lock(&module_mutex);
  1870. list_for_each_entry(mod, &modules, list) {
  1871. if (within(addr, mod->module_init, mod->init_size) ||
  1872. within(addr, mod->module_core, mod->core_size)) {
  1873. const char *sym;
  1874. sym = get_ksymbol(mod, addr, size, offset);
  1875. if (!sym)
  1876. goto out;
  1877. if (modname)
  1878. strlcpy(modname, mod->name, MODULE_NAME_LEN + 1);
  1879. if (name)
  1880. strlcpy(name, sym, KSYM_NAME_LEN + 1);
  1881. mutex_unlock(&module_mutex);
  1882. return 0;
  1883. }
  1884. }
  1885. out:
  1886. mutex_unlock(&module_mutex);
  1887. return -ERANGE;
  1888. }
  1889. int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
  1890. char *name, char *module_name, int *exported)
  1891. {
  1892. struct module *mod;
  1893. mutex_lock(&module_mutex);
  1894. list_for_each_entry(mod, &modules, list) {
  1895. if (symnum < mod->num_symtab) {
  1896. *value = mod->symtab[symnum].st_value;
  1897. *type = mod->symtab[symnum].st_info;
  1898. strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
  1899. KSYM_NAME_LEN + 1);
  1900. strlcpy(module_name, mod->name, MODULE_NAME_LEN + 1);
  1901. *exported = is_exported(name, mod);
  1902. mutex_unlock(&module_mutex);
  1903. return 0;
  1904. }
  1905. symnum -= mod->num_symtab;
  1906. }
  1907. mutex_unlock(&module_mutex);
  1908. return -ERANGE;
  1909. }
  1910. static unsigned long mod_find_symname(struct module *mod, const char *name)
  1911. {
  1912. unsigned int i;
  1913. for (i = 0; i < mod->num_symtab; i++)
  1914. if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
  1915. mod->symtab[i].st_info != 'U')
  1916. return mod->symtab[i].st_value;
  1917. return 0;
  1918. }
  1919. /* Look for this name: can be of form module:name. */
  1920. unsigned long module_kallsyms_lookup_name(const char *name)
  1921. {
  1922. struct module *mod;
  1923. char *colon;
  1924. unsigned long ret = 0;
  1925. /* Don't lock: we're in enough trouble already. */
  1926. if ((colon = strchr(name, ':')) != NULL) {
  1927. *colon = '\0';
  1928. if ((mod = find_module(name)) != NULL)
  1929. ret = mod_find_symname(mod, colon+1);
  1930. *colon = ':';
  1931. } else {
  1932. list_for_each_entry(mod, &modules, list)
  1933. if ((ret = mod_find_symname(mod, name)) != 0)
  1934. break;
  1935. }
  1936. return ret;
  1937. }
  1938. #endif /* CONFIG_KALLSYMS */
  1939. /* Called by the /proc file system to return a list of modules. */
  1940. static void *m_start(struct seq_file *m, loff_t *pos)
  1941. {
  1942. struct list_head *i;
  1943. loff_t n = 0;
  1944. mutex_lock(&module_mutex);
  1945. list_for_each(i, &modules) {
  1946. if (n++ == *pos)
  1947. break;
  1948. }
  1949. if (i == &modules)
  1950. return NULL;
  1951. return i;
  1952. }
  1953. static void *m_next(struct seq_file *m, void *p, loff_t *pos)
  1954. {
  1955. struct list_head *i = p;
  1956. (*pos)++;
  1957. if (i->next == &modules)
  1958. return NULL;
  1959. return i->next;
  1960. }
  1961. static void m_stop(struct seq_file *m, void *p)
  1962. {
  1963. mutex_unlock(&module_mutex);
  1964. }
  1965. static char *taint_flags(unsigned int taints, char *buf)
  1966. {
  1967. int bx = 0;
  1968. if (taints) {
  1969. buf[bx++] = '(';
  1970. if (taints & TAINT_PROPRIETARY_MODULE)
  1971. buf[bx++] = 'P';
  1972. if (taints & TAINT_FORCED_MODULE)
  1973. buf[bx++] = 'F';
  1974. /*
  1975. * TAINT_FORCED_RMMOD: could be added.
  1976. * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
  1977. * apply to modules.
  1978. */
  1979. buf[bx++] = ')';
  1980. }
  1981. buf[bx] = '\0';
  1982. return buf;
  1983. }
  1984. static int m_show(struct seq_file *m, void *p)
  1985. {
  1986. struct module *mod = list_entry(p, struct module, list);
  1987. char buf[8];
  1988. seq_printf(m, "%s %lu",
  1989. mod->name, mod->init_size + mod->core_size);
  1990. print_unload_info(m, mod);
  1991. /* Informative for users. */
  1992. seq_printf(m, " %s",
  1993. mod->state == MODULE_STATE_GOING ? "Unloading":
  1994. mod->state == MODULE_STATE_COMING ? "Loading":
  1995. "Live");
  1996. /* Used by oprofile and other similar tools. */
  1997. seq_printf(m, " 0x%p", mod->module_core);
  1998. /* Taints info */
  1999. if (mod->taints)
  2000. seq_printf(m, " %s", taint_flags(mod->taints, buf));
  2001. seq_printf(m, "\n");
  2002. return 0;
  2003. }
  2004. /* Format: modulename size refcount deps address
  2005. Where refcount is a number or -, and deps is a comma-separated list
  2006. of depends or -.
  2007. */
  2008. const struct seq_operations modules_op = {
  2009. .start = m_start,
  2010. .next = m_next,
  2011. .stop = m_stop,
  2012. .show = m_show
  2013. };
  2014. /* Given an address, look for it in the module exception tables. */
  2015. const struct exception_table_entry *search_module_extables(unsigned long addr)
  2016. {
  2017. unsigned long flags;
  2018. const struct exception_table_entry *e = NULL;
  2019. struct module *mod;
  2020. spin_lock_irqsave(&modlist_lock, flags);
  2021. list_for_each_entry(mod, &modules, list) {
  2022. if (mod->num_exentries == 0)
  2023. continue;
  2024. e = search_extable(mod->extable,
  2025. mod->extable + mod->num_exentries - 1,
  2026. addr);
  2027. if (e)
  2028. break;
  2029. }
  2030. spin_unlock_irqrestore(&modlist_lock, flags);
  2031. /* Now, if we found one, we are running inside it now, hence
  2032. we cannot unload the module, hence no refcnt needed. */
  2033. return e;
  2034. }
  2035. /*
  2036. * Is this a valid module address?
  2037. */
  2038. int is_module_address(unsigned long addr)
  2039. {
  2040. unsigned long flags;
  2041. struct module *mod;
  2042. spin_lock_irqsave(&modlist_lock, flags);
  2043. list_for_each_entry(mod, &modules, list) {
  2044. if (within(addr, mod->module_core, mod->core_size)) {
  2045. spin_unlock_irqrestore(&modlist_lock, flags);
  2046. return 1;
  2047. }
  2048. }
  2049. spin_unlock_irqrestore(&modlist_lock, flags);
  2050. return 0;
  2051. }
  2052. /* Is this a valid kernel address? We don't grab the lock: we are oopsing. */
  2053. struct module *__module_text_address(unsigned long addr)
  2054. {
  2055. struct module *mod;
  2056. list_for_each_entry(mod, &modules, list)
  2057. if (within(addr, mod->module_init, mod->init_text_size)
  2058. || within(addr, mod->module_core, mod->core_text_size))
  2059. return mod;
  2060. return NULL;
  2061. }
  2062. struct module *module_text_address(unsigned long addr)
  2063. {
  2064. struct module *mod;
  2065. unsigned long flags;
  2066. spin_lock_irqsave(&modlist_lock, flags);
  2067. mod = __module_text_address(addr);
  2068. spin_unlock_irqrestore(&modlist_lock, flags);
  2069. return mod;
  2070. }
  2071. /* Don't grab lock, we're oopsing. */
  2072. void print_modules(void)
  2073. {
  2074. struct module *mod;
  2075. char buf[8];
  2076. printk("Modules linked in:");
  2077. list_for_each_entry(mod, &modules, list)
  2078. printk(" %s%s", mod->name, taint_flags(mod->taints, buf));
  2079. printk("\n");
  2080. }
  2081. #ifdef CONFIG_SYSFS
  2082. static char *make_driver_name(struct device_driver *drv)
  2083. {
  2084. char *driver_name;
  2085. driver_name = kmalloc(strlen(drv->name) + strlen(drv->bus->name) + 2,
  2086. GFP_KERNEL);
  2087. if (!driver_name)
  2088. return NULL;
  2089. sprintf(driver_name, "%s:%s", drv->bus->name, drv->name);
  2090. return driver_name;
  2091. }
  2092. static void module_create_drivers_dir(struct module_kobject *mk)
  2093. {
  2094. if (!mk || mk->drivers_dir)
  2095. return;
  2096. mk->drivers_dir = kobject_add_dir(&mk->kobj, "drivers");
  2097. }
  2098. void module_add_driver(struct module *mod, struct device_driver *drv)
  2099. {
  2100. char *driver_name;
  2101. int no_warn;
  2102. struct module_kobject *mk = NULL;
  2103. if (!drv)
  2104. return;
  2105. if (mod)
  2106. mk = &mod->mkobj;
  2107. else if (drv->mod_name) {
  2108. struct kobject *mkobj;
  2109. /* Lookup built-in module entry in /sys/modules */
  2110. mkobj = kset_find_obj(&module_subsys, drv->mod_name);
  2111. if (mkobj) {
  2112. mk = container_of(mkobj, struct module_kobject, kobj);
  2113. /* remember our module structure */
  2114. drv->mkobj = mk;
  2115. /* kset_find_obj took a reference */
  2116. kobject_put(mkobj);
  2117. }
  2118. }
  2119. if (!mk)
  2120. return;
  2121. /* Don't check return codes; these calls are idempotent */
  2122. no_warn = sysfs_create_link(&drv->kobj, &mk->kobj, "module");
  2123. driver_name = make_driver_name(drv);
  2124. if (driver_name) {
  2125. module_create_drivers_dir(mk);
  2126. no_warn = sysfs_create_link(mk->drivers_dir, &drv->kobj,
  2127. driver_name);
  2128. kfree(driver_name);
  2129. }
  2130. }
  2131. EXPORT_SYMBOL(module_add_driver);
  2132. void module_remove_driver(struct device_driver *drv)
  2133. {
  2134. struct module_kobject *mk = NULL;
  2135. char *driver_name;
  2136. if (!drv)
  2137. return;
  2138. sysfs_remove_link(&drv->kobj, "module");
  2139. if (drv->owner)
  2140. mk = &drv->owner->mkobj;
  2141. else if (drv->mkobj)
  2142. mk = drv->mkobj;
  2143. if (mk && mk->drivers_dir) {
  2144. driver_name = make_driver_name(drv);
  2145. if (driver_name) {
  2146. sysfs_remove_link(mk->drivers_dir, driver_name);
  2147. kfree(driver_name);
  2148. }
  2149. }
  2150. }
  2151. EXPORT_SYMBOL(module_remove_driver);
  2152. #endif
  2153. #ifdef CONFIG_MODVERSIONS
  2154. /* Generate the signature for struct module here, too, for modversions. */
  2155. void struct_module(struct module *mod) { return; }
  2156. EXPORT_SYMBOL(struct_module);
  2157. #endif