module.c 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  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/sysfs.h>
  21. #include <linux/kernel.h>
  22. #include <linux/slab.h>
  23. #include <linux/vmalloc.h>
  24. #include <linux/elf.h>
  25. #include <linux/seq_file.h>
  26. #include <linux/syscalls.h>
  27. #include <linux/fcntl.h>
  28. #include <linux/rcupdate.h>
  29. #include <linux/capability.h>
  30. #include <linux/cpu.h>
  31. #include <linux/moduleparam.h>
  32. #include <linux/errno.h>
  33. #include <linux/err.h>
  34. #include <linux/vermagic.h>
  35. #include <linux/notifier.h>
  36. #include <linux/sched.h>
  37. #include <linux/stop_machine.h>
  38. #include <linux/device.h>
  39. #include <linux/string.h>
  40. #include <linux/mutex.h>
  41. #include <linux/unwind.h>
  42. #include <asm/uaccess.h>
  43. #include <asm/semaphore.h>
  44. #include <asm/cacheflush.h>
  45. #include <linux/license.h>
  46. extern int module_sysfs_initialized;
  47. #if 0
  48. #define DEBUGP printk
  49. #else
  50. #define DEBUGP(fmt , a...)
  51. #endif
  52. #ifndef ARCH_SHF_SMALL
  53. #define ARCH_SHF_SMALL 0
  54. #endif
  55. /* If this is set, the section belongs in the init part of the module */
  56. #define INIT_OFFSET_MASK (1UL << (BITS_PER_LONG-1))
  57. /* List of modules, protected by module_mutex or preempt_disable
  58. * (add/delete uses stop_machine). */
  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 && !mod->exit) {
  612. forced = try_force_unload(flags);
  613. if (!forced) {
  614. /* This module can't be removed */
  615. ret = -EBUSY;
  616. goto out;
  617. }
  618. }
  619. /* Set this up before setting mod->state */
  620. mod->waiter = current;
  621. /* Stop the machine so refcounts can't move and disable module. */
  622. ret = try_stop_module(mod, flags, &forced);
  623. if (ret != 0)
  624. goto out;
  625. /* Never wait if forced. */
  626. if (!forced && module_refcount(mod) != 0)
  627. wait_for_zero_refcount(mod);
  628. /* Final destruction now noone is using it. */
  629. if (mod->exit != NULL) {
  630. mutex_unlock(&module_mutex);
  631. mod->exit();
  632. mutex_lock(&module_mutex);
  633. }
  634. free_module(mod);
  635. out:
  636. mutex_unlock(&module_mutex);
  637. return ret;
  638. }
  639. static void print_unload_info(struct seq_file *m, struct module *mod)
  640. {
  641. struct module_use *use;
  642. int printed_something = 0;
  643. seq_printf(m, " %u ", module_refcount(mod));
  644. /* Always include a trailing , so userspace can differentiate
  645. between this and the old multi-field proc format. */
  646. list_for_each_entry(use, &mod->modules_which_use_me, list) {
  647. printed_something = 1;
  648. seq_printf(m, "%s,", use->module_which_uses->name);
  649. }
  650. if (mod->init != NULL && mod->exit == NULL) {
  651. printed_something = 1;
  652. seq_printf(m, "[permanent],");
  653. }
  654. if (!printed_something)
  655. seq_printf(m, "-");
  656. }
  657. void __symbol_put(const char *symbol)
  658. {
  659. struct module *owner;
  660. const unsigned long *crc;
  661. preempt_disable();
  662. if (!__find_symbol(symbol, &owner, &crc, 1))
  663. BUG();
  664. module_put(owner);
  665. preempt_enable();
  666. }
  667. EXPORT_SYMBOL(__symbol_put);
  668. void symbol_put_addr(void *addr)
  669. {
  670. struct module *modaddr;
  671. if (core_kernel_text((unsigned long)addr))
  672. return;
  673. if (!(modaddr = module_text_address((unsigned long)addr)))
  674. BUG();
  675. module_put(modaddr);
  676. }
  677. EXPORT_SYMBOL_GPL(symbol_put_addr);
  678. static ssize_t show_refcnt(struct module_attribute *mattr,
  679. struct module *mod, char *buffer)
  680. {
  681. return sprintf(buffer, "%u\n", module_refcount(mod));
  682. }
  683. static struct module_attribute refcnt = {
  684. .attr = { .name = "refcnt", .mode = 0444 },
  685. .show = show_refcnt,
  686. };
  687. void module_put(struct module *module)
  688. {
  689. if (module) {
  690. unsigned int cpu = get_cpu();
  691. local_dec(&module->ref[cpu].count);
  692. /* Maybe they're waiting for us to drop reference? */
  693. if (unlikely(!module_is_live(module)))
  694. wake_up_process(module->waiter);
  695. put_cpu();
  696. }
  697. }
  698. EXPORT_SYMBOL(module_put);
  699. #else /* !CONFIG_MODULE_UNLOAD */
  700. static void print_unload_info(struct seq_file *m, struct module *mod)
  701. {
  702. /* We don't know the usage count, or what modules are using. */
  703. seq_printf(m, " - -");
  704. }
  705. static inline void module_unload_free(struct module *mod)
  706. {
  707. }
  708. static inline int use_module(struct module *a, struct module *b)
  709. {
  710. return strong_try_module_get(b);
  711. }
  712. static inline void module_unload_init(struct module *mod)
  713. {
  714. }
  715. #endif /* CONFIG_MODULE_UNLOAD */
  716. static ssize_t show_initstate(struct module_attribute *mattr,
  717. struct module *mod, char *buffer)
  718. {
  719. const char *state = "unknown";
  720. switch (mod->state) {
  721. case MODULE_STATE_LIVE:
  722. state = "live";
  723. break;
  724. case MODULE_STATE_COMING:
  725. state = "coming";
  726. break;
  727. case MODULE_STATE_GOING:
  728. state = "going";
  729. break;
  730. }
  731. return sprintf(buffer, "%s\n", state);
  732. }
  733. static struct module_attribute initstate = {
  734. .attr = { .name = "initstate", .mode = 0444 },
  735. .show = show_initstate,
  736. };
  737. static struct module_attribute *modinfo_attrs[] = {
  738. &modinfo_version,
  739. &modinfo_srcversion,
  740. &initstate,
  741. #ifdef CONFIG_MODULE_UNLOAD
  742. &refcnt,
  743. #endif
  744. NULL,
  745. };
  746. static const char vermagic[] = VERMAGIC_STRING;
  747. #ifdef CONFIG_MODVERSIONS
  748. static int check_version(Elf_Shdr *sechdrs,
  749. unsigned int versindex,
  750. const char *symname,
  751. struct module *mod,
  752. const unsigned long *crc)
  753. {
  754. unsigned int i, num_versions;
  755. struct modversion_info *versions;
  756. /* Exporting module didn't supply crcs? OK, we're already tainted. */
  757. if (!crc)
  758. return 1;
  759. versions = (void *) sechdrs[versindex].sh_addr;
  760. num_versions = sechdrs[versindex].sh_size
  761. / sizeof(struct modversion_info);
  762. for (i = 0; i < num_versions; i++) {
  763. if (strcmp(versions[i].name, symname) != 0)
  764. continue;
  765. if (versions[i].crc == *crc)
  766. return 1;
  767. printk("%s: disagrees about version of symbol %s\n",
  768. mod->name, symname);
  769. DEBUGP("Found checksum %lX vs module %lX\n",
  770. *crc, versions[i].crc);
  771. return 0;
  772. }
  773. /* Not in module's version table. OK, but that taints the kernel. */
  774. if (!(tainted & TAINT_FORCED_MODULE))
  775. printk("%s: no version for \"%s\" found: kernel tainted.\n",
  776. mod->name, symname);
  777. add_taint_module(mod, TAINT_FORCED_MODULE);
  778. return 1;
  779. }
  780. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  781. unsigned int versindex,
  782. struct module *mod)
  783. {
  784. const unsigned long *crc;
  785. struct module *owner;
  786. if (!__find_symbol("struct_module", &owner, &crc, 1))
  787. BUG();
  788. return check_version(sechdrs, versindex, "struct_module", mod,
  789. crc);
  790. }
  791. /* First part is kernel version, which we ignore. */
  792. static inline int same_magic(const char *amagic, const char *bmagic)
  793. {
  794. amagic += strcspn(amagic, " ");
  795. bmagic += strcspn(bmagic, " ");
  796. return strcmp(amagic, bmagic) == 0;
  797. }
  798. #else
  799. static inline int check_version(Elf_Shdr *sechdrs,
  800. unsigned int versindex,
  801. const char *symname,
  802. struct module *mod,
  803. const unsigned long *crc)
  804. {
  805. return 1;
  806. }
  807. static inline int check_modstruct_version(Elf_Shdr *sechdrs,
  808. unsigned int versindex,
  809. struct module *mod)
  810. {
  811. return 1;
  812. }
  813. static inline int same_magic(const char *amagic, const char *bmagic)
  814. {
  815. return strcmp(amagic, bmagic) == 0;
  816. }
  817. #endif /* CONFIG_MODVERSIONS */
  818. /* Resolve a symbol for this module. I.e. if we find one, record usage.
  819. Must be holding module_mutex. */
  820. static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
  821. unsigned int versindex,
  822. const char *name,
  823. struct module *mod)
  824. {
  825. struct module *owner;
  826. unsigned long ret;
  827. const unsigned long *crc;
  828. ret = __find_symbol(name, &owner, &crc,
  829. !(mod->taints & TAINT_PROPRIETARY_MODULE));
  830. if (ret) {
  831. /* use_module can fail due to OOM, or module unloading */
  832. if (!check_version(sechdrs, versindex, name, mod, crc) ||
  833. !use_module(mod, owner))
  834. ret = 0;
  835. }
  836. return ret;
  837. }
  838. /*
  839. * /sys/module/foo/sections stuff
  840. * J. Corbet <corbet@lwn.net>
  841. */
  842. #ifdef CONFIG_KALLSYMS
  843. static ssize_t module_sect_show(struct module_attribute *mattr,
  844. struct module *mod, char *buf)
  845. {
  846. struct module_sect_attr *sattr =
  847. container_of(mattr, struct module_sect_attr, mattr);
  848. return sprintf(buf, "0x%lx\n", sattr->address);
  849. }
  850. static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
  851. {
  852. int section;
  853. for (section = 0; section < sect_attrs->nsections; section++)
  854. kfree(sect_attrs->attrs[section].name);
  855. kfree(sect_attrs);
  856. }
  857. static void add_sect_attrs(struct module *mod, unsigned int nsect,
  858. char *secstrings, Elf_Shdr *sechdrs)
  859. {
  860. unsigned int nloaded = 0, i, size[2];
  861. struct module_sect_attrs *sect_attrs;
  862. struct module_sect_attr *sattr;
  863. struct attribute **gattr;
  864. /* Count loaded sections and allocate structures */
  865. for (i = 0; i < nsect; i++)
  866. if (sechdrs[i].sh_flags & SHF_ALLOC)
  867. nloaded++;
  868. size[0] = ALIGN(sizeof(*sect_attrs)
  869. + nloaded * sizeof(sect_attrs->attrs[0]),
  870. sizeof(sect_attrs->grp.attrs[0]));
  871. size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.attrs[0]);
  872. sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
  873. if (sect_attrs == NULL)
  874. return;
  875. /* Setup section attributes. */
  876. sect_attrs->grp.name = "sections";
  877. sect_attrs->grp.attrs = (void *)sect_attrs + size[0];
  878. sect_attrs->nsections = 0;
  879. sattr = &sect_attrs->attrs[0];
  880. gattr = &sect_attrs->grp.attrs[0];
  881. for (i = 0; i < nsect; i++) {
  882. if (! (sechdrs[i].sh_flags & SHF_ALLOC))
  883. continue;
  884. sattr->address = sechdrs[i].sh_addr;
  885. sattr->name = kstrdup(secstrings + sechdrs[i].sh_name,
  886. GFP_KERNEL);
  887. if (sattr->name == NULL)
  888. goto out;
  889. sect_attrs->nsections++;
  890. sattr->mattr.show = module_sect_show;
  891. sattr->mattr.store = NULL;
  892. sattr->mattr.attr.name = sattr->name;
  893. sattr->mattr.attr.mode = S_IRUGO;
  894. *(gattr++) = &(sattr++)->mattr.attr;
  895. }
  896. *gattr = NULL;
  897. if (sysfs_create_group(&mod->mkobj.kobj, &sect_attrs->grp))
  898. goto out;
  899. mod->sect_attrs = sect_attrs;
  900. return;
  901. out:
  902. free_sect_attrs(sect_attrs);
  903. }
  904. static void remove_sect_attrs(struct module *mod)
  905. {
  906. if (mod->sect_attrs) {
  907. sysfs_remove_group(&mod->mkobj.kobj,
  908. &mod->sect_attrs->grp);
  909. /* We are positive that no one is using any sect attrs
  910. * at this point. Deallocate immediately. */
  911. free_sect_attrs(mod->sect_attrs);
  912. mod->sect_attrs = NULL;
  913. }
  914. }
  915. /*
  916. * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
  917. */
  918. struct module_notes_attrs {
  919. struct kobject *dir;
  920. unsigned int notes;
  921. struct bin_attribute attrs[0];
  922. };
  923. static ssize_t module_notes_read(struct kobject *kobj,
  924. struct bin_attribute *bin_attr,
  925. char *buf, loff_t pos, size_t count)
  926. {
  927. /*
  928. * The caller checked the pos and count against our size.
  929. */
  930. memcpy(buf, bin_attr->private + pos, count);
  931. return count;
  932. }
  933. static void free_notes_attrs(struct module_notes_attrs *notes_attrs,
  934. unsigned int i)
  935. {
  936. if (notes_attrs->dir) {
  937. while (i-- > 0)
  938. sysfs_remove_bin_file(notes_attrs->dir,
  939. &notes_attrs->attrs[i]);
  940. kobject_del(notes_attrs->dir);
  941. }
  942. kfree(notes_attrs);
  943. }
  944. static void add_notes_attrs(struct module *mod, unsigned int nsect,
  945. char *secstrings, Elf_Shdr *sechdrs)
  946. {
  947. unsigned int notes, loaded, i;
  948. struct module_notes_attrs *notes_attrs;
  949. struct bin_attribute *nattr;
  950. /* Count notes sections and allocate structures. */
  951. notes = 0;
  952. for (i = 0; i < nsect; i++)
  953. if ((sechdrs[i].sh_flags & SHF_ALLOC) &&
  954. (sechdrs[i].sh_type == SHT_NOTE))
  955. ++notes;
  956. if (notes == 0)
  957. return;
  958. notes_attrs = kzalloc(sizeof(*notes_attrs)
  959. + notes * sizeof(notes_attrs->attrs[0]),
  960. GFP_KERNEL);
  961. if (notes_attrs == NULL)
  962. return;
  963. notes_attrs->notes = notes;
  964. nattr = &notes_attrs->attrs[0];
  965. for (loaded = i = 0; i < nsect; ++i) {
  966. if (!(sechdrs[i].sh_flags & SHF_ALLOC))
  967. continue;
  968. if (sechdrs[i].sh_type == SHT_NOTE) {
  969. nattr->attr.name = mod->sect_attrs->attrs[loaded].name;
  970. nattr->attr.mode = S_IRUGO;
  971. nattr->size = sechdrs[i].sh_size;
  972. nattr->private = (void *) sechdrs[i].sh_addr;
  973. nattr->read = module_notes_read;
  974. ++nattr;
  975. }
  976. ++loaded;
  977. }
  978. notes_attrs->dir = kobject_add_dir(&mod->mkobj.kobj, "notes");
  979. if (!notes_attrs->dir)
  980. goto out;
  981. for (i = 0; i < notes; ++i)
  982. if (sysfs_create_bin_file(notes_attrs->dir,
  983. &notes_attrs->attrs[i]))
  984. goto out;
  985. mod->notes_attrs = notes_attrs;
  986. return;
  987. out:
  988. free_notes_attrs(notes_attrs, i);
  989. }
  990. static void remove_notes_attrs(struct module *mod)
  991. {
  992. if (mod->notes_attrs)
  993. free_notes_attrs(mod->notes_attrs, mod->notes_attrs->notes);
  994. }
  995. #else
  996. static inline void add_sect_attrs(struct module *mod, unsigned int nsect,
  997. char *sectstrings, Elf_Shdr *sechdrs)
  998. {
  999. }
  1000. static inline void remove_sect_attrs(struct module *mod)
  1001. {
  1002. }
  1003. static inline void add_notes_attrs(struct module *mod, unsigned int nsect,
  1004. char *sectstrings, Elf_Shdr *sechdrs)
  1005. {
  1006. }
  1007. static inline void remove_notes_attrs(struct module *mod)
  1008. {
  1009. }
  1010. #endif /* CONFIG_KALLSYMS */
  1011. #ifdef CONFIG_SYSFS
  1012. int module_add_modinfo_attrs(struct module *mod)
  1013. {
  1014. struct module_attribute *attr;
  1015. struct module_attribute *temp_attr;
  1016. int error = 0;
  1017. int i;
  1018. mod->modinfo_attrs = kzalloc((sizeof(struct module_attribute) *
  1019. (ARRAY_SIZE(modinfo_attrs) + 1)),
  1020. GFP_KERNEL);
  1021. if (!mod->modinfo_attrs)
  1022. return -ENOMEM;
  1023. temp_attr = mod->modinfo_attrs;
  1024. for (i = 0; (attr = modinfo_attrs[i]) && !error; i++) {
  1025. if (!attr->test ||
  1026. (attr->test && attr->test(mod))) {
  1027. memcpy(temp_attr, attr, sizeof(*temp_attr));
  1028. error = sysfs_create_file(&mod->mkobj.kobj,&temp_attr->attr);
  1029. ++temp_attr;
  1030. }
  1031. }
  1032. return error;
  1033. }
  1034. void module_remove_modinfo_attrs(struct module *mod)
  1035. {
  1036. struct module_attribute *attr;
  1037. int i;
  1038. for (i = 0; (attr = &mod->modinfo_attrs[i]); i++) {
  1039. /* pick a field to test for end of list */
  1040. if (!attr->attr.name)
  1041. break;
  1042. sysfs_remove_file(&mod->mkobj.kobj,&attr->attr);
  1043. if (attr->free)
  1044. attr->free(mod);
  1045. }
  1046. kfree(mod->modinfo_attrs);
  1047. }
  1048. #endif
  1049. #ifdef CONFIG_SYSFS
  1050. int mod_sysfs_init(struct module *mod)
  1051. {
  1052. int err;
  1053. if (!module_sysfs_initialized) {
  1054. printk(KERN_ERR "%s: module sysfs not initialized\n",
  1055. mod->name);
  1056. err = -EINVAL;
  1057. goto out;
  1058. }
  1059. memset(&mod->mkobj.kobj, 0, sizeof(mod->mkobj.kobj));
  1060. err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
  1061. if (err)
  1062. goto out;
  1063. kobj_set_kset_s(&mod->mkobj, module_subsys);
  1064. mod->mkobj.mod = mod;
  1065. kobject_init(&mod->mkobj.kobj);
  1066. out:
  1067. return err;
  1068. }
  1069. int mod_sysfs_setup(struct module *mod,
  1070. struct kernel_param *kparam,
  1071. unsigned int num_params)
  1072. {
  1073. int err;
  1074. /* delay uevent until full sysfs population */
  1075. err = kobject_add(&mod->mkobj.kobj);
  1076. if (err)
  1077. goto out;
  1078. mod->holders_dir = kobject_add_dir(&mod->mkobj.kobj, "holders");
  1079. if (!mod->holders_dir) {
  1080. err = -ENOMEM;
  1081. goto out_unreg;
  1082. }
  1083. err = module_param_sysfs_setup(mod, kparam, num_params);
  1084. if (err)
  1085. goto out_unreg_holders;
  1086. err = module_add_modinfo_attrs(mod);
  1087. if (err)
  1088. goto out_unreg_param;
  1089. kobject_uevent(&mod->mkobj.kobj, KOBJ_ADD);
  1090. return 0;
  1091. out_unreg_param:
  1092. module_param_sysfs_remove(mod);
  1093. out_unreg_holders:
  1094. kobject_unregister(mod->holders_dir);
  1095. out_unreg:
  1096. kobject_del(&mod->mkobj.kobj);
  1097. kobject_put(&mod->mkobj.kobj);
  1098. out:
  1099. return err;
  1100. }
  1101. #endif
  1102. static void mod_kobject_remove(struct module *mod)
  1103. {
  1104. module_remove_modinfo_attrs(mod);
  1105. module_param_sysfs_remove(mod);
  1106. kobject_unregister(mod->mkobj.drivers_dir);
  1107. kobject_unregister(mod->holders_dir);
  1108. kobject_unregister(&mod->mkobj.kobj);
  1109. }
  1110. /*
  1111. * unlink the module with the whole machine is stopped with interrupts off
  1112. * - this defends against kallsyms not taking locks
  1113. */
  1114. static int __unlink_module(void *_mod)
  1115. {
  1116. struct module *mod = _mod;
  1117. list_del(&mod->list);
  1118. return 0;
  1119. }
  1120. /* Free a module, remove from lists, etc (must hold module_mutex). */
  1121. static void free_module(struct module *mod)
  1122. {
  1123. /* Delete from various lists */
  1124. stop_machine_run(__unlink_module, mod, NR_CPUS);
  1125. remove_notes_attrs(mod);
  1126. remove_sect_attrs(mod);
  1127. mod_kobject_remove(mod);
  1128. unwind_remove_table(mod->unwind_info, 0);
  1129. /* Arch-specific cleanup. */
  1130. module_arch_cleanup(mod);
  1131. /* Module unload stuff */
  1132. module_unload_free(mod);
  1133. /* This may be NULL, but that's OK */
  1134. module_free(mod, mod->module_init);
  1135. kfree(mod->args);
  1136. if (mod->percpu)
  1137. percpu_modfree(mod->percpu);
  1138. /* Free lock-classes: */
  1139. lockdep_free_key_range(mod->module_core, mod->core_size);
  1140. /* Finally, free the core (containing the module structure) */
  1141. module_free(mod, mod->module_core);
  1142. }
  1143. void *__symbol_get(const char *symbol)
  1144. {
  1145. struct module *owner;
  1146. unsigned long value;
  1147. const unsigned long *crc;
  1148. preempt_disable();
  1149. value = __find_symbol(symbol, &owner, &crc, 1);
  1150. if (value && !strong_try_module_get(owner))
  1151. value = 0;
  1152. preempt_enable();
  1153. return (void *)value;
  1154. }
  1155. EXPORT_SYMBOL_GPL(__symbol_get);
  1156. /*
  1157. * Ensure that an exported symbol [global namespace] does not already exist
  1158. * in the kernel or in some other module's exported symbol table.
  1159. */
  1160. static int verify_export_symbols(struct module *mod)
  1161. {
  1162. const char *name = NULL;
  1163. unsigned long i, ret = 0;
  1164. struct module *owner;
  1165. const unsigned long *crc;
  1166. for (i = 0; i < mod->num_syms; i++)
  1167. if (__find_symbol(mod->syms[i].name, &owner, &crc, 1)) {
  1168. name = mod->syms[i].name;
  1169. ret = -ENOEXEC;
  1170. goto dup;
  1171. }
  1172. for (i = 0; i < mod->num_gpl_syms; i++)
  1173. if (__find_symbol(mod->gpl_syms[i].name, &owner, &crc, 1)) {
  1174. name = mod->gpl_syms[i].name;
  1175. ret = -ENOEXEC;
  1176. goto dup;
  1177. }
  1178. dup:
  1179. if (ret)
  1180. printk(KERN_ERR "%s: exports duplicate symbol %s (owned by %s)\n",
  1181. mod->name, name, module_name(owner));
  1182. return ret;
  1183. }
  1184. /* Change all symbols so that sh_value encodes the pointer directly. */
  1185. static int simplify_symbols(Elf_Shdr *sechdrs,
  1186. unsigned int symindex,
  1187. const char *strtab,
  1188. unsigned int versindex,
  1189. unsigned int pcpuindex,
  1190. struct module *mod)
  1191. {
  1192. Elf_Sym *sym = (void *)sechdrs[symindex].sh_addr;
  1193. unsigned long secbase;
  1194. unsigned int i, n = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1195. int ret = 0;
  1196. for (i = 1; i < n; i++) {
  1197. switch (sym[i].st_shndx) {
  1198. case SHN_COMMON:
  1199. /* We compiled with -fno-common. These are not
  1200. supposed to happen. */
  1201. DEBUGP("Common symbol: %s\n", strtab + sym[i].st_name);
  1202. printk("%s: please compile with -fno-common\n",
  1203. mod->name);
  1204. ret = -ENOEXEC;
  1205. break;
  1206. case SHN_ABS:
  1207. /* Don't need to do anything */
  1208. DEBUGP("Absolute symbol: 0x%08lx\n",
  1209. (long)sym[i].st_value);
  1210. break;
  1211. case SHN_UNDEF:
  1212. sym[i].st_value
  1213. = resolve_symbol(sechdrs, versindex,
  1214. strtab + sym[i].st_name, mod);
  1215. /* Ok if resolved. */
  1216. if (sym[i].st_value != 0)
  1217. break;
  1218. /* Ok if weak. */
  1219. if (ELF_ST_BIND(sym[i].st_info) == STB_WEAK)
  1220. break;
  1221. printk(KERN_WARNING "%s: Unknown symbol %s\n",
  1222. mod->name, strtab + sym[i].st_name);
  1223. ret = -ENOENT;
  1224. break;
  1225. default:
  1226. /* Divert to percpu allocation if a percpu var. */
  1227. if (sym[i].st_shndx == pcpuindex)
  1228. secbase = (unsigned long)mod->percpu;
  1229. else
  1230. secbase = sechdrs[sym[i].st_shndx].sh_addr;
  1231. sym[i].st_value += secbase;
  1232. break;
  1233. }
  1234. }
  1235. return ret;
  1236. }
  1237. /* Update size with this section: return offset. */
  1238. static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
  1239. {
  1240. long ret;
  1241. ret = ALIGN(*size, sechdr->sh_addralign ?: 1);
  1242. *size = ret + sechdr->sh_size;
  1243. return ret;
  1244. }
  1245. /* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
  1246. might -- code, read-only data, read-write data, small data. Tally
  1247. sizes, and place the offsets into sh_entsize fields: high bit means it
  1248. belongs in init. */
  1249. static void layout_sections(struct module *mod,
  1250. const Elf_Ehdr *hdr,
  1251. Elf_Shdr *sechdrs,
  1252. const char *secstrings)
  1253. {
  1254. static unsigned long const masks[][2] = {
  1255. /* NOTE: all executable code must be the first section
  1256. * in this array; otherwise modify the text_size
  1257. * finder in the two loops below */
  1258. { SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
  1259. { SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
  1260. { SHF_WRITE | SHF_ALLOC, ARCH_SHF_SMALL },
  1261. { ARCH_SHF_SMALL | SHF_ALLOC, 0 }
  1262. };
  1263. unsigned int m, i;
  1264. for (i = 0; i < hdr->e_shnum; i++)
  1265. sechdrs[i].sh_entsize = ~0UL;
  1266. DEBUGP("Core section allocation order:\n");
  1267. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1268. for (i = 0; i < hdr->e_shnum; ++i) {
  1269. Elf_Shdr *s = &sechdrs[i];
  1270. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1271. || (s->sh_flags & masks[m][1])
  1272. || s->sh_entsize != ~0UL
  1273. || strncmp(secstrings + s->sh_name,
  1274. ".init", 5) == 0)
  1275. continue;
  1276. s->sh_entsize = get_offset(&mod->core_size, s);
  1277. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1278. }
  1279. if (m == 0)
  1280. mod->core_text_size = mod->core_size;
  1281. }
  1282. DEBUGP("Init section allocation order:\n");
  1283. for (m = 0; m < ARRAY_SIZE(masks); ++m) {
  1284. for (i = 0; i < hdr->e_shnum; ++i) {
  1285. Elf_Shdr *s = &sechdrs[i];
  1286. if ((s->sh_flags & masks[m][0]) != masks[m][0]
  1287. || (s->sh_flags & masks[m][1])
  1288. || s->sh_entsize != ~0UL
  1289. || strncmp(secstrings + s->sh_name,
  1290. ".init", 5) != 0)
  1291. continue;
  1292. s->sh_entsize = (get_offset(&mod->init_size, s)
  1293. | INIT_OFFSET_MASK);
  1294. DEBUGP("\t%s\n", secstrings + s->sh_name);
  1295. }
  1296. if (m == 0)
  1297. mod->init_text_size = mod->init_size;
  1298. }
  1299. }
  1300. static void set_license(struct module *mod, const char *license)
  1301. {
  1302. if (!license)
  1303. license = "unspecified";
  1304. if (!license_is_gpl_compatible(license)) {
  1305. if (!(tainted & TAINT_PROPRIETARY_MODULE))
  1306. printk(KERN_WARNING "%s: module license '%s' taints "
  1307. "kernel.\n", mod->name, license);
  1308. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1309. }
  1310. }
  1311. /* Parse tag=value strings from .modinfo section */
  1312. static char *next_string(char *string, unsigned long *secsize)
  1313. {
  1314. /* Skip non-zero chars */
  1315. while (string[0]) {
  1316. string++;
  1317. if ((*secsize)-- <= 1)
  1318. return NULL;
  1319. }
  1320. /* Skip any zero padding. */
  1321. while (!string[0]) {
  1322. string++;
  1323. if ((*secsize)-- <= 1)
  1324. return NULL;
  1325. }
  1326. return string;
  1327. }
  1328. static char *get_modinfo(Elf_Shdr *sechdrs,
  1329. unsigned int info,
  1330. const char *tag)
  1331. {
  1332. char *p;
  1333. unsigned int taglen = strlen(tag);
  1334. unsigned long size = sechdrs[info].sh_size;
  1335. for (p = (char *)sechdrs[info].sh_addr; p; p = next_string(p, &size)) {
  1336. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  1337. return p + taglen + 1;
  1338. }
  1339. return NULL;
  1340. }
  1341. static void setup_modinfo(struct module *mod, Elf_Shdr *sechdrs,
  1342. unsigned int infoindex)
  1343. {
  1344. struct module_attribute *attr;
  1345. int i;
  1346. for (i = 0; (attr = modinfo_attrs[i]); i++) {
  1347. if (attr->setup)
  1348. attr->setup(mod,
  1349. get_modinfo(sechdrs,
  1350. infoindex,
  1351. attr->attr.name));
  1352. }
  1353. }
  1354. #ifdef CONFIG_KALLSYMS
  1355. static int is_exported(const char *name, const struct module *mod)
  1356. {
  1357. if (!mod && lookup_symbol(name, __start___ksymtab, __stop___ksymtab))
  1358. return 1;
  1359. else
  1360. if (mod && lookup_symbol(name, mod->syms, mod->syms + mod->num_syms))
  1361. return 1;
  1362. else
  1363. return 0;
  1364. }
  1365. /* As per nm */
  1366. static char elf_type(const Elf_Sym *sym,
  1367. Elf_Shdr *sechdrs,
  1368. const char *secstrings,
  1369. struct module *mod)
  1370. {
  1371. if (ELF_ST_BIND(sym->st_info) == STB_WEAK) {
  1372. if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
  1373. return 'v';
  1374. else
  1375. return 'w';
  1376. }
  1377. if (sym->st_shndx == SHN_UNDEF)
  1378. return 'U';
  1379. if (sym->st_shndx == SHN_ABS)
  1380. return 'a';
  1381. if (sym->st_shndx >= SHN_LORESERVE)
  1382. return '?';
  1383. if (sechdrs[sym->st_shndx].sh_flags & SHF_EXECINSTR)
  1384. return 't';
  1385. if (sechdrs[sym->st_shndx].sh_flags & SHF_ALLOC
  1386. && sechdrs[sym->st_shndx].sh_type != SHT_NOBITS) {
  1387. if (!(sechdrs[sym->st_shndx].sh_flags & SHF_WRITE))
  1388. return 'r';
  1389. else if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1390. return 'g';
  1391. else
  1392. return 'd';
  1393. }
  1394. if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
  1395. if (sechdrs[sym->st_shndx].sh_flags & ARCH_SHF_SMALL)
  1396. return 's';
  1397. else
  1398. return 'b';
  1399. }
  1400. if (strncmp(secstrings + sechdrs[sym->st_shndx].sh_name,
  1401. ".debug", strlen(".debug")) == 0)
  1402. return 'n';
  1403. return '?';
  1404. }
  1405. static void add_kallsyms(struct module *mod,
  1406. Elf_Shdr *sechdrs,
  1407. unsigned int symindex,
  1408. unsigned int strindex,
  1409. const char *secstrings)
  1410. {
  1411. unsigned int i;
  1412. mod->symtab = (void *)sechdrs[symindex].sh_addr;
  1413. mod->num_symtab = sechdrs[symindex].sh_size / sizeof(Elf_Sym);
  1414. mod->strtab = (void *)sechdrs[strindex].sh_addr;
  1415. /* Set types up while we still have access to sections. */
  1416. for (i = 0; i < mod->num_symtab; i++)
  1417. mod->symtab[i].st_info
  1418. = elf_type(&mod->symtab[i], sechdrs, secstrings, mod);
  1419. }
  1420. #else
  1421. static inline void add_kallsyms(struct module *mod,
  1422. Elf_Shdr *sechdrs,
  1423. unsigned int symindex,
  1424. unsigned int strindex,
  1425. const char *secstrings)
  1426. {
  1427. }
  1428. #endif /* CONFIG_KALLSYMS */
  1429. /* Allocate and load the module: note that size of section 0 is always
  1430. zero, and we rely on this for optional sections. */
  1431. static struct module *load_module(void __user *umod,
  1432. unsigned long len,
  1433. const char __user *uargs)
  1434. {
  1435. Elf_Ehdr *hdr;
  1436. Elf_Shdr *sechdrs;
  1437. char *secstrings, *args, *modmagic, *strtab = NULL;
  1438. unsigned int i;
  1439. unsigned int symindex = 0;
  1440. unsigned int strindex = 0;
  1441. unsigned int setupindex;
  1442. unsigned int exindex;
  1443. unsigned int exportindex;
  1444. unsigned int modindex;
  1445. unsigned int obsparmindex;
  1446. unsigned int infoindex;
  1447. unsigned int gplindex;
  1448. unsigned int crcindex;
  1449. unsigned int gplcrcindex;
  1450. unsigned int versindex;
  1451. unsigned int pcpuindex;
  1452. unsigned int gplfutureindex;
  1453. unsigned int gplfuturecrcindex;
  1454. unsigned int unwindex = 0;
  1455. unsigned int unusedindex;
  1456. unsigned int unusedcrcindex;
  1457. unsigned int unusedgplindex;
  1458. unsigned int unusedgplcrcindex;
  1459. struct module *mod;
  1460. long err = 0;
  1461. void *percpu = NULL, *ptr = NULL; /* Stops spurious gcc warning */
  1462. struct exception_table_entry *extable;
  1463. mm_segment_t old_fs;
  1464. DEBUGP("load_module: umod=%p, len=%lu, uargs=%p\n",
  1465. umod, len, uargs);
  1466. if (len < sizeof(*hdr))
  1467. return ERR_PTR(-ENOEXEC);
  1468. /* Suck in entire file: we'll want most of it. */
  1469. /* vmalloc barfs on "unusual" numbers. Check here */
  1470. if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL)
  1471. return ERR_PTR(-ENOMEM);
  1472. if (copy_from_user(hdr, umod, len) != 0) {
  1473. err = -EFAULT;
  1474. goto free_hdr;
  1475. }
  1476. /* Sanity checks against insmoding binaries or wrong arch,
  1477. weird elf version */
  1478. if (memcmp(hdr->e_ident, ELFMAG, 4) != 0
  1479. || hdr->e_type != ET_REL
  1480. || !elf_check_arch(hdr)
  1481. || hdr->e_shentsize != sizeof(*sechdrs)) {
  1482. err = -ENOEXEC;
  1483. goto free_hdr;
  1484. }
  1485. if (len < hdr->e_shoff + hdr->e_shnum * sizeof(Elf_Shdr))
  1486. goto truncated;
  1487. /* Convenience variables */
  1488. sechdrs = (void *)hdr + hdr->e_shoff;
  1489. secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  1490. sechdrs[0].sh_addr = 0;
  1491. for (i = 1; i < hdr->e_shnum; i++) {
  1492. if (sechdrs[i].sh_type != SHT_NOBITS
  1493. && len < sechdrs[i].sh_offset + sechdrs[i].sh_size)
  1494. goto truncated;
  1495. /* Mark all sections sh_addr with their address in the
  1496. temporary image. */
  1497. sechdrs[i].sh_addr = (size_t)hdr + sechdrs[i].sh_offset;
  1498. /* Internal symbols and strings. */
  1499. if (sechdrs[i].sh_type == SHT_SYMTAB) {
  1500. symindex = i;
  1501. strindex = sechdrs[i].sh_link;
  1502. strtab = (char *)hdr + sechdrs[strindex].sh_offset;
  1503. }
  1504. #ifndef CONFIG_MODULE_UNLOAD
  1505. /* Don't load .exit sections */
  1506. if (strncmp(secstrings+sechdrs[i].sh_name, ".exit", 5) == 0)
  1507. sechdrs[i].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1508. #endif
  1509. }
  1510. modindex = find_sec(hdr, sechdrs, secstrings,
  1511. ".gnu.linkonce.this_module");
  1512. if (!modindex) {
  1513. printk(KERN_WARNING "No module found in object\n");
  1514. err = -ENOEXEC;
  1515. goto free_hdr;
  1516. }
  1517. mod = (void *)sechdrs[modindex].sh_addr;
  1518. if (symindex == 0) {
  1519. printk(KERN_WARNING "%s: module has no symbols (stripped?)\n",
  1520. mod->name);
  1521. err = -ENOEXEC;
  1522. goto free_hdr;
  1523. }
  1524. /* Optional sections */
  1525. exportindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab");
  1526. gplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl");
  1527. gplfutureindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_gpl_future");
  1528. unusedindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused");
  1529. unusedgplindex = find_sec(hdr, sechdrs, secstrings, "__ksymtab_unused_gpl");
  1530. crcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab");
  1531. gplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl");
  1532. gplfuturecrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_gpl_future");
  1533. unusedcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused");
  1534. unusedgplcrcindex = find_sec(hdr, sechdrs, secstrings, "__kcrctab_unused_gpl");
  1535. setupindex = find_sec(hdr, sechdrs, secstrings, "__param");
  1536. exindex = find_sec(hdr, sechdrs, secstrings, "__ex_table");
  1537. obsparmindex = find_sec(hdr, sechdrs, secstrings, "__obsparm");
  1538. versindex = find_sec(hdr, sechdrs, secstrings, "__versions");
  1539. infoindex = find_sec(hdr, sechdrs, secstrings, ".modinfo");
  1540. pcpuindex = find_pcpusec(hdr, sechdrs, secstrings);
  1541. #ifdef ARCH_UNWIND_SECTION_NAME
  1542. unwindex = find_sec(hdr, sechdrs, secstrings, ARCH_UNWIND_SECTION_NAME);
  1543. #endif
  1544. /* Don't keep modinfo section */
  1545. sechdrs[infoindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1546. #ifdef CONFIG_KALLSYMS
  1547. /* Keep symbol and string tables for decoding later. */
  1548. sechdrs[symindex].sh_flags |= SHF_ALLOC;
  1549. sechdrs[strindex].sh_flags |= SHF_ALLOC;
  1550. #endif
  1551. if (unwindex)
  1552. sechdrs[unwindex].sh_flags |= SHF_ALLOC;
  1553. /* Check module struct version now, before we try to use module. */
  1554. if (!check_modstruct_version(sechdrs, versindex, mod)) {
  1555. err = -ENOEXEC;
  1556. goto free_hdr;
  1557. }
  1558. modmagic = get_modinfo(sechdrs, infoindex, "vermagic");
  1559. /* This is allowed: modprobe --force will invalidate it. */
  1560. if (!modmagic) {
  1561. add_taint_module(mod, TAINT_FORCED_MODULE);
  1562. printk(KERN_WARNING "%s: no version magic, tainting kernel.\n",
  1563. mod->name);
  1564. } else if (!same_magic(modmagic, vermagic)) {
  1565. printk(KERN_ERR "%s: version magic '%s' should be '%s'\n",
  1566. mod->name, modmagic, vermagic);
  1567. err = -ENOEXEC;
  1568. goto free_hdr;
  1569. }
  1570. /* Now copy in args */
  1571. args = strndup_user(uargs, ~0UL >> 1);
  1572. if (IS_ERR(args)) {
  1573. err = PTR_ERR(args);
  1574. goto free_hdr;
  1575. }
  1576. if (find_module(mod->name)) {
  1577. err = -EEXIST;
  1578. goto free_mod;
  1579. }
  1580. mod->state = MODULE_STATE_COMING;
  1581. /* Allow arches to frob section contents and sizes. */
  1582. err = module_frob_arch_sections(hdr, sechdrs, secstrings, mod);
  1583. if (err < 0)
  1584. goto free_mod;
  1585. if (pcpuindex) {
  1586. /* We have a special allocation for this section. */
  1587. percpu = percpu_modalloc(sechdrs[pcpuindex].sh_size,
  1588. sechdrs[pcpuindex].sh_addralign,
  1589. mod->name);
  1590. if (!percpu) {
  1591. err = -ENOMEM;
  1592. goto free_mod;
  1593. }
  1594. sechdrs[pcpuindex].sh_flags &= ~(unsigned long)SHF_ALLOC;
  1595. mod->percpu = percpu;
  1596. }
  1597. /* Determine total sizes, and put offsets in sh_entsize. For now
  1598. this is done generically; there doesn't appear to be any
  1599. special cases for the architectures. */
  1600. layout_sections(mod, hdr, sechdrs, secstrings);
  1601. /* Do the allocs. */
  1602. ptr = module_alloc(mod->core_size);
  1603. if (!ptr) {
  1604. err = -ENOMEM;
  1605. goto free_percpu;
  1606. }
  1607. memset(ptr, 0, mod->core_size);
  1608. mod->module_core = ptr;
  1609. ptr = module_alloc(mod->init_size);
  1610. if (!ptr && mod->init_size) {
  1611. err = -ENOMEM;
  1612. goto free_core;
  1613. }
  1614. memset(ptr, 0, mod->init_size);
  1615. mod->module_init = ptr;
  1616. /* Transfer each section which specifies SHF_ALLOC */
  1617. DEBUGP("final section addresses:\n");
  1618. for (i = 0; i < hdr->e_shnum; i++) {
  1619. void *dest;
  1620. if (!(sechdrs[i].sh_flags & SHF_ALLOC))
  1621. continue;
  1622. if (sechdrs[i].sh_entsize & INIT_OFFSET_MASK)
  1623. dest = mod->module_init
  1624. + (sechdrs[i].sh_entsize & ~INIT_OFFSET_MASK);
  1625. else
  1626. dest = mod->module_core + sechdrs[i].sh_entsize;
  1627. if (sechdrs[i].sh_type != SHT_NOBITS)
  1628. memcpy(dest, (void *)sechdrs[i].sh_addr,
  1629. sechdrs[i].sh_size);
  1630. /* Update sh_addr to point to copy in image. */
  1631. sechdrs[i].sh_addr = (unsigned long)dest;
  1632. DEBUGP("\t0x%lx %s\n", sechdrs[i].sh_addr, secstrings + sechdrs[i].sh_name);
  1633. }
  1634. /* Module has been moved. */
  1635. mod = (void *)sechdrs[modindex].sh_addr;
  1636. /* Now we've moved module, initialize linked lists, etc. */
  1637. module_unload_init(mod);
  1638. /* Initialize kobject, so we can reference it. */
  1639. if (mod_sysfs_init(mod) != 0)
  1640. goto cleanup;
  1641. /* Set up license info based on the info section */
  1642. set_license(mod, get_modinfo(sechdrs, infoindex, "license"));
  1643. if (strcmp(mod->name, "ndiswrapper") == 0)
  1644. add_taint(TAINT_PROPRIETARY_MODULE);
  1645. if (strcmp(mod->name, "driverloader") == 0)
  1646. add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
  1647. /* Set up MODINFO_ATTR fields */
  1648. setup_modinfo(mod, sechdrs, infoindex);
  1649. /* Fix up syms, so that st_value is a pointer to location. */
  1650. err = simplify_symbols(sechdrs, symindex, strtab, versindex, pcpuindex,
  1651. mod);
  1652. if (err < 0)
  1653. goto cleanup;
  1654. /* Set up EXPORTed & EXPORT_GPLed symbols (section 0 is 0 length) */
  1655. mod->num_syms = sechdrs[exportindex].sh_size / sizeof(*mod->syms);
  1656. mod->syms = (void *)sechdrs[exportindex].sh_addr;
  1657. if (crcindex)
  1658. mod->crcs = (void *)sechdrs[crcindex].sh_addr;
  1659. mod->num_gpl_syms = sechdrs[gplindex].sh_size / sizeof(*mod->gpl_syms);
  1660. mod->gpl_syms = (void *)sechdrs[gplindex].sh_addr;
  1661. if (gplcrcindex)
  1662. mod->gpl_crcs = (void *)sechdrs[gplcrcindex].sh_addr;
  1663. mod->num_gpl_future_syms = sechdrs[gplfutureindex].sh_size /
  1664. sizeof(*mod->gpl_future_syms);
  1665. mod->num_unused_syms = sechdrs[unusedindex].sh_size /
  1666. sizeof(*mod->unused_syms);
  1667. mod->num_unused_gpl_syms = sechdrs[unusedgplindex].sh_size /
  1668. sizeof(*mod->unused_gpl_syms);
  1669. mod->gpl_future_syms = (void *)sechdrs[gplfutureindex].sh_addr;
  1670. if (gplfuturecrcindex)
  1671. mod->gpl_future_crcs = (void *)sechdrs[gplfuturecrcindex].sh_addr;
  1672. mod->unused_syms = (void *)sechdrs[unusedindex].sh_addr;
  1673. if (unusedcrcindex)
  1674. mod->unused_crcs = (void *)sechdrs[unusedcrcindex].sh_addr;
  1675. mod->unused_gpl_syms = (void *)sechdrs[unusedgplindex].sh_addr;
  1676. if (unusedgplcrcindex)
  1677. mod->unused_crcs = (void *)sechdrs[unusedgplcrcindex].sh_addr;
  1678. #ifdef CONFIG_MODVERSIONS
  1679. if ((mod->num_syms && !crcindex) ||
  1680. (mod->num_gpl_syms && !gplcrcindex) ||
  1681. (mod->num_gpl_future_syms && !gplfuturecrcindex) ||
  1682. (mod->num_unused_syms && !unusedcrcindex) ||
  1683. (mod->num_unused_gpl_syms && !unusedgplcrcindex)) {
  1684. printk(KERN_WARNING "%s: No versions for exported symbols."
  1685. " Tainting kernel.\n", mod->name);
  1686. add_taint_module(mod, TAINT_FORCED_MODULE);
  1687. }
  1688. #endif
  1689. /* Now do relocations. */
  1690. for (i = 1; i < hdr->e_shnum; i++) {
  1691. const char *strtab = (char *)sechdrs[strindex].sh_addr;
  1692. unsigned int info = sechdrs[i].sh_info;
  1693. /* Not a valid relocation section? */
  1694. if (info >= hdr->e_shnum)
  1695. continue;
  1696. /* Don't bother with non-allocated sections */
  1697. if (!(sechdrs[info].sh_flags & SHF_ALLOC))
  1698. continue;
  1699. if (sechdrs[i].sh_type == SHT_REL)
  1700. err = apply_relocate(sechdrs, strtab, symindex, i,mod);
  1701. else if (sechdrs[i].sh_type == SHT_RELA)
  1702. err = apply_relocate_add(sechdrs, strtab, symindex, i,
  1703. mod);
  1704. if (err < 0)
  1705. goto cleanup;
  1706. }
  1707. /* Find duplicate symbols */
  1708. err = verify_export_symbols(mod);
  1709. if (err < 0)
  1710. goto cleanup;
  1711. /* Set up and sort exception table */
  1712. mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
  1713. mod->extable = extable = (void *)sechdrs[exindex].sh_addr;
  1714. sort_extable(extable, extable + mod->num_exentries);
  1715. /* Finally, copy percpu area over. */
  1716. percpu_modcopy(mod->percpu, (void *)sechdrs[pcpuindex].sh_addr,
  1717. sechdrs[pcpuindex].sh_size);
  1718. add_kallsyms(mod, sechdrs, symindex, strindex, secstrings);
  1719. err = module_finalize(hdr, sechdrs, mod);
  1720. if (err < 0)
  1721. goto cleanup;
  1722. /* flush the icache in correct context */
  1723. old_fs = get_fs();
  1724. set_fs(KERNEL_DS);
  1725. /*
  1726. * Flush the instruction cache, since we've played with text.
  1727. * Do it before processing of module parameters, so the module
  1728. * can provide parameter accessor functions of its own.
  1729. */
  1730. if (mod->module_init)
  1731. flush_icache_range((unsigned long)mod->module_init,
  1732. (unsigned long)mod->module_init
  1733. + mod->init_size);
  1734. flush_icache_range((unsigned long)mod->module_core,
  1735. (unsigned long)mod->module_core + mod->core_size);
  1736. set_fs(old_fs);
  1737. mod->args = args;
  1738. if (obsparmindex)
  1739. printk(KERN_WARNING "%s: Ignoring obsolete parameters\n",
  1740. mod->name);
  1741. /* Size of section 0 is 0, so this works well if no params */
  1742. err = parse_args(mod->name, mod->args,
  1743. (struct kernel_param *)
  1744. sechdrs[setupindex].sh_addr,
  1745. sechdrs[setupindex].sh_size
  1746. / sizeof(struct kernel_param),
  1747. NULL);
  1748. if (err < 0)
  1749. goto arch_cleanup;
  1750. err = mod_sysfs_setup(mod,
  1751. (struct kernel_param *)
  1752. sechdrs[setupindex].sh_addr,
  1753. sechdrs[setupindex].sh_size
  1754. / sizeof(struct kernel_param));
  1755. if (err < 0)
  1756. goto arch_cleanup;
  1757. add_sect_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
  1758. add_notes_attrs(mod, hdr->e_shnum, secstrings, sechdrs);
  1759. /* Size of section 0 is 0, so this works well if no unwind info. */
  1760. mod->unwind_info = unwind_add_table(mod,
  1761. (void *)sechdrs[unwindex].sh_addr,
  1762. sechdrs[unwindex].sh_size);
  1763. /* Get rid of temporary copy */
  1764. vfree(hdr);
  1765. /* Done! */
  1766. return mod;
  1767. arch_cleanup:
  1768. module_arch_cleanup(mod);
  1769. cleanup:
  1770. module_unload_free(mod);
  1771. module_free(mod, mod->module_init);
  1772. free_core:
  1773. module_free(mod, mod->module_core);
  1774. free_percpu:
  1775. if (percpu)
  1776. percpu_modfree(percpu);
  1777. free_mod:
  1778. kfree(args);
  1779. free_hdr:
  1780. vfree(hdr);
  1781. return ERR_PTR(err);
  1782. truncated:
  1783. printk(KERN_ERR "Module len %lu truncated\n", len);
  1784. err = -ENOEXEC;
  1785. goto free_hdr;
  1786. }
  1787. /*
  1788. * link the module with the whole machine is stopped with interrupts off
  1789. * - this defends against kallsyms not taking locks
  1790. */
  1791. static int __link_module(void *_mod)
  1792. {
  1793. struct module *mod = _mod;
  1794. list_add(&mod->list, &modules);
  1795. return 0;
  1796. }
  1797. /* This is where the real work happens */
  1798. asmlinkage long
  1799. sys_init_module(void __user *umod,
  1800. unsigned long len,
  1801. const char __user *uargs)
  1802. {
  1803. struct module *mod;
  1804. int ret = 0;
  1805. /* Must have permission */
  1806. if (!capable(CAP_SYS_MODULE))
  1807. return -EPERM;
  1808. /* Only one module load at a time, please */
  1809. if (mutex_lock_interruptible(&module_mutex) != 0)
  1810. return -EINTR;
  1811. /* Do all the hard work */
  1812. mod = load_module(umod, len, uargs);
  1813. if (IS_ERR(mod)) {
  1814. mutex_unlock(&module_mutex);
  1815. return PTR_ERR(mod);
  1816. }
  1817. /* Now sew it into the lists. They won't access us, since
  1818. strong_try_module_get() will fail. */
  1819. stop_machine_run(__link_module, mod, NR_CPUS);
  1820. /* Drop lock so they can recurse */
  1821. mutex_unlock(&module_mutex);
  1822. blocking_notifier_call_chain(&module_notify_list,
  1823. MODULE_STATE_COMING, mod);
  1824. /* Start the module */
  1825. if (mod->init != NULL)
  1826. ret = mod->init();
  1827. if (ret < 0) {
  1828. /* Init routine failed: abort. Try to protect us from
  1829. buggy refcounters. */
  1830. mod->state = MODULE_STATE_GOING;
  1831. synchronize_sched();
  1832. module_put(mod);
  1833. mutex_lock(&module_mutex);
  1834. free_module(mod);
  1835. mutex_unlock(&module_mutex);
  1836. return ret;
  1837. }
  1838. /* Now it's a first class citizen! */
  1839. mutex_lock(&module_mutex);
  1840. mod->state = MODULE_STATE_LIVE;
  1841. /* Drop initial reference. */
  1842. module_put(mod);
  1843. unwind_remove_table(mod->unwind_info, 1);
  1844. module_free(mod, mod->module_init);
  1845. mod->module_init = NULL;
  1846. mod->init_size = 0;
  1847. mod->init_text_size = 0;
  1848. mutex_unlock(&module_mutex);
  1849. return 0;
  1850. }
  1851. static inline int within(unsigned long addr, void *start, unsigned long size)
  1852. {
  1853. return ((void *)addr >= start && (void *)addr < start + size);
  1854. }
  1855. #ifdef CONFIG_KALLSYMS
  1856. /*
  1857. * This ignores the intensely annoying "mapping symbols" found
  1858. * in ARM ELF files: $a, $t and $d.
  1859. */
  1860. static inline int is_arm_mapping_symbol(const char *str)
  1861. {
  1862. return str[0] == '$' && strchr("atd", str[1])
  1863. && (str[2] == '\0' || str[2] == '.');
  1864. }
  1865. static const char *get_ksymbol(struct module *mod,
  1866. unsigned long addr,
  1867. unsigned long *size,
  1868. unsigned long *offset)
  1869. {
  1870. unsigned int i, best = 0;
  1871. unsigned long nextval;
  1872. /* At worse, next value is at end of module */
  1873. if (within(addr, mod->module_init, mod->init_size))
  1874. nextval = (unsigned long)mod->module_init+mod->init_text_size;
  1875. else
  1876. nextval = (unsigned long)mod->module_core+mod->core_text_size;
  1877. /* Scan for closest preceeding symbol, and next symbol. (ELF
  1878. starts real symbols at 1). */
  1879. for (i = 1; i < mod->num_symtab; i++) {
  1880. if (mod->symtab[i].st_shndx == SHN_UNDEF)
  1881. continue;
  1882. /* We ignore unnamed symbols: they're uninformative
  1883. * and inserted at a whim. */
  1884. if (mod->symtab[i].st_value <= addr
  1885. && mod->symtab[i].st_value > mod->symtab[best].st_value
  1886. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  1887. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  1888. best = i;
  1889. if (mod->symtab[i].st_value > addr
  1890. && mod->symtab[i].st_value < nextval
  1891. && *(mod->strtab + mod->symtab[i].st_name) != '\0'
  1892. && !is_arm_mapping_symbol(mod->strtab + mod->symtab[i].st_name))
  1893. nextval = mod->symtab[i].st_value;
  1894. }
  1895. if (!best)
  1896. return NULL;
  1897. if (size)
  1898. *size = nextval - mod->symtab[best].st_value;
  1899. if (offset)
  1900. *offset = addr - mod->symtab[best].st_value;
  1901. return mod->strtab + mod->symtab[best].st_name;
  1902. }
  1903. /* For kallsyms to ask for address resolution. NULL means not found.
  1904. We don't lock, as this is used for oops resolution and races are a
  1905. lesser concern. */
  1906. const char *module_address_lookup(unsigned long addr,
  1907. unsigned long *size,
  1908. unsigned long *offset,
  1909. char **modname)
  1910. {
  1911. struct module *mod;
  1912. list_for_each_entry(mod, &modules, list) {
  1913. if (within(addr, mod->module_init, mod->init_size)
  1914. || within(addr, mod->module_core, mod->core_size)) {
  1915. if (modname)
  1916. *modname = mod->name;
  1917. return get_ksymbol(mod, addr, size, offset);
  1918. }
  1919. }
  1920. return NULL;
  1921. }
  1922. int lookup_module_symbol_name(unsigned long addr, char *symname)
  1923. {
  1924. struct module *mod;
  1925. mutex_lock(&module_mutex);
  1926. list_for_each_entry(mod, &modules, list) {
  1927. if (within(addr, mod->module_init, mod->init_size) ||
  1928. within(addr, mod->module_core, mod->core_size)) {
  1929. const char *sym;
  1930. sym = get_ksymbol(mod, addr, NULL, NULL);
  1931. if (!sym)
  1932. goto out;
  1933. strlcpy(symname, sym, KSYM_NAME_LEN);
  1934. mutex_unlock(&module_mutex);
  1935. return 0;
  1936. }
  1937. }
  1938. out:
  1939. mutex_unlock(&module_mutex);
  1940. return -ERANGE;
  1941. }
  1942. int lookup_module_symbol_attrs(unsigned long addr, unsigned long *size,
  1943. unsigned long *offset, char *modname, char *name)
  1944. {
  1945. struct module *mod;
  1946. mutex_lock(&module_mutex);
  1947. list_for_each_entry(mod, &modules, list) {
  1948. if (within(addr, mod->module_init, mod->init_size) ||
  1949. within(addr, mod->module_core, mod->core_size)) {
  1950. const char *sym;
  1951. sym = get_ksymbol(mod, addr, size, offset);
  1952. if (!sym)
  1953. goto out;
  1954. if (modname)
  1955. strlcpy(modname, mod->name, MODULE_NAME_LEN);
  1956. if (name)
  1957. strlcpy(name, sym, KSYM_NAME_LEN);
  1958. mutex_unlock(&module_mutex);
  1959. return 0;
  1960. }
  1961. }
  1962. out:
  1963. mutex_unlock(&module_mutex);
  1964. return -ERANGE;
  1965. }
  1966. int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
  1967. char *name, char *module_name, int *exported)
  1968. {
  1969. struct module *mod;
  1970. mutex_lock(&module_mutex);
  1971. list_for_each_entry(mod, &modules, list) {
  1972. if (symnum < mod->num_symtab) {
  1973. *value = mod->symtab[symnum].st_value;
  1974. *type = mod->symtab[symnum].st_info;
  1975. strlcpy(name, mod->strtab + mod->symtab[symnum].st_name,
  1976. KSYM_NAME_LEN);
  1977. strlcpy(module_name, mod->name, MODULE_NAME_LEN);
  1978. *exported = is_exported(name, mod);
  1979. mutex_unlock(&module_mutex);
  1980. return 0;
  1981. }
  1982. symnum -= mod->num_symtab;
  1983. }
  1984. mutex_unlock(&module_mutex);
  1985. return -ERANGE;
  1986. }
  1987. static unsigned long mod_find_symname(struct module *mod, const char *name)
  1988. {
  1989. unsigned int i;
  1990. for (i = 0; i < mod->num_symtab; i++)
  1991. if (strcmp(name, mod->strtab+mod->symtab[i].st_name) == 0 &&
  1992. mod->symtab[i].st_info != 'U')
  1993. return mod->symtab[i].st_value;
  1994. return 0;
  1995. }
  1996. /* Look for this name: can be of form module:name. */
  1997. unsigned long module_kallsyms_lookup_name(const char *name)
  1998. {
  1999. struct module *mod;
  2000. char *colon;
  2001. unsigned long ret = 0;
  2002. /* Don't lock: we're in enough trouble already. */
  2003. if ((colon = strchr(name, ':')) != NULL) {
  2004. *colon = '\0';
  2005. if ((mod = find_module(name)) != NULL)
  2006. ret = mod_find_symname(mod, colon+1);
  2007. *colon = ':';
  2008. } else {
  2009. list_for_each_entry(mod, &modules, list)
  2010. if ((ret = mod_find_symname(mod, name)) != 0)
  2011. break;
  2012. }
  2013. return ret;
  2014. }
  2015. #endif /* CONFIG_KALLSYMS */
  2016. /* Called by the /proc file system to return a list of modules. */
  2017. static void *m_start(struct seq_file *m, loff_t *pos)
  2018. {
  2019. mutex_lock(&module_mutex);
  2020. return seq_list_start(&modules, *pos);
  2021. }
  2022. static void *m_next(struct seq_file *m, void *p, loff_t *pos)
  2023. {
  2024. return seq_list_next(p, &modules, pos);
  2025. }
  2026. static void m_stop(struct seq_file *m, void *p)
  2027. {
  2028. mutex_unlock(&module_mutex);
  2029. }
  2030. static char *taint_flags(unsigned int taints, char *buf)
  2031. {
  2032. int bx = 0;
  2033. if (taints) {
  2034. buf[bx++] = '(';
  2035. if (taints & TAINT_PROPRIETARY_MODULE)
  2036. buf[bx++] = 'P';
  2037. if (taints & TAINT_FORCED_MODULE)
  2038. buf[bx++] = 'F';
  2039. /*
  2040. * TAINT_FORCED_RMMOD: could be added.
  2041. * TAINT_UNSAFE_SMP, TAINT_MACHINE_CHECK, TAINT_BAD_PAGE don't
  2042. * apply to modules.
  2043. */
  2044. buf[bx++] = ')';
  2045. }
  2046. buf[bx] = '\0';
  2047. return buf;
  2048. }
  2049. static int m_show(struct seq_file *m, void *p)
  2050. {
  2051. struct module *mod = list_entry(p, struct module, list);
  2052. char buf[8];
  2053. seq_printf(m, "%s %lu",
  2054. mod->name, mod->init_size + mod->core_size);
  2055. print_unload_info(m, mod);
  2056. /* Informative for users. */
  2057. seq_printf(m, " %s",
  2058. mod->state == MODULE_STATE_GOING ? "Unloading":
  2059. mod->state == MODULE_STATE_COMING ? "Loading":
  2060. "Live");
  2061. /* Used by oprofile and other similar tools. */
  2062. seq_printf(m, " 0x%p", mod->module_core);
  2063. /* Taints info */
  2064. if (mod->taints)
  2065. seq_printf(m, " %s", taint_flags(mod->taints, buf));
  2066. seq_printf(m, "\n");
  2067. return 0;
  2068. }
  2069. /* Format: modulename size refcount deps address
  2070. Where refcount is a number or -, and deps is a comma-separated list
  2071. of depends or -.
  2072. */
  2073. const struct seq_operations modules_op = {
  2074. .start = m_start,
  2075. .next = m_next,
  2076. .stop = m_stop,
  2077. .show = m_show
  2078. };
  2079. /* Given an address, look for it in the module exception tables. */
  2080. const struct exception_table_entry *search_module_extables(unsigned long addr)
  2081. {
  2082. const struct exception_table_entry *e = NULL;
  2083. struct module *mod;
  2084. preempt_disable();
  2085. list_for_each_entry(mod, &modules, list) {
  2086. if (mod->num_exentries == 0)
  2087. continue;
  2088. e = search_extable(mod->extable,
  2089. mod->extable + mod->num_exentries - 1,
  2090. addr);
  2091. if (e)
  2092. break;
  2093. }
  2094. preempt_enable();
  2095. /* Now, if we found one, we are running inside it now, hence
  2096. we cannot unload the module, hence no refcnt needed. */
  2097. return e;
  2098. }
  2099. /*
  2100. * Is this a valid module address?
  2101. */
  2102. int is_module_address(unsigned long addr)
  2103. {
  2104. struct module *mod;
  2105. preempt_disable();
  2106. list_for_each_entry(mod, &modules, list) {
  2107. if (within(addr, mod->module_core, mod->core_size)) {
  2108. preempt_enable();
  2109. return 1;
  2110. }
  2111. }
  2112. preempt_enable();
  2113. return 0;
  2114. }
  2115. /* Is this a valid kernel address? */
  2116. struct module *__module_text_address(unsigned long addr)
  2117. {
  2118. struct module *mod;
  2119. list_for_each_entry(mod, &modules, list)
  2120. if (within(addr, mod->module_init, mod->init_text_size)
  2121. || within(addr, mod->module_core, mod->core_text_size))
  2122. return mod;
  2123. return NULL;
  2124. }
  2125. struct module *module_text_address(unsigned long addr)
  2126. {
  2127. struct module *mod;
  2128. preempt_disable();
  2129. mod = __module_text_address(addr);
  2130. preempt_enable();
  2131. return mod;
  2132. }
  2133. /* Don't grab lock, we're oopsing. */
  2134. void print_modules(void)
  2135. {
  2136. struct module *mod;
  2137. char buf[8];
  2138. printk("Modules linked in:");
  2139. list_for_each_entry(mod, &modules, list)
  2140. printk(" %s%s", mod->name, taint_flags(mod->taints, buf));
  2141. printk("\n");
  2142. }
  2143. #ifdef CONFIG_SYSFS
  2144. static char *make_driver_name(struct device_driver *drv)
  2145. {
  2146. char *driver_name;
  2147. driver_name = kmalloc(strlen(drv->name) + strlen(drv->bus->name) + 2,
  2148. GFP_KERNEL);
  2149. if (!driver_name)
  2150. return NULL;
  2151. sprintf(driver_name, "%s:%s", drv->bus->name, drv->name);
  2152. return driver_name;
  2153. }
  2154. static void module_create_drivers_dir(struct module_kobject *mk)
  2155. {
  2156. if (!mk || mk->drivers_dir)
  2157. return;
  2158. mk->drivers_dir = kobject_add_dir(&mk->kobj, "drivers");
  2159. }
  2160. void module_add_driver(struct module *mod, struct device_driver *drv)
  2161. {
  2162. char *driver_name;
  2163. int no_warn;
  2164. struct module_kobject *mk = NULL;
  2165. if (!drv)
  2166. return;
  2167. if (mod)
  2168. mk = &mod->mkobj;
  2169. else if (drv->mod_name) {
  2170. struct kobject *mkobj;
  2171. /* Lookup built-in module entry in /sys/modules */
  2172. mkobj = kset_find_obj(&module_subsys, drv->mod_name);
  2173. if (mkobj) {
  2174. mk = container_of(mkobj, struct module_kobject, kobj);
  2175. /* remember our module structure */
  2176. drv->mkobj = mk;
  2177. /* kset_find_obj took a reference */
  2178. kobject_put(mkobj);
  2179. }
  2180. }
  2181. if (!mk)
  2182. return;
  2183. /* Don't check return codes; these calls are idempotent */
  2184. no_warn = sysfs_create_link(&drv->kobj, &mk->kobj, "module");
  2185. driver_name = make_driver_name(drv);
  2186. if (driver_name) {
  2187. module_create_drivers_dir(mk);
  2188. no_warn = sysfs_create_link(mk->drivers_dir, &drv->kobj,
  2189. driver_name);
  2190. kfree(driver_name);
  2191. }
  2192. }
  2193. EXPORT_SYMBOL(module_add_driver);
  2194. void module_remove_driver(struct device_driver *drv)
  2195. {
  2196. struct module_kobject *mk = NULL;
  2197. char *driver_name;
  2198. if (!drv)
  2199. return;
  2200. sysfs_remove_link(&drv->kobj, "module");
  2201. if (drv->owner)
  2202. mk = &drv->owner->mkobj;
  2203. else if (drv->mkobj)
  2204. mk = drv->mkobj;
  2205. if (mk && mk->drivers_dir) {
  2206. driver_name = make_driver_name(drv);
  2207. if (driver_name) {
  2208. sysfs_remove_link(mk->drivers_dir, driver_name);
  2209. kfree(driver_name);
  2210. }
  2211. }
  2212. }
  2213. EXPORT_SYMBOL(module_remove_driver);
  2214. #endif
  2215. #ifdef CONFIG_MODVERSIONS
  2216. /* Generate the signature for struct module here, too, for modversions. */
  2217. void struct_module(struct module *mod) { return; }
  2218. EXPORT_SYMBOL(struct_module);
  2219. #endif