slub.c 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801
  1. /*
  2. * SLUB: A slab allocator that limits cache line use instead of queuing
  3. * objects in per cpu and per node lists.
  4. *
  5. * The allocator synchronizes using per slab locks and only
  6. * uses a centralized lock to manage a pool of partial slabs.
  7. *
  8. * (C) 2007 SGI, Christoph Lameter <clameter@sgi.com>
  9. */
  10. #include <linux/mm.h>
  11. #include <linux/module.h>
  12. #include <linux/bit_spinlock.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/bitops.h>
  15. #include <linux/slab.h>
  16. #include <linux/seq_file.h>
  17. #include <linux/cpu.h>
  18. #include <linux/cpuset.h>
  19. #include <linux/mempolicy.h>
  20. #include <linux/ctype.h>
  21. #include <linux/kallsyms.h>
  22. /*
  23. * Lock order:
  24. * 1. slab_lock(page)
  25. * 2. slab->list_lock
  26. *
  27. * The slab_lock protects operations on the object of a particular
  28. * slab and its metadata in the page struct. If the slab lock
  29. * has been taken then no allocations nor frees can be performed
  30. * on the objects in the slab nor can the slab be added or removed
  31. * from the partial or full lists since this would mean modifying
  32. * the page_struct of the slab.
  33. *
  34. * The list_lock protects the partial and full list on each node and
  35. * the partial slab counter. If taken then no new slabs may be added or
  36. * removed from the lists nor make the number of partial slabs be modified.
  37. * (Note that the total number of slabs is an atomic value that may be
  38. * modified without taking the list lock).
  39. *
  40. * The list_lock is a centralized lock and thus we avoid taking it as
  41. * much as possible. As long as SLUB does not have to handle partial
  42. * slabs, operations can continue without any centralized lock. F.e.
  43. * allocating a long series of objects that fill up slabs does not require
  44. * the list lock.
  45. *
  46. * The lock order is sometimes inverted when we are trying to get a slab
  47. * off a list. We take the list_lock and then look for a page on the list
  48. * to use. While we do that objects in the slabs may be freed. We can
  49. * only operate on the slab if we have also taken the slab_lock. So we use
  50. * a slab_trylock() on the slab. If trylock was successful then no frees
  51. * can occur anymore and we can use the slab for allocations etc. If the
  52. * slab_trylock() does not succeed then frees are in progress in the slab and
  53. * we must stay away from it for a while since we may cause a bouncing
  54. * cacheline if we try to acquire the lock. So go onto the next slab.
  55. * If all pages are busy then we may allocate a new slab instead of reusing
  56. * a partial slab. A new slab has noone operating on it and thus there is
  57. * no danger of cacheline contention.
  58. *
  59. * Interrupts are disabled during allocation and deallocation in order to
  60. * make the slab allocator safe to use in the context of an irq. In addition
  61. * interrupts are disabled to ensure that the processor does not change
  62. * while handling per_cpu slabs, due to kernel preemption.
  63. *
  64. * SLUB assigns one slab for allocation to each processor.
  65. * Allocations only occur from these slabs called cpu slabs.
  66. *
  67. * Slabs with free elements are kept on a partial list and during regular
  68. * operations no list for full slabs is used. If an object in a full slab is
  69. * freed then the slab will show up again on the partial lists.
  70. * We track full slabs for debugging purposes though because otherwise we
  71. * cannot scan all objects.
  72. *
  73. * Slabs are freed when they become empty. Teardown and setup is
  74. * minimal so we rely on the page allocators per cpu caches for
  75. * fast frees and allocs.
  76. *
  77. * Overloading of page flags that are otherwise used for LRU management.
  78. *
  79. * PageActive The slab is frozen and exempt from list processing.
  80. * This means that the slab is dedicated to a purpose
  81. * such as satisfying allocations for a specific
  82. * processor. Objects may be freed in the slab while
  83. * it is frozen but slab_free will then skip the usual
  84. * list operations. It is up to the processor holding
  85. * the slab to integrate the slab into the slab lists
  86. * when the slab is no longer needed.
  87. *
  88. * One use of this flag is to mark slabs that are
  89. * used for allocations. Then such a slab becomes a cpu
  90. * slab. The cpu slab may be equipped with an additional
  91. * lockless_freelist that allows lockless access to
  92. * free objects in addition to the regular freelist
  93. * that requires the slab lock.
  94. *
  95. * PageError Slab requires special handling due to debug
  96. * options set. This moves slab handling out of
  97. * the fast path and disables lockless freelists.
  98. */
  99. #define FROZEN (1 << PG_active)
  100. #ifdef CONFIG_SLUB_DEBUG
  101. #define SLABDEBUG (1 << PG_error)
  102. #else
  103. #define SLABDEBUG 0
  104. #endif
  105. static inline int SlabFrozen(struct page *page)
  106. {
  107. return page->flags & FROZEN;
  108. }
  109. static inline void SetSlabFrozen(struct page *page)
  110. {
  111. page->flags |= FROZEN;
  112. }
  113. static inline void ClearSlabFrozen(struct page *page)
  114. {
  115. page->flags &= ~FROZEN;
  116. }
  117. static inline int SlabDebug(struct page *page)
  118. {
  119. return page->flags & SLABDEBUG;
  120. }
  121. static inline void SetSlabDebug(struct page *page)
  122. {
  123. page->flags |= SLABDEBUG;
  124. }
  125. static inline void ClearSlabDebug(struct page *page)
  126. {
  127. page->flags &= ~SLABDEBUG;
  128. }
  129. /*
  130. * Issues still to be resolved:
  131. *
  132. * - The per cpu array is updated for each new slab and and is a remote
  133. * cacheline for most nodes. This could become a bouncing cacheline given
  134. * enough frequent updates. There are 16 pointers in a cacheline, so at
  135. * max 16 cpus could compete for the cacheline which may be okay.
  136. *
  137. * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
  138. *
  139. * - Variable sizing of the per node arrays
  140. */
  141. /* Enable to test recovery from slab corruption on boot */
  142. #undef SLUB_RESILIENCY_TEST
  143. #if PAGE_SHIFT <= 12
  144. /*
  145. * Small page size. Make sure that we do not fragment memory
  146. */
  147. #define DEFAULT_MAX_ORDER 1
  148. #define DEFAULT_MIN_OBJECTS 4
  149. #else
  150. /*
  151. * Large page machines are customarily able to handle larger
  152. * page orders.
  153. */
  154. #define DEFAULT_MAX_ORDER 2
  155. #define DEFAULT_MIN_OBJECTS 8
  156. #endif
  157. /*
  158. * Mininum number of partial slabs. These will be left on the partial
  159. * lists even if they are empty. kmem_cache_shrink may reclaim them.
  160. */
  161. #define MIN_PARTIAL 2
  162. /*
  163. * Maximum number of desirable partial slabs.
  164. * The existence of more partial slabs makes kmem_cache_shrink
  165. * sort the partial list by the number of objects in the.
  166. */
  167. #define MAX_PARTIAL 10
  168. #define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
  169. SLAB_POISON | SLAB_STORE_USER)
  170. /*
  171. * Set of flags that will prevent slab merging
  172. */
  173. #define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
  174. SLAB_TRACE | SLAB_DESTROY_BY_RCU)
  175. #define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
  176. SLAB_CACHE_DMA)
  177. #ifndef ARCH_KMALLOC_MINALIGN
  178. #define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
  179. #endif
  180. #ifndef ARCH_SLAB_MINALIGN
  181. #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
  182. #endif
  183. /*
  184. * The page->inuse field is 16 bit thus we have this limitation
  185. */
  186. #define MAX_OBJECTS_PER_SLAB 65535
  187. /* Internal SLUB flags */
  188. #define __OBJECT_POISON 0x80000000 /* Poison object */
  189. /* Not all arches define cache_line_size */
  190. #ifndef cache_line_size
  191. #define cache_line_size() L1_CACHE_BYTES
  192. #endif
  193. static int kmem_size = sizeof(struct kmem_cache);
  194. #ifdef CONFIG_SMP
  195. static struct notifier_block slab_notifier;
  196. #endif
  197. static enum {
  198. DOWN, /* No slab functionality available */
  199. PARTIAL, /* kmem_cache_open() works but kmalloc does not */
  200. UP, /* Everything works but does not show up in sysfs */
  201. SYSFS /* Sysfs up */
  202. } slab_state = DOWN;
  203. /* A list of all slab caches on the system */
  204. static DECLARE_RWSEM(slub_lock);
  205. static LIST_HEAD(slab_caches);
  206. /*
  207. * Tracking user of a slab.
  208. */
  209. struct track {
  210. void *addr; /* Called from address */
  211. int cpu; /* Was running on cpu */
  212. int pid; /* Pid context */
  213. unsigned long when; /* When did the operation occur */
  214. };
  215. enum track_item { TRACK_ALLOC, TRACK_FREE };
  216. #if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
  217. static int sysfs_slab_add(struct kmem_cache *);
  218. static int sysfs_slab_alias(struct kmem_cache *, const char *);
  219. static void sysfs_slab_remove(struct kmem_cache *);
  220. #else
  221. static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
  222. static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
  223. { return 0; }
  224. static inline void sysfs_slab_remove(struct kmem_cache *s) {}
  225. #endif
  226. /********************************************************************
  227. * Core slab cache functions
  228. *******************************************************************/
  229. int slab_is_available(void)
  230. {
  231. return slab_state >= UP;
  232. }
  233. static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
  234. {
  235. #ifdef CONFIG_NUMA
  236. return s->node[node];
  237. #else
  238. return &s->local_node;
  239. #endif
  240. }
  241. static inline int check_valid_pointer(struct kmem_cache *s,
  242. struct page *page, const void *object)
  243. {
  244. void *base;
  245. if (!object)
  246. return 1;
  247. base = page_address(page);
  248. if (object < base || object >= base + s->objects * s->size ||
  249. (object - base) % s->size) {
  250. return 0;
  251. }
  252. return 1;
  253. }
  254. /*
  255. * Slow version of get and set free pointer.
  256. *
  257. * This version requires touching the cache lines of kmem_cache which
  258. * we avoid to do in the fast alloc free paths. There we obtain the offset
  259. * from the page struct.
  260. */
  261. static inline void *get_freepointer(struct kmem_cache *s, void *object)
  262. {
  263. return *(void **)(object + s->offset);
  264. }
  265. static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
  266. {
  267. *(void **)(object + s->offset) = fp;
  268. }
  269. /* Loop over all objects in a slab */
  270. #define for_each_object(__p, __s, __addr) \
  271. for (__p = (__addr); __p < (__addr) + (__s)->objects * (__s)->size;\
  272. __p += (__s)->size)
  273. /* Scan freelist */
  274. #define for_each_free_object(__p, __s, __free) \
  275. for (__p = (__free); __p; __p = get_freepointer((__s), __p))
  276. /* Determine object index from a given position */
  277. static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
  278. {
  279. return (p - addr) / s->size;
  280. }
  281. #ifdef CONFIG_SLUB_DEBUG
  282. /*
  283. * Debug settings:
  284. */
  285. #ifdef CONFIG_SLUB_DEBUG_ON
  286. static int slub_debug = DEBUG_DEFAULT_FLAGS;
  287. #else
  288. static int slub_debug;
  289. #endif
  290. static char *slub_debug_slabs;
  291. /*
  292. * Object debugging
  293. */
  294. static void print_section(char *text, u8 *addr, unsigned int length)
  295. {
  296. int i, offset;
  297. int newline = 1;
  298. char ascii[17];
  299. ascii[16] = 0;
  300. for (i = 0; i < length; i++) {
  301. if (newline) {
  302. printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
  303. newline = 0;
  304. }
  305. printk(" %02x", addr[i]);
  306. offset = i % 16;
  307. ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
  308. if (offset == 15) {
  309. printk(" %s\n",ascii);
  310. newline = 1;
  311. }
  312. }
  313. if (!newline) {
  314. i %= 16;
  315. while (i < 16) {
  316. printk(" ");
  317. ascii[i] = ' ';
  318. i++;
  319. }
  320. printk(" %s\n", ascii);
  321. }
  322. }
  323. static struct track *get_track(struct kmem_cache *s, void *object,
  324. enum track_item alloc)
  325. {
  326. struct track *p;
  327. if (s->offset)
  328. p = object + s->offset + sizeof(void *);
  329. else
  330. p = object + s->inuse;
  331. return p + alloc;
  332. }
  333. static void set_track(struct kmem_cache *s, void *object,
  334. enum track_item alloc, void *addr)
  335. {
  336. struct track *p;
  337. if (s->offset)
  338. p = object + s->offset + sizeof(void *);
  339. else
  340. p = object + s->inuse;
  341. p += alloc;
  342. if (addr) {
  343. p->addr = addr;
  344. p->cpu = smp_processor_id();
  345. p->pid = current ? current->pid : -1;
  346. p->when = jiffies;
  347. } else
  348. memset(p, 0, sizeof(struct track));
  349. }
  350. static void init_tracking(struct kmem_cache *s, void *object)
  351. {
  352. if (!(s->flags & SLAB_STORE_USER))
  353. return;
  354. set_track(s, object, TRACK_FREE, NULL);
  355. set_track(s, object, TRACK_ALLOC, NULL);
  356. }
  357. static void print_track(const char *s, struct track *t)
  358. {
  359. if (!t->addr)
  360. return;
  361. printk(KERN_ERR "INFO: %s in ", s);
  362. __print_symbol("%s", (unsigned long)t->addr);
  363. printk(" age=%lu cpu=%u pid=%d\n", jiffies - t->when, t->cpu, t->pid);
  364. }
  365. static void print_tracking(struct kmem_cache *s, void *object)
  366. {
  367. if (!(s->flags & SLAB_STORE_USER))
  368. return;
  369. print_track("Allocated", get_track(s, object, TRACK_ALLOC));
  370. print_track("Freed", get_track(s, object, TRACK_FREE));
  371. }
  372. static void print_page_info(struct page *page)
  373. {
  374. printk(KERN_ERR "INFO: Slab 0x%p used=%u fp=0x%p flags=0x%04lx\n",
  375. page, page->inuse, page->freelist, page->flags);
  376. }
  377. static void slab_bug(struct kmem_cache *s, char *fmt, ...)
  378. {
  379. va_list args;
  380. char buf[100];
  381. va_start(args, fmt);
  382. vsnprintf(buf, sizeof(buf), fmt, args);
  383. va_end(args);
  384. printk(KERN_ERR "========================================"
  385. "=====================================\n");
  386. printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
  387. printk(KERN_ERR "----------------------------------------"
  388. "-------------------------------------\n\n");
  389. }
  390. static void slab_fix(struct kmem_cache *s, char *fmt, ...)
  391. {
  392. va_list args;
  393. char buf[100];
  394. va_start(args, fmt);
  395. vsnprintf(buf, sizeof(buf), fmt, args);
  396. va_end(args);
  397. printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
  398. }
  399. static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
  400. {
  401. unsigned int off; /* Offset of last byte */
  402. u8 *addr = page_address(page);
  403. print_tracking(s, p);
  404. print_page_info(page);
  405. printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
  406. p, p - addr, get_freepointer(s, p));
  407. if (p > addr + 16)
  408. print_section("Bytes b4", p - 16, 16);
  409. print_section("Object", p, min(s->objsize, 128));
  410. if (s->flags & SLAB_RED_ZONE)
  411. print_section("Redzone", p + s->objsize,
  412. s->inuse - s->objsize);
  413. if (s->offset)
  414. off = s->offset + sizeof(void *);
  415. else
  416. off = s->inuse;
  417. if (s->flags & SLAB_STORE_USER)
  418. off += 2 * sizeof(struct track);
  419. if (off != s->size)
  420. /* Beginning of the filler is the free pointer */
  421. print_section("Padding", p + off, s->size - off);
  422. dump_stack();
  423. }
  424. static void object_err(struct kmem_cache *s, struct page *page,
  425. u8 *object, char *reason)
  426. {
  427. slab_bug(s, reason);
  428. print_trailer(s, page, object);
  429. }
  430. static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
  431. {
  432. va_list args;
  433. char buf[100];
  434. va_start(args, fmt);
  435. vsnprintf(buf, sizeof(buf), fmt, args);
  436. va_end(args);
  437. slab_bug(s, fmt);
  438. print_page_info(page);
  439. dump_stack();
  440. }
  441. static void init_object(struct kmem_cache *s, void *object, int active)
  442. {
  443. u8 *p = object;
  444. if (s->flags & __OBJECT_POISON) {
  445. memset(p, POISON_FREE, s->objsize - 1);
  446. p[s->objsize -1] = POISON_END;
  447. }
  448. if (s->flags & SLAB_RED_ZONE)
  449. memset(p + s->objsize,
  450. active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
  451. s->inuse - s->objsize);
  452. }
  453. static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
  454. {
  455. while (bytes) {
  456. if (*start != (u8)value)
  457. return start;
  458. start++;
  459. bytes--;
  460. }
  461. return NULL;
  462. }
  463. static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
  464. void *from, void *to)
  465. {
  466. slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
  467. memset(from, data, to - from);
  468. }
  469. static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
  470. u8 *object, char *what,
  471. u8* start, unsigned int value, unsigned int bytes)
  472. {
  473. u8 *fault;
  474. u8 *end;
  475. fault = check_bytes(start, value, bytes);
  476. if (!fault)
  477. return 1;
  478. end = start + bytes;
  479. while (end > fault && end[-1] == value)
  480. end--;
  481. slab_bug(s, "%s overwritten", what);
  482. printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
  483. fault, end - 1, fault[0], value);
  484. print_trailer(s, page, object);
  485. restore_bytes(s, what, value, fault, end);
  486. return 0;
  487. }
  488. /*
  489. * Object layout:
  490. *
  491. * object address
  492. * Bytes of the object to be managed.
  493. * If the freepointer may overlay the object then the free
  494. * pointer is the first word of the object.
  495. *
  496. * Poisoning uses 0x6b (POISON_FREE) and the last byte is
  497. * 0xa5 (POISON_END)
  498. *
  499. * object + s->objsize
  500. * Padding to reach word boundary. This is also used for Redzoning.
  501. * Padding is extended by another word if Redzoning is enabled and
  502. * objsize == inuse.
  503. *
  504. * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
  505. * 0xcc (RED_ACTIVE) for objects in use.
  506. *
  507. * object + s->inuse
  508. * Meta data starts here.
  509. *
  510. * A. Free pointer (if we cannot overwrite object on free)
  511. * B. Tracking data for SLAB_STORE_USER
  512. * C. Padding to reach required alignment boundary or at mininum
  513. * one word if debuggin is on to be able to detect writes
  514. * before the word boundary.
  515. *
  516. * Padding is done using 0x5a (POISON_INUSE)
  517. *
  518. * object + s->size
  519. * Nothing is used beyond s->size.
  520. *
  521. * If slabcaches are merged then the objsize and inuse boundaries are mostly
  522. * ignored. And therefore no slab options that rely on these boundaries
  523. * may be used with merged slabcaches.
  524. */
  525. static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
  526. {
  527. unsigned long off = s->inuse; /* The end of info */
  528. if (s->offset)
  529. /* Freepointer is placed after the object. */
  530. off += sizeof(void *);
  531. if (s->flags & SLAB_STORE_USER)
  532. /* We also have user information there */
  533. off += 2 * sizeof(struct track);
  534. if (s->size == off)
  535. return 1;
  536. return check_bytes_and_report(s, page, p, "Object padding",
  537. p + off, POISON_INUSE, s->size - off);
  538. }
  539. static int slab_pad_check(struct kmem_cache *s, struct page *page)
  540. {
  541. u8 *start;
  542. u8 *fault;
  543. u8 *end;
  544. int length;
  545. int remainder;
  546. if (!(s->flags & SLAB_POISON))
  547. return 1;
  548. start = page_address(page);
  549. end = start + (PAGE_SIZE << s->order);
  550. length = s->objects * s->size;
  551. remainder = end - (start + length);
  552. if (!remainder)
  553. return 1;
  554. fault = check_bytes(start + length, POISON_INUSE, remainder);
  555. if (!fault)
  556. return 1;
  557. while (end > fault && end[-1] == POISON_INUSE)
  558. end--;
  559. slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
  560. print_section("Padding", start, length);
  561. restore_bytes(s, "slab padding", POISON_INUSE, start, end);
  562. return 0;
  563. }
  564. static int check_object(struct kmem_cache *s, struct page *page,
  565. void *object, int active)
  566. {
  567. u8 *p = object;
  568. u8 *endobject = object + s->objsize;
  569. if (s->flags & SLAB_RED_ZONE) {
  570. unsigned int red =
  571. active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
  572. if (!check_bytes_and_report(s, page, object, "Redzone",
  573. endobject, red, s->inuse - s->objsize))
  574. return 0;
  575. } else {
  576. if ((s->flags & SLAB_POISON) && s->objsize < s->inuse)
  577. check_bytes_and_report(s, page, p, "Alignment padding", endobject,
  578. POISON_INUSE, s->inuse - s->objsize);
  579. }
  580. if (s->flags & SLAB_POISON) {
  581. if (!active && (s->flags & __OBJECT_POISON) &&
  582. (!check_bytes_and_report(s, page, p, "Poison", p,
  583. POISON_FREE, s->objsize - 1) ||
  584. !check_bytes_and_report(s, page, p, "Poison",
  585. p + s->objsize -1, POISON_END, 1)))
  586. return 0;
  587. /*
  588. * check_pad_bytes cleans up on its own.
  589. */
  590. check_pad_bytes(s, page, p);
  591. }
  592. if (!s->offset && active)
  593. /*
  594. * Object and freepointer overlap. Cannot check
  595. * freepointer while object is allocated.
  596. */
  597. return 1;
  598. /* Check free pointer validity */
  599. if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
  600. object_err(s, page, p, "Freepointer corrupt");
  601. /*
  602. * No choice but to zap it and thus loose the remainder
  603. * of the free objects in this slab. May cause
  604. * another error because the object count is now wrong.
  605. */
  606. set_freepointer(s, p, NULL);
  607. return 0;
  608. }
  609. return 1;
  610. }
  611. static int check_slab(struct kmem_cache *s, struct page *page)
  612. {
  613. VM_BUG_ON(!irqs_disabled());
  614. if (!PageSlab(page)) {
  615. slab_err(s, page, "Not a valid slab page");
  616. return 0;
  617. }
  618. if (page->offset * sizeof(void *) != s->offset) {
  619. slab_err(s, page, "Corrupted offset %lu",
  620. (unsigned long)(page->offset * sizeof(void *)));
  621. return 0;
  622. }
  623. if (page->inuse > s->objects) {
  624. slab_err(s, page, "inuse %u > max %u",
  625. s->name, page->inuse, s->objects);
  626. return 0;
  627. }
  628. /* Slab_pad_check fixes things up after itself */
  629. slab_pad_check(s, page);
  630. return 1;
  631. }
  632. /*
  633. * Determine if a certain object on a page is on the freelist. Must hold the
  634. * slab lock to guarantee that the chains are in a consistent state.
  635. */
  636. static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
  637. {
  638. int nr = 0;
  639. void *fp = page->freelist;
  640. void *object = NULL;
  641. while (fp && nr <= s->objects) {
  642. if (fp == search)
  643. return 1;
  644. if (!check_valid_pointer(s, page, fp)) {
  645. if (object) {
  646. object_err(s, page, object,
  647. "Freechain corrupt");
  648. set_freepointer(s, object, NULL);
  649. break;
  650. } else {
  651. slab_err(s, page, "Freepointer corrupt");
  652. page->freelist = NULL;
  653. page->inuse = s->objects;
  654. slab_fix(s, "Freelist cleared");
  655. return 0;
  656. }
  657. break;
  658. }
  659. object = fp;
  660. fp = get_freepointer(s, object);
  661. nr++;
  662. }
  663. if (page->inuse != s->objects - nr) {
  664. slab_err(s, page, "Wrong object count. Counter is %d but "
  665. "counted were %d", page->inuse, s->objects - nr);
  666. page->inuse = s->objects - nr;
  667. slab_fix(s, "Object count adjusted.");
  668. }
  669. return search == NULL;
  670. }
  671. static void trace(struct kmem_cache *s, struct page *page, void *object, int alloc)
  672. {
  673. if (s->flags & SLAB_TRACE) {
  674. printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
  675. s->name,
  676. alloc ? "alloc" : "free",
  677. object, page->inuse,
  678. page->freelist);
  679. if (!alloc)
  680. print_section("Object", (void *)object, s->objsize);
  681. dump_stack();
  682. }
  683. }
  684. /*
  685. * Tracking of fully allocated slabs for debugging purposes.
  686. */
  687. static void add_full(struct kmem_cache_node *n, struct page *page)
  688. {
  689. spin_lock(&n->list_lock);
  690. list_add(&page->lru, &n->full);
  691. spin_unlock(&n->list_lock);
  692. }
  693. static void remove_full(struct kmem_cache *s, struct page *page)
  694. {
  695. struct kmem_cache_node *n;
  696. if (!(s->flags & SLAB_STORE_USER))
  697. return;
  698. n = get_node(s, page_to_nid(page));
  699. spin_lock(&n->list_lock);
  700. list_del(&page->lru);
  701. spin_unlock(&n->list_lock);
  702. }
  703. static void setup_object_debug(struct kmem_cache *s, struct page *page,
  704. void *object)
  705. {
  706. if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
  707. return;
  708. init_object(s, object, 0);
  709. init_tracking(s, object);
  710. }
  711. static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
  712. void *object, void *addr)
  713. {
  714. if (!check_slab(s, page))
  715. goto bad;
  716. if (object && !on_freelist(s, page, object)) {
  717. object_err(s, page, object, "Object already allocated");
  718. goto bad;
  719. }
  720. if (!check_valid_pointer(s, page, object)) {
  721. object_err(s, page, object, "Freelist Pointer check fails");
  722. goto bad;
  723. }
  724. if (object && !check_object(s, page, object, 0))
  725. goto bad;
  726. /* Success perform special debug activities for allocs */
  727. if (s->flags & SLAB_STORE_USER)
  728. set_track(s, object, TRACK_ALLOC, addr);
  729. trace(s, page, object, 1);
  730. init_object(s, object, 1);
  731. return 1;
  732. bad:
  733. if (PageSlab(page)) {
  734. /*
  735. * If this is a slab page then lets do the best we can
  736. * to avoid issues in the future. Marking all objects
  737. * as used avoids touching the remaining objects.
  738. */
  739. slab_fix(s, "Marking all objects used");
  740. page->inuse = s->objects;
  741. page->freelist = NULL;
  742. /* Fix up fields that may be corrupted */
  743. page->offset = s->offset / sizeof(void *);
  744. }
  745. return 0;
  746. }
  747. static int free_debug_processing(struct kmem_cache *s, struct page *page,
  748. void *object, void *addr)
  749. {
  750. if (!check_slab(s, page))
  751. goto fail;
  752. if (!check_valid_pointer(s, page, object)) {
  753. slab_err(s, page, "Invalid object pointer 0x%p", object);
  754. goto fail;
  755. }
  756. if (on_freelist(s, page, object)) {
  757. object_err(s, page, object, "Object already free");
  758. goto fail;
  759. }
  760. if (!check_object(s, page, object, 1))
  761. return 0;
  762. if (unlikely(s != page->slab)) {
  763. if (!PageSlab(page))
  764. slab_err(s, page, "Attempt to free object(0x%p) "
  765. "outside of slab", object);
  766. else
  767. if (!page->slab) {
  768. printk(KERN_ERR
  769. "SLUB <none>: no slab for object 0x%p.\n",
  770. object);
  771. dump_stack();
  772. }
  773. else
  774. object_err(s, page, object,
  775. "page slab pointer corrupt.");
  776. goto fail;
  777. }
  778. /* Special debug activities for freeing objects */
  779. if (!SlabFrozen(page) && !page->freelist)
  780. remove_full(s, page);
  781. if (s->flags & SLAB_STORE_USER)
  782. set_track(s, object, TRACK_FREE, addr);
  783. trace(s, page, object, 0);
  784. init_object(s, object, 0);
  785. return 1;
  786. fail:
  787. slab_fix(s, "Object at 0x%p not freed", object);
  788. return 0;
  789. }
  790. static int __init setup_slub_debug(char *str)
  791. {
  792. slub_debug = DEBUG_DEFAULT_FLAGS;
  793. if (*str++ != '=' || !*str)
  794. /*
  795. * No options specified. Switch on full debugging.
  796. */
  797. goto out;
  798. if (*str == ',')
  799. /*
  800. * No options but restriction on slabs. This means full
  801. * debugging for slabs matching a pattern.
  802. */
  803. goto check_slabs;
  804. slub_debug = 0;
  805. if (*str == '-')
  806. /*
  807. * Switch off all debugging measures.
  808. */
  809. goto out;
  810. /*
  811. * Determine which debug features should be switched on
  812. */
  813. for ( ;*str && *str != ','; str++) {
  814. switch (tolower(*str)) {
  815. case 'f':
  816. slub_debug |= SLAB_DEBUG_FREE;
  817. break;
  818. case 'z':
  819. slub_debug |= SLAB_RED_ZONE;
  820. break;
  821. case 'p':
  822. slub_debug |= SLAB_POISON;
  823. break;
  824. case 'u':
  825. slub_debug |= SLAB_STORE_USER;
  826. break;
  827. case 't':
  828. slub_debug |= SLAB_TRACE;
  829. break;
  830. default:
  831. printk(KERN_ERR "slub_debug option '%c' "
  832. "unknown. skipped\n",*str);
  833. }
  834. }
  835. check_slabs:
  836. if (*str == ',')
  837. slub_debug_slabs = str + 1;
  838. out:
  839. return 1;
  840. }
  841. __setup("slub_debug", setup_slub_debug);
  842. static void kmem_cache_open_debug_check(struct kmem_cache *s)
  843. {
  844. /*
  845. * The page->offset field is only 16 bit wide. This is an offset
  846. * in units of words from the beginning of an object. If the slab
  847. * size is bigger then we cannot move the free pointer behind the
  848. * object anymore.
  849. *
  850. * On 32 bit platforms the limit is 256k. On 64bit platforms
  851. * the limit is 512k.
  852. *
  853. * Debugging or ctor may create a need to move the free
  854. * pointer. Fail if this happens.
  855. */
  856. if (s->objsize >= 65535 * sizeof(void *)) {
  857. BUG_ON(s->flags & (SLAB_RED_ZONE | SLAB_POISON |
  858. SLAB_STORE_USER | SLAB_DESTROY_BY_RCU));
  859. BUG_ON(s->ctor);
  860. }
  861. else
  862. /*
  863. * Enable debugging if selected on the kernel commandline.
  864. */
  865. if (slub_debug && (!slub_debug_slabs ||
  866. strncmp(slub_debug_slabs, s->name,
  867. strlen(slub_debug_slabs)) == 0))
  868. s->flags |= slub_debug;
  869. }
  870. #else
  871. static inline void setup_object_debug(struct kmem_cache *s,
  872. struct page *page, void *object) {}
  873. static inline int alloc_debug_processing(struct kmem_cache *s,
  874. struct page *page, void *object, void *addr) { return 0; }
  875. static inline int free_debug_processing(struct kmem_cache *s,
  876. struct page *page, void *object, void *addr) { return 0; }
  877. static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
  878. { return 1; }
  879. static inline int check_object(struct kmem_cache *s, struct page *page,
  880. void *object, int active) { return 1; }
  881. static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
  882. static inline void kmem_cache_open_debug_check(struct kmem_cache *s) {}
  883. #define slub_debug 0
  884. #endif
  885. /*
  886. * Slab allocation and freeing
  887. */
  888. static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
  889. {
  890. struct page * page;
  891. int pages = 1 << s->order;
  892. if (s->order)
  893. flags |= __GFP_COMP;
  894. if (s->flags & SLAB_CACHE_DMA)
  895. flags |= SLUB_DMA;
  896. if (node == -1)
  897. page = alloc_pages(flags, s->order);
  898. else
  899. page = alloc_pages_node(node, flags, s->order);
  900. if (!page)
  901. return NULL;
  902. mod_zone_page_state(page_zone(page),
  903. (s->flags & SLAB_RECLAIM_ACCOUNT) ?
  904. NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
  905. pages);
  906. return page;
  907. }
  908. static void setup_object(struct kmem_cache *s, struct page *page,
  909. void *object)
  910. {
  911. setup_object_debug(s, page, object);
  912. if (unlikely(s->ctor))
  913. s->ctor(object, s, 0);
  914. }
  915. static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
  916. {
  917. struct page *page;
  918. struct kmem_cache_node *n;
  919. void *start;
  920. void *end;
  921. void *last;
  922. void *p;
  923. BUG_ON(flags & ~(GFP_DMA | __GFP_ZERO | GFP_LEVEL_MASK));
  924. if (flags & __GFP_WAIT)
  925. local_irq_enable();
  926. page = allocate_slab(s, flags & GFP_LEVEL_MASK, node);
  927. if (!page)
  928. goto out;
  929. n = get_node(s, page_to_nid(page));
  930. if (n)
  931. atomic_long_inc(&n->nr_slabs);
  932. page->offset = s->offset / sizeof(void *);
  933. page->slab = s;
  934. page->flags |= 1 << PG_slab;
  935. if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
  936. SLAB_STORE_USER | SLAB_TRACE))
  937. SetSlabDebug(page);
  938. start = page_address(page);
  939. end = start + s->objects * s->size;
  940. if (unlikely(s->flags & SLAB_POISON))
  941. memset(start, POISON_INUSE, PAGE_SIZE << s->order);
  942. last = start;
  943. for_each_object(p, s, start) {
  944. setup_object(s, page, last);
  945. set_freepointer(s, last, p);
  946. last = p;
  947. }
  948. setup_object(s, page, last);
  949. set_freepointer(s, last, NULL);
  950. page->freelist = start;
  951. page->lockless_freelist = NULL;
  952. page->inuse = 0;
  953. out:
  954. if (flags & __GFP_WAIT)
  955. local_irq_disable();
  956. return page;
  957. }
  958. static void __free_slab(struct kmem_cache *s, struct page *page)
  959. {
  960. int pages = 1 << s->order;
  961. if (unlikely(SlabDebug(page))) {
  962. void *p;
  963. slab_pad_check(s, page);
  964. for_each_object(p, s, page_address(page))
  965. check_object(s, page, p, 0);
  966. }
  967. mod_zone_page_state(page_zone(page),
  968. (s->flags & SLAB_RECLAIM_ACCOUNT) ?
  969. NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
  970. - pages);
  971. page->mapping = NULL;
  972. __free_pages(page, s->order);
  973. }
  974. static void rcu_free_slab(struct rcu_head *h)
  975. {
  976. struct page *page;
  977. page = container_of((struct list_head *)h, struct page, lru);
  978. __free_slab(page->slab, page);
  979. }
  980. static void free_slab(struct kmem_cache *s, struct page *page)
  981. {
  982. if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
  983. /*
  984. * RCU free overloads the RCU head over the LRU
  985. */
  986. struct rcu_head *head = (void *)&page->lru;
  987. call_rcu(head, rcu_free_slab);
  988. } else
  989. __free_slab(s, page);
  990. }
  991. static void discard_slab(struct kmem_cache *s, struct page *page)
  992. {
  993. struct kmem_cache_node *n = get_node(s, page_to_nid(page));
  994. atomic_long_dec(&n->nr_slabs);
  995. reset_page_mapcount(page);
  996. ClearSlabDebug(page);
  997. __ClearPageSlab(page);
  998. free_slab(s, page);
  999. }
  1000. /*
  1001. * Per slab locking using the pagelock
  1002. */
  1003. static __always_inline void slab_lock(struct page *page)
  1004. {
  1005. bit_spin_lock(PG_locked, &page->flags);
  1006. }
  1007. static __always_inline void slab_unlock(struct page *page)
  1008. {
  1009. bit_spin_unlock(PG_locked, &page->flags);
  1010. }
  1011. static __always_inline int slab_trylock(struct page *page)
  1012. {
  1013. int rc = 1;
  1014. rc = bit_spin_trylock(PG_locked, &page->flags);
  1015. return rc;
  1016. }
  1017. /*
  1018. * Management of partially allocated slabs
  1019. */
  1020. static void add_partial_tail(struct kmem_cache_node *n, struct page *page)
  1021. {
  1022. spin_lock(&n->list_lock);
  1023. n->nr_partial++;
  1024. list_add_tail(&page->lru, &n->partial);
  1025. spin_unlock(&n->list_lock);
  1026. }
  1027. static void add_partial(struct kmem_cache_node *n, struct page *page)
  1028. {
  1029. spin_lock(&n->list_lock);
  1030. n->nr_partial++;
  1031. list_add(&page->lru, &n->partial);
  1032. spin_unlock(&n->list_lock);
  1033. }
  1034. static void remove_partial(struct kmem_cache *s,
  1035. struct page *page)
  1036. {
  1037. struct kmem_cache_node *n = get_node(s, page_to_nid(page));
  1038. spin_lock(&n->list_lock);
  1039. list_del(&page->lru);
  1040. n->nr_partial--;
  1041. spin_unlock(&n->list_lock);
  1042. }
  1043. /*
  1044. * Lock slab and remove from the partial list.
  1045. *
  1046. * Must hold list_lock.
  1047. */
  1048. static inline int lock_and_freeze_slab(struct kmem_cache_node *n, struct page *page)
  1049. {
  1050. if (slab_trylock(page)) {
  1051. list_del(&page->lru);
  1052. n->nr_partial--;
  1053. SetSlabFrozen(page);
  1054. return 1;
  1055. }
  1056. return 0;
  1057. }
  1058. /*
  1059. * Try to allocate a partial slab from a specific node.
  1060. */
  1061. static struct page *get_partial_node(struct kmem_cache_node *n)
  1062. {
  1063. struct page *page;
  1064. /*
  1065. * Racy check. If we mistakenly see no partial slabs then we
  1066. * just allocate an empty slab. If we mistakenly try to get a
  1067. * partial slab and there is none available then get_partials()
  1068. * will return NULL.
  1069. */
  1070. if (!n || !n->nr_partial)
  1071. return NULL;
  1072. spin_lock(&n->list_lock);
  1073. list_for_each_entry(page, &n->partial, lru)
  1074. if (lock_and_freeze_slab(n, page))
  1075. goto out;
  1076. page = NULL;
  1077. out:
  1078. spin_unlock(&n->list_lock);
  1079. return page;
  1080. }
  1081. /*
  1082. * Get a page from somewhere. Search in increasing NUMA distances.
  1083. */
  1084. static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
  1085. {
  1086. #ifdef CONFIG_NUMA
  1087. struct zonelist *zonelist;
  1088. struct zone **z;
  1089. struct page *page;
  1090. /*
  1091. * The defrag ratio allows a configuration of the tradeoffs between
  1092. * inter node defragmentation and node local allocations. A lower
  1093. * defrag_ratio increases the tendency to do local allocations
  1094. * instead of attempting to obtain partial slabs from other nodes.
  1095. *
  1096. * If the defrag_ratio is set to 0 then kmalloc() always
  1097. * returns node local objects. If the ratio is higher then kmalloc()
  1098. * may return off node objects because partial slabs are obtained
  1099. * from other nodes and filled up.
  1100. *
  1101. * If /sys/slab/xx/defrag_ratio is set to 100 (which makes
  1102. * defrag_ratio = 1000) then every (well almost) allocation will
  1103. * first attempt to defrag slab caches on other nodes. This means
  1104. * scanning over all nodes to look for partial slabs which may be
  1105. * expensive if we do it every time we are trying to find a slab
  1106. * with available objects.
  1107. */
  1108. if (!s->defrag_ratio || get_cycles() % 1024 > s->defrag_ratio)
  1109. return NULL;
  1110. zonelist = &NODE_DATA(slab_node(current->mempolicy))
  1111. ->node_zonelists[gfp_zone(flags)];
  1112. for (z = zonelist->zones; *z; z++) {
  1113. struct kmem_cache_node *n;
  1114. n = get_node(s, zone_to_nid(*z));
  1115. if (n && cpuset_zone_allowed_hardwall(*z, flags) &&
  1116. n->nr_partial > MIN_PARTIAL) {
  1117. page = get_partial_node(n);
  1118. if (page)
  1119. return page;
  1120. }
  1121. }
  1122. #endif
  1123. return NULL;
  1124. }
  1125. /*
  1126. * Get a partial page, lock it and return it.
  1127. */
  1128. static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
  1129. {
  1130. struct page *page;
  1131. int searchnode = (node == -1) ? numa_node_id() : node;
  1132. page = get_partial_node(get_node(s, searchnode));
  1133. if (page || (flags & __GFP_THISNODE))
  1134. return page;
  1135. return get_any_partial(s, flags);
  1136. }
  1137. /*
  1138. * Move a page back to the lists.
  1139. *
  1140. * Must be called with the slab lock held.
  1141. *
  1142. * On exit the slab lock will have been dropped.
  1143. */
  1144. static void unfreeze_slab(struct kmem_cache *s, struct page *page)
  1145. {
  1146. struct kmem_cache_node *n = get_node(s, page_to_nid(page));
  1147. ClearSlabFrozen(page);
  1148. if (page->inuse) {
  1149. if (page->freelist)
  1150. add_partial(n, page);
  1151. else if (SlabDebug(page) && (s->flags & SLAB_STORE_USER))
  1152. add_full(n, page);
  1153. slab_unlock(page);
  1154. } else {
  1155. if (n->nr_partial < MIN_PARTIAL) {
  1156. /*
  1157. * Adding an empty slab to the partial slabs in order
  1158. * to avoid page allocator overhead. This slab needs
  1159. * to come after the other slabs with objects in
  1160. * order to fill them up. That way the size of the
  1161. * partial list stays small. kmem_cache_shrink can
  1162. * reclaim empty slabs from the partial list.
  1163. */
  1164. add_partial_tail(n, page);
  1165. slab_unlock(page);
  1166. } else {
  1167. slab_unlock(page);
  1168. discard_slab(s, page);
  1169. }
  1170. }
  1171. }
  1172. /*
  1173. * Remove the cpu slab
  1174. */
  1175. static void deactivate_slab(struct kmem_cache *s, struct page *page, int cpu)
  1176. {
  1177. /*
  1178. * Merge cpu freelist into freelist. Typically we get here
  1179. * because both freelists are empty. So this is unlikely
  1180. * to occur.
  1181. */
  1182. while (unlikely(page->lockless_freelist)) {
  1183. void **object;
  1184. /* Retrieve object from cpu_freelist */
  1185. object = page->lockless_freelist;
  1186. page->lockless_freelist = page->lockless_freelist[page->offset];
  1187. /* And put onto the regular freelist */
  1188. object[page->offset] = page->freelist;
  1189. page->freelist = object;
  1190. page->inuse--;
  1191. }
  1192. s->cpu_slab[cpu] = NULL;
  1193. unfreeze_slab(s, page);
  1194. }
  1195. static inline void flush_slab(struct kmem_cache *s, struct page *page, int cpu)
  1196. {
  1197. slab_lock(page);
  1198. deactivate_slab(s, page, cpu);
  1199. }
  1200. /*
  1201. * Flush cpu slab.
  1202. * Called from IPI handler with interrupts disabled.
  1203. */
  1204. static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
  1205. {
  1206. struct page *page = s->cpu_slab[cpu];
  1207. if (likely(page))
  1208. flush_slab(s, page, cpu);
  1209. }
  1210. static void flush_cpu_slab(void *d)
  1211. {
  1212. struct kmem_cache *s = d;
  1213. int cpu = smp_processor_id();
  1214. __flush_cpu_slab(s, cpu);
  1215. }
  1216. static void flush_all(struct kmem_cache *s)
  1217. {
  1218. #ifdef CONFIG_SMP
  1219. on_each_cpu(flush_cpu_slab, s, 1, 1);
  1220. #else
  1221. unsigned long flags;
  1222. local_irq_save(flags);
  1223. flush_cpu_slab(s);
  1224. local_irq_restore(flags);
  1225. #endif
  1226. }
  1227. /*
  1228. * Slow path. The lockless freelist is empty or we need to perform
  1229. * debugging duties.
  1230. *
  1231. * Interrupts are disabled.
  1232. *
  1233. * Processing is still very fast if new objects have been freed to the
  1234. * regular freelist. In that case we simply take over the regular freelist
  1235. * as the lockless freelist and zap the regular freelist.
  1236. *
  1237. * If that is not working then we fall back to the partial lists. We take the
  1238. * first element of the freelist as the object to allocate now and move the
  1239. * rest of the freelist to the lockless freelist.
  1240. *
  1241. * And if we were unable to get a new slab from the partial slab lists then
  1242. * we need to allocate a new slab. This is slowest path since we may sleep.
  1243. */
  1244. static void *__slab_alloc(struct kmem_cache *s,
  1245. gfp_t gfpflags, int node, void *addr, struct page *page)
  1246. {
  1247. void **object;
  1248. int cpu = smp_processor_id();
  1249. if (!page)
  1250. goto new_slab;
  1251. slab_lock(page);
  1252. if (unlikely(node != -1 && page_to_nid(page) != node))
  1253. goto another_slab;
  1254. load_freelist:
  1255. object = page->freelist;
  1256. if (unlikely(!object))
  1257. goto another_slab;
  1258. if (unlikely(SlabDebug(page)))
  1259. goto debug;
  1260. object = page->freelist;
  1261. page->lockless_freelist = object[page->offset];
  1262. page->inuse = s->objects;
  1263. page->freelist = NULL;
  1264. slab_unlock(page);
  1265. return object;
  1266. another_slab:
  1267. deactivate_slab(s, page, cpu);
  1268. new_slab:
  1269. page = get_partial(s, gfpflags, node);
  1270. if (page) {
  1271. s->cpu_slab[cpu] = page;
  1272. goto load_freelist;
  1273. }
  1274. page = new_slab(s, gfpflags, node);
  1275. if (page) {
  1276. cpu = smp_processor_id();
  1277. if (s->cpu_slab[cpu]) {
  1278. /*
  1279. * Someone else populated the cpu_slab while we
  1280. * enabled interrupts, or we have gotten scheduled
  1281. * on another cpu. The page may not be on the
  1282. * requested node even if __GFP_THISNODE was
  1283. * specified. So we need to recheck.
  1284. */
  1285. if (node == -1 ||
  1286. page_to_nid(s->cpu_slab[cpu]) == node) {
  1287. /*
  1288. * Current cpuslab is acceptable and we
  1289. * want the current one since its cache hot
  1290. */
  1291. discard_slab(s, page);
  1292. page = s->cpu_slab[cpu];
  1293. slab_lock(page);
  1294. goto load_freelist;
  1295. }
  1296. /* New slab does not fit our expectations */
  1297. flush_slab(s, s->cpu_slab[cpu], cpu);
  1298. }
  1299. slab_lock(page);
  1300. SetSlabFrozen(page);
  1301. s->cpu_slab[cpu] = page;
  1302. goto load_freelist;
  1303. }
  1304. return NULL;
  1305. debug:
  1306. object = page->freelist;
  1307. if (!alloc_debug_processing(s, page, object, addr))
  1308. goto another_slab;
  1309. page->inuse++;
  1310. page->freelist = object[page->offset];
  1311. slab_unlock(page);
  1312. return object;
  1313. }
  1314. /*
  1315. * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
  1316. * have the fastpath folded into their functions. So no function call
  1317. * overhead for requests that can be satisfied on the fastpath.
  1318. *
  1319. * The fastpath works by first checking if the lockless freelist can be used.
  1320. * If not then __slab_alloc is called for slow processing.
  1321. *
  1322. * Otherwise we can simply pick the next object from the lockless free list.
  1323. */
  1324. static void __always_inline *slab_alloc(struct kmem_cache *s,
  1325. gfp_t gfpflags, int node, void *addr)
  1326. {
  1327. struct page *page;
  1328. void **object;
  1329. unsigned long flags;
  1330. local_irq_save(flags);
  1331. page = s->cpu_slab[smp_processor_id()];
  1332. if (unlikely(!page || !page->lockless_freelist ||
  1333. (node != -1 && page_to_nid(page) != node)))
  1334. object = __slab_alloc(s, gfpflags, node, addr, page);
  1335. else {
  1336. object = page->lockless_freelist;
  1337. page->lockless_freelist = object[page->offset];
  1338. }
  1339. local_irq_restore(flags);
  1340. if (unlikely((gfpflags & __GFP_ZERO) && object))
  1341. memset(object, 0, s->objsize);
  1342. return object;
  1343. }
  1344. void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
  1345. {
  1346. return slab_alloc(s, gfpflags, -1, __builtin_return_address(0));
  1347. }
  1348. EXPORT_SYMBOL(kmem_cache_alloc);
  1349. #ifdef CONFIG_NUMA
  1350. void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
  1351. {
  1352. return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
  1353. }
  1354. EXPORT_SYMBOL(kmem_cache_alloc_node);
  1355. #endif
  1356. /*
  1357. * Slow patch handling. This may still be called frequently since objects
  1358. * have a longer lifetime than the cpu slabs in most processing loads.
  1359. *
  1360. * So we still attempt to reduce cache line usage. Just take the slab
  1361. * lock and free the item. If there is no additional partial page
  1362. * handling required then we can return immediately.
  1363. */
  1364. static void __slab_free(struct kmem_cache *s, struct page *page,
  1365. void *x, void *addr)
  1366. {
  1367. void *prior;
  1368. void **object = (void *)x;
  1369. slab_lock(page);
  1370. if (unlikely(SlabDebug(page)))
  1371. goto debug;
  1372. checks_ok:
  1373. prior = object[page->offset] = page->freelist;
  1374. page->freelist = object;
  1375. page->inuse--;
  1376. if (unlikely(SlabFrozen(page)))
  1377. goto out_unlock;
  1378. if (unlikely(!page->inuse))
  1379. goto slab_empty;
  1380. /*
  1381. * Objects left in the slab. If it
  1382. * was not on the partial list before
  1383. * then add it.
  1384. */
  1385. if (unlikely(!prior))
  1386. add_partial(get_node(s, page_to_nid(page)), page);
  1387. out_unlock:
  1388. slab_unlock(page);
  1389. return;
  1390. slab_empty:
  1391. if (prior)
  1392. /*
  1393. * Slab still on the partial list.
  1394. */
  1395. remove_partial(s, page);
  1396. slab_unlock(page);
  1397. discard_slab(s, page);
  1398. return;
  1399. debug:
  1400. if (!free_debug_processing(s, page, x, addr))
  1401. goto out_unlock;
  1402. goto checks_ok;
  1403. }
  1404. /*
  1405. * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
  1406. * can perform fastpath freeing without additional function calls.
  1407. *
  1408. * The fastpath is only possible if we are freeing to the current cpu slab
  1409. * of this processor. This typically the case if we have just allocated
  1410. * the item before.
  1411. *
  1412. * If fastpath is not possible then fall back to __slab_free where we deal
  1413. * with all sorts of special processing.
  1414. */
  1415. static void __always_inline slab_free(struct kmem_cache *s,
  1416. struct page *page, void *x, void *addr)
  1417. {
  1418. void **object = (void *)x;
  1419. unsigned long flags;
  1420. local_irq_save(flags);
  1421. if (likely(page == s->cpu_slab[smp_processor_id()] &&
  1422. !SlabDebug(page))) {
  1423. object[page->offset] = page->lockless_freelist;
  1424. page->lockless_freelist = object;
  1425. } else
  1426. __slab_free(s, page, x, addr);
  1427. local_irq_restore(flags);
  1428. }
  1429. void kmem_cache_free(struct kmem_cache *s, void *x)
  1430. {
  1431. struct page *page;
  1432. page = virt_to_head_page(x);
  1433. slab_free(s, page, x, __builtin_return_address(0));
  1434. }
  1435. EXPORT_SYMBOL(kmem_cache_free);
  1436. /* Figure out on which slab object the object resides */
  1437. static struct page *get_object_page(const void *x)
  1438. {
  1439. struct page *page = virt_to_head_page(x);
  1440. if (!PageSlab(page))
  1441. return NULL;
  1442. return page;
  1443. }
  1444. /*
  1445. * Object placement in a slab is made very easy because we always start at
  1446. * offset 0. If we tune the size of the object to the alignment then we can
  1447. * get the required alignment by putting one properly sized object after
  1448. * another.
  1449. *
  1450. * Notice that the allocation order determines the sizes of the per cpu
  1451. * caches. Each processor has always one slab available for allocations.
  1452. * Increasing the allocation order reduces the number of times that slabs
  1453. * must be moved on and off the partial lists and is therefore a factor in
  1454. * locking overhead.
  1455. */
  1456. /*
  1457. * Mininum / Maximum order of slab pages. This influences locking overhead
  1458. * and slab fragmentation. A higher order reduces the number of partial slabs
  1459. * and increases the number of allocations possible without having to
  1460. * take the list_lock.
  1461. */
  1462. static int slub_min_order;
  1463. static int slub_max_order = DEFAULT_MAX_ORDER;
  1464. static int slub_min_objects = DEFAULT_MIN_OBJECTS;
  1465. /*
  1466. * Merge control. If this is set then no merging of slab caches will occur.
  1467. * (Could be removed. This was introduced to pacify the merge skeptics.)
  1468. */
  1469. static int slub_nomerge;
  1470. /*
  1471. * Calculate the order of allocation given an slab object size.
  1472. *
  1473. * The order of allocation has significant impact on performance and other
  1474. * system components. Generally order 0 allocations should be preferred since
  1475. * order 0 does not cause fragmentation in the page allocator. Larger objects
  1476. * be problematic to put into order 0 slabs because there may be too much
  1477. * unused space left. We go to a higher order if more than 1/8th of the slab
  1478. * would be wasted.
  1479. *
  1480. * In order to reach satisfactory performance we must ensure that a minimum
  1481. * number of objects is in one slab. Otherwise we may generate too much
  1482. * activity on the partial lists which requires taking the list_lock. This is
  1483. * less a concern for large slabs though which are rarely used.
  1484. *
  1485. * slub_max_order specifies the order where we begin to stop considering the
  1486. * number of objects in a slab as critical. If we reach slub_max_order then
  1487. * we try to keep the page order as low as possible. So we accept more waste
  1488. * of space in favor of a small page order.
  1489. *
  1490. * Higher order allocations also allow the placement of more objects in a
  1491. * slab and thereby reduce object handling overhead. If the user has
  1492. * requested a higher mininum order then we start with that one instead of
  1493. * the smallest order which will fit the object.
  1494. */
  1495. static inline int slab_order(int size, int min_objects,
  1496. int max_order, int fract_leftover)
  1497. {
  1498. int order;
  1499. int rem;
  1500. int min_order = slub_min_order;
  1501. /*
  1502. * If we would create too many object per slab then reduce
  1503. * the slab order even if it goes below slub_min_order.
  1504. */
  1505. while (min_order > 0 &&
  1506. (PAGE_SIZE << min_order) >= MAX_OBJECTS_PER_SLAB * size)
  1507. min_order--;
  1508. for (order = max(min_order,
  1509. fls(min_objects * size - 1) - PAGE_SHIFT);
  1510. order <= max_order; order++) {
  1511. unsigned long slab_size = PAGE_SIZE << order;
  1512. if (slab_size < min_objects * size)
  1513. continue;
  1514. rem = slab_size % size;
  1515. if (rem <= slab_size / fract_leftover)
  1516. break;
  1517. /* If the next size is too high then exit now */
  1518. if (slab_size * 2 >= MAX_OBJECTS_PER_SLAB * size)
  1519. break;
  1520. }
  1521. return order;
  1522. }
  1523. static inline int calculate_order(int size)
  1524. {
  1525. int order;
  1526. int min_objects;
  1527. int fraction;
  1528. /*
  1529. * Attempt to find best configuration for a slab. This
  1530. * works by first attempting to generate a layout with
  1531. * the best configuration and backing off gradually.
  1532. *
  1533. * First we reduce the acceptable waste in a slab. Then
  1534. * we reduce the minimum objects required in a slab.
  1535. */
  1536. min_objects = slub_min_objects;
  1537. while (min_objects > 1) {
  1538. fraction = 8;
  1539. while (fraction >= 4) {
  1540. order = slab_order(size, min_objects,
  1541. slub_max_order, fraction);
  1542. if (order <= slub_max_order)
  1543. return order;
  1544. fraction /= 2;
  1545. }
  1546. min_objects /= 2;
  1547. }
  1548. /*
  1549. * We were unable to place multiple objects in a slab. Now
  1550. * lets see if we can place a single object there.
  1551. */
  1552. order = slab_order(size, 1, slub_max_order, 1);
  1553. if (order <= slub_max_order)
  1554. return order;
  1555. /*
  1556. * Doh this slab cannot be placed using slub_max_order.
  1557. */
  1558. order = slab_order(size, 1, MAX_ORDER, 1);
  1559. if (order <= MAX_ORDER)
  1560. return order;
  1561. return -ENOSYS;
  1562. }
  1563. /*
  1564. * Figure out what the alignment of the objects will be.
  1565. */
  1566. static unsigned long calculate_alignment(unsigned long flags,
  1567. unsigned long align, unsigned long size)
  1568. {
  1569. /*
  1570. * If the user wants hardware cache aligned objects then
  1571. * follow that suggestion if the object is sufficiently
  1572. * large.
  1573. *
  1574. * The hardware cache alignment cannot override the
  1575. * specified alignment though. If that is greater
  1576. * then use it.
  1577. */
  1578. if ((flags & SLAB_HWCACHE_ALIGN) &&
  1579. size > cache_line_size() / 2)
  1580. return max_t(unsigned long, align, cache_line_size());
  1581. if (align < ARCH_SLAB_MINALIGN)
  1582. return ARCH_SLAB_MINALIGN;
  1583. return ALIGN(align, sizeof(void *));
  1584. }
  1585. static void init_kmem_cache_node(struct kmem_cache_node *n)
  1586. {
  1587. n->nr_partial = 0;
  1588. atomic_long_set(&n->nr_slabs, 0);
  1589. spin_lock_init(&n->list_lock);
  1590. INIT_LIST_HEAD(&n->partial);
  1591. #ifdef CONFIG_SLUB_DEBUG
  1592. INIT_LIST_HEAD(&n->full);
  1593. #endif
  1594. }
  1595. #ifdef CONFIG_NUMA
  1596. /*
  1597. * No kmalloc_node yet so do it by hand. We know that this is the first
  1598. * slab on the node for this slabcache. There are no concurrent accesses
  1599. * possible.
  1600. *
  1601. * Note that this function only works on the kmalloc_node_cache
  1602. * when allocating for the kmalloc_node_cache.
  1603. */
  1604. static struct kmem_cache_node * __init early_kmem_cache_node_alloc(gfp_t gfpflags,
  1605. int node)
  1606. {
  1607. struct page *page;
  1608. struct kmem_cache_node *n;
  1609. BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
  1610. page = new_slab(kmalloc_caches, gfpflags | GFP_THISNODE, node);
  1611. BUG_ON(!page);
  1612. n = page->freelist;
  1613. BUG_ON(!n);
  1614. page->freelist = get_freepointer(kmalloc_caches, n);
  1615. page->inuse++;
  1616. kmalloc_caches->node[node] = n;
  1617. #ifdef CONFIG_SLUB_DEBUG
  1618. init_object(kmalloc_caches, n, 1);
  1619. init_tracking(kmalloc_caches, n);
  1620. #endif
  1621. init_kmem_cache_node(n);
  1622. atomic_long_inc(&n->nr_slabs);
  1623. add_partial(n, page);
  1624. /*
  1625. * new_slab() disables interupts. If we do not reenable interrupts here
  1626. * then bootup would continue with interrupts disabled.
  1627. */
  1628. local_irq_enable();
  1629. return n;
  1630. }
  1631. static void free_kmem_cache_nodes(struct kmem_cache *s)
  1632. {
  1633. int node;
  1634. for_each_online_node(node) {
  1635. struct kmem_cache_node *n = s->node[node];
  1636. if (n && n != &s->local_node)
  1637. kmem_cache_free(kmalloc_caches, n);
  1638. s->node[node] = NULL;
  1639. }
  1640. }
  1641. static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
  1642. {
  1643. int node;
  1644. int local_node;
  1645. if (slab_state >= UP)
  1646. local_node = page_to_nid(virt_to_page(s));
  1647. else
  1648. local_node = 0;
  1649. for_each_online_node(node) {
  1650. struct kmem_cache_node *n;
  1651. if (local_node == node)
  1652. n = &s->local_node;
  1653. else {
  1654. if (slab_state == DOWN) {
  1655. n = early_kmem_cache_node_alloc(gfpflags,
  1656. node);
  1657. continue;
  1658. }
  1659. n = kmem_cache_alloc_node(kmalloc_caches,
  1660. gfpflags, node);
  1661. if (!n) {
  1662. free_kmem_cache_nodes(s);
  1663. return 0;
  1664. }
  1665. }
  1666. s->node[node] = n;
  1667. init_kmem_cache_node(n);
  1668. }
  1669. return 1;
  1670. }
  1671. #else
  1672. static void free_kmem_cache_nodes(struct kmem_cache *s)
  1673. {
  1674. }
  1675. static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
  1676. {
  1677. init_kmem_cache_node(&s->local_node);
  1678. return 1;
  1679. }
  1680. #endif
  1681. /*
  1682. * calculate_sizes() determines the order and the distribution of data within
  1683. * a slab object.
  1684. */
  1685. static int calculate_sizes(struct kmem_cache *s)
  1686. {
  1687. unsigned long flags = s->flags;
  1688. unsigned long size = s->objsize;
  1689. unsigned long align = s->align;
  1690. /*
  1691. * Determine if we can poison the object itself. If the user of
  1692. * the slab may touch the object after free or before allocation
  1693. * then we should never poison the object itself.
  1694. */
  1695. if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
  1696. !s->ctor)
  1697. s->flags |= __OBJECT_POISON;
  1698. else
  1699. s->flags &= ~__OBJECT_POISON;
  1700. /*
  1701. * Round up object size to the next word boundary. We can only
  1702. * place the free pointer at word boundaries and this determines
  1703. * the possible location of the free pointer.
  1704. */
  1705. size = ALIGN(size, sizeof(void *));
  1706. #ifdef CONFIG_SLUB_DEBUG
  1707. /*
  1708. * If we are Redzoning then check if there is some space between the
  1709. * end of the object and the free pointer. If not then add an
  1710. * additional word to have some bytes to store Redzone information.
  1711. */
  1712. if ((flags & SLAB_RED_ZONE) && size == s->objsize)
  1713. size += sizeof(void *);
  1714. #endif
  1715. /*
  1716. * With that we have determined the number of bytes in actual use
  1717. * by the object. This is the potential offset to the free pointer.
  1718. */
  1719. s->inuse = size;
  1720. if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
  1721. s->ctor)) {
  1722. /*
  1723. * Relocate free pointer after the object if it is not
  1724. * permitted to overwrite the first word of the object on
  1725. * kmem_cache_free.
  1726. *
  1727. * This is the case if we do RCU, have a constructor or
  1728. * destructor or are poisoning the objects.
  1729. */
  1730. s->offset = size;
  1731. size += sizeof(void *);
  1732. }
  1733. #ifdef CONFIG_SLUB_DEBUG
  1734. if (flags & SLAB_STORE_USER)
  1735. /*
  1736. * Need to store information about allocs and frees after
  1737. * the object.
  1738. */
  1739. size += 2 * sizeof(struct track);
  1740. if (flags & SLAB_RED_ZONE)
  1741. /*
  1742. * Add some empty padding so that we can catch
  1743. * overwrites from earlier objects rather than let
  1744. * tracking information or the free pointer be
  1745. * corrupted if an user writes before the start
  1746. * of the object.
  1747. */
  1748. size += sizeof(void *);
  1749. #endif
  1750. /*
  1751. * Determine the alignment based on various parameters that the
  1752. * user specified and the dynamic determination of cache line size
  1753. * on bootup.
  1754. */
  1755. align = calculate_alignment(flags, align, s->objsize);
  1756. /*
  1757. * SLUB stores one object immediately after another beginning from
  1758. * offset 0. In order to align the objects we have to simply size
  1759. * each object to conform to the alignment.
  1760. */
  1761. size = ALIGN(size, align);
  1762. s->size = size;
  1763. s->order = calculate_order(size);
  1764. if (s->order < 0)
  1765. return 0;
  1766. /*
  1767. * Determine the number of objects per slab
  1768. */
  1769. s->objects = (PAGE_SIZE << s->order) / size;
  1770. /*
  1771. * Verify that the number of objects is within permitted limits.
  1772. * The page->inuse field is only 16 bit wide! So we cannot have
  1773. * more than 64k objects per slab.
  1774. */
  1775. if (!s->objects || s->objects > MAX_OBJECTS_PER_SLAB)
  1776. return 0;
  1777. return 1;
  1778. }
  1779. static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
  1780. const char *name, size_t size,
  1781. size_t align, unsigned long flags,
  1782. void (*ctor)(void *, struct kmem_cache *, unsigned long))
  1783. {
  1784. memset(s, 0, kmem_size);
  1785. s->name = name;
  1786. s->ctor = ctor;
  1787. s->objsize = size;
  1788. s->flags = flags;
  1789. s->align = align;
  1790. kmem_cache_open_debug_check(s);
  1791. if (!calculate_sizes(s))
  1792. goto error;
  1793. s->refcount = 1;
  1794. #ifdef CONFIG_NUMA
  1795. s->defrag_ratio = 100;
  1796. #endif
  1797. if (init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
  1798. return 1;
  1799. error:
  1800. if (flags & SLAB_PANIC)
  1801. panic("Cannot create slab %s size=%lu realsize=%u "
  1802. "order=%u offset=%u flags=%lx\n",
  1803. s->name, (unsigned long)size, s->size, s->order,
  1804. s->offset, flags);
  1805. return 0;
  1806. }
  1807. /*
  1808. * Check if a given pointer is valid
  1809. */
  1810. int kmem_ptr_validate(struct kmem_cache *s, const void *object)
  1811. {
  1812. struct page * page;
  1813. page = get_object_page(object);
  1814. if (!page || s != page->slab)
  1815. /* No slab or wrong slab */
  1816. return 0;
  1817. if (!check_valid_pointer(s, page, object))
  1818. return 0;
  1819. /*
  1820. * We could also check if the object is on the slabs freelist.
  1821. * But this would be too expensive and it seems that the main
  1822. * purpose of kmem_ptr_valid is to check if the object belongs
  1823. * to a certain slab.
  1824. */
  1825. return 1;
  1826. }
  1827. EXPORT_SYMBOL(kmem_ptr_validate);
  1828. /*
  1829. * Determine the size of a slab object
  1830. */
  1831. unsigned int kmem_cache_size(struct kmem_cache *s)
  1832. {
  1833. return s->objsize;
  1834. }
  1835. EXPORT_SYMBOL(kmem_cache_size);
  1836. const char *kmem_cache_name(struct kmem_cache *s)
  1837. {
  1838. return s->name;
  1839. }
  1840. EXPORT_SYMBOL(kmem_cache_name);
  1841. /*
  1842. * Attempt to free all slabs on a node. Return the number of slabs we
  1843. * were unable to free.
  1844. */
  1845. static int free_list(struct kmem_cache *s, struct kmem_cache_node *n,
  1846. struct list_head *list)
  1847. {
  1848. int slabs_inuse = 0;
  1849. unsigned long flags;
  1850. struct page *page, *h;
  1851. spin_lock_irqsave(&n->list_lock, flags);
  1852. list_for_each_entry_safe(page, h, list, lru)
  1853. if (!page->inuse) {
  1854. list_del(&page->lru);
  1855. discard_slab(s, page);
  1856. } else
  1857. slabs_inuse++;
  1858. spin_unlock_irqrestore(&n->list_lock, flags);
  1859. return slabs_inuse;
  1860. }
  1861. /*
  1862. * Release all resources used by a slab cache.
  1863. */
  1864. static inline int kmem_cache_close(struct kmem_cache *s)
  1865. {
  1866. int node;
  1867. flush_all(s);
  1868. /* Attempt to free all objects */
  1869. for_each_online_node(node) {
  1870. struct kmem_cache_node *n = get_node(s, node);
  1871. n->nr_partial -= free_list(s, n, &n->partial);
  1872. if (atomic_long_read(&n->nr_slabs))
  1873. return 1;
  1874. }
  1875. free_kmem_cache_nodes(s);
  1876. return 0;
  1877. }
  1878. /*
  1879. * Close a cache and release the kmem_cache structure
  1880. * (must be used for caches created using kmem_cache_create)
  1881. */
  1882. void kmem_cache_destroy(struct kmem_cache *s)
  1883. {
  1884. down_write(&slub_lock);
  1885. s->refcount--;
  1886. if (!s->refcount) {
  1887. list_del(&s->list);
  1888. up_write(&slub_lock);
  1889. if (kmem_cache_close(s))
  1890. WARN_ON(1);
  1891. sysfs_slab_remove(s);
  1892. kfree(s);
  1893. } else
  1894. up_write(&slub_lock);
  1895. }
  1896. EXPORT_SYMBOL(kmem_cache_destroy);
  1897. /********************************************************************
  1898. * Kmalloc subsystem
  1899. *******************************************************************/
  1900. struct kmem_cache kmalloc_caches[KMALLOC_SHIFT_HIGH + 1] __cacheline_aligned;
  1901. EXPORT_SYMBOL(kmalloc_caches);
  1902. #ifdef CONFIG_ZONE_DMA
  1903. static struct kmem_cache *kmalloc_caches_dma[KMALLOC_SHIFT_HIGH + 1];
  1904. #endif
  1905. static int __init setup_slub_min_order(char *str)
  1906. {
  1907. get_option (&str, &slub_min_order);
  1908. return 1;
  1909. }
  1910. __setup("slub_min_order=", setup_slub_min_order);
  1911. static int __init setup_slub_max_order(char *str)
  1912. {
  1913. get_option (&str, &slub_max_order);
  1914. return 1;
  1915. }
  1916. __setup("slub_max_order=", setup_slub_max_order);
  1917. static int __init setup_slub_min_objects(char *str)
  1918. {
  1919. get_option (&str, &slub_min_objects);
  1920. return 1;
  1921. }
  1922. __setup("slub_min_objects=", setup_slub_min_objects);
  1923. static int __init setup_slub_nomerge(char *str)
  1924. {
  1925. slub_nomerge = 1;
  1926. return 1;
  1927. }
  1928. __setup("slub_nomerge", setup_slub_nomerge);
  1929. static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
  1930. const char *name, int size, gfp_t gfp_flags)
  1931. {
  1932. unsigned int flags = 0;
  1933. if (gfp_flags & SLUB_DMA)
  1934. flags = SLAB_CACHE_DMA;
  1935. down_write(&slub_lock);
  1936. if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
  1937. flags, NULL))
  1938. goto panic;
  1939. list_add(&s->list, &slab_caches);
  1940. up_write(&slub_lock);
  1941. if (sysfs_slab_add(s))
  1942. goto panic;
  1943. return s;
  1944. panic:
  1945. panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
  1946. }
  1947. #ifdef CONFIG_ZONE_DMA
  1948. static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
  1949. {
  1950. struct kmem_cache *s;
  1951. struct kmem_cache *x;
  1952. char *text;
  1953. size_t realsize;
  1954. s = kmalloc_caches_dma[index];
  1955. if (s)
  1956. return s;
  1957. /* Dynamically create dma cache */
  1958. x = kmalloc(kmem_size, flags & ~SLUB_DMA);
  1959. if (!x)
  1960. panic("Unable to allocate memory for dma cache\n");
  1961. realsize = kmalloc_caches[index].objsize;
  1962. text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
  1963. (unsigned int)realsize);
  1964. s = create_kmalloc_cache(x, text, realsize, flags);
  1965. down_write(&slub_lock);
  1966. if (!kmalloc_caches_dma[index]) {
  1967. kmalloc_caches_dma[index] = s;
  1968. up_write(&slub_lock);
  1969. return s;
  1970. }
  1971. up_write(&slub_lock);
  1972. kmem_cache_destroy(s);
  1973. return kmalloc_caches_dma[index];
  1974. }
  1975. #endif
  1976. /*
  1977. * Conversion table for small slabs sizes / 8 to the index in the
  1978. * kmalloc array. This is necessary for slabs < 192 since we have non power
  1979. * of two cache sizes there. The size of larger slabs can be determined using
  1980. * fls.
  1981. */
  1982. static s8 size_index[24] = {
  1983. 3, /* 8 */
  1984. 4, /* 16 */
  1985. 5, /* 24 */
  1986. 5, /* 32 */
  1987. 6, /* 40 */
  1988. 6, /* 48 */
  1989. 6, /* 56 */
  1990. 6, /* 64 */
  1991. 1, /* 72 */
  1992. 1, /* 80 */
  1993. 1, /* 88 */
  1994. 1, /* 96 */
  1995. 7, /* 104 */
  1996. 7, /* 112 */
  1997. 7, /* 120 */
  1998. 7, /* 128 */
  1999. 2, /* 136 */
  2000. 2, /* 144 */
  2001. 2, /* 152 */
  2002. 2, /* 160 */
  2003. 2, /* 168 */
  2004. 2, /* 176 */
  2005. 2, /* 184 */
  2006. 2 /* 192 */
  2007. };
  2008. static struct kmem_cache *get_slab(size_t size, gfp_t flags)
  2009. {
  2010. int index;
  2011. if (size <= 192) {
  2012. if (!size)
  2013. return ZERO_SIZE_PTR;
  2014. index = size_index[(size - 1) / 8];
  2015. } else {
  2016. if (size > KMALLOC_MAX_SIZE)
  2017. return NULL;
  2018. index = fls(size - 1);
  2019. }
  2020. #ifdef CONFIG_ZONE_DMA
  2021. if (unlikely((flags & SLUB_DMA)))
  2022. return dma_kmalloc_cache(index, flags);
  2023. #endif
  2024. return &kmalloc_caches[index];
  2025. }
  2026. void *__kmalloc(size_t size, gfp_t flags)
  2027. {
  2028. struct kmem_cache *s = get_slab(size, flags);
  2029. if (ZERO_OR_NULL_PTR(s))
  2030. return s;
  2031. return slab_alloc(s, flags, -1, __builtin_return_address(0));
  2032. }
  2033. EXPORT_SYMBOL(__kmalloc);
  2034. #ifdef CONFIG_NUMA
  2035. void *__kmalloc_node(size_t size, gfp_t flags, int node)
  2036. {
  2037. struct kmem_cache *s = get_slab(size, flags);
  2038. if (ZERO_OR_NULL_PTR(s))
  2039. return s;
  2040. return slab_alloc(s, flags, node, __builtin_return_address(0));
  2041. }
  2042. EXPORT_SYMBOL(__kmalloc_node);
  2043. #endif
  2044. size_t ksize(const void *object)
  2045. {
  2046. struct page *page;
  2047. struct kmem_cache *s;
  2048. if (object == ZERO_SIZE_PTR)
  2049. return 0;
  2050. page = get_object_page(object);
  2051. BUG_ON(!page);
  2052. s = page->slab;
  2053. BUG_ON(!s);
  2054. /*
  2055. * Debugging requires use of the padding between object
  2056. * and whatever may come after it.
  2057. */
  2058. if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
  2059. return s->objsize;
  2060. /*
  2061. * If we have the need to store the freelist pointer
  2062. * back there or track user information then we can
  2063. * only use the space before that information.
  2064. */
  2065. if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
  2066. return s->inuse;
  2067. /*
  2068. * Else we can use all the padding etc for the allocation
  2069. */
  2070. return s->size;
  2071. }
  2072. EXPORT_SYMBOL(ksize);
  2073. void kfree(const void *x)
  2074. {
  2075. struct kmem_cache *s;
  2076. struct page *page;
  2077. /*
  2078. * This has to be an unsigned comparison. According to Linus
  2079. * some gcc version treat a pointer as a signed entity. Then
  2080. * this comparison would be true for all "negative" pointers
  2081. * (which would cover the whole upper half of the address space).
  2082. */
  2083. if (ZERO_OR_NULL_PTR(x))
  2084. return;
  2085. page = virt_to_head_page(x);
  2086. s = page->slab;
  2087. slab_free(s, page, (void *)x, __builtin_return_address(0));
  2088. }
  2089. EXPORT_SYMBOL(kfree);
  2090. /*
  2091. * kmem_cache_shrink removes empty slabs from the partial lists and sorts
  2092. * the remaining slabs by the number of items in use. The slabs with the
  2093. * most items in use come first. New allocations will then fill those up
  2094. * and thus they can be removed from the partial lists.
  2095. *
  2096. * The slabs with the least items are placed last. This results in them
  2097. * being allocated from last increasing the chance that the last objects
  2098. * are freed in them.
  2099. */
  2100. int kmem_cache_shrink(struct kmem_cache *s)
  2101. {
  2102. int node;
  2103. int i;
  2104. struct kmem_cache_node *n;
  2105. struct page *page;
  2106. struct page *t;
  2107. struct list_head *slabs_by_inuse =
  2108. kmalloc(sizeof(struct list_head) * s->objects, GFP_KERNEL);
  2109. unsigned long flags;
  2110. if (!slabs_by_inuse)
  2111. return -ENOMEM;
  2112. flush_all(s);
  2113. for_each_online_node(node) {
  2114. n = get_node(s, node);
  2115. if (!n->nr_partial)
  2116. continue;
  2117. for (i = 0; i < s->objects; i++)
  2118. INIT_LIST_HEAD(slabs_by_inuse + i);
  2119. spin_lock_irqsave(&n->list_lock, flags);
  2120. /*
  2121. * Build lists indexed by the items in use in each slab.
  2122. *
  2123. * Note that concurrent frees may occur while we hold the
  2124. * list_lock. page->inuse here is the upper limit.
  2125. */
  2126. list_for_each_entry_safe(page, t, &n->partial, lru) {
  2127. if (!page->inuse && slab_trylock(page)) {
  2128. /*
  2129. * Must hold slab lock here because slab_free
  2130. * may have freed the last object and be
  2131. * waiting to release the slab.
  2132. */
  2133. list_del(&page->lru);
  2134. n->nr_partial--;
  2135. slab_unlock(page);
  2136. discard_slab(s, page);
  2137. } else {
  2138. if (n->nr_partial > MAX_PARTIAL)
  2139. list_move(&page->lru,
  2140. slabs_by_inuse + page->inuse);
  2141. }
  2142. }
  2143. if (n->nr_partial <= MAX_PARTIAL)
  2144. goto out;
  2145. /*
  2146. * Rebuild the partial list with the slabs filled up most
  2147. * first and the least used slabs at the end.
  2148. */
  2149. for (i = s->objects - 1; i >= 0; i--)
  2150. list_splice(slabs_by_inuse + i, n->partial.prev);
  2151. out:
  2152. spin_unlock_irqrestore(&n->list_lock, flags);
  2153. }
  2154. kfree(slabs_by_inuse);
  2155. return 0;
  2156. }
  2157. EXPORT_SYMBOL(kmem_cache_shrink);
  2158. /********************************************************************
  2159. * Basic setup of slabs
  2160. *******************************************************************/
  2161. void __init kmem_cache_init(void)
  2162. {
  2163. int i;
  2164. int caches = 0;
  2165. #ifdef CONFIG_NUMA
  2166. /*
  2167. * Must first have the slab cache available for the allocations of the
  2168. * struct kmem_cache_node's. There is special bootstrap code in
  2169. * kmem_cache_open for slab_state == DOWN.
  2170. */
  2171. create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
  2172. sizeof(struct kmem_cache_node), GFP_KERNEL);
  2173. kmalloc_caches[0].refcount = -1;
  2174. caches++;
  2175. #endif
  2176. /* Able to allocate the per node structures */
  2177. slab_state = PARTIAL;
  2178. /* Caches that are not of the two-to-the-power-of size */
  2179. if (KMALLOC_MIN_SIZE <= 64) {
  2180. create_kmalloc_cache(&kmalloc_caches[1],
  2181. "kmalloc-96", 96, GFP_KERNEL);
  2182. caches++;
  2183. }
  2184. if (KMALLOC_MIN_SIZE <= 128) {
  2185. create_kmalloc_cache(&kmalloc_caches[2],
  2186. "kmalloc-192", 192, GFP_KERNEL);
  2187. caches++;
  2188. }
  2189. for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
  2190. create_kmalloc_cache(&kmalloc_caches[i],
  2191. "kmalloc", 1 << i, GFP_KERNEL);
  2192. caches++;
  2193. }
  2194. /*
  2195. * Patch up the size_index table if we have strange large alignment
  2196. * requirements for the kmalloc array. This is only the case for
  2197. * mips it seems. The standard arches will not generate any code here.
  2198. *
  2199. * Largest permitted alignment is 256 bytes due to the way we
  2200. * handle the index determination for the smaller caches.
  2201. *
  2202. * Make sure that nothing crazy happens if someone starts tinkering
  2203. * around with ARCH_KMALLOC_MINALIGN
  2204. */
  2205. BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
  2206. (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
  2207. for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
  2208. size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
  2209. slab_state = UP;
  2210. /* Provide the correct kmalloc names now that the caches are up */
  2211. for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++)
  2212. kmalloc_caches[i]. name =
  2213. kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
  2214. #ifdef CONFIG_SMP
  2215. register_cpu_notifier(&slab_notifier);
  2216. #endif
  2217. kmem_size = offsetof(struct kmem_cache, cpu_slab) +
  2218. nr_cpu_ids * sizeof(struct page *);
  2219. printk(KERN_INFO "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
  2220. " CPUs=%d, Nodes=%d\n",
  2221. caches, cache_line_size(),
  2222. slub_min_order, slub_max_order, slub_min_objects,
  2223. nr_cpu_ids, nr_node_ids);
  2224. }
  2225. /*
  2226. * Find a mergeable slab cache
  2227. */
  2228. static int slab_unmergeable(struct kmem_cache *s)
  2229. {
  2230. if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
  2231. return 1;
  2232. if (s->ctor)
  2233. return 1;
  2234. /*
  2235. * We may have set a slab to be unmergeable during bootstrap.
  2236. */
  2237. if (s->refcount < 0)
  2238. return 1;
  2239. return 0;
  2240. }
  2241. static struct kmem_cache *find_mergeable(size_t size,
  2242. size_t align, unsigned long flags,
  2243. void (*ctor)(void *, struct kmem_cache *, unsigned long))
  2244. {
  2245. struct kmem_cache *s;
  2246. if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
  2247. return NULL;
  2248. if (ctor)
  2249. return NULL;
  2250. size = ALIGN(size, sizeof(void *));
  2251. align = calculate_alignment(flags, align, size);
  2252. size = ALIGN(size, align);
  2253. list_for_each_entry(s, &slab_caches, list) {
  2254. if (slab_unmergeable(s))
  2255. continue;
  2256. if (size > s->size)
  2257. continue;
  2258. if (((flags | slub_debug) & SLUB_MERGE_SAME) !=
  2259. (s->flags & SLUB_MERGE_SAME))
  2260. continue;
  2261. /*
  2262. * Check if alignment is compatible.
  2263. * Courtesy of Adrian Drzewiecki
  2264. */
  2265. if ((s->size & ~(align -1)) != s->size)
  2266. continue;
  2267. if (s->size - size >= sizeof(void *))
  2268. continue;
  2269. return s;
  2270. }
  2271. return NULL;
  2272. }
  2273. struct kmem_cache *kmem_cache_create(const char *name, size_t size,
  2274. size_t align, unsigned long flags,
  2275. void (*ctor)(void *, struct kmem_cache *, unsigned long),
  2276. void (*dtor)(void *, struct kmem_cache *, unsigned long))
  2277. {
  2278. struct kmem_cache *s;
  2279. BUG_ON(dtor);
  2280. down_write(&slub_lock);
  2281. s = find_mergeable(size, align, flags, ctor);
  2282. if (s) {
  2283. s->refcount++;
  2284. /*
  2285. * Adjust the object sizes so that we clear
  2286. * the complete object on kzalloc.
  2287. */
  2288. s->objsize = max(s->objsize, (int)size);
  2289. s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
  2290. up_write(&slub_lock);
  2291. if (sysfs_slab_alias(s, name))
  2292. goto err;
  2293. return s;
  2294. }
  2295. s = kmalloc(kmem_size, GFP_KERNEL);
  2296. if (s) {
  2297. if (kmem_cache_open(s, GFP_KERNEL, name,
  2298. size, align, flags, ctor)) {
  2299. list_add(&s->list, &slab_caches);
  2300. up_write(&slub_lock);
  2301. if (sysfs_slab_add(s))
  2302. goto err;
  2303. return s;
  2304. }
  2305. kfree(s);
  2306. }
  2307. up_write(&slub_lock);
  2308. err:
  2309. if (flags & SLAB_PANIC)
  2310. panic("Cannot create slabcache %s\n", name);
  2311. else
  2312. s = NULL;
  2313. return s;
  2314. }
  2315. EXPORT_SYMBOL(kmem_cache_create);
  2316. #ifdef CONFIG_SMP
  2317. /*
  2318. * Use the cpu notifier to insure that the cpu slabs are flushed when
  2319. * necessary.
  2320. */
  2321. static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
  2322. unsigned long action, void *hcpu)
  2323. {
  2324. long cpu = (long)hcpu;
  2325. struct kmem_cache *s;
  2326. unsigned long flags;
  2327. switch (action) {
  2328. case CPU_UP_CANCELED:
  2329. case CPU_UP_CANCELED_FROZEN:
  2330. case CPU_DEAD:
  2331. case CPU_DEAD_FROZEN:
  2332. down_read(&slub_lock);
  2333. list_for_each_entry(s, &slab_caches, list) {
  2334. local_irq_save(flags);
  2335. __flush_cpu_slab(s, cpu);
  2336. local_irq_restore(flags);
  2337. }
  2338. up_read(&slub_lock);
  2339. break;
  2340. default:
  2341. break;
  2342. }
  2343. return NOTIFY_OK;
  2344. }
  2345. static struct notifier_block __cpuinitdata slab_notifier =
  2346. { &slab_cpuup_callback, NULL, 0 };
  2347. #endif
  2348. void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
  2349. {
  2350. struct kmem_cache *s = get_slab(size, gfpflags);
  2351. if (ZERO_OR_NULL_PTR(s))
  2352. return s;
  2353. return slab_alloc(s, gfpflags, -1, caller);
  2354. }
  2355. void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
  2356. int node, void *caller)
  2357. {
  2358. struct kmem_cache *s = get_slab(size, gfpflags);
  2359. if (ZERO_OR_NULL_PTR(s))
  2360. return s;
  2361. return slab_alloc(s, gfpflags, node, caller);
  2362. }
  2363. #if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
  2364. static int validate_slab(struct kmem_cache *s, struct page *page,
  2365. unsigned long *map)
  2366. {
  2367. void *p;
  2368. void *addr = page_address(page);
  2369. if (!check_slab(s, page) ||
  2370. !on_freelist(s, page, NULL))
  2371. return 0;
  2372. /* Now we know that a valid freelist exists */
  2373. bitmap_zero(map, s->objects);
  2374. for_each_free_object(p, s, page->freelist) {
  2375. set_bit(slab_index(p, s, addr), map);
  2376. if (!check_object(s, page, p, 0))
  2377. return 0;
  2378. }
  2379. for_each_object(p, s, addr)
  2380. if (!test_bit(slab_index(p, s, addr), map))
  2381. if (!check_object(s, page, p, 1))
  2382. return 0;
  2383. return 1;
  2384. }
  2385. static void validate_slab_slab(struct kmem_cache *s, struct page *page,
  2386. unsigned long *map)
  2387. {
  2388. if (slab_trylock(page)) {
  2389. validate_slab(s, page, map);
  2390. slab_unlock(page);
  2391. } else
  2392. printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
  2393. s->name, page);
  2394. if (s->flags & DEBUG_DEFAULT_FLAGS) {
  2395. if (!SlabDebug(page))
  2396. printk(KERN_ERR "SLUB %s: SlabDebug not set "
  2397. "on slab 0x%p\n", s->name, page);
  2398. } else {
  2399. if (SlabDebug(page))
  2400. printk(KERN_ERR "SLUB %s: SlabDebug set on "
  2401. "slab 0x%p\n", s->name, page);
  2402. }
  2403. }
  2404. static int validate_slab_node(struct kmem_cache *s,
  2405. struct kmem_cache_node *n, unsigned long *map)
  2406. {
  2407. unsigned long count = 0;
  2408. struct page *page;
  2409. unsigned long flags;
  2410. spin_lock_irqsave(&n->list_lock, flags);
  2411. list_for_each_entry(page, &n->partial, lru) {
  2412. validate_slab_slab(s, page, map);
  2413. count++;
  2414. }
  2415. if (count != n->nr_partial)
  2416. printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
  2417. "counter=%ld\n", s->name, count, n->nr_partial);
  2418. if (!(s->flags & SLAB_STORE_USER))
  2419. goto out;
  2420. list_for_each_entry(page, &n->full, lru) {
  2421. validate_slab_slab(s, page, map);
  2422. count++;
  2423. }
  2424. if (count != atomic_long_read(&n->nr_slabs))
  2425. printk(KERN_ERR "SLUB: %s %ld slabs counted but "
  2426. "counter=%ld\n", s->name, count,
  2427. atomic_long_read(&n->nr_slabs));
  2428. out:
  2429. spin_unlock_irqrestore(&n->list_lock, flags);
  2430. return count;
  2431. }
  2432. static long validate_slab_cache(struct kmem_cache *s)
  2433. {
  2434. int node;
  2435. unsigned long count = 0;
  2436. unsigned long *map = kmalloc(BITS_TO_LONGS(s->objects) *
  2437. sizeof(unsigned long), GFP_KERNEL);
  2438. if (!map)
  2439. return -ENOMEM;
  2440. flush_all(s);
  2441. for_each_online_node(node) {
  2442. struct kmem_cache_node *n = get_node(s, node);
  2443. count += validate_slab_node(s, n, map);
  2444. }
  2445. kfree(map);
  2446. return count;
  2447. }
  2448. #ifdef SLUB_RESILIENCY_TEST
  2449. static void resiliency_test(void)
  2450. {
  2451. u8 *p;
  2452. printk(KERN_ERR "SLUB resiliency testing\n");
  2453. printk(KERN_ERR "-----------------------\n");
  2454. printk(KERN_ERR "A. Corruption after allocation\n");
  2455. p = kzalloc(16, GFP_KERNEL);
  2456. p[16] = 0x12;
  2457. printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
  2458. " 0x12->0x%p\n\n", p + 16);
  2459. validate_slab_cache(kmalloc_caches + 4);
  2460. /* Hmmm... The next two are dangerous */
  2461. p = kzalloc(32, GFP_KERNEL);
  2462. p[32 + sizeof(void *)] = 0x34;
  2463. printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
  2464. " 0x34 -> -0x%p\n", p);
  2465. printk(KERN_ERR "If allocated object is overwritten then not detectable\n\n");
  2466. validate_slab_cache(kmalloc_caches + 5);
  2467. p = kzalloc(64, GFP_KERNEL);
  2468. p += 64 + (get_cycles() & 0xff) * sizeof(void *);
  2469. *p = 0x56;
  2470. printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
  2471. p);
  2472. printk(KERN_ERR "If allocated object is overwritten then not detectable\n\n");
  2473. validate_slab_cache(kmalloc_caches + 6);
  2474. printk(KERN_ERR "\nB. Corruption after free\n");
  2475. p = kzalloc(128, GFP_KERNEL);
  2476. kfree(p);
  2477. *p = 0x78;
  2478. printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
  2479. validate_slab_cache(kmalloc_caches + 7);
  2480. p = kzalloc(256, GFP_KERNEL);
  2481. kfree(p);
  2482. p[50] = 0x9a;
  2483. printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
  2484. validate_slab_cache(kmalloc_caches + 8);
  2485. p = kzalloc(512, GFP_KERNEL);
  2486. kfree(p);
  2487. p[512] = 0xab;
  2488. printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
  2489. validate_slab_cache(kmalloc_caches + 9);
  2490. }
  2491. #else
  2492. static void resiliency_test(void) {};
  2493. #endif
  2494. /*
  2495. * Generate lists of code addresses where slabcache objects are allocated
  2496. * and freed.
  2497. */
  2498. struct location {
  2499. unsigned long count;
  2500. void *addr;
  2501. long long sum_time;
  2502. long min_time;
  2503. long max_time;
  2504. long min_pid;
  2505. long max_pid;
  2506. cpumask_t cpus;
  2507. nodemask_t nodes;
  2508. };
  2509. struct loc_track {
  2510. unsigned long max;
  2511. unsigned long count;
  2512. struct location *loc;
  2513. };
  2514. static void free_loc_track(struct loc_track *t)
  2515. {
  2516. if (t->max)
  2517. free_pages((unsigned long)t->loc,
  2518. get_order(sizeof(struct location) * t->max));
  2519. }
  2520. static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
  2521. {
  2522. struct location *l;
  2523. int order;
  2524. order = get_order(sizeof(struct location) * max);
  2525. l = (void *)__get_free_pages(flags, order);
  2526. if (!l)
  2527. return 0;
  2528. if (t->count) {
  2529. memcpy(l, t->loc, sizeof(struct location) * t->count);
  2530. free_loc_track(t);
  2531. }
  2532. t->max = max;
  2533. t->loc = l;
  2534. return 1;
  2535. }
  2536. static int add_location(struct loc_track *t, struct kmem_cache *s,
  2537. const struct track *track)
  2538. {
  2539. long start, end, pos;
  2540. struct location *l;
  2541. void *caddr;
  2542. unsigned long age = jiffies - track->when;
  2543. start = -1;
  2544. end = t->count;
  2545. for ( ; ; ) {
  2546. pos = start + (end - start + 1) / 2;
  2547. /*
  2548. * There is nothing at "end". If we end up there
  2549. * we need to add something to before end.
  2550. */
  2551. if (pos == end)
  2552. break;
  2553. caddr = t->loc[pos].addr;
  2554. if (track->addr == caddr) {
  2555. l = &t->loc[pos];
  2556. l->count++;
  2557. if (track->when) {
  2558. l->sum_time += age;
  2559. if (age < l->min_time)
  2560. l->min_time = age;
  2561. if (age > l->max_time)
  2562. l->max_time = age;
  2563. if (track->pid < l->min_pid)
  2564. l->min_pid = track->pid;
  2565. if (track->pid > l->max_pid)
  2566. l->max_pid = track->pid;
  2567. cpu_set(track->cpu, l->cpus);
  2568. }
  2569. node_set(page_to_nid(virt_to_page(track)), l->nodes);
  2570. return 1;
  2571. }
  2572. if (track->addr < caddr)
  2573. end = pos;
  2574. else
  2575. start = pos;
  2576. }
  2577. /*
  2578. * Not found. Insert new tracking element.
  2579. */
  2580. if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
  2581. return 0;
  2582. l = t->loc + pos;
  2583. if (pos < t->count)
  2584. memmove(l + 1, l,
  2585. (t->count - pos) * sizeof(struct location));
  2586. t->count++;
  2587. l->count = 1;
  2588. l->addr = track->addr;
  2589. l->sum_time = age;
  2590. l->min_time = age;
  2591. l->max_time = age;
  2592. l->min_pid = track->pid;
  2593. l->max_pid = track->pid;
  2594. cpus_clear(l->cpus);
  2595. cpu_set(track->cpu, l->cpus);
  2596. nodes_clear(l->nodes);
  2597. node_set(page_to_nid(virt_to_page(track)), l->nodes);
  2598. return 1;
  2599. }
  2600. static void process_slab(struct loc_track *t, struct kmem_cache *s,
  2601. struct page *page, enum track_item alloc)
  2602. {
  2603. void *addr = page_address(page);
  2604. DECLARE_BITMAP(map, s->objects);
  2605. void *p;
  2606. bitmap_zero(map, s->objects);
  2607. for_each_free_object(p, s, page->freelist)
  2608. set_bit(slab_index(p, s, addr), map);
  2609. for_each_object(p, s, addr)
  2610. if (!test_bit(slab_index(p, s, addr), map))
  2611. add_location(t, s, get_track(s, p, alloc));
  2612. }
  2613. static int list_locations(struct kmem_cache *s, char *buf,
  2614. enum track_item alloc)
  2615. {
  2616. int n = 0;
  2617. unsigned long i;
  2618. struct loc_track t = { 0, 0, NULL };
  2619. int node;
  2620. if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
  2621. GFP_KERNEL))
  2622. return sprintf(buf, "Out of memory\n");
  2623. /* Push back cpu slabs */
  2624. flush_all(s);
  2625. for_each_online_node(node) {
  2626. struct kmem_cache_node *n = get_node(s, node);
  2627. unsigned long flags;
  2628. struct page *page;
  2629. if (!atomic_read(&n->nr_slabs))
  2630. continue;
  2631. spin_lock_irqsave(&n->list_lock, flags);
  2632. list_for_each_entry(page, &n->partial, lru)
  2633. process_slab(&t, s, page, alloc);
  2634. list_for_each_entry(page, &n->full, lru)
  2635. process_slab(&t, s, page, alloc);
  2636. spin_unlock_irqrestore(&n->list_lock, flags);
  2637. }
  2638. for (i = 0; i < t.count; i++) {
  2639. struct location *l = &t.loc[i];
  2640. if (n > PAGE_SIZE - 100)
  2641. break;
  2642. n += sprintf(buf + n, "%7ld ", l->count);
  2643. if (l->addr)
  2644. n += sprint_symbol(buf + n, (unsigned long)l->addr);
  2645. else
  2646. n += sprintf(buf + n, "<not-available>");
  2647. if (l->sum_time != l->min_time) {
  2648. unsigned long remainder;
  2649. n += sprintf(buf + n, " age=%ld/%ld/%ld",
  2650. l->min_time,
  2651. div_long_long_rem(l->sum_time, l->count, &remainder),
  2652. l->max_time);
  2653. } else
  2654. n += sprintf(buf + n, " age=%ld",
  2655. l->min_time);
  2656. if (l->min_pid != l->max_pid)
  2657. n += sprintf(buf + n, " pid=%ld-%ld",
  2658. l->min_pid, l->max_pid);
  2659. else
  2660. n += sprintf(buf + n, " pid=%ld",
  2661. l->min_pid);
  2662. if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
  2663. n < PAGE_SIZE - 60) {
  2664. n += sprintf(buf + n, " cpus=");
  2665. n += cpulist_scnprintf(buf + n, PAGE_SIZE - n - 50,
  2666. l->cpus);
  2667. }
  2668. if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
  2669. n < PAGE_SIZE - 60) {
  2670. n += sprintf(buf + n, " nodes=");
  2671. n += nodelist_scnprintf(buf + n, PAGE_SIZE - n - 50,
  2672. l->nodes);
  2673. }
  2674. n += sprintf(buf + n, "\n");
  2675. }
  2676. free_loc_track(&t);
  2677. if (!t.count)
  2678. n += sprintf(buf, "No data\n");
  2679. return n;
  2680. }
  2681. static unsigned long count_partial(struct kmem_cache_node *n)
  2682. {
  2683. unsigned long flags;
  2684. unsigned long x = 0;
  2685. struct page *page;
  2686. spin_lock_irqsave(&n->list_lock, flags);
  2687. list_for_each_entry(page, &n->partial, lru)
  2688. x += page->inuse;
  2689. spin_unlock_irqrestore(&n->list_lock, flags);
  2690. return x;
  2691. }
  2692. enum slab_stat_type {
  2693. SL_FULL,
  2694. SL_PARTIAL,
  2695. SL_CPU,
  2696. SL_OBJECTS
  2697. };
  2698. #define SO_FULL (1 << SL_FULL)
  2699. #define SO_PARTIAL (1 << SL_PARTIAL)
  2700. #define SO_CPU (1 << SL_CPU)
  2701. #define SO_OBJECTS (1 << SL_OBJECTS)
  2702. static unsigned long slab_objects(struct kmem_cache *s,
  2703. char *buf, unsigned long flags)
  2704. {
  2705. unsigned long total = 0;
  2706. int cpu;
  2707. int node;
  2708. int x;
  2709. unsigned long *nodes;
  2710. unsigned long *per_cpu;
  2711. nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
  2712. per_cpu = nodes + nr_node_ids;
  2713. for_each_possible_cpu(cpu) {
  2714. struct page *page = s->cpu_slab[cpu];
  2715. int node;
  2716. if (page) {
  2717. node = page_to_nid(page);
  2718. if (flags & SO_CPU) {
  2719. int x = 0;
  2720. if (flags & SO_OBJECTS)
  2721. x = page->inuse;
  2722. else
  2723. x = 1;
  2724. total += x;
  2725. nodes[node] += x;
  2726. }
  2727. per_cpu[node]++;
  2728. }
  2729. }
  2730. for_each_online_node(node) {
  2731. struct kmem_cache_node *n = get_node(s, node);
  2732. if (flags & SO_PARTIAL) {
  2733. if (flags & SO_OBJECTS)
  2734. x = count_partial(n);
  2735. else
  2736. x = n->nr_partial;
  2737. total += x;
  2738. nodes[node] += x;
  2739. }
  2740. if (flags & SO_FULL) {
  2741. int full_slabs = atomic_read(&n->nr_slabs)
  2742. - per_cpu[node]
  2743. - n->nr_partial;
  2744. if (flags & SO_OBJECTS)
  2745. x = full_slabs * s->objects;
  2746. else
  2747. x = full_slabs;
  2748. total += x;
  2749. nodes[node] += x;
  2750. }
  2751. }
  2752. x = sprintf(buf, "%lu", total);
  2753. #ifdef CONFIG_NUMA
  2754. for_each_online_node(node)
  2755. if (nodes[node])
  2756. x += sprintf(buf + x, " N%d=%lu",
  2757. node, nodes[node]);
  2758. #endif
  2759. kfree(nodes);
  2760. return x + sprintf(buf + x, "\n");
  2761. }
  2762. static int any_slab_objects(struct kmem_cache *s)
  2763. {
  2764. int node;
  2765. int cpu;
  2766. for_each_possible_cpu(cpu)
  2767. if (s->cpu_slab[cpu])
  2768. return 1;
  2769. for_each_node(node) {
  2770. struct kmem_cache_node *n = get_node(s, node);
  2771. if (n->nr_partial || atomic_read(&n->nr_slabs))
  2772. return 1;
  2773. }
  2774. return 0;
  2775. }
  2776. #define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
  2777. #define to_slab(n) container_of(n, struct kmem_cache, kobj);
  2778. struct slab_attribute {
  2779. struct attribute attr;
  2780. ssize_t (*show)(struct kmem_cache *s, char *buf);
  2781. ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
  2782. };
  2783. #define SLAB_ATTR_RO(_name) \
  2784. static struct slab_attribute _name##_attr = __ATTR_RO(_name)
  2785. #define SLAB_ATTR(_name) \
  2786. static struct slab_attribute _name##_attr = \
  2787. __ATTR(_name, 0644, _name##_show, _name##_store)
  2788. static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
  2789. {
  2790. return sprintf(buf, "%d\n", s->size);
  2791. }
  2792. SLAB_ATTR_RO(slab_size);
  2793. static ssize_t align_show(struct kmem_cache *s, char *buf)
  2794. {
  2795. return sprintf(buf, "%d\n", s->align);
  2796. }
  2797. SLAB_ATTR_RO(align);
  2798. static ssize_t object_size_show(struct kmem_cache *s, char *buf)
  2799. {
  2800. return sprintf(buf, "%d\n", s->objsize);
  2801. }
  2802. SLAB_ATTR_RO(object_size);
  2803. static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
  2804. {
  2805. return sprintf(buf, "%d\n", s->objects);
  2806. }
  2807. SLAB_ATTR_RO(objs_per_slab);
  2808. static ssize_t order_show(struct kmem_cache *s, char *buf)
  2809. {
  2810. return sprintf(buf, "%d\n", s->order);
  2811. }
  2812. SLAB_ATTR_RO(order);
  2813. static ssize_t ctor_show(struct kmem_cache *s, char *buf)
  2814. {
  2815. if (s->ctor) {
  2816. int n = sprint_symbol(buf, (unsigned long)s->ctor);
  2817. return n + sprintf(buf + n, "\n");
  2818. }
  2819. return 0;
  2820. }
  2821. SLAB_ATTR_RO(ctor);
  2822. static ssize_t aliases_show(struct kmem_cache *s, char *buf)
  2823. {
  2824. return sprintf(buf, "%d\n", s->refcount - 1);
  2825. }
  2826. SLAB_ATTR_RO(aliases);
  2827. static ssize_t slabs_show(struct kmem_cache *s, char *buf)
  2828. {
  2829. return slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU);
  2830. }
  2831. SLAB_ATTR_RO(slabs);
  2832. static ssize_t partial_show(struct kmem_cache *s, char *buf)
  2833. {
  2834. return slab_objects(s, buf, SO_PARTIAL);
  2835. }
  2836. SLAB_ATTR_RO(partial);
  2837. static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
  2838. {
  2839. return slab_objects(s, buf, SO_CPU);
  2840. }
  2841. SLAB_ATTR_RO(cpu_slabs);
  2842. static ssize_t objects_show(struct kmem_cache *s, char *buf)
  2843. {
  2844. return slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU|SO_OBJECTS);
  2845. }
  2846. SLAB_ATTR_RO(objects);
  2847. static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
  2848. {
  2849. return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
  2850. }
  2851. static ssize_t sanity_checks_store(struct kmem_cache *s,
  2852. const char *buf, size_t length)
  2853. {
  2854. s->flags &= ~SLAB_DEBUG_FREE;
  2855. if (buf[0] == '1')
  2856. s->flags |= SLAB_DEBUG_FREE;
  2857. return length;
  2858. }
  2859. SLAB_ATTR(sanity_checks);
  2860. static ssize_t trace_show(struct kmem_cache *s, char *buf)
  2861. {
  2862. return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
  2863. }
  2864. static ssize_t trace_store(struct kmem_cache *s, const char *buf,
  2865. size_t length)
  2866. {
  2867. s->flags &= ~SLAB_TRACE;
  2868. if (buf[0] == '1')
  2869. s->flags |= SLAB_TRACE;
  2870. return length;
  2871. }
  2872. SLAB_ATTR(trace);
  2873. static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
  2874. {
  2875. return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
  2876. }
  2877. static ssize_t reclaim_account_store(struct kmem_cache *s,
  2878. const char *buf, size_t length)
  2879. {
  2880. s->flags &= ~SLAB_RECLAIM_ACCOUNT;
  2881. if (buf[0] == '1')
  2882. s->flags |= SLAB_RECLAIM_ACCOUNT;
  2883. return length;
  2884. }
  2885. SLAB_ATTR(reclaim_account);
  2886. static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
  2887. {
  2888. return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
  2889. }
  2890. SLAB_ATTR_RO(hwcache_align);
  2891. #ifdef CONFIG_ZONE_DMA
  2892. static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
  2893. {
  2894. return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
  2895. }
  2896. SLAB_ATTR_RO(cache_dma);
  2897. #endif
  2898. static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
  2899. {
  2900. return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
  2901. }
  2902. SLAB_ATTR_RO(destroy_by_rcu);
  2903. static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
  2904. {
  2905. return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
  2906. }
  2907. static ssize_t red_zone_store(struct kmem_cache *s,
  2908. const char *buf, size_t length)
  2909. {
  2910. if (any_slab_objects(s))
  2911. return -EBUSY;
  2912. s->flags &= ~SLAB_RED_ZONE;
  2913. if (buf[0] == '1')
  2914. s->flags |= SLAB_RED_ZONE;
  2915. calculate_sizes(s);
  2916. return length;
  2917. }
  2918. SLAB_ATTR(red_zone);
  2919. static ssize_t poison_show(struct kmem_cache *s, char *buf)
  2920. {
  2921. return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
  2922. }
  2923. static ssize_t poison_store(struct kmem_cache *s,
  2924. const char *buf, size_t length)
  2925. {
  2926. if (any_slab_objects(s))
  2927. return -EBUSY;
  2928. s->flags &= ~SLAB_POISON;
  2929. if (buf[0] == '1')
  2930. s->flags |= SLAB_POISON;
  2931. calculate_sizes(s);
  2932. return length;
  2933. }
  2934. SLAB_ATTR(poison);
  2935. static ssize_t store_user_show(struct kmem_cache *s, char *buf)
  2936. {
  2937. return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
  2938. }
  2939. static ssize_t store_user_store(struct kmem_cache *s,
  2940. const char *buf, size_t length)
  2941. {
  2942. if (any_slab_objects(s))
  2943. return -EBUSY;
  2944. s->flags &= ~SLAB_STORE_USER;
  2945. if (buf[0] == '1')
  2946. s->flags |= SLAB_STORE_USER;
  2947. calculate_sizes(s);
  2948. return length;
  2949. }
  2950. SLAB_ATTR(store_user);
  2951. static ssize_t validate_show(struct kmem_cache *s, char *buf)
  2952. {
  2953. return 0;
  2954. }
  2955. static ssize_t validate_store(struct kmem_cache *s,
  2956. const char *buf, size_t length)
  2957. {
  2958. int ret = -EINVAL;
  2959. if (buf[0] == '1') {
  2960. ret = validate_slab_cache(s);
  2961. if (ret >= 0)
  2962. ret = length;
  2963. }
  2964. return ret;
  2965. }
  2966. SLAB_ATTR(validate);
  2967. static ssize_t shrink_show(struct kmem_cache *s, char *buf)
  2968. {
  2969. return 0;
  2970. }
  2971. static ssize_t shrink_store(struct kmem_cache *s,
  2972. const char *buf, size_t length)
  2973. {
  2974. if (buf[0] == '1') {
  2975. int rc = kmem_cache_shrink(s);
  2976. if (rc)
  2977. return rc;
  2978. } else
  2979. return -EINVAL;
  2980. return length;
  2981. }
  2982. SLAB_ATTR(shrink);
  2983. static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
  2984. {
  2985. if (!(s->flags & SLAB_STORE_USER))
  2986. return -ENOSYS;
  2987. return list_locations(s, buf, TRACK_ALLOC);
  2988. }
  2989. SLAB_ATTR_RO(alloc_calls);
  2990. static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
  2991. {
  2992. if (!(s->flags & SLAB_STORE_USER))
  2993. return -ENOSYS;
  2994. return list_locations(s, buf, TRACK_FREE);
  2995. }
  2996. SLAB_ATTR_RO(free_calls);
  2997. #ifdef CONFIG_NUMA
  2998. static ssize_t defrag_ratio_show(struct kmem_cache *s, char *buf)
  2999. {
  3000. return sprintf(buf, "%d\n", s->defrag_ratio / 10);
  3001. }
  3002. static ssize_t defrag_ratio_store(struct kmem_cache *s,
  3003. const char *buf, size_t length)
  3004. {
  3005. int n = simple_strtoul(buf, NULL, 10);
  3006. if (n < 100)
  3007. s->defrag_ratio = n * 10;
  3008. return length;
  3009. }
  3010. SLAB_ATTR(defrag_ratio);
  3011. #endif
  3012. static struct attribute * slab_attrs[] = {
  3013. &slab_size_attr.attr,
  3014. &object_size_attr.attr,
  3015. &objs_per_slab_attr.attr,
  3016. &order_attr.attr,
  3017. &objects_attr.attr,
  3018. &slabs_attr.attr,
  3019. &partial_attr.attr,
  3020. &cpu_slabs_attr.attr,
  3021. &ctor_attr.attr,
  3022. &aliases_attr.attr,
  3023. &align_attr.attr,
  3024. &sanity_checks_attr.attr,
  3025. &trace_attr.attr,
  3026. &hwcache_align_attr.attr,
  3027. &reclaim_account_attr.attr,
  3028. &destroy_by_rcu_attr.attr,
  3029. &red_zone_attr.attr,
  3030. &poison_attr.attr,
  3031. &store_user_attr.attr,
  3032. &validate_attr.attr,
  3033. &shrink_attr.attr,
  3034. &alloc_calls_attr.attr,
  3035. &free_calls_attr.attr,
  3036. #ifdef CONFIG_ZONE_DMA
  3037. &cache_dma_attr.attr,
  3038. #endif
  3039. #ifdef CONFIG_NUMA
  3040. &defrag_ratio_attr.attr,
  3041. #endif
  3042. NULL
  3043. };
  3044. static struct attribute_group slab_attr_group = {
  3045. .attrs = slab_attrs,
  3046. };
  3047. static ssize_t slab_attr_show(struct kobject *kobj,
  3048. struct attribute *attr,
  3049. char *buf)
  3050. {
  3051. struct slab_attribute *attribute;
  3052. struct kmem_cache *s;
  3053. int err;
  3054. attribute = to_slab_attr(attr);
  3055. s = to_slab(kobj);
  3056. if (!attribute->show)
  3057. return -EIO;
  3058. err = attribute->show(s, buf);
  3059. return err;
  3060. }
  3061. static ssize_t slab_attr_store(struct kobject *kobj,
  3062. struct attribute *attr,
  3063. const char *buf, size_t len)
  3064. {
  3065. struct slab_attribute *attribute;
  3066. struct kmem_cache *s;
  3067. int err;
  3068. attribute = to_slab_attr(attr);
  3069. s = to_slab(kobj);
  3070. if (!attribute->store)
  3071. return -EIO;
  3072. err = attribute->store(s, buf, len);
  3073. return err;
  3074. }
  3075. static struct sysfs_ops slab_sysfs_ops = {
  3076. .show = slab_attr_show,
  3077. .store = slab_attr_store,
  3078. };
  3079. static struct kobj_type slab_ktype = {
  3080. .sysfs_ops = &slab_sysfs_ops,
  3081. };
  3082. static int uevent_filter(struct kset *kset, struct kobject *kobj)
  3083. {
  3084. struct kobj_type *ktype = get_ktype(kobj);
  3085. if (ktype == &slab_ktype)
  3086. return 1;
  3087. return 0;
  3088. }
  3089. static struct kset_uevent_ops slab_uevent_ops = {
  3090. .filter = uevent_filter,
  3091. };
  3092. static decl_subsys(slab, &slab_ktype, &slab_uevent_ops);
  3093. #define ID_STR_LENGTH 64
  3094. /* Create a unique string id for a slab cache:
  3095. * format
  3096. * :[flags-]size:[memory address of kmemcache]
  3097. */
  3098. static char *create_unique_id(struct kmem_cache *s)
  3099. {
  3100. char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
  3101. char *p = name;
  3102. BUG_ON(!name);
  3103. *p++ = ':';
  3104. /*
  3105. * First flags affecting slabcache operations. We will only
  3106. * get here for aliasable slabs so we do not need to support
  3107. * too many flags. The flags here must cover all flags that
  3108. * are matched during merging to guarantee that the id is
  3109. * unique.
  3110. */
  3111. if (s->flags & SLAB_CACHE_DMA)
  3112. *p++ = 'd';
  3113. if (s->flags & SLAB_RECLAIM_ACCOUNT)
  3114. *p++ = 'a';
  3115. if (s->flags & SLAB_DEBUG_FREE)
  3116. *p++ = 'F';
  3117. if (p != name + 1)
  3118. *p++ = '-';
  3119. p += sprintf(p, "%07d", s->size);
  3120. BUG_ON(p > name + ID_STR_LENGTH - 1);
  3121. return name;
  3122. }
  3123. static int sysfs_slab_add(struct kmem_cache *s)
  3124. {
  3125. int err;
  3126. const char *name;
  3127. int unmergeable;
  3128. if (slab_state < SYSFS)
  3129. /* Defer until later */
  3130. return 0;
  3131. unmergeable = slab_unmergeable(s);
  3132. if (unmergeable) {
  3133. /*
  3134. * Slabcache can never be merged so we can use the name proper.
  3135. * This is typically the case for debug situations. In that
  3136. * case we can catch duplicate names easily.
  3137. */
  3138. sysfs_remove_link(&slab_subsys.kobj, s->name);
  3139. name = s->name;
  3140. } else {
  3141. /*
  3142. * Create a unique name for the slab as a target
  3143. * for the symlinks.
  3144. */
  3145. name = create_unique_id(s);
  3146. }
  3147. kobj_set_kset_s(s, slab_subsys);
  3148. kobject_set_name(&s->kobj, name);
  3149. kobject_init(&s->kobj);
  3150. err = kobject_add(&s->kobj);
  3151. if (err)
  3152. return err;
  3153. err = sysfs_create_group(&s->kobj, &slab_attr_group);
  3154. if (err)
  3155. return err;
  3156. kobject_uevent(&s->kobj, KOBJ_ADD);
  3157. if (!unmergeable) {
  3158. /* Setup first alias */
  3159. sysfs_slab_alias(s, s->name);
  3160. kfree(name);
  3161. }
  3162. return 0;
  3163. }
  3164. static void sysfs_slab_remove(struct kmem_cache *s)
  3165. {
  3166. kobject_uevent(&s->kobj, KOBJ_REMOVE);
  3167. kobject_del(&s->kobj);
  3168. }
  3169. /*
  3170. * Need to buffer aliases during bootup until sysfs becomes
  3171. * available lest we loose that information.
  3172. */
  3173. struct saved_alias {
  3174. struct kmem_cache *s;
  3175. const char *name;
  3176. struct saved_alias *next;
  3177. };
  3178. static struct saved_alias *alias_list;
  3179. static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
  3180. {
  3181. struct saved_alias *al;
  3182. if (slab_state == SYSFS) {
  3183. /*
  3184. * If we have a leftover link then remove it.
  3185. */
  3186. sysfs_remove_link(&slab_subsys.kobj, name);
  3187. return sysfs_create_link(&slab_subsys.kobj,
  3188. &s->kobj, name);
  3189. }
  3190. al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
  3191. if (!al)
  3192. return -ENOMEM;
  3193. al->s = s;
  3194. al->name = name;
  3195. al->next = alias_list;
  3196. alias_list = al;
  3197. return 0;
  3198. }
  3199. static int __init slab_sysfs_init(void)
  3200. {
  3201. struct kmem_cache *s;
  3202. int err;
  3203. err = subsystem_register(&slab_subsys);
  3204. if (err) {
  3205. printk(KERN_ERR "Cannot register slab subsystem.\n");
  3206. return -ENOSYS;
  3207. }
  3208. slab_state = SYSFS;
  3209. list_for_each_entry(s, &slab_caches, list) {
  3210. err = sysfs_slab_add(s);
  3211. BUG_ON(err);
  3212. }
  3213. while (alias_list) {
  3214. struct saved_alias *al = alias_list;
  3215. alias_list = alias_list->next;
  3216. err = sysfs_slab_alias(al->s, al->name);
  3217. BUG_ON(err);
  3218. kfree(al);
  3219. }
  3220. resiliency_test();
  3221. return 0;
  3222. }
  3223. __initcall(slab_sysfs_init);
  3224. #endif