af_packet.c 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * PACKET - implements raw packet sockets.
  7. *
  8. * Authors: Ross Biro
  9. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  10. * Alan Cox, <gw4pts@gw4pts.ampr.org>
  11. *
  12. * Fixes:
  13. * Alan Cox : verify_area() now used correctly
  14. * Alan Cox : new skbuff lists, look ma no backlogs!
  15. * Alan Cox : tidied skbuff lists.
  16. * Alan Cox : Now uses generic datagram routines I
  17. * added. Also fixed the peek/read crash
  18. * from all old Linux datagram code.
  19. * Alan Cox : Uses the improved datagram code.
  20. * Alan Cox : Added NULL's for socket options.
  21. * Alan Cox : Re-commented the code.
  22. * Alan Cox : Use new kernel side addressing
  23. * Rob Janssen : Correct MTU usage.
  24. * Dave Platt : Counter leaks caused by incorrect
  25. * interrupt locking and some slightly
  26. * dubious gcc output. Can you read
  27. * compiler: it said _VOLATILE_
  28. * Richard Kooijman : Timestamp fixes.
  29. * Alan Cox : New buffers. Use sk->mac.raw.
  30. * Alan Cox : sendmsg/recvmsg support.
  31. * Alan Cox : Protocol setting support
  32. * Alexey Kuznetsov : Untied from IPv4 stack.
  33. * Cyrus Durgin : Fixed kerneld for kmod.
  34. * Michal Ostrowski : Module initialization cleanup.
  35. * Ulises Alonso : Frame number limit removal and
  36. * packet_set_ring memory leak.
  37. * Eric Biederman : Allow for > 8 byte hardware addresses.
  38. * The convention is that longer addresses
  39. * will simply extend the hardware address
  40. * byte arrays at the end of sockaddr_ll
  41. * and packet_mreq.
  42. * Johann Baudy : Added TX RING.
  43. * Chetan Loke : Implemented TPACKET_V3 block abstraction
  44. * layer.
  45. * Copyright (C) 2011, <lokec@ccs.neu.edu>
  46. *
  47. *
  48. * This program is free software; you can redistribute it and/or
  49. * modify it under the terms of the GNU General Public License
  50. * as published by the Free Software Foundation; either version
  51. * 2 of the License, or (at your option) any later version.
  52. *
  53. */
  54. #include <linux/types.h>
  55. #include <linux/mm.h>
  56. #include <linux/capability.h>
  57. #include <linux/fcntl.h>
  58. #include <linux/socket.h>
  59. #include <linux/in.h>
  60. #include <linux/inet.h>
  61. #include <linux/netdevice.h>
  62. #include <linux/if_packet.h>
  63. #include <linux/wireless.h>
  64. #include <linux/kernel.h>
  65. #include <linux/kmod.h>
  66. #include <linux/slab.h>
  67. #include <linux/vmalloc.h>
  68. #include <net/net_namespace.h>
  69. #include <net/ip.h>
  70. #include <net/protocol.h>
  71. #include <linux/skbuff.h>
  72. #include <net/sock.h>
  73. #include <linux/errno.h>
  74. #include <linux/timer.h>
  75. #include <asm/system.h>
  76. #include <asm/uaccess.h>
  77. #include <asm/ioctls.h>
  78. #include <asm/page.h>
  79. #include <asm/cacheflush.h>
  80. #include <asm/io.h>
  81. #include <linux/proc_fs.h>
  82. #include <linux/seq_file.h>
  83. #include <linux/poll.h>
  84. #include <linux/module.h>
  85. #include <linux/init.h>
  86. #include <linux/mutex.h>
  87. #include <linux/if_vlan.h>
  88. #include <linux/virtio_net.h>
  89. #include <linux/errqueue.h>
  90. #include <linux/net_tstamp.h>
  91. #ifdef CONFIG_INET
  92. #include <net/inet_common.h>
  93. #endif
  94. /*
  95. Assumptions:
  96. - if device has no dev->hard_header routine, it adds and removes ll header
  97. inside itself. In this case ll header is invisible outside of device,
  98. but higher levels still should reserve dev->hard_header_len.
  99. Some devices are enough clever to reallocate skb, when header
  100. will not fit to reserved space (tunnel), another ones are silly
  101. (PPP).
  102. - packet socket receives packets with pulled ll header,
  103. so that SOCK_RAW should push it back.
  104. On receive:
  105. -----------
  106. Incoming, dev->hard_header!=NULL
  107. mac_header -> ll header
  108. data -> data
  109. Outgoing, dev->hard_header!=NULL
  110. mac_header -> ll header
  111. data -> ll header
  112. Incoming, dev->hard_header==NULL
  113. mac_header -> UNKNOWN position. It is very likely, that it points to ll
  114. header. PPP makes it, that is wrong, because introduce
  115. assymetry between rx and tx paths.
  116. data -> data
  117. Outgoing, dev->hard_header==NULL
  118. mac_header -> data. ll header is still not built!
  119. data -> data
  120. Resume
  121. If dev->hard_header==NULL we are unlikely to restore sensible ll header.
  122. On transmit:
  123. ------------
  124. dev->hard_header != NULL
  125. mac_header -> ll header
  126. data -> ll header
  127. dev->hard_header == NULL (ll header is added by device, we cannot control it)
  128. mac_header -> data
  129. data -> data
  130. We should set nh.raw on output to correct posistion,
  131. packet classifier depends on it.
  132. */
  133. /* Private packet socket structures. */
  134. struct packet_mclist {
  135. struct packet_mclist *next;
  136. int ifindex;
  137. int count;
  138. unsigned short type;
  139. unsigned short alen;
  140. unsigned char addr[MAX_ADDR_LEN];
  141. };
  142. /* identical to struct packet_mreq except it has
  143. * a longer address field.
  144. */
  145. struct packet_mreq_max {
  146. int mr_ifindex;
  147. unsigned short mr_type;
  148. unsigned short mr_alen;
  149. unsigned char mr_address[MAX_ADDR_LEN];
  150. };
  151. static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
  152. int closing, int tx_ring);
  153. #define V3_ALIGNMENT (8)
  154. #define BLK_HDR_LEN (ALIGN(sizeof(struct tpacket_block_desc), V3_ALIGNMENT))
  155. #define BLK_PLUS_PRIV(sz_of_priv) \
  156. (BLK_HDR_LEN + ALIGN((sz_of_priv), V3_ALIGNMENT))
  157. /* kbdq - kernel block descriptor queue */
  158. struct tpacket_kbdq_core {
  159. struct pgv *pkbdq;
  160. unsigned int feature_req_word;
  161. unsigned int hdrlen;
  162. unsigned char reset_pending_on_curr_blk;
  163. unsigned char delete_blk_timer;
  164. unsigned short kactive_blk_num;
  165. unsigned short blk_sizeof_priv;
  166. /* last_kactive_blk_num:
  167. * trick to see if user-space has caught up
  168. * in order to avoid refreshing timer when every single pkt arrives.
  169. */
  170. unsigned short last_kactive_blk_num;
  171. char *pkblk_start;
  172. char *pkblk_end;
  173. int kblk_size;
  174. unsigned int knum_blocks;
  175. uint64_t knxt_seq_num;
  176. char *prev;
  177. char *nxt_offset;
  178. struct sk_buff *skb;
  179. atomic_t blk_fill_in_prog;
  180. /* Default is set to 8ms */
  181. #define DEFAULT_PRB_RETIRE_TOV (8)
  182. unsigned short retire_blk_tov;
  183. unsigned short version;
  184. unsigned long tov_in_jiffies;
  185. /* timer to retire an outstanding block */
  186. struct timer_list retire_blk_timer;
  187. };
  188. #define PGV_FROM_VMALLOC 1
  189. struct pgv {
  190. char *buffer;
  191. };
  192. struct packet_ring_buffer {
  193. struct pgv *pg_vec;
  194. unsigned int head;
  195. unsigned int frames_per_block;
  196. unsigned int frame_size;
  197. unsigned int frame_max;
  198. unsigned int pg_vec_order;
  199. unsigned int pg_vec_pages;
  200. unsigned int pg_vec_len;
  201. struct tpacket_kbdq_core prb_bdqc;
  202. atomic_t pending;
  203. };
  204. #define BLOCK_STATUS(x) ((x)->hdr.bh1.block_status)
  205. #define BLOCK_NUM_PKTS(x) ((x)->hdr.bh1.num_pkts)
  206. #define BLOCK_O2FP(x) ((x)->hdr.bh1.offset_to_first_pkt)
  207. #define BLOCK_LEN(x) ((x)->hdr.bh1.blk_len)
  208. #define BLOCK_SNUM(x) ((x)->hdr.bh1.seq_num)
  209. #define BLOCK_O2PRIV(x) ((x)->offset_to_priv)
  210. #define BLOCK_PRIV(x) ((void *)((char *)(x) + BLOCK_O2PRIV(x)))
  211. struct packet_sock;
  212. static int tpacket_snd(struct packet_sock *po, struct msghdr *msg);
  213. static void *packet_previous_frame(struct packet_sock *po,
  214. struct packet_ring_buffer *rb,
  215. int status);
  216. static void packet_increment_head(struct packet_ring_buffer *buff);
  217. static int prb_curr_blk_in_use(struct tpacket_kbdq_core *,
  218. struct tpacket_block_desc *);
  219. static void *prb_dispatch_next_block(struct tpacket_kbdq_core *,
  220. struct packet_sock *);
  221. static void prb_retire_current_block(struct tpacket_kbdq_core *,
  222. struct packet_sock *, unsigned int status);
  223. static int prb_queue_frozen(struct tpacket_kbdq_core *);
  224. static void prb_open_block(struct tpacket_kbdq_core *,
  225. struct tpacket_block_desc *);
  226. static void prb_retire_rx_blk_timer_expired(unsigned long);
  227. static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *);
  228. static void prb_init_blk_timer(struct packet_sock *,
  229. struct tpacket_kbdq_core *,
  230. void (*func) (unsigned long));
  231. static void prb_fill_rxhash(struct tpacket_kbdq_core *, struct tpacket3_hdr *);
  232. static void prb_clear_rxhash(struct tpacket_kbdq_core *,
  233. struct tpacket3_hdr *);
  234. static void prb_fill_vlan_info(struct tpacket_kbdq_core *,
  235. struct tpacket3_hdr *);
  236. static void packet_flush_mclist(struct sock *sk);
  237. struct packet_fanout;
  238. struct packet_sock {
  239. /* struct sock has to be the first member of packet_sock */
  240. struct sock sk;
  241. struct packet_fanout *fanout;
  242. struct tpacket_stats stats;
  243. union tpacket_stats_u stats_u;
  244. struct packet_ring_buffer rx_ring;
  245. struct packet_ring_buffer tx_ring;
  246. int copy_thresh;
  247. spinlock_t bind_lock;
  248. struct mutex pg_vec_lock;
  249. unsigned int running:1, /* prot_hook is attached*/
  250. auxdata:1,
  251. origdev:1,
  252. has_vnet_hdr:1;
  253. int ifindex; /* bound device */
  254. __be16 num;
  255. struct packet_mclist *mclist;
  256. atomic_t mapped;
  257. enum tpacket_versions tp_version;
  258. unsigned int tp_hdrlen;
  259. unsigned int tp_reserve;
  260. unsigned int tp_loss:1;
  261. unsigned int tp_tstamp;
  262. struct packet_type prot_hook ____cacheline_aligned_in_smp;
  263. };
  264. #define PACKET_FANOUT_MAX 256
  265. struct packet_fanout {
  266. #ifdef CONFIG_NET_NS
  267. struct net *net;
  268. #endif
  269. unsigned int num_members;
  270. u16 id;
  271. u8 type;
  272. u8 defrag;
  273. atomic_t rr_cur;
  274. struct list_head list;
  275. struct sock *arr[PACKET_FANOUT_MAX];
  276. spinlock_t lock;
  277. atomic_t sk_ref;
  278. struct packet_type prot_hook ____cacheline_aligned_in_smp;
  279. };
  280. struct packet_skb_cb {
  281. unsigned int origlen;
  282. union {
  283. struct sockaddr_pkt pkt;
  284. struct sockaddr_ll ll;
  285. } sa;
  286. };
  287. #define PACKET_SKB_CB(__skb) ((struct packet_skb_cb *)((__skb)->cb))
  288. #define GET_PBDQC_FROM_RB(x) ((struct tpacket_kbdq_core *)(&(x)->prb_bdqc))
  289. #define GET_PBLOCK_DESC(x, bid) \
  290. ((struct tpacket_block_desc *)((x)->pkbdq[(bid)].buffer))
  291. #define GET_CURR_PBLOCK_DESC_FROM_CORE(x) \
  292. ((struct tpacket_block_desc *)((x)->pkbdq[(x)->kactive_blk_num].buffer))
  293. #define GET_NEXT_PRB_BLK_NUM(x) \
  294. (((x)->kactive_blk_num < ((x)->knum_blocks-1)) ? \
  295. ((x)->kactive_blk_num+1) : 0)
  296. static struct packet_sock *pkt_sk(struct sock *sk)
  297. {
  298. return (struct packet_sock *)sk;
  299. }
  300. static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
  301. static void __fanout_link(struct sock *sk, struct packet_sock *po);
  302. /* register_prot_hook must be invoked with the po->bind_lock held,
  303. * or from a context in which asynchronous accesses to the packet
  304. * socket is not possible (packet_create()).
  305. */
  306. static void register_prot_hook(struct sock *sk)
  307. {
  308. struct packet_sock *po = pkt_sk(sk);
  309. if (!po->running) {
  310. if (po->fanout)
  311. __fanout_link(sk, po);
  312. else
  313. dev_add_pack(&po->prot_hook);
  314. sock_hold(sk);
  315. po->running = 1;
  316. }
  317. }
  318. /* {,__}unregister_prot_hook() must be invoked with the po->bind_lock
  319. * held. If the sync parameter is true, we will temporarily drop
  320. * the po->bind_lock and do a synchronize_net to make sure no
  321. * asynchronous packet processing paths still refer to the elements
  322. * of po->prot_hook. If the sync parameter is false, it is the
  323. * callers responsibility to take care of this.
  324. */
  325. static void __unregister_prot_hook(struct sock *sk, bool sync)
  326. {
  327. struct packet_sock *po = pkt_sk(sk);
  328. po->running = 0;
  329. if (po->fanout)
  330. __fanout_unlink(sk, po);
  331. else
  332. __dev_remove_pack(&po->prot_hook);
  333. __sock_put(sk);
  334. if (sync) {
  335. spin_unlock(&po->bind_lock);
  336. synchronize_net();
  337. spin_lock(&po->bind_lock);
  338. }
  339. }
  340. static void unregister_prot_hook(struct sock *sk, bool sync)
  341. {
  342. struct packet_sock *po = pkt_sk(sk);
  343. if (po->running)
  344. __unregister_prot_hook(sk, sync);
  345. }
  346. static inline __pure struct page *pgv_to_page(void *addr)
  347. {
  348. if (is_vmalloc_addr(addr))
  349. return vmalloc_to_page(addr);
  350. return virt_to_page(addr);
  351. }
  352. static void __packet_set_status(struct packet_sock *po, void *frame, int status)
  353. {
  354. union {
  355. struct tpacket_hdr *h1;
  356. struct tpacket2_hdr *h2;
  357. void *raw;
  358. } h;
  359. h.raw = frame;
  360. switch (po->tp_version) {
  361. case TPACKET_V1:
  362. h.h1->tp_status = status;
  363. flush_dcache_page(pgv_to_page(&h.h1->tp_status));
  364. break;
  365. case TPACKET_V2:
  366. h.h2->tp_status = status;
  367. flush_dcache_page(pgv_to_page(&h.h2->tp_status));
  368. break;
  369. case TPACKET_V3:
  370. default:
  371. WARN(1, "TPACKET version not supported.\n");
  372. BUG();
  373. }
  374. smp_wmb();
  375. }
  376. static int __packet_get_status(struct packet_sock *po, void *frame)
  377. {
  378. union {
  379. struct tpacket_hdr *h1;
  380. struct tpacket2_hdr *h2;
  381. void *raw;
  382. } h;
  383. smp_rmb();
  384. h.raw = frame;
  385. switch (po->tp_version) {
  386. case TPACKET_V1:
  387. flush_dcache_page(pgv_to_page(&h.h1->tp_status));
  388. return h.h1->tp_status;
  389. case TPACKET_V2:
  390. flush_dcache_page(pgv_to_page(&h.h2->tp_status));
  391. return h.h2->tp_status;
  392. case TPACKET_V3:
  393. default:
  394. WARN(1, "TPACKET version not supported.\n");
  395. BUG();
  396. return 0;
  397. }
  398. }
  399. static void *packet_lookup_frame(struct packet_sock *po,
  400. struct packet_ring_buffer *rb,
  401. unsigned int position,
  402. int status)
  403. {
  404. unsigned int pg_vec_pos, frame_offset;
  405. union {
  406. struct tpacket_hdr *h1;
  407. struct tpacket2_hdr *h2;
  408. void *raw;
  409. } h;
  410. pg_vec_pos = position / rb->frames_per_block;
  411. frame_offset = position % rb->frames_per_block;
  412. h.raw = rb->pg_vec[pg_vec_pos].buffer +
  413. (frame_offset * rb->frame_size);
  414. if (status != __packet_get_status(po, h.raw))
  415. return NULL;
  416. return h.raw;
  417. }
  418. static void *packet_current_frame(struct packet_sock *po,
  419. struct packet_ring_buffer *rb,
  420. int status)
  421. {
  422. return packet_lookup_frame(po, rb, rb->head, status);
  423. }
  424. static void prb_del_retire_blk_timer(struct tpacket_kbdq_core *pkc)
  425. {
  426. del_timer_sync(&pkc->retire_blk_timer);
  427. }
  428. static void prb_shutdown_retire_blk_timer(struct packet_sock *po,
  429. int tx_ring,
  430. struct sk_buff_head *rb_queue)
  431. {
  432. struct tpacket_kbdq_core *pkc;
  433. pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
  434. spin_lock(&rb_queue->lock);
  435. pkc->delete_blk_timer = 1;
  436. spin_unlock(&rb_queue->lock);
  437. prb_del_retire_blk_timer(pkc);
  438. }
  439. static void prb_init_blk_timer(struct packet_sock *po,
  440. struct tpacket_kbdq_core *pkc,
  441. void (*func) (unsigned long))
  442. {
  443. init_timer(&pkc->retire_blk_timer);
  444. pkc->retire_blk_timer.data = (long)po;
  445. pkc->retire_blk_timer.function = func;
  446. pkc->retire_blk_timer.expires = jiffies;
  447. }
  448. static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
  449. {
  450. struct tpacket_kbdq_core *pkc;
  451. if (tx_ring)
  452. BUG();
  453. pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
  454. prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
  455. }
  456. static int prb_calc_retire_blk_tmo(struct packet_sock *po,
  457. int blk_size_in_bytes)
  458. {
  459. struct net_device *dev;
  460. unsigned int mbits = 0, msec = 0, div = 0, tmo = 0;
  461. struct ethtool_cmd ecmd;
  462. int err;
  463. rtnl_lock();
  464. dev = __dev_get_by_index(sock_net(&po->sk), po->ifindex);
  465. if (unlikely(!dev)) {
  466. rtnl_unlock();
  467. return DEFAULT_PRB_RETIRE_TOV;
  468. }
  469. err = __ethtool_get_settings(dev, &ecmd);
  470. rtnl_unlock();
  471. if (!err) {
  472. switch (ecmd.speed) {
  473. case SPEED_10000:
  474. msec = 1;
  475. div = 10000/1000;
  476. break;
  477. case SPEED_1000:
  478. msec = 1;
  479. div = 1000/1000;
  480. break;
  481. /*
  482. * If the link speed is so slow you don't really
  483. * need to worry about perf anyways
  484. */
  485. case SPEED_100:
  486. case SPEED_10:
  487. default:
  488. return DEFAULT_PRB_RETIRE_TOV;
  489. }
  490. }
  491. mbits = (blk_size_in_bytes * 8) / (1024 * 1024);
  492. if (div)
  493. mbits /= div;
  494. tmo = mbits * msec;
  495. if (div)
  496. return tmo+1;
  497. return tmo;
  498. }
  499. static void prb_init_ft_ops(struct tpacket_kbdq_core *p1,
  500. union tpacket_req_u *req_u)
  501. {
  502. p1->feature_req_word = req_u->req3.tp_feature_req_word;
  503. }
  504. static void init_prb_bdqc(struct packet_sock *po,
  505. struct packet_ring_buffer *rb,
  506. struct pgv *pg_vec,
  507. union tpacket_req_u *req_u, int tx_ring)
  508. {
  509. struct tpacket_kbdq_core *p1 = &rb->prb_bdqc;
  510. struct tpacket_block_desc *pbd;
  511. memset(p1, 0x0, sizeof(*p1));
  512. p1->knxt_seq_num = 1;
  513. p1->pkbdq = pg_vec;
  514. pbd = (struct tpacket_block_desc *)pg_vec[0].buffer;
  515. p1->pkblk_start = (char *)pg_vec[0].buffer;
  516. p1->kblk_size = req_u->req3.tp_block_size;
  517. p1->knum_blocks = req_u->req3.tp_block_nr;
  518. p1->hdrlen = po->tp_hdrlen;
  519. p1->version = po->tp_version;
  520. p1->last_kactive_blk_num = 0;
  521. po->stats_u.stats3.tp_freeze_q_cnt = 0;
  522. if (req_u->req3.tp_retire_blk_tov)
  523. p1->retire_blk_tov = req_u->req3.tp_retire_blk_tov;
  524. else
  525. p1->retire_blk_tov = prb_calc_retire_blk_tmo(po,
  526. req_u->req3.tp_block_size);
  527. p1->tov_in_jiffies = msecs_to_jiffies(p1->retire_blk_tov);
  528. p1->blk_sizeof_priv = req_u->req3.tp_sizeof_priv;
  529. prb_init_ft_ops(p1, req_u);
  530. prb_setup_retire_blk_timer(po, tx_ring);
  531. prb_open_block(p1, pbd);
  532. }
  533. /* Do NOT update the last_blk_num first.
  534. * Assumes sk_buff_head lock is held.
  535. */
  536. static void _prb_refresh_rx_retire_blk_timer(struct tpacket_kbdq_core *pkc)
  537. {
  538. mod_timer(&pkc->retire_blk_timer,
  539. jiffies + pkc->tov_in_jiffies);
  540. pkc->last_kactive_blk_num = pkc->kactive_blk_num;
  541. }
  542. /*
  543. * Timer logic:
  544. * 1) We refresh the timer only when we open a block.
  545. * By doing this we don't waste cycles refreshing the timer
  546. * on packet-by-packet basis.
  547. *
  548. * With a 1MB block-size, on a 1Gbps line, it will take
  549. * i) ~8 ms to fill a block + ii) memcpy etc.
  550. * In this cut we are not accounting for the memcpy time.
  551. *
  552. * So, if the user sets the 'tmo' to 10ms then the timer
  553. * will never fire while the block is still getting filled
  554. * (which is what we want). However, the user could choose
  555. * to close a block early and that's fine.
  556. *
  557. * But when the timer does fire, we check whether or not to refresh it.
  558. * Since the tmo granularity is in msecs, it is not too expensive
  559. * to refresh the timer, lets say every '8' msecs.
  560. * Either the user can set the 'tmo' or we can derive it based on
  561. * a) line-speed and b) block-size.
  562. * prb_calc_retire_blk_tmo() calculates the tmo.
  563. *
  564. */
  565. static void prb_retire_rx_blk_timer_expired(unsigned long data)
  566. {
  567. struct packet_sock *po = (struct packet_sock *)data;
  568. struct tpacket_kbdq_core *pkc = &po->rx_ring.prb_bdqc;
  569. unsigned int frozen;
  570. struct tpacket_block_desc *pbd;
  571. spin_lock(&po->sk.sk_receive_queue.lock);
  572. frozen = prb_queue_frozen(pkc);
  573. pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
  574. if (unlikely(pkc->delete_blk_timer))
  575. goto out;
  576. /* We only need to plug the race when the block is partially filled.
  577. * tpacket_rcv:
  578. * lock(); increment BLOCK_NUM_PKTS; unlock()
  579. * copy_bits() is in progress ...
  580. * timer fires on other cpu:
  581. * we can't retire the current block because copy_bits
  582. * is in progress.
  583. *
  584. */
  585. if (BLOCK_NUM_PKTS(pbd)) {
  586. while (atomic_read(&pkc->blk_fill_in_prog)) {
  587. /* Waiting for skb_copy_bits to finish... */
  588. cpu_relax();
  589. }
  590. }
  591. if (pkc->last_kactive_blk_num == pkc->kactive_blk_num) {
  592. if (!frozen) {
  593. prb_retire_current_block(pkc, po, TP_STATUS_BLK_TMO);
  594. if (!prb_dispatch_next_block(pkc, po))
  595. goto refresh_timer;
  596. else
  597. goto out;
  598. } else {
  599. /* Case 1. Queue was frozen because user-space was
  600. * lagging behind.
  601. */
  602. if (prb_curr_blk_in_use(pkc, pbd)) {
  603. /*
  604. * Ok, user-space is still behind.
  605. * So just refresh the timer.
  606. */
  607. goto refresh_timer;
  608. } else {
  609. /* Case 2. queue was frozen,user-space caught up,
  610. * now the link went idle && the timer fired.
  611. * We don't have a block to close.So we open this
  612. * block and restart the timer.
  613. * opening a block thaws the queue,restarts timer
  614. * Thawing/timer-refresh is a side effect.
  615. */
  616. prb_open_block(pkc, pbd);
  617. goto out;
  618. }
  619. }
  620. }
  621. refresh_timer:
  622. _prb_refresh_rx_retire_blk_timer(pkc);
  623. out:
  624. spin_unlock(&po->sk.sk_receive_queue.lock);
  625. }
  626. static void prb_flush_block(struct tpacket_kbdq_core *pkc1,
  627. struct tpacket_block_desc *pbd1, __u32 status)
  628. {
  629. /* Flush everything minus the block header */
  630. #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
  631. u8 *start, *end;
  632. start = (u8 *)pbd1;
  633. /* Skip the block header(we know header WILL fit in 4K) */
  634. start += PAGE_SIZE;
  635. end = (u8 *)PAGE_ALIGN((unsigned long)pkc1->pkblk_end);
  636. for (; start < end; start += PAGE_SIZE)
  637. flush_dcache_page(pgv_to_page(start));
  638. smp_wmb();
  639. #endif
  640. /* Now update the block status. */
  641. BLOCK_STATUS(pbd1) = status;
  642. /* Flush the block header */
  643. #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
  644. start = (u8 *)pbd1;
  645. flush_dcache_page(pgv_to_page(start));
  646. smp_wmb();
  647. #endif
  648. }
  649. /*
  650. * Side effect:
  651. *
  652. * 1) flush the block
  653. * 2) Increment active_blk_num
  654. *
  655. * Note:We DONT refresh the timer on purpose.
  656. * Because almost always the next block will be opened.
  657. */
  658. static void prb_close_block(struct tpacket_kbdq_core *pkc1,
  659. struct tpacket_block_desc *pbd1,
  660. struct packet_sock *po, unsigned int stat)
  661. {
  662. __u32 status = TP_STATUS_USER | stat;
  663. struct tpacket3_hdr *last_pkt;
  664. struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
  665. if (po->stats.tp_drops)
  666. status |= TP_STATUS_LOSING;
  667. last_pkt = (struct tpacket3_hdr *)pkc1->prev;
  668. last_pkt->tp_next_offset = 0;
  669. /* Get the ts of the last pkt */
  670. if (BLOCK_NUM_PKTS(pbd1)) {
  671. h1->ts_last_pkt.ts_sec = last_pkt->tp_sec;
  672. h1->ts_last_pkt.ts_nsec = last_pkt->tp_nsec;
  673. } else {
  674. /* Ok, we tmo'd - so get the current time */
  675. struct timespec ts;
  676. getnstimeofday(&ts);
  677. h1->ts_last_pkt.ts_sec = ts.tv_sec;
  678. h1->ts_last_pkt.ts_nsec = ts.tv_nsec;
  679. }
  680. smp_wmb();
  681. /* Flush the block */
  682. prb_flush_block(pkc1, pbd1, status);
  683. pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
  684. }
  685. static void prb_thaw_queue(struct tpacket_kbdq_core *pkc)
  686. {
  687. pkc->reset_pending_on_curr_blk = 0;
  688. }
  689. /*
  690. * Side effect of opening a block:
  691. *
  692. * 1) prb_queue is thawed.
  693. * 2) retire_blk_timer is refreshed.
  694. *
  695. */
  696. static void prb_open_block(struct tpacket_kbdq_core *pkc1,
  697. struct tpacket_block_desc *pbd1)
  698. {
  699. struct timespec ts;
  700. struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
  701. smp_rmb();
  702. if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd1))) {
  703. /* We could have just memset this but we will lose the
  704. * flexibility of making the priv area sticky
  705. */
  706. BLOCK_SNUM(pbd1) = pkc1->knxt_seq_num++;
  707. BLOCK_NUM_PKTS(pbd1) = 0;
  708. BLOCK_LEN(pbd1) = BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
  709. getnstimeofday(&ts);
  710. h1->ts_first_pkt.ts_sec = ts.tv_sec;
  711. h1->ts_first_pkt.ts_nsec = ts.tv_nsec;
  712. pkc1->pkblk_start = (char *)pbd1;
  713. pkc1->nxt_offset = (char *)(pkc1->pkblk_start +
  714. BLK_PLUS_PRIV(pkc1->blk_sizeof_priv));
  715. BLOCK_O2FP(pbd1) = (__u32)BLK_PLUS_PRIV(pkc1->blk_sizeof_priv);
  716. BLOCK_O2PRIV(pbd1) = BLK_HDR_LEN;
  717. pbd1->version = pkc1->version;
  718. pkc1->prev = pkc1->nxt_offset;
  719. pkc1->pkblk_end = pkc1->pkblk_start + pkc1->kblk_size;
  720. prb_thaw_queue(pkc1);
  721. _prb_refresh_rx_retire_blk_timer(pkc1);
  722. smp_wmb();
  723. return;
  724. }
  725. WARN(1, "ERROR block:%p is NOT FREE status:%d kactive_blk_num:%d\n",
  726. pbd1, BLOCK_STATUS(pbd1), pkc1->kactive_blk_num);
  727. dump_stack();
  728. BUG();
  729. }
  730. /*
  731. * Queue freeze logic:
  732. * 1) Assume tp_block_nr = 8 blocks.
  733. * 2) At time 't0', user opens Rx ring.
  734. * 3) Some time past 't0', kernel starts filling blocks starting from 0 .. 7
  735. * 4) user-space is either sleeping or processing block '0'.
  736. * 5) tpacket_rcv is currently filling block '7', since there is no space left,
  737. * it will close block-7,loop around and try to fill block '0'.
  738. * call-flow:
  739. * __packet_lookup_frame_in_block
  740. * prb_retire_current_block()
  741. * prb_dispatch_next_block()
  742. * |->(BLOCK_STATUS == USER) evaluates to true
  743. * 5.1) Since block-0 is currently in-use, we just freeze the queue.
  744. * 6) Now there are two cases:
  745. * 6.1) Link goes idle right after the queue is frozen.
  746. * But remember, the last open_block() refreshed the timer.
  747. * When this timer expires,it will refresh itself so that we can
  748. * re-open block-0 in near future.
  749. * 6.2) Link is busy and keeps on receiving packets. This is a simple
  750. * case and __packet_lookup_frame_in_block will check if block-0
  751. * is free and can now be re-used.
  752. */
  753. static void prb_freeze_queue(struct tpacket_kbdq_core *pkc,
  754. struct packet_sock *po)
  755. {
  756. pkc->reset_pending_on_curr_blk = 1;
  757. po->stats_u.stats3.tp_freeze_q_cnt++;
  758. }
  759. #define TOTAL_PKT_LEN_INCL_ALIGN(length) (ALIGN((length), V3_ALIGNMENT))
  760. /*
  761. * If the next block is free then we will dispatch it
  762. * and return a good offset.
  763. * Else, we will freeze the queue.
  764. * So, caller must check the return value.
  765. */
  766. static void *prb_dispatch_next_block(struct tpacket_kbdq_core *pkc,
  767. struct packet_sock *po)
  768. {
  769. struct tpacket_block_desc *pbd;
  770. smp_rmb();
  771. /* 1. Get current block num */
  772. pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
  773. /* 2. If this block is currently in_use then freeze the queue */
  774. if (TP_STATUS_USER & BLOCK_STATUS(pbd)) {
  775. prb_freeze_queue(pkc, po);
  776. return NULL;
  777. }
  778. /*
  779. * 3.
  780. * open this block and return the offset where the first packet
  781. * needs to get stored.
  782. */
  783. prb_open_block(pkc, pbd);
  784. return (void *)pkc->nxt_offset;
  785. }
  786. static void prb_retire_current_block(struct tpacket_kbdq_core *pkc,
  787. struct packet_sock *po, unsigned int status)
  788. {
  789. struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
  790. /* retire/close the current block */
  791. if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) {
  792. /*
  793. * Plug the case where copy_bits() is in progress on
  794. * cpu-0 and tpacket_rcv() got invoked on cpu-1, didn't
  795. * have space to copy the pkt in the current block and
  796. * called prb_retire_current_block()
  797. *
  798. * We don't need to worry about the TMO case because
  799. * the timer-handler already handled this case.
  800. */
  801. if (!(status & TP_STATUS_BLK_TMO)) {
  802. while (atomic_read(&pkc->blk_fill_in_prog)) {
  803. /* Waiting for skb_copy_bits to finish... */
  804. cpu_relax();
  805. }
  806. }
  807. prb_close_block(pkc, pbd, po, status);
  808. return;
  809. }
  810. WARN(1, "ERROR-pbd[%d]:%p\n", pkc->kactive_blk_num, pbd);
  811. dump_stack();
  812. BUG();
  813. }
  814. static int prb_curr_blk_in_use(struct tpacket_kbdq_core *pkc,
  815. struct tpacket_block_desc *pbd)
  816. {
  817. return TP_STATUS_USER & BLOCK_STATUS(pbd);
  818. }
  819. static int prb_queue_frozen(struct tpacket_kbdq_core *pkc)
  820. {
  821. return pkc->reset_pending_on_curr_blk;
  822. }
  823. static void prb_clear_blk_fill_status(struct packet_ring_buffer *rb)
  824. {
  825. struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
  826. atomic_dec(&pkc->blk_fill_in_prog);
  827. }
  828. static void prb_fill_rxhash(struct tpacket_kbdq_core *pkc,
  829. struct tpacket3_hdr *ppd)
  830. {
  831. ppd->hv1.tp_rxhash = skb_get_rxhash(pkc->skb);
  832. }
  833. static void prb_clear_rxhash(struct tpacket_kbdq_core *pkc,
  834. struct tpacket3_hdr *ppd)
  835. {
  836. ppd->hv1.tp_rxhash = 0;
  837. }
  838. static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
  839. struct tpacket3_hdr *ppd)
  840. {
  841. if (vlan_tx_tag_present(pkc->skb)) {
  842. ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
  843. ppd->tp_status = TP_STATUS_VLAN_VALID;
  844. } else {
  845. ppd->hv1.tp_vlan_tci = ppd->tp_status = 0;
  846. }
  847. }
  848. static void prb_run_all_ft_ops(struct tpacket_kbdq_core *pkc,
  849. struct tpacket3_hdr *ppd)
  850. {
  851. prb_fill_vlan_info(pkc, ppd);
  852. if (pkc->feature_req_word & TP_FT_REQ_FILL_RXHASH)
  853. prb_fill_rxhash(pkc, ppd);
  854. else
  855. prb_clear_rxhash(pkc, ppd);
  856. }
  857. static void prb_fill_curr_block(char *curr,
  858. struct tpacket_kbdq_core *pkc,
  859. struct tpacket_block_desc *pbd,
  860. unsigned int len)
  861. {
  862. struct tpacket3_hdr *ppd;
  863. ppd = (struct tpacket3_hdr *)curr;
  864. ppd->tp_next_offset = TOTAL_PKT_LEN_INCL_ALIGN(len);
  865. pkc->prev = curr;
  866. pkc->nxt_offset += TOTAL_PKT_LEN_INCL_ALIGN(len);
  867. BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len);
  868. BLOCK_NUM_PKTS(pbd) += 1;
  869. atomic_inc(&pkc->blk_fill_in_prog);
  870. prb_run_all_ft_ops(pkc, ppd);
  871. }
  872. /* Assumes caller has the sk->rx_queue.lock */
  873. static void *__packet_lookup_frame_in_block(struct packet_sock *po,
  874. struct sk_buff *skb,
  875. int status,
  876. unsigned int len
  877. )
  878. {
  879. struct tpacket_kbdq_core *pkc;
  880. struct tpacket_block_desc *pbd;
  881. char *curr, *end;
  882. pkc = GET_PBDQC_FROM_RB(((struct packet_ring_buffer *)&po->rx_ring));
  883. pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
  884. /* Queue is frozen when user space is lagging behind */
  885. if (prb_queue_frozen(pkc)) {
  886. /*
  887. * Check if that last block which caused the queue to freeze,
  888. * is still in_use by user-space.
  889. */
  890. if (prb_curr_blk_in_use(pkc, pbd)) {
  891. /* Can't record this packet */
  892. return NULL;
  893. } else {
  894. /*
  895. * Ok, the block was released by user-space.
  896. * Now let's open that block.
  897. * opening a block also thaws the queue.
  898. * Thawing is a side effect.
  899. */
  900. prb_open_block(pkc, pbd);
  901. }
  902. }
  903. smp_mb();
  904. curr = pkc->nxt_offset;
  905. pkc->skb = skb;
  906. end = (char *) ((char *)pbd + pkc->kblk_size);
  907. /* first try the current block */
  908. if (curr+TOTAL_PKT_LEN_INCL_ALIGN(len) < end) {
  909. prb_fill_curr_block(curr, pkc, pbd, len);
  910. return (void *)curr;
  911. }
  912. /* Ok, close the current block */
  913. prb_retire_current_block(pkc, po, 0);
  914. /* Now, try to dispatch the next block */
  915. curr = (char *)prb_dispatch_next_block(pkc, po);
  916. if (curr) {
  917. pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc);
  918. prb_fill_curr_block(curr, pkc, pbd, len);
  919. return (void *)curr;
  920. }
  921. /*
  922. * No free blocks are available.user_space hasn't caught up yet.
  923. * Queue was just frozen and now this packet will get dropped.
  924. */
  925. return NULL;
  926. }
  927. static void *packet_current_rx_frame(struct packet_sock *po,
  928. struct sk_buff *skb,
  929. int status, unsigned int len)
  930. {
  931. char *curr = NULL;
  932. switch (po->tp_version) {
  933. case TPACKET_V1:
  934. case TPACKET_V2:
  935. curr = packet_lookup_frame(po, &po->rx_ring,
  936. po->rx_ring.head, status);
  937. return curr;
  938. case TPACKET_V3:
  939. return __packet_lookup_frame_in_block(po, skb, status, len);
  940. default:
  941. WARN(1, "TPACKET version not supported\n");
  942. BUG();
  943. return 0;
  944. }
  945. }
  946. static void *prb_lookup_block(struct packet_sock *po,
  947. struct packet_ring_buffer *rb,
  948. unsigned int previous,
  949. int status)
  950. {
  951. struct tpacket_kbdq_core *pkc = GET_PBDQC_FROM_RB(rb);
  952. struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, previous);
  953. if (status != BLOCK_STATUS(pbd))
  954. return NULL;
  955. return pbd;
  956. }
  957. static int prb_previous_blk_num(struct packet_ring_buffer *rb)
  958. {
  959. unsigned int prev;
  960. if (rb->prb_bdqc.kactive_blk_num)
  961. prev = rb->prb_bdqc.kactive_blk_num-1;
  962. else
  963. prev = rb->prb_bdqc.knum_blocks-1;
  964. return prev;
  965. }
  966. /* Assumes caller has held the rx_queue.lock */
  967. static void *__prb_previous_block(struct packet_sock *po,
  968. struct packet_ring_buffer *rb,
  969. int status)
  970. {
  971. unsigned int previous = prb_previous_blk_num(rb);
  972. return prb_lookup_block(po, rb, previous, status);
  973. }
  974. static void *packet_previous_rx_frame(struct packet_sock *po,
  975. struct packet_ring_buffer *rb,
  976. int status)
  977. {
  978. if (po->tp_version <= TPACKET_V2)
  979. return packet_previous_frame(po, rb, status);
  980. return __prb_previous_block(po, rb, status);
  981. }
  982. static void packet_increment_rx_head(struct packet_sock *po,
  983. struct packet_ring_buffer *rb)
  984. {
  985. switch (po->tp_version) {
  986. case TPACKET_V1:
  987. case TPACKET_V2:
  988. return packet_increment_head(rb);
  989. case TPACKET_V3:
  990. default:
  991. WARN(1, "TPACKET version not supported.\n");
  992. BUG();
  993. return;
  994. }
  995. }
  996. static void *packet_previous_frame(struct packet_sock *po,
  997. struct packet_ring_buffer *rb,
  998. int status)
  999. {
  1000. unsigned int previous = rb->head ? rb->head - 1 : rb->frame_max;
  1001. return packet_lookup_frame(po, rb, previous, status);
  1002. }
  1003. static void packet_increment_head(struct packet_ring_buffer *buff)
  1004. {
  1005. buff->head = buff->head != buff->frame_max ? buff->head+1 : 0;
  1006. }
  1007. static void packet_sock_destruct(struct sock *sk)
  1008. {
  1009. skb_queue_purge(&sk->sk_error_queue);
  1010. WARN_ON(atomic_read(&sk->sk_rmem_alloc));
  1011. WARN_ON(atomic_read(&sk->sk_wmem_alloc));
  1012. if (!sock_flag(sk, SOCK_DEAD)) {
  1013. pr_err("Attempt to release alive packet socket: %p\n", sk);
  1014. return;
  1015. }
  1016. sk_refcnt_debug_dec(sk);
  1017. }
  1018. static int fanout_rr_next(struct packet_fanout *f, unsigned int num)
  1019. {
  1020. int x = atomic_read(&f->rr_cur) + 1;
  1021. if (x >= num)
  1022. x = 0;
  1023. return x;
  1024. }
  1025. static struct sock *fanout_demux_hash(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
  1026. {
  1027. u32 idx, hash = skb->rxhash;
  1028. idx = ((u64)hash * num) >> 32;
  1029. return f->arr[idx];
  1030. }
  1031. static struct sock *fanout_demux_lb(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
  1032. {
  1033. int cur, old;
  1034. cur = atomic_read(&f->rr_cur);
  1035. while ((old = atomic_cmpxchg(&f->rr_cur, cur,
  1036. fanout_rr_next(f, num))) != cur)
  1037. cur = old;
  1038. return f->arr[cur];
  1039. }
  1040. static struct sock *fanout_demux_cpu(struct packet_fanout *f, struct sk_buff *skb, unsigned int num)
  1041. {
  1042. unsigned int cpu = smp_processor_id();
  1043. return f->arr[cpu % num];
  1044. }
  1045. static int packet_rcv_fanout(struct sk_buff *skb, struct net_device *dev,
  1046. struct packet_type *pt, struct net_device *orig_dev)
  1047. {
  1048. struct packet_fanout *f = pt->af_packet_priv;
  1049. unsigned int num = f->num_members;
  1050. struct packet_sock *po;
  1051. struct sock *sk;
  1052. if (!net_eq(dev_net(dev), read_pnet(&f->net)) ||
  1053. !num) {
  1054. kfree_skb(skb);
  1055. return 0;
  1056. }
  1057. switch (f->type) {
  1058. case PACKET_FANOUT_HASH:
  1059. default:
  1060. if (f->defrag) {
  1061. skb = ip_check_defrag(skb, IP_DEFRAG_AF_PACKET);
  1062. if (!skb)
  1063. return 0;
  1064. }
  1065. skb_get_rxhash(skb);
  1066. sk = fanout_demux_hash(f, skb, num);
  1067. break;
  1068. case PACKET_FANOUT_LB:
  1069. sk = fanout_demux_lb(f, skb, num);
  1070. break;
  1071. case PACKET_FANOUT_CPU:
  1072. sk = fanout_demux_cpu(f, skb, num);
  1073. break;
  1074. }
  1075. po = pkt_sk(sk);
  1076. return po->prot_hook.func(skb, dev, &po->prot_hook, orig_dev);
  1077. }
  1078. static DEFINE_MUTEX(fanout_mutex);
  1079. static LIST_HEAD(fanout_list);
  1080. static void __fanout_link(struct sock *sk, struct packet_sock *po)
  1081. {
  1082. struct packet_fanout *f = po->fanout;
  1083. spin_lock(&f->lock);
  1084. f->arr[f->num_members] = sk;
  1085. smp_wmb();
  1086. f->num_members++;
  1087. spin_unlock(&f->lock);
  1088. }
  1089. static void __fanout_unlink(struct sock *sk, struct packet_sock *po)
  1090. {
  1091. struct packet_fanout *f = po->fanout;
  1092. int i;
  1093. spin_lock(&f->lock);
  1094. for (i = 0; i < f->num_members; i++) {
  1095. if (f->arr[i] == sk)
  1096. break;
  1097. }
  1098. BUG_ON(i >= f->num_members);
  1099. f->arr[i] = f->arr[f->num_members - 1];
  1100. f->num_members--;
  1101. spin_unlock(&f->lock);
  1102. }
  1103. static int fanout_add(struct sock *sk, u16 id, u16 type_flags)
  1104. {
  1105. struct packet_sock *po = pkt_sk(sk);
  1106. struct packet_fanout *f, *match;
  1107. u8 type = type_flags & 0xff;
  1108. u8 defrag = (type_flags & PACKET_FANOUT_FLAG_DEFRAG) ? 1 : 0;
  1109. int err;
  1110. switch (type) {
  1111. case PACKET_FANOUT_HASH:
  1112. case PACKET_FANOUT_LB:
  1113. case PACKET_FANOUT_CPU:
  1114. break;
  1115. default:
  1116. return -EINVAL;
  1117. }
  1118. if (!po->running)
  1119. return -EINVAL;
  1120. if (po->fanout)
  1121. return -EALREADY;
  1122. mutex_lock(&fanout_mutex);
  1123. match = NULL;
  1124. list_for_each_entry(f, &fanout_list, list) {
  1125. if (f->id == id &&
  1126. read_pnet(&f->net) == sock_net(sk)) {
  1127. match = f;
  1128. break;
  1129. }
  1130. }
  1131. err = -EINVAL;
  1132. if (match && match->defrag != defrag)
  1133. goto out;
  1134. if (!match) {
  1135. err = -ENOMEM;
  1136. match = kzalloc(sizeof(*match), GFP_KERNEL);
  1137. if (!match)
  1138. goto out;
  1139. write_pnet(&match->net, sock_net(sk));
  1140. match->id = id;
  1141. match->type = type;
  1142. match->defrag = defrag;
  1143. atomic_set(&match->rr_cur, 0);
  1144. INIT_LIST_HEAD(&match->list);
  1145. spin_lock_init(&match->lock);
  1146. atomic_set(&match->sk_ref, 0);
  1147. match->prot_hook.type = po->prot_hook.type;
  1148. match->prot_hook.dev = po->prot_hook.dev;
  1149. match->prot_hook.func = packet_rcv_fanout;
  1150. match->prot_hook.af_packet_priv = match;
  1151. dev_add_pack(&match->prot_hook);
  1152. list_add(&match->list, &fanout_list);
  1153. }
  1154. err = -EINVAL;
  1155. if (match->type == type &&
  1156. match->prot_hook.type == po->prot_hook.type &&
  1157. match->prot_hook.dev == po->prot_hook.dev) {
  1158. err = -ENOSPC;
  1159. if (atomic_read(&match->sk_ref) < PACKET_FANOUT_MAX) {
  1160. __dev_remove_pack(&po->prot_hook);
  1161. po->fanout = match;
  1162. atomic_inc(&match->sk_ref);
  1163. __fanout_link(sk, po);
  1164. err = 0;
  1165. }
  1166. }
  1167. out:
  1168. mutex_unlock(&fanout_mutex);
  1169. return err;
  1170. }
  1171. static void fanout_release(struct sock *sk)
  1172. {
  1173. struct packet_sock *po = pkt_sk(sk);
  1174. struct packet_fanout *f;
  1175. f = po->fanout;
  1176. if (!f)
  1177. return;
  1178. po->fanout = NULL;
  1179. mutex_lock(&fanout_mutex);
  1180. if (atomic_dec_and_test(&f->sk_ref)) {
  1181. list_del(&f->list);
  1182. dev_remove_pack(&f->prot_hook);
  1183. kfree(f);
  1184. }
  1185. mutex_unlock(&fanout_mutex);
  1186. }
  1187. static const struct proto_ops packet_ops;
  1188. static const struct proto_ops packet_ops_spkt;
  1189. static int packet_rcv_spkt(struct sk_buff *skb, struct net_device *dev,
  1190. struct packet_type *pt, struct net_device *orig_dev)
  1191. {
  1192. struct sock *sk;
  1193. struct sockaddr_pkt *spkt;
  1194. /*
  1195. * When we registered the protocol we saved the socket in the data
  1196. * field for just this event.
  1197. */
  1198. sk = pt->af_packet_priv;
  1199. /*
  1200. * Yank back the headers [hope the device set this
  1201. * right or kerboom...]
  1202. *
  1203. * Incoming packets have ll header pulled,
  1204. * push it back.
  1205. *
  1206. * For outgoing ones skb->data == skb_mac_header(skb)
  1207. * so that this procedure is noop.
  1208. */
  1209. if (skb->pkt_type == PACKET_LOOPBACK)
  1210. goto out;
  1211. if (!net_eq(dev_net(dev), sock_net(sk)))
  1212. goto out;
  1213. skb = skb_share_check(skb, GFP_ATOMIC);
  1214. if (skb == NULL)
  1215. goto oom;
  1216. /* drop any routing info */
  1217. skb_dst_drop(skb);
  1218. /* drop conntrack reference */
  1219. nf_reset(skb);
  1220. spkt = &PACKET_SKB_CB(skb)->sa.pkt;
  1221. skb_push(skb, skb->data - skb_mac_header(skb));
  1222. /*
  1223. * The SOCK_PACKET socket receives _all_ frames.
  1224. */
  1225. spkt->spkt_family = dev->type;
  1226. strlcpy(spkt->spkt_device, dev->name, sizeof(spkt->spkt_device));
  1227. spkt->spkt_protocol = skb->protocol;
  1228. /*
  1229. * Charge the memory to the socket. This is done specifically
  1230. * to prevent sockets using all the memory up.
  1231. */
  1232. if (sock_queue_rcv_skb(sk, skb) == 0)
  1233. return 0;
  1234. out:
  1235. kfree_skb(skb);
  1236. oom:
  1237. return 0;
  1238. }
  1239. /*
  1240. * Output a raw packet to a device layer. This bypasses all the other
  1241. * protocol layers and you must therefore supply it with a complete frame
  1242. */
  1243. static int packet_sendmsg_spkt(struct kiocb *iocb, struct socket *sock,
  1244. struct msghdr *msg, size_t len)
  1245. {
  1246. struct sock *sk = sock->sk;
  1247. struct sockaddr_pkt *saddr = (struct sockaddr_pkt *)msg->msg_name;
  1248. struct sk_buff *skb = NULL;
  1249. struct net_device *dev;
  1250. __be16 proto = 0;
  1251. int err;
  1252. /*
  1253. * Get and verify the address.
  1254. */
  1255. if (saddr) {
  1256. if (msg->msg_namelen < sizeof(struct sockaddr))
  1257. return -EINVAL;
  1258. if (msg->msg_namelen == sizeof(struct sockaddr_pkt))
  1259. proto = saddr->spkt_protocol;
  1260. } else
  1261. return -ENOTCONN; /* SOCK_PACKET must be sent giving an address */
  1262. /*
  1263. * Find the device first to size check it
  1264. */
  1265. saddr->spkt_device[13] = 0;
  1266. retry:
  1267. rcu_read_lock();
  1268. dev = dev_get_by_name_rcu(sock_net(sk), saddr->spkt_device);
  1269. err = -ENODEV;
  1270. if (dev == NULL)
  1271. goto out_unlock;
  1272. err = -ENETDOWN;
  1273. if (!(dev->flags & IFF_UP))
  1274. goto out_unlock;
  1275. /*
  1276. * You may not queue a frame bigger than the mtu. This is the lowest level
  1277. * raw protocol and you must do your own fragmentation at this level.
  1278. */
  1279. err = -EMSGSIZE;
  1280. if (len > dev->mtu + dev->hard_header_len + VLAN_HLEN)
  1281. goto out_unlock;
  1282. if (!skb) {
  1283. size_t reserved = LL_RESERVED_SPACE(dev);
  1284. unsigned int hhlen = dev->header_ops ? dev->hard_header_len : 0;
  1285. rcu_read_unlock();
  1286. skb = sock_wmalloc(sk, len + reserved, 0, GFP_KERNEL);
  1287. if (skb == NULL)
  1288. return -ENOBUFS;
  1289. /* FIXME: Save some space for broken drivers that write a hard
  1290. * header at transmission time by themselves. PPP is the notable
  1291. * one here. This should really be fixed at the driver level.
  1292. */
  1293. skb_reserve(skb, reserved);
  1294. skb_reset_network_header(skb);
  1295. /* Try to align data part correctly */
  1296. if (hhlen) {
  1297. skb->data -= hhlen;
  1298. skb->tail -= hhlen;
  1299. if (len < hhlen)
  1300. skb_reset_network_header(skb);
  1301. }
  1302. err = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
  1303. if (err)
  1304. goto out_free;
  1305. goto retry;
  1306. }
  1307. if (len > (dev->mtu + dev->hard_header_len)) {
  1308. /* Earlier code assumed this would be a VLAN pkt,
  1309. * double-check this now that we have the actual
  1310. * packet in hand.
  1311. */
  1312. struct ethhdr *ehdr;
  1313. skb_reset_mac_header(skb);
  1314. ehdr = eth_hdr(skb);
  1315. if (ehdr->h_proto != htons(ETH_P_8021Q)) {
  1316. err = -EMSGSIZE;
  1317. goto out_unlock;
  1318. }
  1319. }
  1320. skb->protocol = proto;
  1321. skb->dev = dev;
  1322. skb->priority = sk->sk_priority;
  1323. skb->mark = sk->sk_mark;
  1324. err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
  1325. if (err < 0)
  1326. goto out_unlock;
  1327. dev_queue_xmit(skb);
  1328. rcu_read_unlock();
  1329. return len;
  1330. out_unlock:
  1331. rcu_read_unlock();
  1332. out_free:
  1333. kfree_skb(skb);
  1334. return err;
  1335. }
  1336. static unsigned int run_filter(const struct sk_buff *skb,
  1337. const struct sock *sk,
  1338. unsigned int res)
  1339. {
  1340. struct sk_filter *filter;
  1341. rcu_read_lock();
  1342. filter = rcu_dereference(sk->sk_filter);
  1343. if (filter != NULL)
  1344. res = SK_RUN_FILTER(filter, skb);
  1345. rcu_read_unlock();
  1346. return res;
  1347. }
  1348. /*
  1349. * This function makes lazy skb cloning in hope that most of packets
  1350. * are discarded by BPF.
  1351. *
  1352. * Note tricky part: we DO mangle shared skb! skb->data, skb->len
  1353. * and skb->cb are mangled. It works because (and until) packets
  1354. * falling here are owned by current CPU. Output packets are cloned
  1355. * by dev_queue_xmit_nit(), input packets are processed by net_bh
  1356. * sequencially, so that if we return skb to original state on exit,
  1357. * we will not harm anyone.
  1358. */
  1359. static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
  1360. struct packet_type *pt, struct net_device *orig_dev)
  1361. {
  1362. struct sock *sk;
  1363. struct sockaddr_ll *sll;
  1364. struct packet_sock *po;
  1365. u8 *skb_head = skb->data;
  1366. int skb_len = skb->len;
  1367. unsigned int snaplen, res;
  1368. if (skb->pkt_type == PACKET_LOOPBACK)
  1369. goto drop;
  1370. sk = pt->af_packet_priv;
  1371. po = pkt_sk(sk);
  1372. if (!net_eq(dev_net(dev), sock_net(sk)))
  1373. goto drop;
  1374. skb->dev = dev;
  1375. if (dev->header_ops) {
  1376. /* The device has an explicit notion of ll header,
  1377. * exported to higher levels.
  1378. *
  1379. * Otherwise, the device hides details of its frame
  1380. * structure, so that corresponding packet head is
  1381. * never delivered to user.
  1382. */
  1383. if (sk->sk_type != SOCK_DGRAM)
  1384. skb_push(skb, skb->data - skb_mac_header(skb));
  1385. else if (skb->pkt_type == PACKET_OUTGOING) {
  1386. /* Special case: outgoing packets have ll header at head */
  1387. skb_pull(skb, skb_network_offset(skb));
  1388. }
  1389. }
  1390. snaplen = skb->len;
  1391. res = run_filter(skb, sk, snaplen);
  1392. if (!res)
  1393. goto drop_n_restore;
  1394. if (snaplen > res)
  1395. snaplen = res;
  1396. if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
  1397. (unsigned)sk->sk_rcvbuf)
  1398. goto drop_n_acct;
  1399. if (skb_shared(skb)) {
  1400. struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
  1401. if (nskb == NULL)
  1402. goto drop_n_acct;
  1403. if (skb_head != skb->data) {
  1404. skb->data = skb_head;
  1405. skb->len = skb_len;
  1406. }
  1407. kfree_skb(skb);
  1408. skb = nskb;
  1409. }
  1410. BUILD_BUG_ON(sizeof(*PACKET_SKB_CB(skb)) + MAX_ADDR_LEN - 8 >
  1411. sizeof(skb->cb));
  1412. sll = &PACKET_SKB_CB(skb)->sa.ll;
  1413. sll->sll_family = AF_PACKET;
  1414. sll->sll_hatype = dev->type;
  1415. sll->sll_protocol = skb->protocol;
  1416. sll->sll_pkttype = skb->pkt_type;
  1417. if (unlikely(po->origdev))
  1418. sll->sll_ifindex = orig_dev->ifindex;
  1419. else
  1420. sll->sll_ifindex = dev->ifindex;
  1421. sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
  1422. PACKET_SKB_CB(skb)->origlen = skb->len;
  1423. if (pskb_trim(skb, snaplen))
  1424. goto drop_n_acct;
  1425. skb_set_owner_r(skb, sk);
  1426. skb->dev = NULL;
  1427. skb_dst_drop(skb);
  1428. /* drop conntrack reference */
  1429. nf_reset(skb);
  1430. spin_lock(&sk->sk_receive_queue.lock);
  1431. po->stats.tp_packets++;
  1432. skb->dropcount = atomic_read(&sk->sk_drops);
  1433. __skb_queue_tail(&sk->sk_receive_queue, skb);
  1434. spin_unlock(&sk->sk_receive_queue.lock);
  1435. sk->sk_data_ready(sk, skb->len);
  1436. return 0;
  1437. drop_n_acct:
  1438. spin_lock(&sk->sk_receive_queue.lock);
  1439. po->stats.tp_drops++;
  1440. atomic_inc(&sk->sk_drops);
  1441. spin_unlock(&sk->sk_receive_queue.lock);
  1442. drop_n_restore:
  1443. if (skb_head != skb->data && skb_shared(skb)) {
  1444. skb->data = skb_head;
  1445. skb->len = skb_len;
  1446. }
  1447. drop:
  1448. consume_skb(skb);
  1449. return 0;
  1450. }
  1451. static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
  1452. struct packet_type *pt, struct net_device *orig_dev)
  1453. {
  1454. struct sock *sk;
  1455. struct packet_sock *po;
  1456. struct sockaddr_ll *sll;
  1457. union {
  1458. struct tpacket_hdr *h1;
  1459. struct tpacket2_hdr *h2;
  1460. struct tpacket3_hdr *h3;
  1461. void *raw;
  1462. } h;
  1463. u8 *skb_head = skb->data;
  1464. int skb_len = skb->len;
  1465. unsigned int snaplen, res;
  1466. unsigned long status = TP_STATUS_USER;
  1467. unsigned short macoff, netoff, hdrlen;
  1468. struct sk_buff *copy_skb = NULL;
  1469. struct timeval tv;
  1470. struct timespec ts;
  1471. struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb);
  1472. if (skb->pkt_type == PACKET_LOOPBACK)
  1473. goto drop;
  1474. sk = pt->af_packet_priv;
  1475. po = pkt_sk(sk);
  1476. if (!net_eq(dev_net(dev), sock_net(sk)))
  1477. goto drop;
  1478. if (dev->header_ops) {
  1479. if (sk->sk_type != SOCK_DGRAM)
  1480. skb_push(skb, skb->data - skb_mac_header(skb));
  1481. else if (skb->pkt_type == PACKET_OUTGOING) {
  1482. /* Special case: outgoing packets have ll header at head */
  1483. skb_pull(skb, skb_network_offset(skb));
  1484. }
  1485. }
  1486. if (skb->ip_summed == CHECKSUM_PARTIAL)
  1487. status |= TP_STATUS_CSUMNOTREADY;
  1488. snaplen = skb->len;
  1489. res = run_filter(skb, sk, snaplen);
  1490. if (!res)
  1491. goto drop_n_restore;
  1492. if (snaplen > res)
  1493. snaplen = res;
  1494. if (sk->sk_type == SOCK_DGRAM) {
  1495. macoff = netoff = TPACKET_ALIGN(po->tp_hdrlen) + 16 +
  1496. po->tp_reserve;
  1497. } else {
  1498. unsigned maclen = skb_network_offset(skb);
  1499. netoff = TPACKET_ALIGN(po->tp_hdrlen +
  1500. (maclen < 16 ? 16 : maclen)) +
  1501. po->tp_reserve;
  1502. macoff = netoff - maclen;
  1503. }
  1504. if (po->tp_version <= TPACKET_V2) {
  1505. if (macoff + snaplen > po->rx_ring.frame_size) {
  1506. if (po->copy_thresh &&
  1507. atomic_read(&sk->sk_rmem_alloc) + skb->truesize
  1508. < (unsigned)sk->sk_rcvbuf) {
  1509. if (skb_shared(skb)) {
  1510. copy_skb = skb_clone(skb, GFP_ATOMIC);
  1511. } else {
  1512. copy_skb = skb_get(skb);
  1513. skb_head = skb->data;
  1514. }
  1515. if (copy_skb)
  1516. skb_set_owner_r(copy_skb, sk);
  1517. }
  1518. snaplen = po->rx_ring.frame_size - macoff;
  1519. if ((int)snaplen < 0)
  1520. snaplen = 0;
  1521. }
  1522. }
  1523. spin_lock(&sk->sk_receive_queue.lock);
  1524. h.raw = packet_current_rx_frame(po, skb,
  1525. TP_STATUS_KERNEL, (macoff+snaplen));
  1526. if (!h.raw)
  1527. goto ring_is_full;
  1528. if (po->tp_version <= TPACKET_V2) {
  1529. packet_increment_rx_head(po, &po->rx_ring);
  1530. /*
  1531. * LOSING will be reported till you read the stats,
  1532. * because it's COR - Clear On Read.
  1533. * Anyways, moving it for V1/V2 only as V3 doesn't need this
  1534. * at packet level.
  1535. */
  1536. if (po->stats.tp_drops)
  1537. status |= TP_STATUS_LOSING;
  1538. }
  1539. po->stats.tp_packets++;
  1540. if (copy_skb) {
  1541. status |= TP_STATUS_COPY;
  1542. __skb_queue_tail(&sk->sk_receive_queue, copy_skb);
  1543. }
  1544. spin_unlock(&sk->sk_receive_queue.lock);
  1545. skb_copy_bits(skb, 0, h.raw + macoff, snaplen);
  1546. switch (po->tp_version) {
  1547. case TPACKET_V1:
  1548. h.h1->tp_len = skb->len;
  1549. h.h1->tp_snaplen = snaplen;
  1550. h.h1->tp_mac = macoff;
  1551. h.h1->tp_net = netoff;
  1552. if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
  1553. && shhwtstamps->syststamp.tv64)
  1554. tv = ktime_to_timeval(shhwtstamps->syststamp);
  1555. else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
  1556. && shhwtstamps->hwtstamp.tv64)
  1557. tv = ktime_to_timeval(shhwtstamps->hwtstamp);
  1558. else if (skb->tstamp.tv64)
  1559. tv = ktime_to_timeval(skb->tstamp);
  1560. else
  1561. do_gettimeofday(&tv);
  1562. h.h1->tp_sec = tv.tv_sec;
  1563. h.h1->tp_usec = tv.tv_usec;
  1564. hdrlen = sizeof(*h.h1);
  1565. break;
  1566. case TPACKET_V2:
  1567. h.h2->tp_len = skb->len;
  1568. h.h2->tp_snaplen = snaplen;
  1569. h.h2->tp_mac = macoff;
  1570. h.h2->tp_net = netoff;
  1571. if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
  1572. && shhwtstamps->syststamp.tv64)
  1573. ts = ktime_to_timespec(shhwtstamps->syststamp);
  1574. else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
  1575. && shhwtstamps->hwtstamp.tv64)
  1576. ts = ktime_to_timespec(shhwtstamps->hwtstamp);
  1577. else if (skb->tstamp.tv64)
  1578. ts = ktime_to_timespec(skb->tstamp);
  1579. else
  1580. getnstimeofday(&ts);
  1581. h.h2->tp_sec = ts.tv_sec;
  1582. h.h2->tp_nsec = ts.tv_nsec;
  1583. if (vlan_tx_tag_present(skb)) {
  1584. h.h2->tp_vlan_tci = vlan_tx_tag_get(skb);
  1585. status |= TP_STATUS_VLAN_VALID;
  1586. } else {
  1587. h.h2->tp_vlan_tci = 0;
  1588. }
  1589. h.h2->tp_padding = 0;
  1590. hdrlen = sizeof(*h.h2);
  1591. break;
  1592. case TPACKET_V3:
  1593. /* tp_nxt_offset,vlan are already populated above.
  1594. * So DONT clear those fields here
  1595. */
  1596. h.h3->tp_status |= status;
  1597. h.h3->tp_len = skb->len;
  1598. h.h3->tp_snaplen = snaplen;
  1599. h.h3->tp_mac = macoff;
  1600. h.h3->tp_net = netoff;
  1601. if ((po->tp_tstamp & SOF_TIMESTAMPING_SYS_HARDWARE)
  1602. && shhwtstamps->syststamp.tv64)
  1603. ts = ktime_to_timespec(shhwtstamps->syststamp);
  1604. else if ((po->tp_tstamp & SOF_TIMESTAMPING_RAW_HARDWARE)
  1605. && shhwtstamps->hwtstamp.tv64)
  1606. ts = ktime_to_timespec(shhwtstamps->hwtstamp);
  1607. else if (skb->tstamp.tv64)
  1608. ts = ktime_to_timespec(skb->tstamp);
  1609. else
  1610. getnstimeofday(&ts);
  1611. h.h3->tp_sec = ts.tv_sec;
  1612. h.h3->tp_nsec = ts.tv_nsec;
  1613. hdrlen = sizeof(*h.h3);
  1614. break;
  1615. default:
  1616. BUG();
  1617. }
  1618. sll = h.raw + TPACKET_ALIGN(hdrlen);
  1619. sll->sll_halen = dev_parse_header(skb, sll->sll_addr);
  1620. sll->sll_family = AF_PACKET;
  1621. sll->sll_hatype = dev->type;
  1622. sll->sll_protocol = skb->protocol;
  1623. sll->sll_pkttype = skb->pkt_type;
  1624. if (unlikely(po->origdev))
  1625. sll->sll_ifindex = orig_dev->ifindex;
  1626. else
  1627. sll->sll_ifindex = dev->ifindex;
  1628. smp_mb();
  1629. #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE == 1
  1630. {
  1631. u8 *start, *end;
  1632. if (po->tp_version <= TPACKET_V2) {
  1633. end = (u8 *)PAGE_ALIGN((unsigned long)h.raw
  1634. + macoff + snaplen);
  1635. for (start = h.raw; start < end; start += PAGE_SIZE)
  1636. flush_dcache_page(pgv_to_page(start));
  1637. }
  1638. smp_wmb();
  1639. }
  1640. #endif
  1641. if (po->tp_version <= TPACKET_V2)
  1642. __packet_set_status(po, h.raw, status);
  1643. else
  1644. prb_clear_blk_fill_status(&po->rx_ring);
  1645. sk->sk_data_ready(sk, 0);
  1646. drop_n_restore:
  1647. if (skb_head != skb->data && skb_shared(skb)) {
  1648. skb->data = skb_head;
  1649. skb->len = skb_len;
  1650. }
  1651. drop:
  1652. kfree_skb(skb);
  1653. return 0;
  1654. ring_is_full:
  1655. po->stats.tp_drops++;
  1656. spin_unlock(&sk->sk_receive_queue.lock);
  1657. sk->sk_data_ready(sk, 0);
  1658. kfree_skb(copy_skb);
  1659. goto drop_n_restore;
  1660. }
  1661. static void tpacket_destruct_skb(struct sk_buff *skb)
  1662. {
  1663. struct packet_sock *po = pkt_sk(skb->sk);
  1664. void *ph;
  1665. if (likely(po->tx_ring.pg_vec)) {
  1666. ph = skb_shinfo(skb)->destructor_arg;
  1667. BUG_ON(__packet_get_status(po, ph) != TP_STATUS_SENDING);
  1668. BUG_ON(atomic_read(&po->tx_ring.pending) == 0);
  1669. atomic_dec(&po->tx_ring.pending);
  1670. __packet_set_status(po, ph, TP_STATUS_AVAILABLE);
  1671. }
  1672. sock_wfree(skb);
  1673. }
  1674. static int tpacket_fill_skb(struct packet_sock *po, struct sk_buff *skb,
  1675. void *frame, struct net_device *dev, int size_max,
  1676. __be16 proto, unsigned char *addr)
  1677. {
  1678. union {
  1679. struct tpacket_hdr *h1;
  1680. struct tpacket2_hdr *h2;
  1681. void *raw;
  1682. } ph;
  1683. int to_write, offset, len, tp_len, nr_frags, len_max;
  1684. struct socket *sock = po->sk.sk_socket;
  1685. struct page *page;
  1686. void *data;
  1687. int err;
  1688. ph.raw = frame;
  1689. skb->protocol = proto;
  1690. skb->dev = dev;
  1691. skb->priority = po->sk.sk_priority;
  1692. skb->mark = po->sk.sk_mark;
  1693. skb_shinfo(skb)->destructor_arg = ph.raw;
  1694. switch (po->tp_version) {
  1695. case TPACKET_V2:
  1696. tp_len = ph.h2->tp_len;
  1697. break;
  1698. default:
  1699. tp_len = ph.h1->tp_len;
  1700. break;
  1701. }
  1702. if (unlikely(tp_len > size_max)) {
  1703. pr_err("packet size is too long (%d > %d)\n", tp_len, size_max);
  1704. return -EMSGSIZE;
  1705. }
  1706. skb_reserve(skb, LL_RESERVED_SPACE(dev));
  1707. skb_reset_network_header(skb);
  1708. data = ph.raw + po->tp_hdrlen - sizeof(struct sockaddr_ll);
  1709. to_write = tp_len;
  1710. if (sock->type == SOCK_DGRAM) {
  1711. err = dev_hard_header(skb, dev, ntohs(proto), addr,
  1712. NULL, tp_len);
  1713. if (unlikely(err < 0))
  1714. return -EINVAL;
  1715. } else if (dev->hard_header_len) {
  1716. /* net device doesn't like empty head */
  1717. if (unlikely(tp_len <= dev->hard_header_len)) {
  1718. pr_err("packet size is too short (%d < %d)\n",
  1719. tp_len, dev->hard_header_len);
  1720. return -EINVAL;
  1721. }
  1722. skb_push(skb, dev->hard_header_len);
  1723. err = skb_store_bits(skb, 0, data,
  1724. dev->hard_header_len);
  1725. if (unlikely(err))
  1726. return err;
  1727. data += dev->hard_header_len;
  1728. to_write -= dev->hard_header_len;
  1729. }
  1730. err = -EFAULT;
  1731. offset = offset_in_page(data);
  1732. len_max = PAGE_SIZE - offset;
  1733. len = ((to_write > len_max) ? len_max : to_write);
  1734. skb->data_len = to_write;
  1735. skb->len += to_write;
  1736. skb->truesize += to_write;
  1737. atomic_add(to_write, &po->sk.sk_wmem_alloc);
  1738. while (likely(to_write)) {
  1739. nr_frags = skb_shinfo(skb)->nr_frags;
  1740. if (unlikely(nr_frags >= MAX_SKB_FRAGS)) {
  1741. pr_err("Packet exceed the number of skb frags(%lu)\n",
  1742. MAX_SKB_FRAGS);
  1743. return -EFAULT;
  1744. }
  1745. page = pgv_to_page(data);
  1746. data += len;
  1747. flush_dcache_page(page);
  1748. get_page(page);
  1749. skb_fill_page_desc(skb, nr_frags, page, offset, len);
  1750. to_write -= len;
  1751. offset = 0;
  1752. len_max = PAGE_SIZE;
  1753. len = ((to_write > len_max) ? len_max : to_write);
  1754. }
  1755. return tp_len;
  1756. }
  1757. static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
  1758. {
  1759. struct sk_buff *skb;
  1760. struct net_device *dev;
  1761. __be16 proto;
  1762. bool need_rls_dev = false;
  1763. int err, reserve = 0;
  1764. void *ph;
  1765. struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
  1766. int tp_len, size_max;
  1767. unsigned char *addr;
  1768. int len_sum = 0;
  1769. int status = 0;
  1770. mutex_lock(&po->pg_vec_lock);
  1771. err = -EBUSY;
  1772. if (saddr == NULL) {
  1773. dev = po->prot_hook.dev;
  1774. proto = po->num;
  1775. addr = NULL;
  1776. } else {
  1777. err = -EINVAL;
  1778. if (msg->msg_namelen < sizeof(struct sockaddr_ll))
  1779. goto out;
  1780. if (msg->msg_namelen < (saddr->sll_halen
  1781. + offsetof(struct sockaddr_ll,
  1782. sll_addr)))
  1783. goto out;
  1784. proto = saddr->sll_protocol;
  1785. addr = saddr->sll_addr;
  1786. dev = dev_get_by_index(sock_net(&po->sk), saddr->sll_ifindex);
  1787. need_rls_dev = true;
  1788. }
  1789. err = -ENXIO;
  1790. if (unlikely(dev == NULL))
  1791. goto out;
  1792. reserve = dev->hard_header_len;
  1793. err = -ENETDOWN;
  1794. if (unlikely(!(dev->flags & IFF_UP)))
  1795. goto out_put;
  1796. size_max = po->tx_ring.frame_size
  1797. - (po->tp_hdrlen - sizeof(struct sockaddr_ll));
  1798. if (size_max > dev->mtu + reserve)
  1799. size_max = dev->mtu + reserve;
  1800. do {
  1801. ph = packet_current_frame(po, &po->tx_ring,
  1802. TP_STATUS_SEND_REQUEST);
  1803. if (unlikely(ph == NULL)) {
  1804. schedule();
  1805. continue;
  1806. }
  1807. status = TP_STATUS_SEND_REQUEST;
  1808. skb = sock_alloc_send_skb(&po->sk,
  1809. LL_ALLOCATED_SPACE(dev)
  1810. + sizeof(struct sockaddr_ll),
  1811. 0, &err);
  1812. if (unlikely(skb == NULL))
  1813. goto out_status;
  1814. tp_len = tpacket_fill_skb(po, skb, ph, dev, size_max, proto,
  1815. addr);
  1816. if (unlikely(tp_len < 0)) {
  1817. if (po->tp_loss) {
  1818. __packet_set_status(po, ph,
  1819. TP_STATUS_AVAILABLE);
  1820. packet_increment_head(&po->tx_ring);
  1821. kfree_skb(skb);
  1822. continue;
  1823. } else {
  1824. status = TP_STATUS_WRONG_FORMAT;
  1825. err = tp_len;
  1826. goto out_status;
  1827. }
  1828. }
  1829. skb->destructor = tpacket_destruct_skb;
  1830. __packet_set_status(po, ph, TP_STATUS_SENDING);
  1831. atomic_inc(&po->tx_ring.pending);
  1832. status = TP_STATUS_SEND_REQUEST;
  1833. err = dev_queue_xmit(skb);
  1834. if (unlikely(err > 0)) {
  1835. err = net_xmit_errno(err);
  1836. if (err && __packet_get_status(po, ph) ==
  1837. TP_STATUS_AVAILABLE) {
  1838. /* skb was destructed already */
  1839. skb = NULL;
  1840. goto out_status;
  1841. }
  1842. /*
  1843. * skb was dropped but not destructed yet;
  1844. * let's treat it like congestion or err < 0
  1845. */
  1846. err = 0;
  1847. }
  1848. packet_increment_head(&po->tx_ring);
  1849. len_sum += tp_len;
  1850. } while (likely((ph != NULL) ||
  1851. ((!(msg->msg_flags & MSG_DONTWAIT)) &&
  1852. (atomic_read(&po->tx_ring.pending))))
  1853. );
  1854. err = len_sum;
  1855. goto out_put;
  1856. out_status:
  1857. __packet_set_status(po, ph, status);
  1858. kfree_skb(skb);
  1859. out_put:
  1860. if (need_rls_dev)
  1861. dev_put(dev);
  1862. out:
  1863. mutex_unlock(&po->pg_vec_lock);
  1864. return err;
  1865. }
  1866. static struct sk_buff *packet_alloc_skb(struct sock *sk, size_t prepad,
  1867. size_t reserve, size_t len,
  1868. size_t linear, int noblock,
  1869. int *err)
  1870. {
  1871. struct sk_buff *skb;
  1872. /* Under a page? Don't bother with paged skb. */
  1873. if (prepad + len < PAGE_SIZE || !linear)
  1874. linear = len;
  1875. skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock,
  1876. err);
  1877. if (!skb)
  1878. return NULL;
  1879. skb_reserve(skb, reserve);
  1880. skb_put(skb, linear);
  1881. skb->data_len = len - linear;
  1882. skb->len += len - linear;
  1883. return skb;
  1884. }
  1885. static int packet_snd(struct socket *sock,
  1886. struct msghdr *msg, size_t len)
  1887. {
  1888. struct sock *sk = sock->sk;
  1889. struct sockaddr_ll *saddr = (struct sockaddr_ll *)msg->msg_name;
  1890. struct sk_buff *skb;
  1891. struct net_device *dev;
  1892. __be16 proto;
  1893. bool need_rls_dev = false;
  1894. unsigned char *addr;
  1895. int err, reserve = 0;
  1896. struct virtio_net_hdr vnet_hdr = { 0 };
  1897. int offset = 0;
  1898. int vnet_hdr_len;
  1899. struct packet_sock *po = pkt_sk(sk);
  1900. unsigned short gso_type = 0;
  1901. /*
  1902. * Get and verify the address.
  1903. */
  1904. if (saddr == NULL) {
  1905. dev = po->prot_hook.dev;
  1906. proto = po->num;
  1907. addr = NULL;
  1908. } else {
  1909. err = -EINVAL;
  1910. if (msg->msg_namelen < sizeof(struct sockaddr_ll))
  1911. goto out;
  1912. if (msg->msg_namelen < (saddr->sll_halen + offsetof(struct sockaddr_ll, sll_addr)))
  1913. goto out;
  1914. proto = saddr->sll_protocol;
  1915. addr = saddr->sll_addr;
  1916. dev = dev_get_by_index(sock_net(sk), saddr->sll_ifindex);
  1917. need_rls_dev = true;
  1918. }
  1919. err = -ENXIO;
  1920. if (dev == NULL)
  1921. goto out_unlock;
  1922. if (sock->type == SOCK_RAW)
  1923. reserve = dev->hard_header_len;
  1924. err = -ENETDOWN;
  1925. if (!(dev->flags & IFF_UP))
  1926. goto out_unlock;
  1927. if (po->has_vnet_hdr) {
  1928. vnet_hdr_len = sizeof(vnet_hdr);
  1929. err = -EINVAL;
  1930. if (len < vnet_hdr_len)
  1931. goto out_unlock;
  1932. len -= vnet_hdr_len;
  1933. err = memcpy_fromiovec((void *)&vnet_hdr, msg->msg_iov,
  1934. vnet_hdr_len);
  1935. if (err < 0)
  1936. goto out_unlock;
  1937. if ((vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) &&
  1938. (vnet_hdr.csum_start + vnet_hdr.csum_offset + 2 >
  1939. vnet_hdr.hdr_len))
  1940. vnet_hdr.hdr_len = vnet_hdr.csum_start +
  1941. vnet_hdr.csum_offset + 2;
  1942. err = -EINVAL;
  1943. if (vnet_hdr.hdr_len > len)
  1944. goto out_unlock;
  1945. if (vnet_hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
  1946. switch (vnet_hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
  1947. case VIRTIO_NET_HDR_GSO_TCPV4:
  1948. gso_type = SKB_GSO_TCPV4;
  1949. break;
  1950. case VIRTIO_NET_HDR_GSO_TCPV6:
  1951. gso_type = SKB_GSO_TCPV6;
  1952. break;
  1953. case VIRTIO_NET_HDR_GSO_UDP:
  1954. gso_type = SKB_GSO_UDP;
  1955. break;
  1956. default:
  1957. goto out_unlock;
  1958. }
  1959. if (vnet_hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
  1960. gso_type |= SKB_GSO_TCP_ECN;
  1961. if (vnet_hdr.gso_size == 0)
  1962. goto out_unlock;
  1963. }
  1964. }
  1965. err = -EMSGSIZE;
  1966. if (!gso_type && (len > dev->mtu + reserve + VLAN_HLEN))
  1967. goto out_unlock;
  1968. err = -ENOBUFS;
  1969. skb = packet_alloc_skb(sk, LL_ALLOCATED_SPACE(dev),
  1970. LL_RESERVED_SPACE(dev), len, vnet_hdr.hdr_len,
  1971. msg->msg_flags & MSG_DONTWAIT, &err);
  1972. if (skb == NULL)
  1973. goto out_unlock;
  1974. skb_set_network_header(skb, reserve);
  1975. err = -EINVAL;
  1976. if (sock->type == SOCK_DGRAM &&
  1977. (offset = dev_hard_header(skb, dev, ntohs(proto), addr, NULL, len)) < 0)
  1978. goto out_free;
  1979. /* Returns -EFAULT on error */
  1980. err = skb_copy_datagram_from_iovec(skb, offset, msg->msg_iov, 0, len);
  1981. if (err)
  1982. goto out_free;
  1983. err = sock_tx_timestamp(sk, &skb_shinfo(skb)->tx_flags);
  1984. if (err < 0)
  1985. goto out_free;
  1986. if (!gso_type && (len > dev->mtu + reserve)) {
  1987. /* Earlier code assumed this would be a VLAN pkt,
  1988. * double-check this now that we have the actual
  1989. * packet in hand.
  1990. */
  1991. struct ethhdr *ehdr;
  1992. skb_reset_mac_header(skb);
  1993. ehdr = eth_hdr(skb);
  1994. if (ehdr->h_proto != htons(ETH_P_8021Q)) {
  1995. err = -EMSGSIZE;
  1996. goto out_free;
  1997. }
  1998. }
  1999. skb->protocol = proto;
  2000. skb->dev = dev;
  2001. skb->priority = sk->sk_priority;
  2002. skb->mark = sk->sk_mark;
  2003. if (po->has_vnet_hdr) {
  2004. if (vnet_hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
  2005. if (!skb_partial_csum_set(skb, vnet_hdr.csum_start,
  2006. vnet_hdr.csum_offset)) {
  2007. err = -EINVAL;
  2008. goto out_free;
  2009. }
  2010. }
  2011. skb_shinfo(skb)->gso_size = vnet_hdr.gso_size;
  2012. skb_shinfo(skb)->gso_type = gso_type;
  2013. /* Header must be checked, and gso_segs computed. */
  2014. skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
  2015. skb_shinfo(skb)->gso_segs = 0;
  2016. len += vnet_hdr_len;
  2017. }
  2018. /*
  2019. * Now send it
  2020. */
  2021. err = dev_queue_xmit(skb);
  2022. if (err > 0 && (err = net_xmit_errno(err)) != 0)
  2023. goto out_unlock;
  2024. if (need_rls_dev)
  2025. dev_put(dev);
  2026. return len;
  2027. out_free:
  2028. kfree_skb(skb);
  2029. out_unlock:
  2030. if (dev && need_rls_dev)
  2031. dev_put(dev);
  2032. out:
  2033. return err;
  2034. }
  2035. static int packet_sendmsg(struct kiocb *iocb, struct socket *sock,
  2036. struct msghdr *msg, size_t len)
  2037. {
  2038. struct sock *sk = sock->sk;
  2039. struct packet_sock *po = pkt_sk(sk);
  2040. if (po->tx_ring.pg_vec)
  2041. return tpacket_snd(po, msg);
  2042. else
  2043. return packet_snd(sock, msg, len);
  2044. }
  2045. /*
  2046. * Close a PACKET socket. This is fairly simple. We immediately go
  2047. * to 'closed' state and remove our protocol entry in the device list.
  2048. */
  2049. static int packet_release(struct socket *sock)
  2050. {
  2051. struct sock *sk = sock->sk;
  2052. struct packet_sock *po;
  2053. struct net *net;
  2054. union tpacket_req_u req_u;
  2055. if (!sk)
  2056. return 0;
  2057. net = sock_net(sk);
  2058. po = pkt_sk(sk);
  2059. spin_lock_bh(&net->packet.sklist_lock);
  2060. sk_del_node_init_rcu(sk);
  2061. sock_prot_inuse_add(net, sk->sk_prot, -1);
  2062. spin_unlock_bh(&net->packet.sklist_lock);
  2063. spin_lock(&po->bind_lock);
  2064. unregister_prot_hook(sk, false);
  2065. if (po->prot_hook.dev) {
  2066. dev_put(po->prot_hook.dev);
  2067. po->prot_hook.dev = NULL;
  2068. }
  2069. spin_unlock(&po->bind_lock);
  2070. packet_flush_mclist(sk);
  2071. memset(&req_u, 0, sizeof(req_u));
  2072. if (po->rx_ring.pg_vec)
  2073. packet_set_ring(sk, &req_u, 1, 0);
  2074. if (po->tx_ring.pg_vec)
  2075. packet_set_ring(sk, &req_u, 1, 1);
  2076. fanout_release(sk);
  2077. synchronize_net();
  2078. /*
  2079. * Now the socket is dead. No more input will appear.
  2080. */
  2081. sock_orphan(sk);
  2082. sock->sk = NULL;
  2083. /* Purge queues */
  2084. skb_queue_purge(&sk->sk_receive_queue);
  2085. sk_refcnt_debug_release(sk);
  2086. sock_put(sk);
  2087. return 0;
  2088. }
  2089. /*
  2090. * Attach a packet hook.
  2091. */
  2092. static int packet_do_bind(struct sock *sk, struct net_device *dev, __be16 protocol)
  2093. {
  2094. struct packet_sock *po = pkt_sk(sk);
  2095. if (po->fanout)
  2096. return -EINVAL;
  2097. lock_sock(sk);
  2098. spin_lock(&po->bind_lock);
  2099. unregister_prot_hook(sk, true);
  2100. po->num = protocol;
  2101. po->prot_hook.type = protocol;
  2102. if (po->prot_hook.dev)
  2103. dev_put(po->prot_hook.dev);
  2104. po->prot_hook.dev = dev;
  2105. po->ifindex = dev ? dev->ifindex : 0;
  2106. if (protocol == 0)
  2107. goto out_unlock;
  2108. if (!dev || (dev->flags & IFF_UP)) {
  2109. register_prot_hook(sk);
  2110. } else {
  2111. sk->sk_err = ENETDOWN;
  2112. if (!sock_flag(sk, SOCK_DEAD))
  2113. sk->sk_error_report(sk);
  2114. }
  2115. out_unlock:
  2116. spin_unlock(&po->bind_lock);
  2117. release_sock(sk);
  2118. return 0;
  2119. }
  2120. /*
  2121. * Bind a packet socket to a device
  2122. */
  2123. static int packet_bind_spkt(struct socket *sock, struct sockaddr *uaddr,
  2124. int addr_len)
  2125. {
  2126. struct sock *sk = sock->sk;
  2127. char name[15];
  2128. struct net_device *dev;
  2129. int err = -ENODEV;
  2130. /*
  2131. * Check legality
  2132. */
  2133. if (addr_len != sizeof(struct sockaddr))
  2134. return -EINVAL;
  2135. strlcpy(name, uaddr->sa_data, sizeof(name));
  2136. dev = dev_get_by_name(sock_net(sk), name);
  2137. if (dev)
  2138. err = packet_do_bind(sk, dev, pkt_sk(sk)->num);
  2139. return err;
  2140. }
  2141. static int packet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  2142. {
  2143. struct sockaddr_ll *sll = (struct sockaddr_ll *)uaddr;
  2144. struct sock *sk = sock->sk;
  2145. struct net_device *dev = NULL;
  2146. int err;
  2147. /*
  2148. * Check legality
  2149. */
  2150. if (addr_len < sizeof(struct sockaddr_ll))
  2151. return -EINVAL;
  2152. if (sll->sll_family != AF_PACKET)
  2153. return -EINVAL;
  2154. if (sll->sll_ifindex) {
  2155. err = -ENODEV;
  2156. dev = dev_get_by_index(sock_net(sk), sll->sll_ifindex);
  2157. if (dev == NULL)
  2158. goto out;
  2159. }
  2160. err = packet_do_bind(sk, dev, sll->sll_protocol ? : pkt_sk(sk)->num);
  2161. out:
  2162. return err;
  2163. }
  2164. static struct proto packet_proto = {
  2165. .name = "PACKET",
  2166. .owner = THIS_MODULE,
  2167. .obj_size = sizeof(struct packet_sock),
  2168. };
  2169. /*
  2170. * Create a packet of type SOCK_PACKET.
  2171. */
  2172. static int packet_create(struct net *net, struct socket *sock, int protocol,
  2173. int kern)
  2174. {
  2175. struct sock *sk;
  2176. struct packet_sock *po;
  2177. __be16 proto = (__force __be16)protocol; /* weird, but documented */
  2178. int err;
  2179. if (!capable(CAP_NET_RAW))
  2180. return -EPERM;
  2181. if (sock->type != SOCK_DGRAM && sock->type != SOCK_RAW &&
  2182. sock->type != SOCK_PACKET)
  2183. return -ESOCKTNOSUPPORT;
  2184. sock->state = SS_UNCONNECTED;
  2185. err = -ENOBUFS;
  2186. sk = sk_alloc(net, PF_PACKET, GFP_KERNEL, &packet_proto);
  2187. if (sk == NULL)
  2188. goto out;
  2189. sock->ops = &packet_ops;
  2190. if (sock->type == SOCK_PACKET)
  2191. sock->ops = &packet_ops_spkt;
  2192. sock_init_data(sock, sk);
  2193. po = pkt_sk(sk);
  2194. sk->sk_family = PF_PACKET;
  2195. po->num = proto;
  2196. sk->sk_destruct = packet_sock_destruct;
  2197. sk_refcnt_debug_inc(sk);
  2198. /*
  2199. * Attach a protocol block
  2200. */
  2201. spin_lock_init(&po->bind_lock);
  2202. mutex_init(&po->pg_vec_lock);
  2203. po->prot_hook.func = packet_rcv;
  2204. if (sock->type == SOCK_PACKET)
  2205. po->prot_hook.func = packet_rcv_spkt;
  2206. po->prot_hook.af_packet_priv = sk;
  2207. if (proto) {
  2208. po->prot_hook.type = proto;
  2209. register_prot_hook(sk);
  2210. }
  2211. spin_lock_bh(&net->packet.sklist_lock);
  2212. sk_add_node_rcu(sk, &net->packet.sklist);
  2213. sock_prot_inuse_add(net, &packet_proto, 1);
  2214. spin_unlock_bh(&net->packet.sklist_lock);
  2215. return 0;
  2216. out:
  2217. return err;
  2218. }
  2219. static int packet_recv_error(struct sock *sk, struct msghdr *msg, int len)
  2220. {
  2221. struct sock_exterr_skb *serr;
  2222. struct sk_buff *skb, *skb2;
  2223. int copied, err;
  2224. err = -EAGAIN;
  2225. skb = skb_dequeue(&sk->sk_error_queue);
  2226. if (skb == NULL)
  2227. goto out;
  2228. copied = skb->len;
  2229. if (copied > len) {
  2230. msg->msg_flags |= MSG_TRUNC;
  2231. copied = len;
  2232. }
  2233. err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
  2234. if (err)
  2235. goto out_free_skb;
  2236. sock_recv_timestamp(msg, sk, skb);
  2237. serr = SKB_EXT_ERR(skb);
  2238. put_cmsg(msg, SOL_PACKET, PACKET_TX_TIMESTAMP,
  2239. sizeof(serr->ee), &serr->ee);
  2240. msg->msg_flags |= MSG_ERRQUEUE;
  2241. err = copied;
  2242. /* Reset and regenerate socket error */
  2243. spin_lock_bh(&sk->sk_error_queue.lock);
  2244. sk->sk_err = 0;
  2245. if ((skb2 = skb_peek(&sk->sk_error_queue)) != NULL) {
  2246. sk->sk_err = SKB_EXT_ERR(skb2)->ee.ee_errno;
  2247. spin_unlock_bh(&sk->sk_error_queue.lock);
  2248. sk->sk_error_report(sk);
  2249. } else
  2250. spin_unlock_bh(&sk->sk_error_queue.lock);
  2251. out_free_skb:
  2252. kfree_skb(skb);
  2253. out:
  2254. return err;
  2255. }
  2256. /*
  2257. * Pull a packet from our receive queue and hand it to the user.
  2258. * If necessary we block.
  2259. */
  2260. static int packet_recvmsg(struct kiocb *iocb, struct socket *sock,
  2261. struct msghdr *msg, size_t len, int flags)
  2262. {
  2263. struct sock *sk = sock->sk;
  2264. struct sk_buff *skb;
  2265. int copied, err;
  2266. struct sockaddr_ll *sll;
  2267. int vnet_hdr_len = 0;
  2268. err = -EINVAL;
  2269. if (flags & ~(MSG_PEEK|MSG_DONTWAIT|MSG_TRUNC|MSG_CMSG_COMPAT|MSG_ERRQUEUE))
  2270. goto out;
  2271. #if 0
  2272. /* What error should we return now? EUNATTACH? */
  2273. if (pkt_sk(sk)->ifindex < 0)
  2274. return -ENODEV;
  2275. #endif
  2276. if (flags & MSG_ERRQUEUE) {
  2277. err = packet_recv_error(sk, msg, len);
  2278. goto out;
  2279. }
  2280. /*
  2281. * Call the generic datagram receiver. This handles all sorts
  2282. * of horrible races and re-entrancy so we can forget about it
  2283. * in the protocol layers.
  2284. *
  2285. * Now it will return ENETDOWN, if device have just gone down,
  2286. * but then it will block.
  2287. */
  2288. skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &err);
  2289. /*
  2290. * An error occurred so return it. Because skb_recv_datagram()
  2291. * handles the blocking we don't see and worry about blocking
  2292. * retries.
  2293. */
  2294. if (skb == NULL)
  2295. goto out;
  2296. if (pkt_sk(sk)->has_vnet_hdr) {
  2297. struct virtio_net_hdr vnet_hdr = { 0 };
  2298. err = -EINVAL;
  2299. vnet_hdr_len = sizeof(vnet_hdr);
  2300. if (len < vnet_hdr_len)
  2301. goto out_free;
  2302. len -= vnet_hdr_len;
  2303. if (skb_is_gso(skb)) {
  2304. struct skb_shared_info *sinfo = skb_shinfo(skb);
  2305. /* This is a hint as to how much should be linear. */
  2306. vnet_hdr.hdr_len = skb_headlen(skb);
  2307. vnet_hdr.gso_size = sinfo->gso_size;
  2308. if (sinfo->gso_type & SKB_GSO_TCPV4)
  2309. vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
  2310. else if (sinfo->gso_type & SKB_GSO_TCPV6)
  2311. vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
  2312. else if (sinfo->gso_type & SKB_GSO_UDP)
  2313. vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
  2314. else if (sinfo->gso_type & SKB_GSO_FCOE)
  2315. goto out_free;
  2316. else
  2317. BUG();
  2318. if (sinfo->gso_type & SKB_GSO_TCP_ECN)
  2319. vnet_hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
  2320. } else
  2321. vnet_hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
  2322. if (skb->ip_summed == CHECKSUM_PARTIAL) {
  2323. vnet_hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
  2324. vnet_hdr.csum_start = skb_checksum_start_offset(skb);
  2325. vnet_hdr.csum_offset = skb->csum_offset;
  2326. } else if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
  2327. vnet_hdr.flags = VIRTIO_NET_HDR_F_DATA_VALID;
  2328. } /* else everything is zero */
  2329. err = memcpy_toiovec(msg->msg_iov, (void *)&vnet_hdr,
  2330. vnet_hdr_len);
  2331. if (err < 0)
  2332. goto out_free;
  2333. }
  2334. /*
  2335. * If the address length field is there to be filled in, we fill
  2336. * it in now.
  2337. */
  2338. sll = &PACKET_SKB_CB(skb)->sa.ll;
  2339. if (sock->type == SOCK_PACKET)
  2340. msg->msg_namelen = sizeof(struct sockaddr_pkt);
  2341. else
  2342. msg->msg_namelen = sll->sll_halen + offsetof(struct sockaddr_ll, sll_addr);
  2343. /*
  2344. * You lose any data beyond the buffer you gave. If it worries a
  2345. * user program they can ask the device for its MTU anyway.
  2346. */
  2347. copied = skb->len;
  2348. if (copied > len) {
  2349. copied = len;
  2350. msg->msg_flags |= MSG_TRUNC;
  2351. }
  2352. err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
  2353. if (err)
  2354. goto out_free;
  2355. sock_recv_ts_and_drops(msg, sk, skb);
  2356. if (msg->msg_name)
  2357. memcpy(msg->msg_name, &PACKET_SKB_CB(skb)->sa,
  2358. msg->msg_namelen);
  2359. if (pkt_sk(sk)->auxdata) {
  2360. struct tpacket_auxdata aux;
  2361. aux.tp_status = TP_STATUS_USER;
  2362. if (skb->ip_summed == CHECKSUM_PARTIAL)
  2363. aux.tp_status |= TP_STATUS_CSUMNOTREADY;
  2364. aux.tp_len = PACKET_SKB_CB(skb)->origlen;
  2365. aux.tp_snaplen = skb->len;
  2366. aux.tp_mac = 0;
  2367. aux.tp_net = skb_network_offset(skb);
  2368. if (vlan_tx_tag_present(skb)) {
  2369. aux.tp_vlan_tci = vlan_tx_tag_get(skb);
  2370. aux.tp_status |= TP_STATUS_VLAN_VALID;
  2371. } else {
  2372. aux.tp_vlan_tci = 0;
  2373. }
  2374. aux.tp_padding = 0;
  2375. put_cmsg(msg, SOL_PACKET, PACKET_AUXDATA, sizeof(aux), &aux);
  2376. }
  2377. /*
  2378. * Free or return the buffer as appropriate. Again this
  2379. * hides all the races and re-entrancy issues from us.
  2380. */
  2381. err = vnet_hdr_len + ((flags&MSG_TRUNC) ? skb->len : copied);
  2382. out_free:
  2383. skb_free_datagram(sk, skb);
  2384. out:
  2385. return err;
  2386. }
  2387. static int packet_getname_spkt(struct socket *sock, struct sockaddr *uaddr,
  2388. int *uaddr_len, int peer)
  2389. {
  2390. struct net_device *dev;
  2391. struct sock *sk = sock->sk;
  2392. if (peer)
  2393. return -EOPNOTSUPP;
  2394. uaddr->sa_family = AF_PACKET;
  2395. rcu_read_lock();
  2396. dev = dev_get_by_index_rcu(sock_net(sk), pkt_sk(sk)->ifindex);
  2397. if (dev)
  2398. strncpy(uaddr->sa_data, dev->name, 14);
  2399. else
  2400. memset(uaddr->sa_data, 0, 14);
  2401. rcu_read_unlock();
  2402. *uaddr_len = sizeof(*uaddr);
  2403. return 0;
  2404. }
  2405. static int packet_getname(struct socket *sock, struct sockaddr *uaddr,
  2406. int *uaddr_len, int peer)
  2407. {
  2408. struct net_device *dev;
  2409. struct sock *sk = sock->sk;
  2410. struct packet_sock *po = pkt_sk(sk);
  2411. DECLARE_SOCKADDR(struct sockaddr_ll *, sll, uaddr);
  2412. if (peer)
  2413. return -EOPNOTSUPP;
  2414. sll->sll_family = AF_PACKET;
  2415. sll->sll_ifindex = po->ifindex;
  2416. sll->sll_protocol = po->num;
  2417. sll->sll_pkttype = 0;
  2418. rcu_read_lock();
  2419. dev = dev_get_by_index_rcu(sock_net(sk), po->ifindex);
  2420. if (dev) {
  2421. sll->sll_hatype = dev->type;
  2422. sll->sll_halen = dev->addr_len;
  2423. memcpy(sll->sll_addr, dev->dev_addr, dev->addr_len);
  2424. } else {
  2425. sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */
  2426. sll->sll_halen = 0;
  2427. }
  2428. rcu_read_unlock();
  2429. *uaddr_len = offsetof(struct sockaddr_ll, sll_addr) + sll->sll_halen;
  2430. return 0;
  2431. }
  2432. static int packet_dev_mc(struct net_device *dev, struct packet_mclist *i,
  2433. int what)
  2434. {
  2435. switch (i->type) {
  2436. case PACKET_MR_MULTICAST:
  2437. if (i->alen != dev->addr_len)
  2438. return -EINVAL;
  2439. if (what > 0)
  2440. return dev_mc_add(dev, i->addr);
  2441. else
  2442. return dev_mc_del(dev, i->addr);
  2443. break;
  2444. case PACKET_MR_PROMISC:
  2445. return dev_set_promiscuity(dev, what);
  2446. break;
  2447. case PACKET_MR_ALLMULTI:
  2448. return dev_set_allmulti(dev, what);
  2449. break;
  2450. case PACKET_MR_UNICAST:
  2451. if (i->alen != dev->addr_len)
  2452. return -EINVAL;
  2453. if (what > 0)
  2454. return dev_uc_add(dev, i->addr);
  2455. else
  2456. return dev_uc_del(dev, i->addr);
  2457. break;
  2458. default:
  2459. break;
  2460. }
  2461. return 0;
  2462. }
  2463. static void packet_dev_mclist(struct net_device *dev, struct packet_mclist *i, int what)
  2464. {
  2465. for ( ; i; i = i->next) {
  2466. if (i->ifindex == dev->ifindex)
  2467. packet_dev_mc(dev, i, what);
  2468. }
  2469. }
  2470. static int packet_mc_add(struct sock *sk, struct packet_mreq_max *mreq)
  2471. {
  2472. struct packet_sock *po = pkt_sk(sk);
  2473. struct packet_mclist *ml, *i;
  2474. struct net_device *dev;
  2475. int err;
  2476. rtnl_lock();
  2477. err = -ENODEV;
  2478. dev = __dev_get_by_index(sock_net(sk), mreq->mr_ifindex);
  2479. if (!dev)
  2480. goto done;
  2481. err = -EINVAL;
  2482. if (mreq->mr_alen > dev->addr_len)
  2483. goto done;
  2484. err = -ENOBUFS;
  2485. i = kmalloc(sizeof(*i), GFP_KERNEL);
  2486. if (i == NULL)
  2487. goto done;
  2488. err = 0;
  2489. for (ml = po->mclist; ml; ml = ml->next) {
  2490. if (ml->ifindex == mreq->mr_ifindex &&
  2491. ml->type == mreq->mr_type &&
  2492. ml->alen == mreq->mr_alen &&
  2493. memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
  2494. ml->count++;
  2495. /* Free the new element ... */
  2496. kfree(i);
  2497. goto done;
  2498. }
  2499. }
  2500. i->type = mreq->mr_type;
  2501. i->ifindex = mreq->mr_ifindex;
  2502. i->alen = mreq->mr_alen;
  2503. memcpy(i->addr, mreq->mr_address, i->alen);
  2504. i->count = 1;
  2505. i->next = po->mclist;
  2506. po->mclist = i;
  2507. err = packet_dev_mc(dev, i, 1);
  2508. if (err) {
  2509. po->mclist = i->next;
  2510. kfree(i);
  2511. }
  2512. done:
  2513. rtnl_unlock();
  2514. return err;
  2515. }
  2516. static int packet_mc_drop(struct sock *sk, struct packet_mreq_max *mreq)
  2517. {
  2518. struct packet_mclist *ml, **mlp;
  2519. rtnl_lock();
  2520. for (mlp = &pkt_sk(sk)->mclist; (ml = *mlp) != NULL; mlp = &ml->next) {
  2521. if (ml->ifindex == mreq->mr_ifindex &&
  2522. ml->type == mreq->mr_type &&
  2523. ml->alen == mreq->mr_alen &&
  2524. memcmp(ml->addr, mreq->mr_address, ml->alen) == 0) {
  2525. if (--ml->count == 0) {
  2526. struct net_device *dev;
  2527. *mlp = ml->next;
  2528. dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
  2529. if (dev)
  2530. packet_dev_mc(dev, ml, -1);
  2531. kfree(ml);
  2532. }
  2533. rtnl_unlock();
  2534. return 0;
  2535. }
  2536. }
  2537. rtnl_unlock();
  2538. return -EADDRNOTAVAIL;
  2539. }
  2540. static void packet_flush_mclist(struct sock *sk)
  2541. {
  2542. struct packet_sock *po = pkt_sk(sk);
  2543. struct packet_mclist *ml;
  2544. if (!po->mclist)
  2545. return;
  2546. rtnl_lock();
  2547. while ((ml = po->mclist) != NULL) {
  2548. struct net_device *dev;
  2549. po->mclist = ml->next;
  2550. dev = __dev_get_by_index(sock_net(sk), ml->ifindex);
  2551. if (dev != NULL)
  2552. packet_dev_mc(dev, ml, -1);
  2553. kfree(ml);
  2554. }
  2555. rtnl_unlock();
  2556. }
  2557. static int
  2558. packet_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen)
  2559. {
  2560. struct sock *sk = sock->sk;
  2561. struct packet_sock *po = pkt_sk(sk);
  2562. int ret;
  2563. if (level != SOL_PACKET)
  2564. return -ENOPROTOOPT;
  2565. switch (optname) {
  2566. case PACKET_ADD_MEMBERSHIP:
  2567. case PACKET_DROP_MEMBERSHIP:
  2568. {
  2569. struct packet_mreq_max mreq;
  2570. int len = optlen;
  2571. memset(&mreq, 0, sizeof(mreq));
  2572. if (len < sizeof(struct packet_mreq))
  2573. return -EINVAL;
  2574. if (len > sizeof(mreq))
  2575. len = sizeof(mreq);
  2576. if (copy_from_user(&mreq, optval, len))
  2577. return -EFAULT;
  2578. if (len < (mreq.mr_alen + offsetof(struct packet_mreq, mr_address)))
  2579. return -EINVAL;
  2580. if (optname == PACKET_ADD_MEMBERSHIP)
  2581. ret = packet_mc_add(sk, &mreq);
  2582. else
  2583. ret = packet_mc_drop(sk, &mreq);
  2584. return ret;
  2585. }
  2586. case PACKET_RX_RING:
  2587. case PACKET_TX_RING:
  2588. {
  2589. union tpacket_req_u req_u;
  2590. int len;
  2591. switch (po->tp_version) {
  2592. case TPACKET_V1:
  2593. case TPACKET_V2:
  2594. len = sizeof(req_u.req);
  2595. break;
  2596. case TPACKET_V3:
  2597. default:
  2598. len = sizeof(req_u.req3);
  2599. break;
  2600. }
  2601. if (optlen < len)
  2602. return -EINVAL;
  2603. if (pkt_sk(sk)->has_vnet_hdr)
  2604. return -EINVAL;
  2605. if (copy_from_user(&req_u.req, optval, len))
  2606. return -EFAULT;
  2607. return packet_set_ring(sk, &req_u, 0,
  2608. optname == PACKET_TX_RING);
  2609. }
  2610. case PACKET_COPY_THRESH:
  2611. {
  2612. int val;
  2613. if (optlen != sizeof(val))
  2614. return -EINVAL;
  2615. if (copy_from_user(&val, optval, sizeof(val)))
  2616. return -EFAULT;
  2617. pkt_sk(sk)->copy_thresh = val;
  2618. return 0;
  2619. }
  2620. case PACKET_VERSION:
  2621. {
  2622. int val;
  2623. if (optlen != sizeof(val))
  2624. return -EINVAL;
  2625. if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
  2626. return -EBUSY;
  2627. if (copy_from_user(&val, optval, sizeof(val)))
  2628. return -EFAULT;
  2629. switch (val) {
  2630. case TPACKET_V1:
  2631. case TPACKET_V2:
  2632. case TPACKET_V3:
  2633. po->tp_version = val;
  2634. return 0;
  2635. default:
  2636. return -EINVAL;
  2637. }
  2638. }
  2639. case PACKET_RESERVE:
  2640. {
  2641. unsigned int val;
  2642. if (optlen != sizeof(val))
  2643. return -EINVAL;
  2644. if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
  2645. return -EBUSY;
  2646. if (copy_from_user(&val, optval, sizeof(val)))
  2647. return -EFAULT;
  2648. po->tp_reserve = val;
  2649. return 0;
  2650. }
  2651. case PACKET_LOSS:
  2652. {
  2653. unsigned int val;
  2654. if (optlen != sizeof(val))
  2655. return -EINVAL;
  2656. if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
  2657. return -EBUSY;
  2658. if (copy_from_user(&val, optval, sizeof(val)))
  2659. return -EFAULT;
  2660. po->tp_loss = !!val;
  2661. return 0;
  2662. }
  2663. case PACKET_AUXDATA:
  2664. {
  2665. int val;
  2666. if (optlen < sizeof(val))
  2667. return -EINVAL;
  2668. if (copy_from_user(&val, optval, sizeof(val)))
  2669. return -EFAULT;
  2670. po->auxdata = !!val;
  2671. return 0;
  2672. }
  2673. case PACKET_ORIGDEV:
  2674. {
  2675. int val;
  2676. if (optlen < sizeof(val))
  2677. return -EINVAL;
  2678. if (copy_from_user(&val, optval, sizeof(val)))
  2679. return -EFAULT;
  2680. po->origdev = !!val;
  2681. return 0;
  2682. }
  2683. case PACKET_VNET_HDR:
  2684. {
  2685. int val;
  2686. if (sock->type != SOCK_RAW)
  2687. return -EINVAL;
  2688. if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
  2689. return -EBUSY;
  2690. if (optlen < sizeof(val))
  2691. return -EINVAL;
  2692. if (copy_from_user(&val, optval, sizeof(val)))
  2693. return -EFAULT;
  2694. po->has_vnet_hdr = !!val;
  2695. return 0;
  2696. }
  2697. case PACKET_TIMESTAMP:
  2698. {
  2699. int val;
  2700. if (optlen != sizeof(val))
  2701. return -EINVAL;
  2702. if (copy_from_user(&val, optval, sizeof(val)))
  2703. return -EFAULT;
  2704. po->tp_tstamp = val;
  2705. return 0;
  2706. }
  2707. case PACKET_FANOUT:
  2708. {
  2709. int val;
  2710. if (optlen != sizeof(val))
  2711. return -EINVAL;
  2712. if (copy_from_user(&val, optval, sizeof(val)))
  2713. return -EFAULT;
  2714. return fanout_add(sk, val & 0xffff, val >> 16);
  2715. }
  2716. default:
  2717. return -ENOPROTOOPT;
  2718. }
  2719. }
  2720. static int packet_getsockopt(struct socket *sock, int level, int optname,
  2721. char __user *optval, int __user *optlen)
  2722. {
  2723. int len;
  2724. int val;
  2725. struct sock *sk = sock->sk;
  2726. struct packet_sock *po = pkt_sk(sk);
  2727. void *data;
  2728. struct tpacket_stats st;
  2729. union tpacket_stats_u st_u;
  2730. if (level != SOL_PACKET)
  2731. return -ENOPROTOOPT;
  2732. if (get_user(len, optlen))
  2733. return -EFAULT;
  2734. if (len < 0)
  2735. return -EINVAL;
  2736. switch (optname) {
  2737. case PACKET_STATISTICS:
  2738. if (po->tp_version == TPACKET_V3) {
  2739. len = sizeof(struct tpacket_stats_v3);
  2740. } else {
  2741. if (len > sizeof(struct tpacket_stats))
  2742. len = sizeof(struct tpacket_stats);
  2743. }
  2744. spin_lock_bh(&sk->sk_receive_queue.lock);
  2745. if (po->tp_version == TPACKET_V3) {
  2746. memcpy(&st_u.stats3, &po->stats,
  2747. sizeof(struct tpacket_stats));
  2748. st_u.stats3.tp_freeze_q_cnt =
  2749. po->stats_u.stats3.tp_freeze_q_cnt;
  2750. st_u.stats3.tp_packets += po->stats.tp_drops;
  2751. data = &st_u.stats3;
  2752. } else {
  2753. st = po->stats;
  2754. st.tp_packets += st.tp_drops;
  2755. data = &st;
  2756. }
  2757. memset(&po->stats, 0, sizeof(st));
  2758. spin_unlock_bh(&sk->sk_receive_queue.lock);
  2759. break;
  2760. case PACKET_AUXDATA:
  2761. if (len > sizeof(int))
  2762. len = sizeof(int);
  2763. val = po->auxdata;
  2764. data = &val;
  2765. break;
  2766. case PACKET_ORIGDEV:
  2767. if (len > sizeof(int))
  2768. len = sizeof(int);
  2769. val = po->origdev;
  2770. data = &val;
  2771. break;
  2772. case PACKET_VNET_HDR:
  2773. if (len > sizeof(int))
  2774. len = sizeof(int);
  2775. val = po->has_vnet_hdr;
  2776. data = &val;
  2777. break;
  2778. case PACKET_VERSION:
  2779. if (len > sizeof(int))
  2780. len = sizeof(int);
  2781. val = po->tp_version;
  2782. data = &val;
  2783. break;
  2784. case PACKET_HDRLEN:
  2785. if (len > sizeof(int))
  2786. len = sizeof(int);
  2787. if (copy_from_user(&val, optval, len))
  2788. return -EFAULT;
  2789. switch (val) {
  2790. case TPACKET_V1:
  2791. val = sizeof(struct tpacket_hdr);
  2792. break;
  2793. case TPACKET_V2:
  2794. val = sizeof(struct tpacket2_hdr);
  2795. break;
  2796. case TPACKET_V3:
  2797. val = sizeof(struct tpacket3_hdr);
  2798. break;
  2799. default:
  2800. return -EINVAL;
  2801. }
  2802. data = &val;
  2803. break;
  2804. case PACKET_RESERVE:
  2805. if (len > sizeof(unsigned int))
  2806. len = sizeof(unsigned int);
  2807. val = po->tp_reserve;
  2808. data = &val;
  2809. break;
  2810. case PACKET_LOSS:
  2811. if (len > sizeof(unsigned int))
  2812. len = sizeof(unsigned int);
  2813. val = po->tp_loss;
  2814. data = &val;
  2815. break;
  2816. case PACKET_TIMESTAMP:
  2817. if (len > sizeof(int))
  2818. len = sizeof(int);
  2819. val = po->tp_tstamp;
  2820. data = &val;
  2821. break;
  2822. case PACKET_FANOUT:
  2823. if (len > sizeof(int))
  2824. len = sizeof(int);
  2825. val = (po->fanout ?
  2826. ((u32)po->fanout->id |
  2827. ((u32)po->fanout->type << 16)) :
  2828. 0);
  2829. data = &val;
  2830. break;
  2831. default:
  2832. return -ENOPROTOOPT;
  2833. }
  2834. if (put_user(len, optlen))
  2835. return -EFAULT;
  2836. if (copy_to_user(optval, data, len))
  2837. return -EFAULT;
  2838. return 0;
  2839. }
  2840. static int packet_notifier(struct notifier_block *this, unsigned long msg, void *data)
  2841. {
  2842. struct sock *sk;
  2843. struct hlist_node *node;
  2844. struct net_device *dev = data;
  2845. struct net *net = dev_net(dev);
  2846. rcu_read_lock();
  2847. sk_for_each_rcu(sk, node, &net->packet.sklist) {
  2848. struct packet_sock *po = pkt_sk(sk);
  2849. switch (msg) {
  2850. case NETDEV_UNREGISTER:
  2851. if (po->mclist)
  2852. packet_dev_mclist(dev, po->mclist, -1);
  2853. /* fallthrough */
  2854. case NETDEV_DOWN:
  2855. if (dev->ifindex == po->ifindex) {
  2856. spin_lock(&po->bind_lock);
  2857. if (po->running) {
  2858. __unregister_prot_hook(sk, false);
  2859. sk->sk_err = ENETDOWN;
  2860. if (!sock_flag(sk, SOCK_DEAD))
  2861. sk->sk_error_report(sk);
  2862. }
  2863. if (msg == NETDEV_UNREGISTER) {
  2864. po->ifindex = -1;
  2865. if (po->prot_hook.dev)
  2866. dev_put(po->prot_hook.dev);
  2867. po->prot_hook.dev = NULL;
  2868. }
  2869. spin_unlock(&po->bind_lock);
  2870. }
  2871. break;
  2872. case NETDEV_UP:
  2873. if (dev->ifindex == po->ifindex) {
  2874. spin_lock(&po->bind_lock);
  2875. if (po->num)
  2876. register_prot_hook(sk);
  2877. spin_unlock(&po->bind_lock);
  2878. }
  2879. break;
  2880. }
  2881. }
  2882. rcu_read_unlock();
  2883. return NOTIFY_DONE;
  2884. }
  2885. static int packet_ioctl(struct socket *sock, unsigned int cmd,
  2886. unsigned long arg)
  2887. {
  2888. struct sock *sk = sock->sk;
  2889. switch (cmd) {
  2890. case SIOCOUTQ:
  2891. {
  2892. int amount = sk_wmem_alloc_get(sk);
  2893. return put_user(amount, (int __user *)arg);
  2894. }
  2895. case SIOCINQ:
  2896. {
  2897. struct sk_buff *skb;
  2898. int amount = 0;
  2899. spin_lock_bh(&sk->sk_receive_queue.lock);
  2900. skb = skb_peek(&sk->sk_receive_queue);
  2901. if (skb)
  2902. amount = skb->len;
  2903. spin_unlock_bh(&sk->sk_receive_queue.lock);
  2904. return put_user(amount, (int __user *)arg);
  2905. }
  2906. case SIOCGSTAMP:
  2907. return sock_get_timestamp(sk, (struct timeval __user *)arg);
  2908. case SIOCGSTAMPNS:
  2909. return sock_get_timestampns(sk, (struct timespec __user *)arg);
  2910. #ifdef CONFIG_INET
  2911. case SIOCADDRT:
  2912. case SIOCDELRT:
  2913. case SIOCDARP:
  2914. case SIOCGARP:
  2915. case SIOCSARP:
  2916. case SIOCGIFADDR:
  2917. case SIOCSIFADDR:
  2918. case SIOCGIFBRDADDR:
  2919. case SIOCSIFBRDADDR:
  2920. case SIOCGIFNETMASK:
  2921. case SIOCSIFNETMASK:
  2922. case SIOCGIFDSTADDR:
  2923. case SIOCSIFDSTADDR:
  2924. case SIOCSIFFLAGS:
  2925. return inet_dgram_ops.ioctl(sock, cmd, arg);
  2926. #endif
  2927. default:
  2928. return -ENOIOCTLCMD;
  2929. }
  2930. return 0;
  2931. }
  2932. static unsigned int packet_poll(struct file *file, struct socket *sock,
  2933. poll_table *wait)
  2934. {
  2935. struct sock *sk = sock->sk;
  2936. struct packet_sock *po = pkt_sk(sk);
  2937. unsigned int mask = datagram_poll(file, sock, wait);
  2938. spin_lock_bh(&sk->sk_receive_queue.lock);
  2939. if (po->rx_ring.pg_vec) {
  2940. if (!packet_previous_rx_frame(po, &po->rx_ring,
  2941. TP_STATUS_KERNEL))
  2942. mask |= POLLIN | POLLRDNORM;
  2943. }
  2944. spin_unlock_bh(&sk->sk_receive_queue.lock);
  2945. spin_lock_bh(&sk->sk_write_queue.lock);
  2946. if (po->tx_ring.pg_vec) {
  2947. if (packet_current_frame(po, &po->tx_ring, TP_STATUS_AVAILABLE))
  2948. mask |= POLLOUT | POLLWRNORM;
  2949. }
  2950. spin_unlock_bh(&sk->sk_write_queue.lock);
  2951. return mask;
  2952. }
  2953. /* Dirty? Well, I still did not learn better way to account
  2954. * for user mmaps.
  2955. */
  2956. static void packet_mm_open(struct vm_area_struct *vma)
  2957. {
  2958. struct file *file = vma->vm_file;
  2959. struct socket *sock = file->private_data;
  2960. struct sock *sk = sock->sk;
  2961. if (sk)
  2962. atomic_inc(&pkt_sk(sk)->mapped);
  2963. }
  2964. static void packet_mm_close(struct vm_area_struct *vma)
  2965. {
  2966. struct file *file = vma->vm_file;
  2967. struct socket *sock = file->private_data;
  2968. struct sock *sk = sock->sk;
  2969. if (sk)
  2970. atomic_dec(&pkt_sk(sk)->mapped);
  2971. }
  2972. static const struct vm_operations_struct packet_mmap_ops = {
  2973. .open = packet_mm_open,
  2974. .close = packet_mm_close,
  2975. };
  2976. static void free_pg_vec(struct pgv *pg_vec, unsigned int order,
  2977. unsigned int len)
  2978. {
  2979. int i;
  2980. for (i = 0; i < len; i++) {
  2981. if (likely(pg_vec[i].buffer)) {
  2982. if (is_vmalloc_addr(pg_vec[i].buffer))
  2983. vfree(pg_vec[i].buffer);
  2984. else
  2985. free_pages((unsigned long)pg_vec[i].buffer,
  2986. order);
  2987. pg_vec[i].buffer = NULL;
  2988. }
  2989. }
  2990. kfree(pg_vec);
  2991. }
  2992. static char *alloc_one_pg_vec_page(unsigned long order)
  2993. {
  2994. char *buffer = NULL;
  2995. gfp_t gfp_flags = GFP_KERNEL | __GFP_COMP |
  2996. __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY;
  2997. buffer = (char *) __get_free_pages(gfp_flags, order);
  2998. if (buffer)
  2999. return buffer;
  3000. /*
  3001. * __get_free_pages failed, fall back to vmalloc
  3002. */
  3003. buffer = vzalloc((1 << order) * PAGE_SIZE);
  3004. if (buffer)
  3005. return buffer;
  3006. /*
  3007. * vmalloc failed, lets dig into swap here
  3008. */
  3009. gfp_flags &= ~__GFP_NORETRY;
  3010. buffer = (char *)__get_free_pages(gfp_flags, order);
  3011. if (buffer)
  3012. return buffer;
  3013. /*
  3014. * complete and utter failure
  3015. */
  3016. return NULL;
  3017. }
  3018. static struct pgv *alloc_pg_vec(struct tpacket_req *req, int order)
  3019. {
  3020. unsigned int block_nr = req->tp_block_nr;
  3021. struct pgv *pg_vec;
  3022. int i;
  3023. pg_vec = kcalloc(block_nr, sizeof(struct pgv), GFP_KERNEL);
  3024. if (unlikely(!pg_vec))
  3025. goto out;
  3026. for (i = 0; i < block_nr; i++) {
  3027. pg_vec[i].buffer = alloc_one_pg_vec_page(order);
  3028. if (unlikely(!pg_vec[i].buffer))
  3029. goto out_free_pgvec;
  3030. }
  3031. out:
  3032. return pg_vec;
  3033. out_free_pgvec:
  3034. free_pg_vec(pg_vec, order, block_nr);
  3035. pg_vec = NULL;
  3036. goto out;
  3037. }
  3038. static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u,
  3039. int closing, int tx_ring)
  3040. {
  3041. struct pgv *pg_vec = NULL;
  3042. struct packet_sock *po = pkt_sk(sk);
  3043. int was_running, order = 0;
  3044. struct packet_ring_buffer *rb;
  3045. struct sk_buff_head *rb_queue;
  3046. __be16 num;
  3047. int err = -EINVAL;
  3048. /* Added to avoid minimal code churn */
  3049. struct tpacket_req *req = &req_u->req;
  3050. /* Opening a Tx-ring is NOT supported in TPACKET_V3 */
  3051. if (!closing && tx_ring && (po->tp_version > TPACKET_V2)) {
  3052. WARN(1, "Tx-ring is not supported.\n");
  3053. goto out;
  3054. }
  3055. rb = tx_ring ? &po->tx_ring : &po->rx_ring;
  3056. rb_queue = tx_ring ? &sk->sk_write_queue : &sk->sk_receive_queue;
  3057. err = -EBUSY;
  3058. if (!closing) {
  3059. if (atomic_read(&po->mapped))
  3060. goto out;
  3061. if (atomic_read(&rb->pending))
  3062. goto out;
  3063. }
  3064. if (req->tp_block_nr) {
  3065. /* Sanity tests and some calculations */
  3066. err = -EBUSY;
  3067. if (unlikely(rb->pg_vec))
  3068. goto out;
  3069. switch (po->tp_version) {
  3070. case TPACKET_V1:
  3071. po->tp_hdrlen = TPACKET_HDRLEN;
  3072. break;
  3073. case TPACKET_V2:
  3074. po->tp_hdrlen = TPACKET2_HDRLEN;
  3075. break;
  3076. case TPACKET_V3:
  3077. po->tp_hdrlen = TPACKET3_HDRLEN;
  3078. break;
  3079. }
  3080. err = -EINVAL;
  3081. if (unlikely((int)req->tp_block_size <= 0))
  3082. goto out;
  3083. if (unlikely(req->tp_block_size & (PAGE_SIZE - 1)))
  3084. goto out;
  3085. if (unlikely(req->tp_frame_size < po->tp_hdrlen +
  3086. po->tp_reserve))
  3087. goto out;
  3088. if (unlikely(req->tp_frame_size & (TPACKET_ALIGNMENT - 1)))
  3089. goto out;
  3090. rb->frames_per_block = req->tp_block_size/req->tp_frame_size;
  3091. if (unlikely(rb->frames_per_block <= 0))
  3092. goto out;
  3093. if (unlikely((rb->frames_per_block * req->tp_block_nr) !=
  3094. req->tp_frame_nr))
  3095. goto out;
  3096. err = -ENOMEM;
  3097. order = get_order(req->tp_block_size);
  3098. pg_vec = alloc_pg_vec(req, order);
  3099. if (unlikely(!pg_vec))
  3100. goto out;
  3101. switch (po->tp_version) {
  3102. case TPACKET_V3:
  3103. /* Transmit path is not supported. We checked
  3104. * it above but just being paranoid
  3105. */
  3106. if (!tx_ring)
  3107. init_prb_bdqc(po, rb, pg_vec, req_u, tx_ring);
  3108. break;
  3109. default:
  3110. break;
  3111. }
  3112. }
  3113. /* Done */
  3114. else {
  3115. err = -EINVAL;
  3116. if (unlikely(req->tp_frame_nr))
  3117. goto out;
  3118. }
  3119. lock_sock(sk);
  3120. /* Detach socket from network */
  3121. spin_lock(&po->bind_lock);
  3122. was_running = po->running;
  3123. num = po->num;
  3124. if (was_running) {
  3125. po->num = 0;
  3126. __unregister_prot_hook(sk, false);
  3127. }
  3128. spin_unlock(&po->bind_lock);
  3129. synchronize_net();
  3130. err = -EBUSY;
  3131. mutex_lock(&po->pg_vec_lock);
  3132. if (closing || atomic_read(&po->mapped) == 0) {
  3133. err = 0;
  3134. spin_lock_bh(&rb_queue->lock);
  3135. swap(rb->pg_vec, pg_vec);
  3136. rb->frame_max = (req->tp_frame_nr - 1);
  3137. rb->head = 0;
  3138. rb->frame_size = req->tp_frame_size;
  3139. spin_unlock_bh(&rb_queue->lock);
  3140. swap(rb->pg_vec_order, order);
  3141. swap(rb->pg_vec_len, req->tp_block_nr);
  3142. rb->pg_vec_pages = req->tp_block_size/PAGE_SIZE;
  3143. po->prot_hook.func = (po->rx_ring.pg_vec) ?
  3144. tpacket_rcv : packet_rcv;
  3145. skb_queue_purge(rb_queue);
  3146. if (atomic_read(&po->mapped))
  3147. pr_err("packet_mmap: vma is busy: %d\n",
  3148. atomic_read(&po->mapped));
  3149. }
  3150. mutex_unlock(&po->pg_vec_lock);
  3151. spin_lock(&po->bind_lock);
  3152. if (was_running) {
  3153. po->num = num;
  3154. register_prot_hook(sk);
  3155. }
  3156. spin_unlock(&po->bind_lock);
  3157. if (closing && (po->tp_version > TPACKET_V2)) {
  3158. /* Because we don't support block-based V3 on tx-ring */
  3159. if (!tx_ring)
  3160. prb_shutdown_retire_blk_timer(po, tx_ring, rb_queue);
  3161. }
  3162. release_sock(sk);
  3163. if (pg_vec)
  3164. free_pg_vec(pg_vec, order, req->tp_block_nr);
  3165. out:
  3166. return err;
  3167. }
  3168. static int packet_mmap(struct file *file, struct socket *sock,
  3169. struct vm_area_struct *vma)
  3170. {
  3171. struct sock *sk = sock->sk;
  3172. struct packet_sock *po = pkt_sk(sk);
  3173. unsigned long size, expected_size;
  3174. struct packet_ring_buffer *rb;
  3175. unsigned long start;
  3176. int err = -EINVAL;
  3177. int i;
  3178. if (vma->vm_pgoff)
  3179. return -EINVAL;
  3180. mutex_lock(&po->pg_vec_lock);
  3181. expected_size = 0;
  3182. for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
  3183. if (rb->pg_vec) {
  3184. expected_size += rb->pg_vec_len
  3185. * rb->pg_vec_pages
  3186. * PAGE_SIZE;
  3187. }
  3188. }
  3189. if (expected_size == 0)
  3190. goto out;
  3191. size = vma->vm_end - vma->vm_start;
  3192. if (size != expected_size)
  3193. goto out;
  3194. start = vma->vm_start;
  3195. for (rb = &po->rx_ring; rb <= &po->tx_ring; rb++) {
  3196. if (rb->pg_vec == NULL)
  3197. continue;
  3198. for (i = 0; i < rb->pg_vec_len; i++) {
  3199. struct page *page;
  3200. void *kaddr = rb->pg_vec[i].buffer;
  3201. int pg_num;
  3202. for (pg_num = 0; pg_num < rb->pg_vec_pages; pg_num++) {
  3203. page = pgv_to_page(kaddr);
  3204. err = vm_insert_page(vma, start, page);
  3205. if (unlikely(err))
  3206. goto out;
  3207. start += PAGE_SIZE;
  3208. kaddr += PAGE_SIZE;
  3209. }
  3210. }
  3211. }
  3212. atomic_inc(&po->mapped);
  3213. vma->vm_ops = &packet_mmap_ops;
  3214. err = 0;
  3215. out:
  3216. mutex_unlock(&po->pg_vec_lock);
  3217. return err;
  3218. }
  3219. static const struct proto_ops packet_ops_spkt = {
  3220. .family = PF_PACKET,
  3221. .owner = THIS_MODULE,
  3222. .release = packet_release,
  3223. .bind = packet_bind_spkt,
  3224. .connect = sock_no_connect,
  3225. .socketpair = sock_no_socketpair,
  3226. .accept = sock_no_accept,
  3227. .getname = packet_getname_spkt,
  3228. .poll = datagram_poll,
  3229. .ioctl = packet_ioctl,
  3230. .listen = sock_no_listen,
  3231. .shutdown = sock_no_shutdown,
  3232. .setsockopt = sock_no_setsockopt,
  3233. .getsockopt = sock_no_getsockopt,
  3234. .sendmsg = packet_sendmsg_spkt,
  3235. .recvmsg = packet_recvmsg,
  3236. .mmap = sock_no_mmap,
  3237. .sendpage = sock_no_sendpage,
  3238. };
  3239. static const struct proto_ops packet_ops = {
  3240. .family = PF_PACKET,
  3241. .owner = THIS_MODULE,
  3242. .release = packet_release,
  3243. .bind = packet_bind,
  3244. .connect = sock_no_connect,
  3245. .socketpair = sock_no_socketpair,
  3246. .accept = sock_no_accept,
  3247. .getname = packet_getname,
  3248. .poll = packet_poll,
  3249. .ioctl = packet_ioctl,
  3250. .listen = sock_no_listen,
  3251. .shutdown = sock_no_shutdown,
  3252. .setsockopt = packet_setsockopt,
  3253. .getsockopt = packet_getsockopt,
  3254. .sendmsg = packet_sendmsg,
  3255. .recvmsg = packet_recvmsg,
  3256. .mmap = packet_mmap,
  3257. .sendpage = sock_no_sendpage,
  3258. };
  3259. static const struct net_proto_family packet_family_ops = {
  3260. .family = PF_PACKET,
  3261. .create = packet_create,
  3262. .owner = THIS_MODULE,
  3263. };
  3264. static struct notifier_block packet_netdev_notifier = {
  3265. .notifier_call = packet_notifier,
  3266. };
  3267. #ifdef CONFIG_PROC_FS
  3268. static void *packet_seq_start(struct seq_file *seq, loff_t *pos)
  3269. __acquires(RCU)
  3270. {
  3271. struct net *net = seq_file_net(seq);
  3272. rcu_read_lock();
  3273. return seq_hlist_start_head_rcu(&net->packet.sklist, *pos);
  3274. }
  3275. static void *packet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  3276. {
  3277. struct net *net = seq_file_net(seq);
  3278. return seq_hlist_next_rcu(v, &net->packet.sklist, pos);
  3279. }
  3280. static void packet_seq_stop(struct seq_file *seq, void *v)
  3281. __releases(RCU)
  3282. {
  3283. rcu_read_unlock();
  3284. }
  3285. static int packet_seq_show(struct seq_file *seq, void *v)
  3286. {
  3287. if (v == SEQ_START_TOKEN)
  3288. seq_puts(seq, "sk RefCnt Type Proto Iface R Rmem User Inode\n");
  3289. else {
  3290. struct sock *s = sk_entry(v);
  3291. const struct packet_sock *po = pkt_sk(s);
  3292. seq_printf(seq,
  3293. "%pK %-6d %-4d %04x %-5d %1d %-6u %-6u %-6lu\n",
  3294. s,
  3295. atomic_read(&s->sk_refcnt),
  3296. s->sk_type,
  3297. ntohs(po->num),
  3298. po->ifindex,
  3299. po->running,
  3300. atomic_read(&s->sk_rmem_alloc),
  3301. sock_i_uid(s),
  3302. sock_i_ino(s));
  3303. }
  3304. return 0;
  3305. }
  3306. static const struct seq_operations packet_seq_ops = {
  3307. .start = packet_seq_start,
  3308. .next = packet_seq_next,
  3309. .stop = packet_seq_stop,
  3310. .show = packet_seq_show,
  3311. };
  3312. static int packet_seq_open(struct inode *inode, struct file *file)
  3313. {
  3314. return seq_open_net(inode, file, &packet_seq_ops,
  3315. sizeof(struct seq_net_private));
  3316. }
  3317. static const struct file_operations packet_seq_fops = {
  3318. .owner = THIS_MODULE,
  3319. .open = packet_seq_open,
  3320. .read = seq_read,
  3321. .llseek = seq_lseek,
  3322. .release = seq_release_net,
  3323. };
  3324. #endif
  3325. static int __net_init packet_net_init(struct net *net)
  3326. {
  3327. spin_lock_init(&net->packet.sklist_lock);
  3328. INIT_HLIST_HEAD(&net->packet.sklist);
  3329. if (!proc_net_fops_create(net, "packet", 0, &packet_seq_fops))
  3330. return -ENOMEM;
  3331. return 0;
  3332. }
  3333. static void __net_exit packet_net_exit(struct net *net)
  3334. {
  3335. proc_net_remove(net, "packet");
  3336. }
  3337. static struct pernet_operations packet_net_ops = {
  3338. .init = packet_net_init,
  3339. .exit = packet_net_exit,
  3340. };
  3341. static void __exit packet_exit(void)
  3342. {
  3343. unregister_netdevice_notifier(&packet_netdev_notifier);
  3344. unregister_pernet_subsys(&packet_net_ops);
  3345. sock_unregister(PF_PACKET);
  3346. proto_unregister(&packet_proto);
  3347. }
  3348. static int __init packet_init(void)
  3349. {
  3350. int rc = proto_register(&packet_proto, 0);
  3351. if (rc != 0)
  3352. goto out;
  3353. sock_register(&packet_family_ops);
  3354. register_pernet_subsys(&packet_net_ops);
  3355. register_netdevice_notifier(&packet_netdev_notifier);
  3356. out:
  3357. return rc;
  3358. }
  3359. module_init(packet_init);
  3360. module_exit(packet_exit);
  3361. MODULE_LICENSE("GPL");
  3362. MODULE_ALIAS_NETPROTO(PF_PACKET);