module.c 60 KB

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