sock.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367
  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. * Generic socket support routines. Memory allocators, socket lock/release
  7. * handler for protocols to use and generic option handler.
  8. *
  9. *
  10. * Authors: Ross Biro
  11. * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  12. * Florian La Roche, <flla@stud.uni-sb.de>
  13. * Alan Cox, <A.Cox@swansea.ac.uk>
  14. *
  15. * Fixes:
  16. * Alan Cox : Numerous verify_area() problems
  17. * Alan Cox : Connecting on a connecting socket
  18. * now returns an error for tcp.
  19. * Alan Cox : sock->protocol is set correctly.
  20. * and is not sometimes left as 0.
  21. * Alan Cox : connect handles icmp errors on a
  22. * connect properly. Unfortunately there
  23. * is a restart syscall nasty there. I
  24. * can't match BSD without hacking the C
  25. * library. Ideas urgently sought!
  26. * Alan Cox : Disallow bind() to addresses that are
  27. * not ours - especially broadcast ones!!
  28. * Alan Cox : Socket 1024 _IS_ ok for users. (fencepost)
  29. * Alan Cox : sock_wfree/sock_rfree don't destroy sockets,
  30. * instead they leave that for the DESTROY timer.
  31. * Alan Cox : Clean up error flag in accept
  32. * Alan Cox : TCP ack handling is buggy, the DESTROY timer
  33. * was buggy. Put a remove_sock() in the handler
  34. * for memory when we hit 0. Also altered the timer
  35. * code. The ACK stuff can wait and needs major
  36. * TCP layer surgery.
  37. * Alan Cox : Fixed TCP ack bug, removed remove sock
  38. * and fixed timer/inet_bh race.
  39. * Alan Cox : Added zapped flag for TCP
  40. * Alan Cox : Move kfree_skb into skbuff.c and tidied up surplus code
  41. * Alan Cox : for new sk_buff allocations wmalloc/rmalloc now call alloc_skb
  42. * Alan Cox : kfree_s calls now are kfree_skbmem so we can track skb resources
  43. * Alan Cox : Supports socket option broadcast now as does udp. Packet and raw need fixing.
  44. * Alan Cox : Added RCVBUF,SNDBUF size setting. It suddenly occurred to me how easy it was so...
  45. * Rick Sladkey : Relaxed UDP rules for matching packets.
  46. * C.E.Hawkins : IFF_PROMISC/SIOCGHWADDR support
  47. * Pauline Middelink : identd support
  48. * Alan Cox : Fixed connect() taking signals I think.
  49. * Alan Cox : SO_LINGER supported
  50. * Alan Cox : Error reporting fixes
  51. * Anonymous : inet_create tidied up (sk->reuse setting)
  52. * Alan Cox : inet sockets don't set sk->type!
  53. * Alan Cox : Split socket option code
  54. * Alan Cox : Callbacks
  55. * Alan Cox : Nagle flag for Charles & Johannes stuff
  56. * Alex : Removed restriction on inet fioctl
  57. * Alan Cox : Splitting INET from NET core
  58. * Alan Cox : Fixed bogus SO_TYPE handling in getsockopt()
  59. * Adam Caldwell : Missing return in SO_DONTROUTE/SO_DEBUG code
  60. * Alan Cox : Split IP from generic code
  61. * Alan Cox : New kfree_skbmem()
  62. * Alan Cox : Make SO_DEBUG superuser only.
  63. * Alan Cox : Allow anyone to clear SO_DEBUG
  64. * (compatibility fix)
  65. * Alan Cox : Added optimistic memory grabbing for AF_UNIX throughput.
  66. * Alan Cox : Allocator for a socket is settable.
  67. * Alan Cox : SO_ERROR includes soft errors.
  68. * Alan Cox : Allow NULL arguments on some SO_ opts
  69. * Alan Cox : Generic socket allocation to make hooks
  70. * easier (suggested by Craig Metz).
  71. * Michael Pall : SO_ERROR returns positive errno again
  72. * Steve Whitehouse: Added default destructor to free
  73. * protocol private data.
  74. * Steve Whitehouse: Added various other default routines
  75. * common to several socket families.
  76. * Chris Evans : Call suser() check last on F_SETOWN
  77. * Jay Schulist : Added SO_ATTACH_FILTER and SO_DETACH_FILTER.
  78. * Andi Kleen : Add sock_kmalloc()/sock_kfree_s()
  79. * Andi Kleen : Fix write_space callback
  80. * Chris Evans : Security fixes - signedness again
  81. * Arnaldo C. Melo : cleanups, use skb_queue_purge
  82. *
  83. * To Fix:
  84. *
  85. *
  86. * This program is free software; you can redistribute it and/or
  87. * modify it under the terms of the GNU General Public License
  88. * as published by the Free Software Foundation; either version
  89. * 2 of the License, or (at your option) any later version.
  90. */
  91. #include <linux/capability.h>
  92. #include <linux/errno.h>
  93. #include <linux/types.h>
  94. #include <linux/socket.h>
  95. #include <linux/in.h>
  96. #include <linux/kernel.h>
  97. #include <linux/module.h>
  98. #include <linux/proc_fs.h>
  99. #include <linux/seq_file.h>
  100. #include <linux/sched.h>
  101. #include <linux/timer.h>
  102. #include <linux/string.h>
  103. #include <linux/sockios.h>
  104. #include <linux/net.h>
  105. #include <linux/mm.h>
  106. #include <linux/slab.h>
  107. #include <linux/interrupt.h>
  108. #include <linux/poll.h>
  109. #include <linux/tcp.h>
  110. #include <linux/init.h>
  111. #include <linux/highmem.h>
  112. #include <asm/uaccess.h>
  113. #include <asm/system.h>
  114. #include <linux/netdevice.h>
  115. #include <net/protocol.h>
  116. #include <linux/skbuff.h>
  117. #include <net/net_namespace.h>
  118. #include <net/request_sock.h>
  119. #include <net/sock.h>
  120. #include <linux/net_tstamp.h>
  121. #include <net/xfrm.h>
  122. #include <linux/ipsec.h>
  123. #include <linux/filter.h>
  124. #ifdef CONFIG_INET
  125. #include <net/tcp.h>
  126. #endif
  127. /*
  128. * Each address family might have different locking rules, so we have
  129. * one slock key per address family:
  130. */
  131. static struct lock_class_key af_family_keys[AF_MAX];
  132. static struct lock_class_key af_family_slock_keys[AF_MAX];
  133. /*
  134. * Make lock validator output more readable. (we pre-construct these
  135. * strings build-time, so that runtime initialization of socket
  136. * locks is fast):
  137. */
  138. static const char *af_family_key_strings[AF_MAX+1] = {
  139. "sk_lock-AF_UNSPEC", "sk_lock-AF_UNIX" , "sk_lock-AF_INET" ,
  140. "sk_lock-AF_AX25" , "sk_lock-AF_IPX" , "sk_lock-AF_APPLETALK",
  141. "sk_lock-AF_NETROM", "sk_lock-AF_BRIDGE" , "sk_lock-AF_ATMPVC" ,
  142. "sk_lock-AF_X25" , "sk_lock-AF_INET6" , "sk_lock-AF_ROSE" ,
  143. "sk_lock-AF_DECnet", "sk_lock-AF_NETBEUI" , "sk_lock-AF_SECURITY" ,
  144. "sk_lock-AF_KEY" , "sk_lock-AF_NETLINK" , "sk_lock-AF_PACKET" ,
  145. "sk_lock-AF_ASH" , "sk_lock-AF_ECONET" , "sk_lock-AF_ATMSVC" ,
  146. "sk_lock-AF_RDS" , "sk_lock-AF_SNA" , "sk_lock-AF_IRDA" ,
  147. "sk_lock-AF_PPPOX" , "sk_lock-AF_WANPIPE" , "sk_lock-AF_LLC" ,
  148. "sk_lock-27" , "sk_lock-28" , "sk_lock-AF_CAN" ,
  149. "sk_lock-AF_TIPC" , "sk_lock-AF_BLUETOOTH", "sk_lock-IUCV" ,
  150. "sk_lock-AF_RXRPC" , "sk_lock-AF_ISDN" , "sk_lock-AF_PHONET" ,
  151. "sk_lock-AF_IEEE802154",
  152. "sk_lock-AF_MAX"
  153. };
  154. static const char *af_family_slock_key_strings[AF_MAX+1] = {
  155. "slock-AF_UNSPEC", "slock-AF_UNIX" , "slock-AF_INET" ,
  156. "slock-AF_AX25" , "slock-AF_IPX" , "slock-AF_APPLETALK",
  157. "slock-AF_NETROM", "slock-AF_BRIDGE" , "slock-AF_ATMPVC" ,
  158. "slock-AF_X25" , "slock-AF_INET6" , "slock-AF_ROSE" ,
  159. "slock-AF_DECnet", "slock-AF_NETBEUI" , "slock-AF_SECURITY" ,
  160. "slock-AF_KEY" , "slock-AF_NETLINK" , "slock-AF_PACKET" ,
  161. "slock-AF_ASH" , "slock-AF_ECONET" , "slock-AF_ATMSVC" ,
  162. "slock-AF_RDS" , "slock-AF_SNA" , "slock-AF_IRDA" ,
  163. "slock-AF_PPPOX" , "slock-AF_WANPIPE" , "slock-AF_LLC" ,
  164. "slock-27" , "slock-28" , "slock-AF_CAN" ,
  165. "slock-AF_TIPC" , "slock-AF_BLUETOOTH", "slock-AF_IUCV" ,
  166. "slock-AF_RXRPC" , "slock-AF_ISDN" , "slock-AF_PHONET" ,
  167. "slock-AF_IEEE802154",
  168. "slock-AF_MAX"
  169. };
  170. static const char *af_family_clock_key_strings[AF_MAX+1] = {
  171. "clock-AF_UNSPEC", "clock-AF_UNIX" , "clock-AF_INET" ,
  172. "clock-AF_AX25" , "clock-AF_IPX" , "clock-AF_APPLETALK",
  173. "clock-AF_NETROM", "clock-AF_BRIDGE" , "clock-AF_ATMPVC" ,
  174. "clock-AF_X25" , "clock-AF_INET6" , "clock-AF_ROSE" ,
  175. "clock-AF_DECnet", "clock-AF_NETBEUI" , "clock-AF_SECURITY" ,
  176. "clock-AF_KEY" , "clock-AF_NETLINK" , "clock-AF_PACKET" ,
  177. "clock-AF_ASH" , "clock-AF_ECONET" , "clock-AF_ATMSVC" ,
  178. "clock-AF_RDS" , "clock-AF_SNA" , "clock-AF_IRDA" ,
  179. "clock-AF_PPPOX" , "clock-AF_WANPIPE" , "clock-AF_LLC" ,
  180. "clock-27" , "clock-28" , "clock-AF_CAN" ,
  181. "clock-AF_TIPC" , "clock-AF_BLUETOOTH", "clock-AF_IUCV" ,
  182. "clock-AF_RXRPC" , "clock-AF_ISDN" , "clock-AF_PHONET" ,
  183. "clock-AF_IEEE802154",
  184. "clock-AF_MAX"
  185. };
  186. /*
  187. * sk_callback_lock locking rules are per-address-family,
  188. * so split the lock classes by using a per-AF key:
  189. */
  190. static struct lock_class_key af_callback_keys[AF_MAX];
  191. /* Take into consideration the size of the struct sk_buff overhead in the
  192. * determination of these values, since that is non-constant across
  193. * platforms. This makes socket queueing behavior and performance
  194. * not depend upon such differences.
  195. */
  196. #define _SK_MEM_PACKETS 256
  197. #define _SK_MEM_OVERHEAD (sizeof(struct sk_buff) + 256)
  198. #define SK_WMEM_MAX (_SK_MEM_OVERHEAD * _SK_MEM_PACKETS)
  199. #define SK_RMEM_MAX (_SK_MEM_OVERHEAD * _SK_MEM_PACKETS)
  200. /* Run time adjustable parameters. */
  201. __u32 sysctl_wmem_max __read_mostly = SK_WMEM_MAX;
  202. __u32 sysctl_rmem_max __read_mostly = SK_RMEM_MAX;
  203. __u32 sysctl_wmem_default __read_mostly = SK_WMEM_MAX;
  204. __u32 sysctl_rmem_default __read_mostly = SK_RMEM_MAX;
  205. /* Maximal space eaten by iovec or ancilliary data plus some space */
  206. int sysctl_optmem_max __read_mostly = sizeof(unsigned long)*(2*UIO_MAXIOV+512);
  207. EXPORT_SYMBOL(sysctl_optmem_max);
  208. static int sock_set_timeout(long *timeo_p, char __user *optval, int optlen)
  209. {
  210. struct timeval tv;
  211. if (optlen < sizeof(tv))
  212. return -EINVAL;
  213. if (copy_from_user(&tv, optval, sizeof(tv)))
  214. return -EFAULT;
  215. if (tv.tv_usec < 0 || tv.tv_usec >= USEC_PER_SEC)
  216. return -EDOM;
  217. if (tv.tv_sec < 0) {
  218. static int warned __read_mostly;
  219. *timeo_p = 0;
  220. if (warned < 10 && net_ratelimit()) {
  221. warned++;
  222. printk(KERN_INFO "sock_set_timeout: `%s' (pid %d) "
  223. "tries to set negative timeout\n",
  224. current->comm, task_pid_nr(current));
  225. }
  226. return 0;
  227. }
  228. *timeo_p = MAX_SCHEDULE_TIMEOUT;
  229. if (tv.tv_sec == 0 && tv.tv_usec == 0)
  230. return 0;
  231. if (tv.tv_sec < (MAX_SCHEDULE_TIMEOUT/HZ - 1))
  232. *timeo_p = tv.tv_sec*HZ + (tv.tv_usec+(1000000/HZ-1))/(1000000/HZ);
  233. return 0;
  234. }
  235. static void sock_warn_obsolete_bsdism(const char *name)
  236. {
  237. static int warned;
  238. static char warncomm[TASK_COMM_LEN];
  239. if (strcmp(warncomm, current->comm) && warned < 5) {
  240. strcpy(warncomm, current->comm);
  241. printk(KERN_WARNING "process `%s' is using obsolete "
  242. "%s SO_BSDCOMPAT\n", warncomm, name);
  243. warned++;
  244. }
  245. }
  246. static void sock_disable_timestamp(struct sock *sk, int flag)
  247. {
  248. if (sock_flag(sk, flag)) {
  249. sock_reset_flag(sk, flag);
  250. if (!sock_flag(sk, SOCK_TIMESTAMP) &&
  251. !sock_flag(sk, SOCK_TIMESTAMPING_RX_SOFTWARE)) {
  252. net_disable_timestamp();
  253. }
  254. }
  255. }
  256. int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
  257. {
  258. int err = 0;
  259. int skb_len;
  260. /* Cast sk->rcvbuf to unsigned... It's pointless, but reduces
  261. number of warnings when compiling with -W --ANK
  262. */
  263. if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
  264. (unsigned)sk->sk_rcvbuf) {
  265. err = -ENOMEM;
  266. goto out;
  267. }
  268. err = sk_filter(sk, skb);
  269. if (err)
  270. goto out;
  271. if (!sk_rmem_schedule(sk, skb->truesize)) {
  272. err = -ENOBUFS;
  273. goto out;
  274. }
  275. skb->dev = NULL;
  276. skb_set_owner_r(skb, sk);
  277. /* Cache the SKB length before we tack it onto the receive
  278. * queue. Once it is added it no longer belongs to us and
  279. * may be freed by other threads of control pulling packets
  280. * from the queue.
  281. */
  282. skb_len = skb->len;
  283. skb_queue_tail(&sk->sk_receive_queue, skb);
  284. if (!sock_flag(sk, SOCK_DEAD))
  285. sk->sk_data_ready(sk, skb_len);
  286. out:
  287. return err;
  288. }
  289. EXPORT_SYMBOL(sock_queue_rcv_skb);
  290. int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
  291. {
  292. int rc = NET_RX_SUCCESS;
  293. if (sk_filter(sk, skb))
  294. goto discard_and_relse;
  295. skb->dev = NULL;
  296. if (nested)
  297. bh_lock_sock_nested(sk);
  298. else
  299. bh_lock_sock(sk);
  300. if (!sock_owned_by_user(sk)) {
  301. /*
  302. * trylock + unlock semantics:
  303. */
  304. mutex_acquire(&sk->sk_lock.dep_map, 0, 1, _RET_IP_);
  305. rc = sk_backlog_rcv(sk, skb);
  306. mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_);
  307. } else
  308. sk_add_backlog(sk, skb);
  309. bh_unlock_sock(sk);
  310. out:
  311. sock_put(sk);
  312. return rc;
  313. discard_and_relse:
  314. kfree_skb(skb);
  315. goto out;
  316. }
  317. EXPORT_SYMBOL(sk_receive_skb);
  318. struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie)
  319. {
  320. struct dst_entry *dst = sk->sk_dst_cache;
  321. if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) {
  322. sk->sk_dst_cache = NULL;
  323. dst_release(dst);
  324. return NULL;
  325. }
  326. return dst;
  327. }
  328. EXPORT_SYMBOL(__sk_dst_check);
  329. struct dst_entry *sk_dst_check(struct sock *sk, u32 cookie)
  330. {
  331. struct dst_entry *dst = sk_dst_get(sk);
  332. if (dst && dst->obsolete && dst->ops->check(dst, cookie) == NULL) {
  333. sk_dst_reset(sk);
  334. dst_release(dst);
  335. return NULL;
  336. }
  337. return dst;
  338. }
  339. EXPORT_SYMBOL(sk_dst_check);
  340. static int sock_bindtodevice(struct sock *sk, char __user *optval, int optlen)
  341. {
  342. int ret = -ENOPROTOOPT;
  343. #ifdef CONFIG_NETDEVICES
  344. struct net *net = sock_net(sk);
  345. char devname[IFNAMSIZ];
  346. int index;
  347. /* Sorry... */
  348. ret = -EPERM;
  349. if (!capable(CAP_NET_RAW))
  350. goto out;
  351. ret = -EINVAL;
  352. if (optlen < 0)
  353. goto out;
  354. /* Bind this socket to a particular device like "eth0",
  355. * as specified in the passed interface name. If the
  356. * name is "" or the option length is zero the socket
  357. * is not bound.
  358. */
  359. if (optlen > IFNAMSIZ - 1)
  360. optlen = IFNAMSIZ - 1;
  361. memset(devname, 0, sizeof(devname));
  362. ret = -EFAULT;
  363. if (copy_from_user(devname, optval, optlen))
  364. goto out;
  365. if (devname[0] == '\0') {
  366. index = 0;
  367. } else {
  368. struct net_device *dev = dev_get_by_name(net, devname);
  369. ret = -ENODEV;
  370. if (!dev)
  371. goto out;
  372. index = dev->ifindex;
  373. dev_put(dev);
  374. }
  375. lock_sock(sk);
  376. sk->sk_bound_dev_if = index;
  377. sk_dst_reset(sk);
  378. release_sock(sk);
  379. ret = 0;
  380. out:
  381. #endif
  382. return ret;
  383. }
  384. static inline void sock_valbool_flag(struct sock *sk, int bit, int valbool)
  385. {
  386. if (valbool)
  387. sock_set_flag(sk, bit);
  388. else
  389. sock_reset_flag(sk, bit);
  390. }
  391. /*
  392. * This is meant for all protocols to use and covers goings on
  393. * at the socket level. Everything here is generic.
  394. */
  395. int sock_setsockopt(struct socket *sock, int level, int optname,
  396. char __user *optval, int optlen)
  397. {
  398. struct sock *sk = sock->sk;
  399. int val;
  400. int valbool;
  401. struct linger ling;
  402. int ret = 0;
  403. /*
  404. * Options without arguments
  405. */
  406. if (optname == SO_BINDTODEVICE)
  407. return sock_bindtodevice(sk, optval, optlen);
  408. if (optlen < sizeof(int))
  409. return -EINVAL;
  410. if (get_user(val, (int __user *)optval))
  411. return -EFAULT;
  412. valbool = val ? 1 : 0;
  413. lock_sock(sk);
  414. switch (optname) {
  415. case SO_DEBUG:
  416. if (val && !capable(CAP_NET_ADMIN))
  417. ret = -EACCES;
  418. else
  419. sock_valbool_flag(sk, SOCK_DBG, valbool);
  420. break;
  421. case SO_REUSEADDR:
  422. sk->sk_reuse = valbool;
  423. break;
  424. case SO_TYPE:
  425. case SO_ERROR:
  426. ret = -ENOPROTOOPT;
  427. break;
  428. case SO_DONTROUTE:
  429. sock_valbool_flag(sk, SOCK_LOCALROUTE, valbool);
  430. break;
  431. case SO_BROADCAST:
  432. sock_valbool_flag(sk, SOCK_BROADCAST, valbool);
  433. break;
  434. case SO_SNDBUF:
  435. /* Don't error on this BSD doesn't and if you think
  436. about it this is right. Otherwise apps have to
  437. play 'guess the biggest size' games. RCVBUF/SNDBUF
  438. are treated in BSD as hints */
  439. if (val > sysctl_wmem_max)
  440. val = sysctl_wmem_max;
  441. set_sndbuf:
  442. sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
  443. if ((val * 2) < SOCK_MIN_SNDBUF)
  444. sk->sk_sndbuf = SOCK_MIN_SNDBUF;
  445. else
  446. sk->sk_sndbuf = val * 2;
  447. /*
  448. * Wake up sending tasks if we
  449. * upped the value.
  450. */
  451. sk->sk_write_space(sk);
  452. break;
  453. case SO_SNDBUFFORCE:
  454. if (!capable(CAP_NET_ADMIN)) {
  455. ret = -EPERM;
  456. break;
  457. }
  458. goto set_sndbuf;
  459. case SO_RCVBUF:
  460. /* Don't error on this BSD doesn't and if you think
  461. about it this is right. Otherwise apps have to
  462. play 'guess the biggest size' games. RCVBUF/SNDBUF
  463. are treated in BSD as hints */
  464. if (val > sysctl_rmem_max)
  465. val = sysctl_rmem_max;
  466. set_rcvbuf:
  467. sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
  468. /*
  469. * We double it on the way in to account for
  470. * "struct sk_buff" etc. overhead. Applications
  471. * assume that the SO_RCVBUF setting they make will
  472. * allow that much actual data to be received on that
  473. * socket.
  474. *
  475. * Applications are unaware that "struct sk_buff" and
  476. * other overheads allocate from the receive buffer
  477. * during socket buffer allocation.
  478. *
  479. * And after considering the possible alternatives,
  480. * returning the value we actually used in getsockopt
  481. * is the most desirable behavior.
  482. */
  483. if ((val * 2) < SOCK_MIN_RCVBUF)
  484. sk->sk_rcvbuf = SOCK_MIN_RCVBUF;
  485. else
  486. sk->sk_rcvbuf = val * 2;
  487. break;
  488. case SO_RCVBUFFORCE:
  489. if (!capable(CAP_NET_ADMIN)) {
  490. ret = -EPERM;
  491. break;
  492. }
  493. goto set_rcvbuf;
  494. case SO_KEEPALIVE:
  495. #ifdef CONFIG_INET
  496. if (sk->sk_protocol == IPPROTO_TCP)
  497. tcp_set_keepalive(sk, valbool);
  498. #endif
  499. sock_valbool_flag(sk, SOCK_KEEPOPEN, valbool);
  500. break;
  501. case SO_OOBINLINE:
  502. sock_valbool_flag(sk, SOCK_URGINLINE, valbool);
  503. break;
  504. case SO_NO_CHECK:
  505. sk->sk_no_check = valbool;
  506. break;
  507. case SO_PRIORITY:
  508. if ((val >= 0 && val <= 6) || capable(CAP_NET_ADMIN))
  509. sk->sk_priority = val;
  510. else
  511. ret = -EPERM;
  512. break;
  513. case SO_LINGER:
  514. if (optlen < sizeof(ling)) {
  515. ret = -EINVAL; /* 1003.1g */
  516. break;
  517. }
  518. if (copy_from_user(&ling, optval, sizeof(ling))) {
  519. ret = -EFAULT;
  520. break;
  521. }
  522. if (!ling.l_onoff)
  523. sock_reset_flag(sk, SOCK_LINGER);
  524. else {
  525. #if (BITS_PER_LONG == 32)
  526. if ((unsigned int)ling.l_linger >= MAX_SCHEDULE_TIMEOUT/HZ)
  527. sk->sk_lingertime = MAX_SCHEDULE_TIMEOUT;
  528. else
  529. #endif
  530. sk->sk_lingertime = (unsigned int)ling.l_linger * HZ;
  531. sock_set_flag(sk, SOCK_LINGER);
  532. }
  533. break;
  534. case SO_BSDCOMPAT:
  535. sock_warn_obsolete_bsdism("setsockopt");
  536. break;
  537. case SO_PASSCRED:
  538. if (valbool)
  539. set_bit(SOCK_PASSCRED, &sock->flags);
  540. else
  541. clear_bit(SOCK_PASSCRED, &sock->flags);
  542. break;
  543. case SO_TIMESTAMP:
  544. case SO_TIMESTAMPNS:
  545. if (valbool) {
  546. if (optname == SO_TIMESTAMP)
  547. sock_reset_flag(sk, SOCK_RCVTSTAMPNS);
  548. else
  549. sock_set_flag(sk, SOCK_RCVTSTAMPNS);
  550. sock_set_flag(sk, SOCK_RCVTSTAMP);
  551. sock_enable_timestamp(sk, SOCK_TIMESTAMP);
  552. } else {
  553. sock_reset_flag(sk, SOCK_RCVTSTAMP);
  554. sock_reset_flag(sk, SOCK_RCVTSTAMPNS);
  555. }
  556. break;
  557. case SO_TIMESTAMPING:
  558. if (val & ~SOF_TIMESTAMPING_MASK) {
  559. ret = EINVAL;
  560. break;
  561. }
  562. sock_valbool_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE,
  563. val & SOF_TIMESTAMPING_TX_HARDWARE);
  564. sock_valbool_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE,
  565. val & SOF_TIMESTAMPING_TX_SOFTWARE);
  566. sock_valbool_flag(sk, SOCK_TIMESTAMPING_RX_HARDWARE,
  567. val & SOF_TIMESTAMPING_RX_HARDWARE);
  568. if (val & SOF_TIMESTAMPING_RX_SOFTWARE)
  569. sock_enable_timestamp(sk,
  570. SOCK_TIMESTAMPING_RX_SOFTWARE);
  571. else
  572. sock_disable_timestamp(sk,
  573. SOCK_TIMESTAMPING_RX_SOFTWARE);
  574. sock_valbool_flag(sk, SOCK_TIMESTAMPING_SOFTWARE,
  575. val & SOF_TIMESTAMPING_SOFTWARE);
  576. sock_valbool_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE,
  577. val & SOF_TIMESTAMPING_SYS_HARDWARE);
  578. sock_valbool_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE,
  579. val & SOF_TIMESTAMPING_RAW_HARDWARE);
  580. break;
  581. case SO_RCVLOWAT:
  582. if (val < 0)
  583. val = INT_MAX;
  584. sk->sk_rcvlowat = val ? : 1;
  585. break;
  586. case SO_RCVTIMEO:
  587. ret = sock_set_timeout(&sk->sk_rcvtimeo, optval, optlen);
  588. break;
  589. case SO_SNDTIMEO:
  590. ret = sock_set_timeout(&sk->sk_sndtimeo, optval, optlen);
  591. break;
  592. case SO_ATTACH_FILTER:
  593. ret = -EINVAL;
  594. if (optlen == sizeof(struct sock_fprog)) {
  595. struct sock_fprog fprog;
  596. ret = -EFAULT;
  597. if (copy_from_user(&fprog, optval, sizeof(fprog)))
  598. break;
  599. ret = sk_attach_filter(&fprog, sk);
  600. }
  601. break;
  602. case SO_DETACH_FILTER:
  603. ret = sk_detach_filter(sk);
  604. break;
  605. case SO_PASSSEC:
  606. if (valbool)
  607. set_bit(SOCK_PASSSEC, &sock->flags);
  608. else
  609. clear_bit(SOCK_PASSSEC, &sock->flags);
  610. break;
  611. case SO_MARK:
  612. if (!capable(CAP_NET_ADMIN))
  613. ret = -EPERM;
  614. else
  615. sk->sk_mark = val;
  616. break;
  617. /* We implement the SO_SNDLOWAT etc to
  618. not be settable (1003.1g 5.3) */
  619. default:
  620. ret = -ENOPROTOOPT;
  621. break;
  622. }
  623. release_sock(sk);
  624. return ret;
  625. }
  626. EXPORT_SYMBOL(sock_setsockopt);
  627. int sock_getsockopt(struct socket *sock, int level, int optname,
  628. char __user *optval, int __user *optlen)
  629. {
  630. struct sock *sk = sock->sk;
  631. union {
  632. int val;
  633. struct linger ling;
  634. struct timeval tm;
  635. } v;
  636. unsigned int lv = sizeof(int);
  637. int len;
  638. if (get_user(len, optlen))
  639. return -EFAULT;
  640. if (len < 0)
  641. return -EINVAL;
  642. memset(&v, 0, sizeof(v));
  643. switch (optname) {
  644. case SO_DEBUG:
  645. v.val = sock_flag(sk, SOCK_DBG);
  646. break;
  647. case SO_DONTROUTE:
  648. v.val = sock_flag(sk, SOCK_LOCALROUTE);
  649. break;
  650. case SO_BROADCAST:
  651. v.val = !!sock_flag(sk, SOCK_BROADCAST);
  652. break;
  653. case SO_SNDBUF:
  654. v.val = sk->sk_sndbuf;
  655. break;
  656. case SO_RCVBUF:
  657. v.val = sk->sk_rcvbuf;
  658. break;
  659. case SO_REUSEADDR:
  660. v.val = sk->sk_reuse;
  661. break;
  662. case SO_KEEPALIVE:
  663. v.val = !!sock_flag(sk, SOCK_KEEPOPEN);
  664. break;
  665. case SO_TYPE:
  666. v.val = sk->sk_type;
  667. break;
  668. case SO_ERROR:
  669. v.val = -sock_error(sk);
  670. if (v.val == 0)
  671. v.val = xchg(&sk->sk_err_soft, 0);
  672. break;
  673. case SO_OOBINLINE:
  674. v.val = !!sock_flag(sk, SOCK_URGINLINE);
  675. break;
  676. case SO_NO_CHECK:
  677. v.val = sk->sk_no_check;
  678. break;
  679. case SO_PRIORITY:
  680. v.val = sk->sk_priority;
  681. break;
  682. case SO_LINGER:
  683. lv = sizeof(v.ling);
  684. v.ling.l_onoff = !!sock_flag(sk, SOCK_LINGER);
  685. v.ling.l_linger = sk->sk_lingertime / HZ;
  686. break;
  687. case SO_BSDCOMPAT:
  688. sock_warn_obsolete_bsdism("getsockopt");
  689. break;
  690. case SO_TIMESTAMP:
  691. v.val = sock_flag(sk, SOCK_RCVTSTAMP) &&
  692. !sock_flag(sk, SOCK_RCVTSTAMPNS);
  693. break;
  694. case SO_TIMESTAMPNS:
  695. v.val = sock_flag(sk, SOCK_RCVTSTAMPNS);
  696. break;
  697. case SO_TIMESTAMPING:
  698. v.val = 0;
  699. if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
  700. v.val |= SOF_TIMESTAMPING_TX_HARDWARE;
  701. if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
  702. v.val |= SOF_TIMESTAMPING_TX_SOFTWARE;
  703. if (sock_flag(sk, SOCK_TIMESTAMPING_RX_HARDWARE))
  704. v.val |= SOF_TIMESTAMPING_RX_HARDWARE;
  705. if (sock_flag(sk, SOCK_TIMESTAMPING_RX_SOFTWARE))
  706. v.val |= SOF_TIMESTAMPING_RX_SOFTWARE;
  707. if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE))
  708. v.val |= SOF_TIMESTAMPING_SOFTWARE;
  709. if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE))
  710. v.val |= SOF_TIMESTAMPING_SYS_HARDWARE;
  711. if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE))
  712. v.val |= SOF_TIMESTAMPING_RAW_HARDWARE;
  713. break;
  714. case SO_RCVTIMEO:
  715. lv = sizeof(struct timeval);
  716. if (sk->sk_rcvtimeo == MAX_SCHEDULE_TIMEOUT) {
  717. v.tm.tv_sec = 0;
  718. v.tm.tv_usec = 0;
  719. } else {
  720. v.tm.tv_sec = sk->sk_rcvtimeo / HZ;
  721. v.tm.tv_usec = ((sk->sk_rcvtimeo % HZ) * 1000000) / HZ;
  722. }
  723. break;
  724. case SO_SNDTIMEO:
  725. lv = sizeof(struct timeval);
  726. if (sk->sk_sndtimeo == MAX_SCHEDULE_TIMEOUT) {
  727. v.tm.tv_sec = 0;
  728. v.tm.tv_usec = 0;
  729. } else {
  730. v.tm.tv_sec = sk->sk_sndtimeo / HZ;
  731. v.tm.tv_usec = ((sk->sk_sndtimeo % HZ) * 1000000) / HZ;
  732. }
  733. break;
  734. case SO_RCVLOWAT:
  735. v.val = sk->sk_rcvlowat;
  736. break;
  737. case SO_SNDLOWAT:
  738. v.val = 1;
  739. break;
  740. case SO_PASSCRED:
  741. v.val = test_bit(SOCK_PASSCRED, &sock->flags) ? 1 : 0;
  742. break;
  743. case SO_PEERCRED:
  744. if (len > sizeof(sk->sk_peercred))
  745. len = sizeof(sk->sk_peercred);
  746. if (copy_to_user(optval, &sk->sk_peercred, len))
  747. return -EFAULT;
  748. goto lenout;
  749. case SO_PEERNAME:
  750. {
  751. char address[128];
  752. if (sock->ops->getname(sock, (struct sockaddr *)address, &lv, 2))
  753. return -ENOTCONN;
  754. if (lv < len)
  755. return -EINVAL;
  756. if (copy_to_user(optval, address, len))
  757. return -EFAULT;
  758. goto lenout;
  759. }
  760. /* Dubious BSD thing... Probably nobody even uses it, but
  761. * the UNIX standard wants it for whatever reason... -DaveM
  762. */
  763. case SO_ACCEPTCONN:
  764. v.val = sk->sk_state == TCP_LISTEN;
  765. break;
  766. case SO_PASSSEC:
  767. v.val = test_bit(SOCK_PASSSEC, &sock->flags) ? 1 : 0;
  768. break;
  769. case SO_PEERSEC:
  770. return security_socket_getpeersec_stream(sock, optval, optlen, len);
  771. case SO_MARK:
  772. v.val = sk->sk_mark;
  773. break;
  774. default:
  775. return -ENOPROTOOPT;
  776. }
  777. if (len > lv)
  778. len = lv;
  779. if (copy_to_user(optval, &v, len))
  780. return -EFAULT;
  781. lenout:
  782. if (put_user(len, optlen))
  783. return -EFAULT;
  784. return 0;
  785. }
  786. /*
  787. * Initialize an sk_lock.
  788. *
  789. * (We also register the sk_lock with the lock validator.)
  790. */
  791. static inline void sock_lock_init(struct sock *sk)
  792. {
  793. sock_lock_init_class_and_name(sk,
  794. af_family_slock_key_strings[sk->sk_family],
  795. af_family_slock_keys + sk->sk_family,
  796. af_family_key_strings[sk->sk_family],
  797. af_family_keys + sk->sk_family);
  798. }
  799. static void sock_copy(struct sock *nsk, const struct sock *osk)
  800. {
  801. #ifdef CONFIG_SECURITY_NETWORK
  802. void *sptr = nsk->sk_security;
  803. #endif
  804. memcpy(nsk, osk, osk->sk_prot->obj_size);
  805. #ifdef CONFIG_SECURITY_NETWORK
  806. nsk->sk_security = sptr;
  807. security_sk_clone(osk, nsk);
  808. #endif
  809. }
  810. static struct sock *sk_prot_alloc(struct proto *prot, gfp_t priority,
  811. int family)
  812. {
  813. struct sock *sk;
  814. struct kmem_cache *slab;
  815. slab = prot->slab;
  816. if (slab != NULL)
  817. sk = kmem_cache_alloc(slab, priority);
  818. else
  819. sk = kmalloc(prot->obj_size, priority);
  820. if (sk != NULL) {
  821. kmemcheck_annotate_bitfield(sk, flags);
  822. if (security_sk_alloc(sk, family, priority))
  823. goto out_free;
  824. if (!try_module_get(prot->owner))
  825. goto out_free_sec;
  826. }
  827. return sk;
  828. out_free_sec:
  829. security_sk_free(sk);
  830. out_free:
  831. if (slab != NULL)
  832. kmem_cache_free(slab, sk);
  833. else
  834. kfree(sk);
  835. return NULL;
  836. }
  837. static void sk_prot_free(struct proto *prot, struct sock *sk)
  838. {
  839. struct kmem_cache *slab;
  840. struct module *owner;
  841. owner = prot->owner;
  842. slab = prot->slab;
  843. security_sk_free(sk);
  844. if (slab != NULL)
  845. kmem_cache_free(slab, sk);
  846. else
  847. kfree(sk);
  848. module_put(owner);
  849. }
  850. /**
  851. * sk_alloc - All socket objects are allocated here
  852. * @net: the applicable net namespace
  853. * @family: protocol family
  854. * @priority: for allocation (%GFP_KERNEL, %GFP_ATOMIC, etc)
  855. * @prot: struct proto associated with this new sock instance
  856. */
  857. struct sock *sk_alloc(struct net *net, int family, gfp_t priority,
  858. struct proto *prot)
  859. {
  860. struct sock *sk;
  861. sk = sk_prot_alloc(prot, priority | __GFP_ZERO, family);
  862. if (sk) {
  863. sk->sk_family = family;
  864. /*
  865. * See comment in struct sock definition to understand
  866. * why we need sk_prot_creator -acme
  867. */
  868. sk->sk_prot = sk->sk_prot_creator = prot;
  869. sock_lock_init(sk);
  870. sock_net_set(sk, get_net(net));
  871. }
  872. return sk;
  873. }
  874. EXPORT_SYMBOL(sk_alloc);
  875. static void __sk_free(struct sock *sk)
  876. {
  877. struct sk_filter *filter;
  878. if (sk->sk_destruct)
  879. sk->sk_destruct(sk);
  880. filter = rcu_dereference(sk->sk_filter);
  881. if (filter) {
  882. sk_filter_uncharge(sk, filter);
  883. rcu_assign_pointer(sk->sk_filter, NULL);
  884. }
  885. sock_disable_timestamp(sk, SOCK_TIMESTAMP);
  886. sock_disable_timestamp(sk, SOCK_TIMESTAMPING_RX_SOFTWARE);
  887. if (atomic_read(&sk->sk_omem_alloc))
  888. printk(KERN_DEBUG "%s: optmem leakage (%d bytes) detected.\n",
  889. __func__, atomic_read(&sk->sk_omem_alloc));
  890. put_net(sock_net(sk));
  891. sk_prot_free(sk->sk_prot_creator, sk);
  892. }
  893. void sk_free(struct sock *sk)
  894. {
  895. /*
  896. * We substract one from sk_wmem_alloc and can know if
  897. * some packets are still in some tx queue.
  898. * If not null, sock_wfree() will call __sk_free(sk) later
  899. */
  900. if (atomic_dec_and_test(&sk->sk_wmem_alloc))
  901. __sk_free(sk);
  902. }
  903. EXPORT_SYMBOL(sk_free);
  904. /*
  905. * Last sock_put should drop referrence to sk->sk_net. It has already
  906. * been dropped in sk_change_net. Taking referrence to stopping namespace
  907. * is not an option.
  908. * Take referrence to a socket to remove it from hash _alive_ and after that
  909. * destroy it in the context of init_net.
  910. */
  911. void sk_release_kernel(struct sock *sk)
  912. {
  913. if (sk == NULL || sk->sk_socket == NULL)
  914. return;
  915. sock_hold(sk);
  916. sock_release(sk->sk_socket);
  917. release_net(sock_net(sk));
  918. sock_net_set(sk, get_net(&init_net));
  919. sock_put(sk);
  920. }
  921. EXPORT_SYMBOL(sk_release_kernel);
  922. struct sock *sk_clone(const struct sock *sk, const gfp_t priority)
  923. {
  924. struct sock *newsk;
  925. newsk = sk_prot_alloc(sk->sk_prot, priority, sk->sk_family);
  926. if (newsk != NULL) {
  927. struct sk_filter *filter;
  928. sock_copy(newsk, sk);
  929. /* SANITY */
  930. get_net(sock_net(newsk));
  931. sk_node_init(&newsk->sk_node);
  932. sock_lock_init(newsk);
  933. bh_lock_sock(newsk);
  934. newsk->sk_backlog.head = newsk->sk_backlog.tail = NULL;
  935. atomic_set(&newsk->sk_rmem_alloc, 0);
  936. /*
  937. * sk_wmem_alloc set to one (see sk_free() and sock_wfree())
  938. */
  939. atomic_set(&newsk->sk_wmem_alloc, 1);
  940. atomic_set(&newsk->sk_omem_alloc, 0);
  941. skb_queue_head_init(&newsk->sk_receive_queue);
  942. skb_queue_head_init(&newsk->sk_write_queue);
  943. #ifdef CONFIG_NET_DMA
  944. skb_queue_head_init(&newsk->sk_async_wait_queue);
  945. #endif
  946. rwlock_init(&newsk->sk_dst_lock);
  947. rwlock_init(&newsk->sk_callback_lock);
  948. lockdep_set_class_and_name(&newsk->sk_callback_lock,
  949. af_callback_keys + newsk->sk_family,
  950. af_family_clock_key_strings[newsk->sk_family]);
  951. newsk->sk_dst_cache = NULL;
  952. newsk->sk_wmem_queued = 0;
  953. newsk->sk_forward_alloc = 0;
  954. newsk->sk_send_head = NULL;
  955. newsk->sk_userlocks = sk->sk_userlocks & ~SOCK_BINDPORT_LOCK;
  956. sock_reset_flag(newsk, SOCK_DONE);
  957. skb_queue_head_init(&newsk->sk_error_queue);
  958. filter = newsk->sk_filter;
  959. if (filter != NULL)
  960. sk_filter_charge(newsk, filter);
  961. if (unlikely(xfrm_sk_clone_policy(newsk))) {
  962. /* It is still raw copy of parent, so invalidate
  963. * destructor and make plain sk_free() */
  964. newsk->sk_destruct = NULL;
  965. sk_free(newsk);
  966. newsk = NULL;
  967. goto out;
  968. }
  969. newsk->sk_err = 0;
  970. newsk->sk_priority = 0;
  971. atomic_set(&newsk->sk_refcnt, 2);
  972. /*
  973. * Increment the counter in the same struct proto as the master
  974. * sock (sk_refcnt_debug_inc uses newsk->sk_prot->socks, that
  975. * is the same as sk->sk_prot->socks, as this field was copied
  976. * with memcpy).
  977. *
  978. * This _changes_ the previous behaviour, where
  979. * tcp_create_openreq_child always was incrementing the
  980. * equivalent to tcp_prot->socks (inet_sock_nr), so this have
  981. * to be taken into account in all callers. -acme
  982. */
  983. sk_refcnt_debug_inc(newsk);
  984. sk_set_socket(newsk, NULL);
  985. newsk->sk_sleep = NULL;
  986. if (newsk->sk_prot->sockets_allocated)
  987. percpu_counter_inc(newsk->sk_prot->sockets_allocated);
  988. }
  989. out:
  990. return newsk;
  991. }
  992. EXPORT_SYMBOL_GPL(sk_clone);
  993. void sk_setup_caps(struct sock *sk, struct dst_entry *dst)
  994. {
  995. __sk_dst_set(sk, dst);
  996. sk->sk_route_caps = dst->dev->features;
  997. if (sk->sk_route_caps & NETIF_F_GSO)
  998. sk->sk_route_caps |= NETIF_F_GSO_SOFTWARE;
  999. if (sk_can_gso(sk)) {
  1000. if (dst->header_len) {
  1001. sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
  1002. } else {
  1003. sk->sk_route_caps |= NETIF_F_SG | NETIF_F_HW_CSUM;
  1004. sk->sk_gso_max_size = dst->dev->gso_max_size;
  1005. }
  1006. }
  1007. }
  1008. EXPORT_SYMBOL_GPL(sk_setup_caps);
  1009. void __init sk_init(void)
  1010. {
  1011. if (num_physpages <= 4096) {
  1012. sysctl_wmem_max = 32767;
  1013. sysctl_rmem_max = 32767;
  1014. sysctl_wmem_default = 32767;
  1015. sysctl_rmem_default = 32767;
  1016. } else if (num_physpages >= 131072) {
  1017. sysctl_wmem_max = 131071;
  1018. sysctl_rmem_max = 131071;
  1019. }
  1020. }
  1021. /*
  1022. * Simple resource managers for sockets.
  1023. */
  1024. /*
  1025. * Write buffer destructor automatically called from kfree_skb.
  1026. */
  1027. void sock_wfree(struct sk_buff *skb)
  1028. {
  1029. struct sock *sk = skb->sk;
  1030. int res;
  1031. /* In case it might be waiting for more memory. */
  1032. res = atomic_sub_return(skb->truesize, &sk->sk_wmem_alloc);
  1033. if (!sock_flag(sk, SOCK_USE_WRITE_QUEUE))
  1034. sk->sk_write_space(sk);
  1035. /*
  1036. * if sk_wmem_alloc reached 0, we are last user and should
  1037. * free this sock, as sk_free() call could not do it.
  1038. */
  1039. if (res == 0)
  1040. __sk_free(sk);
  1041. }
  1042. EXPORT_SYMBOL(sock_wfree);
  1043. /*
  1044. * Read buffer destructor automatically called from kfree_skb.
  1045. */
  1046. void sock_rfree(struct sk_buff *skb)
  1047. {
  1048. struct sock *sk = skb->sk;
  1049. atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
  1050. sk_mem_uncharge(skb->sk, skb->truesize);
  1051. }
  1052. EXPORT_SYMBOL(sock_rfree);
  1053. int sock_i_uid(struct sock *sk)
  1054. {
  1055. int uid;
  1056. read_lock(&sk->sk_callback_lock);
  1057. uid = sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_uid : 0;
  1058. read_unlock(&sk->sk_callback_lock);
  1059. return uid;
  1060. }
  1061. EXPORT_SYMBOL(sock_i_uid);
  1062. unsigned long sock_i_ino(struct sock *sk)
  1063. {
  1064. unsigned long ino;
  1065. read_lock(&sk->sk_callback_lock);
  1066. ino = sk->sk_socket ? SOCK_INODE(sk->sk_socket)->i_ino : 0;
  1067. read_unlock(&sk->sk_callback_lock);
  1068. return ino;
  1069. }
  1070. EXPORT_SYMBOL(sock_i_ino);
  1071. /*
  1072. * Allocate a skb from the socket's send buffer.
  1073. */
  1074. struct sk_buff *sock_wmalloc(struct sock *sk, unsigned long size, int force,
  1075. gfp_t priority)
  1076. {
  1077. if (force || atomic_read(&sk->sk_wmem_alloc) < sk->sk_sndbuf) {
  1078. struct sk_buff *skb = alloc_skb(size, priority);
  1079. if (skb) {
  1080. skb_set_owner_w(skb, sk);
  1081. return skb;
  1082. }
  1083. }
  1084. return NULL;
  1085. }
  1086. EXPORT_SYMBOL(sock_wmalloc);
  1087. /*
  1088. * Allocate a skb from the socket's receive buffer.
  1089. */
  1090. struct sk_buff *sock_rmalloc(struct sock *sk, unsigned long size, int force,
  1091. gfp_t priority)
  1092. {
  1093. if (force || atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf) {
  1094. struct sk_buff *skb = alloc_skb(size, priority);
  1095. if (skb) {
  1096. skb_set_owner_r(skb, sk);
  1097. return skb;
  1098. }
  1099. }
  1100. return NULL;
  1101. }
  1102. /*
  1103. * Allocate a memory block from the socket's option memory buffer.
  1104. */
  1105. void *sock_kmalloc(struct sock *sk, int size, gfp_t priority)
  1106. {
  1107. if ((unsigned)size <= sysctl_optmem_max &&
  1108. atomic_read(&sk->sk_omem_alloc) + size < sysctl_optmem_max) {
  1109. void *mem;
  1110. /* First do the add, to avoid the race if kmalloc
  1111. * might sleep.
  1112. */
  1113. atomic_add(size, &sk->sk_omem_alloc);
  1114. mem = kmalloc(size, priority);
  1115. if (mem)
  1116. return mem;
  1117. atomic_sub(size, &sk->sk_omem_alloc);
  1118. }
  1119. return NULL;
  1120. }
  1121. EXPORT_SYMBOL(sock_kmalloc);
  1122. /*
  1123. * Free an option memory block.
  1124. */
  1125. void sock_kfree_s(struct sock *sk, void *mem, int size)
  1126. {
  1127. kfree(mem);
  1128. atomic_sub(size, &sk->sk_omem_alloc);
  1129. }
  1130. EXPORT_SYMBOL(sock_kfree_s);
  1131. /* It is almost wait_for_tcp_memory minus release_sock/lock_sock.
  1132. I think, these locks should be removed for datagram sockets.
  1133. */
  1134. static long sock_wait_for_wmem(struct sock *sk, long timeo)
  1135. {
  1136. DEFINE_WAIT(wait);
  1137. clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
  1138. for (;;) {
  1139. if (!timeo)
  1140. break;
  1141. if (signal_pending(current))
  1142. break;
  1143. set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
  1144. prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
  1145. if (atomic_read(&sk->sk_wmem_alloc) < sk->sk_sndbuf)
  1146. break;
  1147. if (sk->sk_shutdown & SEND_SHUTDOWN)
  1148. break;
  1149. if (sk->sk_err)
  1150. break;
  1151. timeo = schedule_timeout(timeo);
  1152. }
  1153. finish_wait(sk->sk_sleep, &wait);
  1154. return timeo;
  1155. }
  1156. /*
  1157. * Generic send/receive buffer handlers
  1158. */
  1159. struct sk_buff *sock_alloc_send_pskb(struct sock *sk, unsigned long header_len,
  1160. unsigned long data_len, int noblock,
  1161. int *errcode)
  1162. {
  1163. struct sk_buff *skb;
  1164. gfp_t gfp_mask;
  1165. long timeo;
  1166. int err;
  1167. gfp_mask = sk->sk_allocation;
  1168. if (gfp_mask & __GFP_WAIT)
  1169. gfp_mask |= __GFP_REPEAT;
  1170. timeo = sock_sndtimeo(sk, noblock);
  1171. while (1) {
  1172. err = sock_error(sk);
  1173. if (err != 0)
  1174. goto failure;
  1175. err = -EPIPE;
  1176. if (sk->sk_shutdown & SEND_SHUTDOWN)
  1177. goto failure;
  1178. if (atomic_read(&sk->sk_wmem_alloc) < sk->sk_sndbuf) {
  1179. skb = alloc_skb(header_len, gfp_mask);
  1180. if (skb) {
  1181. int npages;
  1182. int i;
  1183. /* No pages, we're done... */
  1184. if (!data_len)
  1185. break;
  1186. npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
  1187. skb->truesize += data_len;
  1188. skb_shinfo(skb)->nr_frags = npages;
  1189. for (i = 0; i < npages; i++) {
  1190. struct page *page;
  1191. skb_frag_t *frag;
  1192. page = alloc_pages(sk->sk_allocation, 0);
  1193. if (!page) {
  1194. err = -ENOBUFS;
  1195. skb_shinfo(skb)->nr_frags = i;
  1196. kfree_skb(skb);
  1197. goto failure;
  1198. }
  1199. frag = &skb_shinfo(skb)->frags[i];
  1200. frag->page = page;
  1201. frag->page_offset = 0;
  1202. frag->size = (data_len >= PAGE_SIZE ?
  1203. PAGE_SIZE :
  1204. data_len);
  1205. data_len -= PAGE_SIZE;
  1206. }
  1207. /* Full success... */
  1208. break;
  1209. }
  1210. err = -ENOBUFS;
  1211. goto failure;
  1212. }
  1213. set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
  1214. set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
  1215. err = -EAGAIN;
  1216. if (!timeo)
  1217. goto failure;
  1218. if (signal_pending(current))
  1219. goto interrupted;
  1220. timeo = sock_wait_for_wmem(sk, timeo);
  1221. }
  1222. skb_set_owner_w(skb, sk);
  1223. return skb;
  1224. interrupted:
  1225. err = sock_intr_errno(timeo);
  1226. failure:
  1227. *errcode = err;
  1228. return NULL;
  1229. }
  1230. EXPORT_SYMBOL(sock_alloc_send_pskb);
  1231. struct sk_buff *sock_alloc_send_skb(struct sock *sk, unsigned long size,
  1232. int noblock, int *errcode)
  1233. {
  1234. return sock_alloc_send_pskb(sk, size, 0, noblock, errcode);
  1235. }
  1236. EXPORT_SYMBOL(sock_alloc_send_skb);
  1237. static void __lock_sock(struct sock *sk)
  1238. {
  1239. DEFINE_WAIT(wait);
  1240. for (;;) {
  1241. prepare_to_wait_exclusive(&sk->sk_lock.wq, &wait,
  1242. TASK_UNINTERRUPTIBLE);
  1243. spin_unlock_bh(&sk->sk_lock.slock);
  1244. schedule();
  1245. spin_lock_bh(&sk->sk_lock.slock);
  1246. if (!sock_owned_by_user(sk))
  1247. break;
  1248. }
  1249. finish_wait(&sk->sk_lock.wq, &wait);
  1250. }
  1251. static void __release_sock(struct sock *sk)
  1252. {
  1253. struct sk_buff *skb = sk->sk_backlog.head;
  1254. do {
  1255. sk->sk_backlog.head = sk->sk_backlog.tail = NULL;
  1256. bh_unlock_sock(sk);
  1257. do {
  1258. struct sk_buff *next = skb->next;
  1259. skb->next = NULL;
  1260. sk_backlog_rcv(sk, skb);
  1261. /*
  1262. * We are in process context here with softirqs
  1263. * disabled, use cond_resched_softirq() to preempt.
  1264. * This is safe to do because we've taken the backlog
  1265. * queue private:
  1266. */
  1267. cond_resched_softirq();
  1268. skb = next;
  1269. } while (skb != NULL);
  1270. bh_lock_sock(sk);
  1271. } while ((skb = sk->sk_backlog.head) != NULL);
  1272. }
  1273. /**
  1274. * sk_wait_data - wait for data to arrive at sk_receive_queue
  1275. * @sk: sock to wait on
  1276. * @timeo: for how long
  1277. *
  1278. * Now socket state including sk->sk_err is changed only under lock,
  1279. * hence we may omit checks after joining wait queue.
  1280. * We check receive queue before schedule() only as optimization;
  1281. * it is very likely that release_sock() added new data.
  1282. */
  1283. int sk_wait_data(struct sock *sk, long *timeo)
  1284. {
  1285. int rc;
  1286. DEFINE_WAIT(wait);
  1287. prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
  1288. set_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
  1289. rc = sk_wait_event(sk, timeo, !skb_queue_empty(&sk->sk_receive_queue));
  1290. clear_bit(SOCK_ASYNC_WAITDATA, &sk->sk_socket->flags);
  1291. finish_wait(sk->sk_sleep, &wait);
  1292. return rc;
  1293. }
  1294. EXPORT_SYMBOL(sk_wait_data);
  1295. /**
  1296. * __sk_mem_schedule - increase sk_forward_alloc and memory_allocated
  1297. * @sk: socket
  1298. * @size: memory size to allocate
  1299. * @kind: allocation type
  1300. *
  1301. * If kind is SK_MEM_SEND, it means wmem allocation. Otherwise it means
  1302. * rmem allocation. This function assumes that protocols which have
  1303. * memory_pressure use sk_wmem_queued as write buffer accounting.
  1304. */
  1305. int __sk_mem_schedule(struct sock *sk, int size, int kind)
  1306. {
  1307. struct proto *prot = sk->sk_prot;
  1308. int amt = sk_mem_pages(size);
  1309. int allocated;
  1310. sk->sk_forward_alloc += amt * SK_MEM_QUANTUM;
  1311. allocated = atomic_add_return(amt, prot->memory_allocated);
  1312. /* Under limit. */
  1313. if (allocated <= prot->sysctl_mem[0]) {
  1314. if (prot->memory_pressure && *prot->memory_pressure)
  1315. *prot->memory_pressure = 0;
  1316. return 1;
  1317. }
  1318. /* Under pressure. */
  1319. if (allocated > prot->sysctl_mem[1])
  1320. if (prot->enter_memory_pressure)
  1321. prot->enter_memory_pressure(sk);
  1322. /* Over hard limit. */
  1323. if (allocated > prot->sysctl_mem[2])
  1324. goto suppress_allocation;
  1325. /* guarantee minimum buffer size under pressure */
  1326. if (kind == SK_MEM_RECV) {
  1327. if (atomic_read(&sk->sk_rmem_alloc) < prot->sysctl_rmem[0])
  1328. return 1;
  1329. } else { /* SK_MEM_SEND */
  1330. if (sk->sk_type == SOCK_STREAM) {
  1331. if (sk->sk_wmem_queued < prot->sysctl_wmem[0])
  1332. return 1;
  1333. } else if (atomic_read(&sk->sk_wmem_alloc) <
  1334. prot->sysctl_wmem[0])
  1335. return 1;
  1336. }
  1337. if (prot->memory_pressure) {
  1338. int alloc;
  1339. if (!*prot->memory_pressure)
  1340. return 1;
  1341. alloc = percpu_counter_read_positive(prot->sockets_allocated);
  1342. if (prot->sysctl_mem[2] > alloc *
  1343. sk_mem_pages(sk->sk_wmem_queued +
  1344. atomic_read(&sk->sk_rmem_alloc) +
  1345. sk->sk_forward_alloc))
  1346. return 1;
  1347. }
  1348. suppress_allocation:
  1349. if (kind == SK_MEM_SEND && sk->sk_type == SOCK_STREAM) {
  1350. sk_stream_moderate_sndbuf(sk);
  1351. /* Fail only if socket is _under_ its sndbuf.
  1352. * In this case we cannot block, so that we have to fail.
  1353. */
  1354. if (sk->sk_wmem_queued + size >= sk->sk_sndbuf)
  1355. return 1;
  1356. }
  1357. /* Alas. Undo changes. */
  1358. sk->sk_forward_alloc -= amt * SK_MEM_QUANTUM;
  1359. atomic_sub(amt, prot->memory_allocated);
  1360. return 0;
  1361. }
  1362. EXPORT_SYMBOL(__sk_mem_schedule);
  1363. /**
  1364. * __sk_reclaim - reclaim memory_allocated
  1365. * @sk: socket
  1366. */
  1367. void __sk_mem_reclaim(struct sock *sk)
  1368. {
  1369. struct proto *prot = sk->sk_prot;
  1370. atomic_sub(sk->sk_forward_alloc >> SK_MEM_QUANTUM_SHIFT,
  1371. prot->memory_allocated);
  1372. sk->sk_forward_alloc &= SK_MEM_QUANTUM - 1;
  1373. if (prot->memory_pressure && *prot->memory_pressure &&
  1374. (atomic_read(prot->memory_allocated) < prot->sysctl_mem[0]))
  1375. *prot->memory_pressure = 0;
  1376. }
  1377. EXPORT_SYMBOL(__sk_mem_reclaim);
  1378. /*
  1379. * Set of default routines for initialising struct proto_ops when
  1380. * the protocol does not support a particular function. In certain
  1381. * cases where it makes no sense for a protocol to have a "do nothing"
  1382. * function, some default processing is provided.
  1383. */
  1384. int sock_no_bind(struct socket *sock, struct sockaddr *saddr, int len)
  1385. {
  1386. return -EOPNOTSUPP;
  1387. }
  1388. EXPORT_SYMBOL(sock_no_bind);
  1389. int sock_no_connect(struct socket *sock, struct sockaddr *saddr,
  1390. int len, int flags)
  1391. {
  1392. return -EOPNOTSUPP;
  1393. }
  1394. EXPORT_SYMBOL(sock_no_connect);
  1395. int sock_no_socketpair(struct socket *sock1, struct socket *sock2)
  1396. {
  1397. return -EOPNOTSUPP;
  1398. }
  1399. EXPORT_SYMBOL(sock_no_socketpair);
  1400. int sock_no_accept(struct socket *sock, struct socket *newsock, int flags)
  1401. {
  1402. return -EOPNOTSUPP;
  1403. }
  1404. EXPORT_SYMBOL(sock_no_accept);
  1405. int sock_no_getname(struct socket *sock, struct sockaddr *saddr,
  1406. int *len, int peer)
  1407. {
  1408. return -EOPNOTSUPP;
  1409. }
  1410. EXPORT_SYMBOL(sock_no_getname);
  1411. unsigned int sock_no_poll(struct file *file, struct socket *sock, poll_table *pt)
  1412. {
  1413. return 0;
  1414. }
  1415. EXPORT_SYMBOL(sock_no_poll);
  1416. int sock_no_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  1417. {
  1418. return -EOPNOTSUPP;
  1419. }
  1420. EXPORT_SYMBOL(sock_no_ioctl);
  1421. int sock_no_listen(struct socket *sock, int backlog)
  1422. {
  1423. return -EOPNOTSUPP;
  1424. }
  1425. EXPORT_SYMBOL(sock_no_listen);
  1426. int sock_no_shutdown(struct socket *sock, int how)
  1427. {
  1428. return -EOPNOTSUPP;
  1429. }
  1430. EXPORT_SYMBOL(sock_no_shutdown);
  1431. int sock_no_setsockopt(struct socket *sock, int level, int optname,
  1432. char __user *optval, int optlen)
  1433. {
  1434. return -EOPNOTSUPP;
  1435. }
  1436. EXPORT_SYMBOL(sock_no_setsockopt);
  1437. int sock_no_getsockopt(struct socket *sock, int level, int optname,
  1438. char __user *optval, int __user *optlen)
  1439. {
  1440. return -EOPNOTSUPP;
  1441. }
  1442. EXPORT_SYMBOL(sock_no_getsockopt);
  1443. int sock_no_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
  1444. size_t len)
  1445. {
  1446. return -EOPNOTSUPP;
  1447. }
  1448. EXPORT_SYMBOL(sock_no_sendmsg);
  1449. int sock_no_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
  1450. size_t len, int flags)
  1451. {
  1452. return -EOPNOTSUPP;
  1453. }
  1454. EXPORT_SYMBOL(sock_no_recvmsg);
  1455. int sock_no_mmap(struct file *file, struct socket *sock, struct vm_area_struct *vma)
  1456. {
  1457. /* Mirror missing mmap method error code */
  1458. return -ENODEV;
  1459. }
  1460. EXPORT_SYMBOL(sock_no_mmap);
  1461. ssize_t sock_no_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
  1462. {
  1463. ssize_t res;
  1464. struct msghdr msg = {.msg_flags = flags};
  1465. struct kvec iov;
  1466. char *kaddr = kmap(page);
  1467. iov.iov_base = kaddr + offset;
  1468. iov.iov_len = size;
  1469. res = kernel_sendmsg(sock, &msg, &iov, 1, size);
  1470. kunmap(page);
  1471. return res;
  1472. }
  1473. EXPORT_SYMBOL(sock_no_sendpage);
  1474. /*
  1475. * Default Socket Callbacks
  1476. */
  1477. static void sock_def_wakeup(struct sock *sk)
  1478. {
  1479. read_lock(&sk->sk_callback_lock);
  1480. if (sk_has_sleeper(sk))
  1481. wake_up_interruptible_all(sk->sk_sleep);
  1482. read_unlock(&sk->sk_callback_lock);
  1483. }
  1484. static void sock_def_error_report(struct sock *sk)
  1485. {
  1486. read_lock(&sk->sk_callback_lock);
  1487. if (sk_has_sleeper(sk))
  1488. wake_up_interruptible_poll(sk->sk_sleep, POLLERR);
  1489. sk_wake_async(sk, SOCK_WAKE_IO, POLL_ERR);
  1490. read_unlock(&sk->sk_callback_lock);
  1491. }
  1492. static void sock_def_readable(struct sock *sk, int len)
  1493. {
  1494. read_lock(&sk->sk_callback_lock);
  1495. if (sk_has_sleeper(sk))
  1496. wake_up_interruptible_sync_poll(sk->sk_sleep, POLLIN |
  1497. POLLRDNORM | POLLRDBAND);
  1498. sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
  1499. read_unlock(&sk->sk_callback_lock);
  1500. }
  1501. static void sock_def_write_space(struct sock *sk)
  1502. {
  1503. read_lock(&sk->sk_callback_lock);
  1504. /* Do not wake up a writer until he can make "significant"
  1505. * progress. --DaveM
  1506. */
  1507. if ((atomic_read(&sk->sk_wmem_alloc) << 1) <= sk->sk_sndbuf) {
  1508. if (sk_has_sleeper(sk))
  1509. wake_up_interruptible_sync_poll(sk->sk_sleep, POLLOUT |
  1510. POLLWRNORM | POLLWRBAND);
  1511. /* Should agree with poll, otherwise some programs break */
  1512. if (sock_writeable(sk))
  1513. sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
  1514. }
  1515. read_unlock(&sk->sk_callback_lock);
  1516. }
  1517. static void sock_def_destruct(struct sock *sk)
  1518. {
  1519. kfree(sk->sk_protinfo);
  1520. }
  1521. void sk_send_sigurg(struct sock *sk)
  1522. {
  1523. if (sk->sk_socket && sk->sk_socket->file)
  1524. if (send_sigurg(&sk->sk_socket->file->f_owner))
  1525. sk_wake_async(sk, SOCK_WAKE_URG, POLL_PRI);
  1526. }
  1527. EXPORT_SYMBOL(sk_send_sigurg);
  1528. void sk_reset_timer(struct sock *sk, struct timer_list* timer,
  1529. unsigned long expires)
  1530. {
  1531. if (!mod_timer(timer, expires))
  1532. sock_hold(sk);
  1533. }
  1534. EXPORT_SYMBOL(sk_reset_timer);
  1535. void sk_stop_timer(struct sock *sk, struct timer_list* timer)
  1536. {
  1537. if (timer_pending(timer) && del_timer(timer))
  1538. __sock_put(sk);
  1539. }
  1540. EXPORT_SYMBOL(sk_stop_timer);
  1541. void sock_init_data(struct socket *sock, struct sock *sk)
  1542. {
  1543. skb_queue_head_init(&sk->sk_receive_queue);
  1544. skb_queue_head_init(&sk->sk_write_queue);
  1545. skb_queue_head_init(&sk->sk_error_queue);
  1546. #ifdef CONFIG_NET_DMA
  1547. skb_queue_head_init(&sk->sk_async_wait_queue);
  1548. #endif
  1549. sk->sk_send_head = NULL;
  1550. init_timer(&sk->sk_timer);
  1551. sk->sk_allocation = GFP_KERNEL;
  1552. sk->sk_rcvbuf = sysctl_rmem_default;
  1553. sk->sk_sndbuf = sysctl_wmem_default;
  1554. sk->sk_state = TCP_CLOSE;
  1555. sk_set_socket(sk, sock);
  1556. sock_set_flag(sk, SOCK_ZAPPED);
  1557. if (sock) {
  1558. sk->sk_type = sock->type;
  1559. sk->sk_sleep = &sock->wait;
  1560. sock->sk = sk;
  1561. } else
  1562. sk->sk_sleep = NULL;
  1563. rwlock_init(&sk->sk_dst_lock);
  1564. rwlock_init(&sk->sk_callback_lock);
  1565. lockdep_set_class_and_name(&sk->sk_callback_lock,
  1566. af_callback_keys + sk->sk_family,
  1567. af_family_clock_key_strings[sk->sk_family]);
  1568. sk->sk_state_change = sock_def_wakeup;
  1569. sk->sk_data_ready = sock_def_readable;
  1570. sk->sk_write_space = sock_def_write_space;
  1571. sk->sk_error_report = sock_def_error_report;
  1572. sk->sk_destruct = sock_def_destruct;
  1573. sk->sk_sndmsg_page = NULL;
  1574. sk->sk_sndmsg_off = 0;
  1575. sk->sk_peercred.pid = 0;
  1576. sk->sk_peercred.uid = -1;
  1577. sk->sk_peercred.gid = -1;
  1578. sk->sk_write_pending = 0;
  1579. sk->sk_rcvlowat = 1;
  1580. sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
  1581. sk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
  1582. sk->sk_stamp = ktime_set(-1L, 0);
  1583. atomic_set(&sk->sk_refcnt, 1);
  1584. atomic_set(&sk->sk_wmem_alloc, 1);
  1585. atomic_set(&sk->sk_drops, 0);
  1586. }
  1587. EXPORT_SYMBOL(sock_init_data);
  1588. void lock_sock_nested(struct sock *sk, int subclass)
  1589. {
  1590. might_sleep();
  1591. spin_lock_bh(&sk->sk_lock.slock);
  1592. if (sk->sk_lock.owned)
  1593. __lock_sock(sk);
  1594. sk->sk_lock.owned = 1;
  1595. spin_unlock(&sk->sk_lock.slock);
  1596. /*
  1597. * The sk_lock has mutex_lock() semantics here:
  1598. */
  1599. mutex_acquire(&sk->sk_lock.dep_map, subclass, 0, _RET_IP_);
  1600. local_bh_enable();
  1601. }
  1602. EXPORT_SYMBOL(lock_sock_nested);
  1603. void release_sock(struct sock *sk)
  1604. {
  1605. /*
  1606. * The sk_lock has mutex_unlock() semantics:
  1607. */
  1608. mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_);
  1609. spin_lock_bh(&sk->sk_lock.slock);
  1610. if (sk->sk_backlog.tail)
  1611. __release_sock(sk);
  1612. sk->sk_lock.owned = 0;
  1613. if (waitqueue_active(&sk->sk_lock.wq))
  1614. wake_up(&sk->sk_lock.wq);
  1615. spin_unlock_bh(&sk->sk_lock.slock);
  1616. }
  1617. EXPORT_SYMBOL(release_sock);
  1618. int sock_get_timestamp(struct sock *sk, struct timeval __user *userstamp)
  1619. {
  1620. struct timeval tv;
  1621. if (!sock_flag(sk, SOCK_TIMESTAMP))
  1622. sock_enable_timestamp(sk, SOCK_TIMESTAMP);
  1623. tv = ktime_to_timeval(sk->sk_stamp);
  1624. if (tv.tv_sec == -1)
  1625. return -ENOENT;
  1626. if (tv.tv_sec == 0) {
  1627. sk->sk_stamp = ktime_get_real();
  1628. tv = ktime_to_timeval(sk->sk_stamp);
  1629. }
  1630. return copy_to_user(userstamp, &tv, sizeof(tv)) ? -EFAULT : 0;
  1631. }
  1632. EXPORT_SYMBOL(sock_get_timestamp);
  1633. int sock_get_timestampns(struct sock *sk, struct timespec __user *userstamp)
  1634. {
  1635. struct timespec ts;
  1636. if (!sock_flag(sk, SOCK_TIMESTAMP))
  1637. sock_enable_timestamp(sk, SOCK_TIMESTAMP);
  1638. ts = ktime_to_timespec(sk->sk_stamp);
  1639. if (ts.tv_sec == -1)
  1640. return -ENOENT;
  1641. if (ts.tv_sec == 0) {
  1642. sk->sk_stamp = ktime_get_real();
  1643. ts = ktime_to_timespec(sk->sk_stamp);
  1644. }
  1645. return copy_to_user(userstamp, &ts, sizeof(ts)) ? -EFAULT : 0;
  1646. }
  1647. EXPORT_SYMBOL(sock_get_timestampns);
  1648. void sock_enable_timestamp(struct sock *sk, int flag)
  1649. {
  1650. if (!sock_flag(sk, flag)) {
  1651. sock_set_flag(sk, flag);
  1652. /*
  1653. * we just set one of the two flags which require net
  1654. * time stamping, but time stamping might have been on
  1655. * already because of the other one
  1656. */
  1657. if (!sock_flag(sk,
  1658. flag == SOCK_TIMESTAMP ?
  1659. SOCK_TIMESTAMPING_RX_SOFTWARE :
  1660. SOCK_TIMESTAMP))
  1661. net_enable_timestamp();
  1662. }
  1663. }
  1664. /*
  1665. * Get a socket option on an socket.
  1666. *
  1667. * FIX: POSIX 1003.1g is very ambiguous here. It states that
  1668. * asynchronous errors should be reported by getsockopt. We assume
  1669. * this means if you specify SO_ERROR (otherwise whats the point of it).
  1670. */
  1671. int sock_common_getsockopt(struct socket *sock, int level, int optname,
  1672. char __user *optval, int __user *optlen)
  1673. {
  1674. struct sock *sk = sock->sk;
  1675. return sk->sk_prot->getsockopt(sk, level, optname, optval, optlen);
  1676. }
  1677. EXPORT_SYMBOL(sock_common_getsockopt);
  1678. #ifdef CONFIG_COMPAT
  1679. int compat_sock_common_getsockopt(struct socket *sock, int level, int optname,
  1680. char __user *optval, int __user *optlen)
  1681. {
  1682. struct sock *sk = sock->sk;
  1683. if (sk->sk_prot->compat_getsockopt != NULL)
  1684. return sk->sk_prot->compat_getsockopt(sk, level, optname,
  1685. optval, optlen);
  1686. return sk->sk_prot->getsockopt(sk, level, optname, optval, optlen);
  1687. }
  1688. EXPORT_SYMBOL(compat_sock_common_getsockopt);
  1689. #endif
  1690. int sock_common_recvmsg(struct kiocb *iocb, struct socket *sock,
  1691. struct msghdr *msg, size_t size, int flags)
  1692. {
  1693. struct sock *sk = sock->sk;
  1694. int addr_len = 0;
  1695. int err;
  1696. err = sk->sk_prot->recvmsg(iocb, sk, msg, size, flags & MSG_DONTWAIT,
  1697. flags & ~MSG_DONTWAIT, &addr_len);
  1698. if (err >= 0)
  1699. msg->msg_namelen = addr_len;
  1700. return err;
  1701. }
  1702. EXPORT_SYMBOL(sock_common_recvmsg);
  1703. /*
  1704. * Set socket options on an inet socket.
  1705. */
  1706. int sock_common_setsockopt(struct socket *sock, int level, int optname,
  1707. char __user *optval, int optlen)
  1708. {
  1709. struct sock *sk = sock->sk;
  1710. return sk->sk_prot->setsockopt(sk, level, optname, optval, optlen);
  1711. }
  1712. EXPORT_SYMBOL(sock_common_setsockopt);
  1713. #ifdef CONFIG_COMPAT
  1714. int compat_sock_common_setsockopt(struct socket *sock, int level, int optname,
  1715. char __user *optval, int optlen)
  1716. {
  1717. struct sock *sk = sock->sk;
  1718. if (sk->sk_prot->compat_setsockopt != NULL)
  1719. return sk->sk_prot->compat_setsockopt(sk, level, optname,
  1720. optval, optlen);
  1721. return sk->sk_prot->setsockopt(sk, level, optname, optval, optlen);
  1722. }
  1723. EXPORT_SYMBOL(compat_sock_common_setsockopt);
  1724. #endif
  1725. void sk_common_release(struct sock *sk)
  1726. {
  1727. if (sk->sk_prot->destroy)
  1728. sk->sk_prot->destroy(sk);
  1729. /*
  1730. * Observation: when sock_common_release is called, processes have
  1731. * no access to socket. But net still has.
  1732. * Step one, detach it from networking:
  1733. *
  1734. * A. Remove from hash tables.
  1735. */
  1736. sk->sk_prot->unhash(sk);
  1737. /*
  1738. * In this point socket cannot receive new packets, but it is possible
  1739. * that some packets are in flight because some CPU runs receiver and
  1740. * did hash table lookup before we unhashed socket. They will achieve
  1741. * receive queue and will be purged by socket destructor.
  1742. *
  1743. * Also we still have packets pending on receive queue and probably,
  1744. * our own packets waiting in device queues. sock_destroy will drain
  1745. * receive queue, but transmitted packets will delay socket destruction
  1746. * until the last reference will be released.
  1747. */
  1748. sock_orphan(sk);
  1749. xfrm_sk_free_policy(sk);
  1750. sk_refcnt_debug_release(sk);
  1751. sock_put(sk);
  1752. }
  1753. EXPORT_SYMBOL(sk_common_release);
  1754. static DEFINE_RWLOCK(proto_list_lock);
  1755. static LIST_HEAD(proto_list);
  1756. #ifdef CONFIG_PROC_FS
  1757. #define PROTO_INUSE_NR 64 /* should be enough for the first time */
  1758. struct prot_inuse {
  1759. int val[PROTO_INUSE_NR];
  1760. };
  1761. static DECLARE_BITMAP(proto_inuse_idx, PROTO_INUSE_NR);
  1762. #ifdef CONFIG_NET_NS
  1763. void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
  1764. {
  1765. int cpu = smp_processor_id();
  1766. per_cpu_ptr(net->core.inuse, cpu)->val[prot->inuse_idx] += val;
  1767. }
  1768. EXPORT_SYMBOL_GPL(sock_prot_inuse_add);
  1769. int sock_prot_inuse_get(struct net *net, struct proto *prot)
  1770. {
  1771. int cpu, idx = prot->inuse_idx;
  1772. int res = 0;
  1773. for_each_possible_cpu(cpu)
  1774. res += per_cpu_ptr(net->core.inuse, cpu)->val[idx];
  1775. return res >= 0 ? res : 0;
  1776. }
  1777. EXPORT_SYMBOL_GPL(sock_prot_inuse_get);
  1778. static int sock_inuse_init_net(struct net *net)
  1779. {
  1780. net->core.inuse = alloc_percpu(struct prot_inuse);
  1781. return net->core.inuse ? 0 : -ENOMEM;
  1782. }
  1783. static void sock_inuse_exit_net(struct net *net)
  1784. {
  1785. free_percpu(net->core.inuse);
  1786. }
  1787. static struct pernet_operations net_inuse_ops = {
  1788. .init = sock_inuse_init_net,
  1789. .exit = sock_inuse_exit_net,
  1790. };
  1791. static __init int net_inuse_init(void)
  1792. {
  1793. if (register_pernet_subsys(&net_inuse_ops))
  1794. panic("Cannot initialize net inuse counters");
  1795. return 0;
  1796. }
  1797. core_initcall(net_inuse_init);
  1798. #else
  1799. static DEFINE_PER_CPU(struct prot_inuse, prot_inuse);
  1800. void sock_prot_inuse_add(struct net *net, struct proto *prot, int val)
  1801. {
  1802. __get_cpu_var(prot_inuse).val[prot->inuse_idx] += val;
  1803. }
  1804. EXPORT_SYMBOL_GPL(sock_prot_inuse_add);
  1805. int sock_prot_inuse_get(struct net *net, struct proto *prot)
  1806. {
  1807. int cpu, idx = prot->inuse_idx;
  1808. int res = 0;
  1809. for_each_possible_cpu(cpu)
  1810. res += per_cpu(prot_inuse, cpu).val[idx];
  1811. return res >= 0 ? res : 0;
  1812. }
  1813. EXPORT_SYMBOL_GPL(sock_prot_inuse_get);
  1814. #endif
  1815. static void assign_proto_idx(struct proto *prot)
  1816. {
  1817. prot->inuse_idx = find_first_zero_bit(proto_inuse_idx, PROTO_INUSE_NR);
  1818. if (unlikely(prot->inuse_idx == PROTO_INUSE_NR - 1)) {
  1819. printk(KERN_ERR "PROTO_INUSE_NR exhausted\n");
  1820. return;
  1821. }
  1822. set_bit(prot->inuse_idx, proto_inuse_idx);
  1823. }
  1824. static void release_proto_idx(struct proto *prot)
  1825. {
  1826. if (prot->inuse_idx != PROTO_INUSE_NR - 1)
  1827. clear_bit(prot->inuse_idx, proto_inuse_idx);
  1828. }
  1829. #else
  1830. static inline void assign_proto_idx(struct proto *prot)
  1831. {
  1832. }
  1833. static inline void release_proto_idx(struct proto *prot)
  1834. {
  1835. }
  1836. #endif
  1837. int proto_register(struct proto *prot, int alloc_slab)
  1838. {
  1839. if (alloc_slab) {
  1840. prot->slab = kmem_cache_create(prot->name, prot->obj_size, 0,
  1841. SLAB_HWCACHE_ALIGN | prot->slab_flags,
  1842. NULL);
  1843. if (prot->slab == NULL) {
  1844. printk(KERN_CRIT "%s: Can't create sock SLAB cache!\n",
  1845. prot->name);
  1846. goto out;
  1847. }
  1848. if (prot->rsk_prot != NULL) {
  1849. static const char mask[] = "request_sock_%s";
  1850. prot->rsk_prot->slab_name = kmalloc(strlen(prot->name) + sizeof(mask) - 1, GFP_KERNEL);
  1851. if (prot->rsk_prot->slab_name == NULL)
  1852. goto out_free_sock_slab;
  1853. sprintf(prot->rsk_prot->slab_name, mask, prot->name);
  1854. prot->rsk_prot->slab = kmem_cache_create(prot->rsk_prot->slab_name,
  1855. prot->rsk_prot->obj_size, 0,
  1856. SLAB_HWCACHE_ALIGN, NULL);
  1857. if (prot->rsk_prot->slab == NULL) {
  1858. printk(KERN_CRIT "%s: Can't create request sock SLAB cache!\n",
  1859. prot->name);
  1860. goto out_free_request_sock_slab_name;
  1861. }
  1862. }
  1863. if (prot->twsk_prot != NULL) {
  1864. static const char mask[] = "tw_sock_%s";
  1865. prot->twsk_prot->twsk_slab_name = kmalloc(strlen(prot->name) + sizeof(mask) - 1, GFP_KERNEL);
  1866. if (prot->twsk_prot->twsk_slab_name == NULL)
  1867. goto out_free_request_sock_slab;
  1868. sprintf(prot->twsk_prot->twsk_slab_name, mask, prot->name);
  1869. prot->twsk_prot->twsk_slab =
  1870. kmem_cache_create(prot->twsk_prot->twsk_slab_name,
  1871. prot->twsk_prot->twsk_obj_size,
  1872. 0,
  1873. SLAB_HWCACHE_ALIGN |
  1874. prot->slab_flags,
  1875. NULL);
  1876. if (prot->twsk_prot->twsk_slab == NULL)
  1877. goto out_free_timewait_sock_slab_name;
  1878. }
  1879. }
  1880. write_lock(&proto_list_lock);
  1881. list_add(&prot->node, &proto_list);
  1882. assign_proto_idx(prot);
  1883. write_unlock(&proto_list_lock);
  1884. return 0;
  1885. out_free_timewait_sock_slab_name:
  1886. kfree(prot->twsk_prot->twsk_slab_name);
  1887. out_free_request_sock_slab:
  1888. if (prot->rsk_prot && prot->rsk_prot->slab) {
  1889. kmem_cache_destroy(prot->rsk_prot->slab);
  1890. prot->rsk_prot->slab = NULL;
  1891. }
  1892. out_free_request_sock_slab_name:
  1893. kfree(prot->rsk_prot->slab_name);
  1894. out_free_sock_slab:
  1895. kmem_cache_destroy(prot->slab);
  1896. prot->slab = NULL;
  1897. out:
  1898. return -ENOBUFS;
  1899. }
  1900. EXPORT_SYMBOL(proto_register);
  1901. void proto_unregister(struct proto *prot)
  1902. {
  1903. write_lock(&proto_list_lock);
  1904. release_proto_idx(prot);
  1905. list_del(&prot->node);
  1906. write_unlock(&proto_list_lock);
  1907. if (prot->slab != NULL) {
  1908. kmem_cache_destroy(prot->slab);
  1909. prot->slab = NULL;
  1910. }
  1911. if (prot->rsk_prot != NULL && prot->rsk_prot->slab != NULL) {
  1912. kmem_cache_destroy(prot->rsk_prot->slab);
  1913. kfree(prot->rsk_prot->slab_name);
  1914. prot->rsk_prot->slab = NULL;
  1915. }
  1916. if (prot->twsk_prot != NULL && prot->twsk_prot->twsk_slab != NULL) {
  1917. kmem_cache_destroy(prot->twsk_prot->twsk_slab);
  1918. kfree(prot->twsk_prot->twsk_slab_name);
  1919. prot->twsk_prot->twsk_slab = NULL;
  1920. }
  1921. }
  1922. EXPORT_SYMBOL(proto_unregister);
  1923. #ifdef CONFIG_PROC_FS
  1924. static void *proto_seq_start(struct seq_file *seq, loff_t *pos)
  1925. __acquires(proto_list_lock)
  1926. {
  1927. read_lock(&proto_list_lock);
  1928. return seq_list_start_head(&proto_list, *pos);
  1929. }
  1930. static void *proto_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  1931. {
  1932. return seq_list_next(v, &proto_list, pos);
  1933. }
  1934. static void proto_seq_stop(struct seq_file *seq, void *v)
  1935. __releases(proto_list_lock)
  1936. {
  1937. read_unlock(&proto_list_lock);
  1938. }
  1939. static char proto_method_implemented(const void *method)
  1940. {
  1941. return method == NULL ? 'n' : 'y';
  1942. }
  1943. static void proto_seq_printf(struct seq_file *seq, struct proto *proto)
  1944. {
  1945. seq_printf(seq, "%-9s %4u %6d %6d %-3s %6u %-3s %-10s "
  1946. "%2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c %2c\n",
  1947. proto->name,
  1948. proto->obj_size,
  1949. sock_prot_inuse_get(seq_file_net(seq), proto),
  1950. proto->memory_allocated != NULL ? atomic_read(proto->memory_allocated) : -1,
  1951. proto->memory_pressure != NULL ? *proto->memory_pressure ? "yes" : "no" : "NI",
  1952. proto->max_header,
  1953. proto->slab == NULL ? "no" : "yes",
  1954. module_name(proto->owner),
  1955. proto_method_implemented(proto->close),
  1956. proto_method_implemented(proto->connect),
  1957. proto_method_implemented(proto->disconnect),
  1958. proto_method_implemented(proto->accept),
  1959. proto_method_implemented(proto->ioctl),
  1960. proto_method_implemented(proto->init),
  1961. proto_method_implemented(proto->destroy),
  1962. proto_method_implemented(proto->shutdown),
  1963. proto_method_implemented(proto->setsockopt),
  1964. proto_method_implemented(proto->getsockopt),
  1965. proto_method_implemented(proto->sendmsg),
  1966. proto_method_implemented(proto->recvmsg),
  1967. proto_method_implemented(proto->sendpage),
  1968. proto_method_implemented(proto->bind),
  1969. proto_method_implemented(proto->backlog_rcv),
  1970. proto_method_implemented(proto->hash),
  1971. proto_method_implemented(proto->unhash),
  1972. proto_method_implemented(proto->get_port),
  1973. proto_method_implemented(proto->enter_memory_pressure));
  1974. }
  1975. static int proto_seq_show(struct seq_file *seq, void *v)
  1976. {
  1977. if (v == &proto_list)
  1978. seq_printf(seq, "%-9s %-4s %-8s %-6s %-5s %-7s %-4s %-10s %s",
  1979. "protocol",
  1980. "size",
  1981. "sockets",
  1982. "memory",
  1983. "press",
  1984. "maxhdr",
  1985. "slab",
  1986. "module",
  1987. "cl co di ac io in de sh ss gs se re sp bi br ha uh gp em\n");
  1988. else
  1989. proto_seq_printf(seq, list_entry(v, struct proto, node));
  1990. return 0;
  1991. }
  1992. static const struct seq_operations proto_seq_ops = {
  1993. .start = proto_seq_start,
  1994. .next = proto_seq_next,
  1995. .stop = proto_seq_stop,
  1996. .show = proto_seq_show,
  1997. };
  1998. static int proto_seq_open(struct inode *inode, struct file *file)
  1999. {
  2000. return seq_open_net(inode, file, &proto_seq_ops,
  2001. sizeof(struct seq_net_private));
  2002. }
  2003. static const struct file_operations proto_seq_fops = {
  2004. .owner = THIS_MODULE,
  2005. .open = proto_seq_open,
  2006. .read = seq_read,
  2007. .llseek = seq_lseek,
  2008. .release = seq_release_net,
  2009. };
  2010. static __net_init int proto_init_net(struct net *net)
  2011. {
  2012. if (!proc_net_fops_create(net, "protocols", S_IRUGO, &proto_seq_fops))
  2013. return -ENOMEM;
  2014. return 0;
  2015. }
  2016. static __net_exit void proto_exit_net(struct net *net)
  2017. {
  2018. proc_net_remove(net, "protocols");
  2019. }
  2020. static __net_initdata struct pernet_operations proto_net_ops = {
  2021. .init = proto_init_net,
  2022. .exit = proto_exit_net,
  2023. };
  2024. static int __init proto_init(void)
  2025. {
  2026. return register_pernet_subsys(&proto_net_ops);
  2027. }
  2028. subsys_initcall(proto_init);
  2029. #endif /* PROC_FS */