af_irda.c 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601
  1. /*********************************************************************
  2. *
  3. * Filename: af_irda.c
  4. * Version: 0.9
  5. * Description: IrDA sockets implementation
  6. * Status: Stable
  7. * Author: Dag Brattli <dagb@cs.uit.no>
  8. * Created at: Sun May 31 10:12:43 1998
  9. * Modified at: Sat Dec 25 21:10:23 1999
  10. * Modified by: Dag Brattli <dag@brattli.net>
  11. * Sources: af_netroom.c, af_ax25.c, af_rose.c, af_x25.c etc.
  12. *
  13. * Copyright (c) 1999 Dag Brattli <dagb@cs.uit.no>
  14. * Copyright (c) 1999-2003 Jean Tourrilhes <jt@hpl.hp.com>
  15. * All Rights Reserved.
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License as
  19. * published by the Free Software Foundation; either version 2 of
  20. * the License, or (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with this program; if not, write to the Free Software
  29. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  30. * MA 02111-1307 USA
  31. *
  32. * Linux-IrDA now supports four different types of IrDA sockets:
  33. *
  34. * o SOCK_STREAM: TinyTP connections with SAR disabled. The
  35. * max SDU size is 0 for conn. of this type
  36. * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
  37. * fragment the messages, but will preserve
  38. * the message boundaries
  39. * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
  40. * (unreliable) transfers
  41. * IRDAPROTO_ULTRA: Connectionless and unreliable data
  42. *
  43. ********************************************************************/
  44. #include <linux/capability.h>
  45. #include <linux/module.h>
  46. #include <linux/types.h>
  47. #include <linux/socket.h>
  48. #include <linux/sockios.h>
  49. #include <linux/init.h>
  50. #include <linux/net.h>
  51. #include <linux/irda.h>
  52. #include <linux/poll.h>
  53. #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
  54. #include <asm/uaccess.h>
  55. #include <net/sock.h>
  56. #include <net/tcp_states.h>
  57. #include <net/irda/af_irda.h>
  58. static int irda_create(struct net *net, struct socket *sock, int protocol);
  59. static const struct proto_ops irda_stream_ops;
  60. static const struct proto_ops irda_seqpacket_ops;
  61. static const struct proto_ops irda_dgram_ops;
  62. #ifdef CONFIG_IRDA_ULTRA
  63. static const struct proto_ops irda_ultra_ops;
  64. #define ULTRA_MAX_DATA 382
  65. #endif /* CONFIG_IRDA_ULTRA */
  66. #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
  67. /*
  68. * Function irda_data_indication (instance, sap, skb)
  69. *
  70. * Received some data from TinyTP. Just queue it on the receive queue
  71. *
  72. */
  73. static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
  74. {
  75. struct irda_sock *self;
  76. struct sock *sk;
  77. int err;
  78. IRDA_DEBUG(3, "%s()\n", __func__);
  79. self = instance;
  80. sk = instance;
  81. err = sock_queue_rcv_skb(sk, skb);
  82. if (err) {
  83. IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__);
  84. self->rx_flow = FLOW_STOP;
  85. /* When we return error, TTP will need to requeue the skb */
  86. return err;
  87. }
  88. return 0;
  89. }
  90. /*
  91. * Function irda_disconnect_indication (instance, sap, reason, skb)
  92. *
  93. * Connection has been closed. Check reason to find out why
  94. *
  95. */
  96. static void irda_disconnect_indication(void *instance, void *sap,
  97. LM_REASON reason, struct sk_buff *skb)
  98. {
  99. struct irda_sock *self;
  100. struct sock *sk;
  101. self = instance;
  102. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  103. /* Don't care about it, but let's not leak it */
  104. if(skb)
  105. dev_kfree_skb(skb);
  106. sk = instance;
  107. if (sk == NULL) {
  108. IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
  109. __func__, self);
  110. return;
  111. }
  112. /* Prevent race conditions with irda_release() and irda_shutdown() */
  113. bh_lock_sock(sk);
  114. if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
  115. sk->sk_state = TCP_CLOSE;
  116. sk->sk_shutdown |= SEND_SHUTDOWN;
  117. sk->sk_state_change(sk);
  118. /* Close our TSAP.
  119. * If we leave it open, IrLMP put it back into the list of
  120. * unconnected LSAPs. The problem is that any incoming request
  121. * can then be matched to this socket (and it will be, because
  122. * it is at the head of the list). This would prevent any
  123. * listening socket waiting on the same TSAP to get those
  124. * requests. Some apps forget to close sockets, or hang to it
  125. * a bit too long, so we may stay in this dead state long
  126. * enough to be noticed...
  127. * Note : all socket function do check sk->sk_state, so we are
  128. * safe...
  129. * Jean II
  130. */
  131. if (self->tsap) {
  132. irttp_close_tsap(self->tsap);
  133. self->tsap = NULL;
  134. }
  135. }
  136. bh_unlock_sock(sk);
  137. /* Note : once we are there, there is not much you want to do
  138. * with the socket anymore, apart from closing it.
  139. * For example, bind() and connect() won't reset sk->sk_err,
  140. * sk->sk_shutdown and sk->sk_flags to valid values...
  141. * Jean II
  142. */
  143. }
  144. /*
  145. * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
  146. *
  147. * Connections has been confirmed by the remote device
  148. *
  149. */
  150. static void irda_connect_confirm(void *instance, void *sap,
  151. struct qos_info *qos,
  152. __u32 max_sdu_size, __u8 max_header_size,
  153. struct sk_buff *skb)
  154. {
  155. struct irda_sock *self;
  156. struct sock *sk;
  157. self = instance;
  158. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  159. sk = instance;
  160. if (sk == NULL) {
  161. dev_kfree_skb(skb);
  162. return;
  163. }
  164. dev_kfree_skb(skb);
  165. // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
  166. /* How much header space do we need to reserve */
  167. self->max_header_size = max_header_size;
  168. /* IrTTP max SDU size in transmit direction */
  169. self->max_sdu_size_tx = max_sdu_size;
  170. /* Find out what the largest chunk of data that we can transmit is */
  171. switch (sk->sk_type) {
  172. case SOCK_STREAM:
  173. if (max_sdu_size != 0) {
  174. IRDA_ERROR("%s: max_sdu_size must be 0\n",
  175. __func__);
  176. return;
  177. }
  178. self->max_data_size = irttp_get_max_seg_size(self->tsap);
  179. break;
  180. case SOCK_SEQPACKET:
  181. if (max_sdu_size == 0) {
  182. IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
  183. __func__);
  184. return;
  185. }
  186. self->max_data_size = max_sdu_size;
  187. break;
  188. default:
  189. self->max_data_size = irttp_get_max_seg_size(self->tsap);
  190. }
  191. IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
  192. self->max_data_size);
  193. memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
  194. /* We are now connected! */
  195. sk->sk_state = TCP_ESTABLISHED;
  196. sk->sk_state_change(sk);
  197. }
  198. /*
  199. * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
  200. *
  201. * Incoming connection
  202. *
  203. */
  204. static void irda_connect_indication(void *instance, void *sap,
  205. struct qos_info *qos, __u32 max_sdu_size,
  206. __u8 max_header_size, struct sk_buff *skb)
  207. {
  208. struct irda_sock *self;
  209. struct sock *sk;
  210. self = instance;
  211. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  212. sk = instance;
  213. if (sk == NULL) {
  214. dev_kfree_skb(skb);
  215. return;
  216. }
  217. /* How much header space do we need to reserve */
  218. self->max_header_size = max_header_size;
  219. /* IrTTP max SDU size in transmit direction */
  220. self->max_sdu_size_tx = max_sdu_size;
  221. /* Find out what the largest chunk of data that we can transmit is */
  222. switch (sk->sk_type) {
  223. case SOCK_STREAM:
  224. if (max_sdu_size != 0) {
  225. IRDA_ERROR("%s: max_sdu_size must be 0\n",
  226. __func__);
  227. kfree_skb(skb);
  228. return;
  229. }
  230. self->max_data_size = irttp_get_max_seg_size(self->tsap);
  231. break;
  232. case SOCK_SEQPACKET:
  233. if (max_sdu_size == 0) {
  234. IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
  235. __func__);
  236. kfree_skb(skb);
  237. return;
  238. }
  239. self->max_data_size = max_sdu_size;
  240. break;
  241. default:
  242. self->max_data_size = irttp_get_max_seg_size(self->tsap);
  243. }
  244. IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
  245. self->max_data_size);
  246. memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
  247. skb_queue_tail(&sk->sk_receive_queue, skb);
  248. sk->sk_state_change(sk);
  249. }
  250. /*
  251. * Function irda_connect_response (handle)
  252. *
  253. * Accept incoming connection
  254. *
  255. */
  256. static void irda_connect_response(struct irda_sock *self)
  257. {
  258. struct sk_buff *skb;
  259. IRDA_DEBUG(2, "%s()\n", __func__);
  260. skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER,
  261. GFP_ATOMIC);
  262. if (skb == NULL) {
  263. IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
  264. __func__);
  265. return;
  266. }
  267. /* Reserve space for MUX_CONTROL and LAP header */
  268. skb_reserve(skb, IRDA_MAX_HEADER);
  269. irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
  270. }
  271. /*
  272. * Function irda_flow_indication (instance, sap, flow)
  273. *
  274. * Used by TinyTP to tell us if it can accept more data or not
  275. *
  276. */
  277. static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
  278. {
  279. struct irda_sock *self;
  280. struct sock *sk;
  281. IRDA_DEBUG(2, "%s()\n", __func__);
  282. self = instance;
  283. sk = instance;
  284. BUG_ON(sk == NULL);
  285. switch (flow) {
  286. case FLOW_STOP:
  287. IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
  288. __func__);
  289. self->tx_flow = flow;
  290. break;
  291. case FLOW_START:
  292. self->tx_flow = flow;
  293. IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
  294. __func__);
  295. wake_up_interruptible(sk->sk_sleep);
  296. break;
  297. default:
  298. IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__);
  299. /* Unknown flow command, better stop */
  300. self->tx_flow = flow;
  301. break;
  302. }
  303. }
  304. /*
  305. * Function irda_getvalue_confirm (obj_id, value, priv)
  306. *
  307. * Got answer from remote LM-IAS, just pass object to requester...
  308. *
  309. * Note : duplicate from above, but we need our own version that
  310. * doesn't touch the dtsap_sel and save the full value structure...
  311. */
  312. static void irda_getvalue_confirm(int result, __u16 obj_id,
  313. struct ias_value *value, void *priv)
  314. {
  315. struct irda_sock *self;
  316. self = (struct irda_sock *) priv;
  317. if (!self) {
  318. IRDA_WARNING("%s: lost myself!\n", __func__);
  319. return;
  320. }
  321. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  322. /* We probably don't need to make any more queries */
  323. iriap_close(self->iriap);
  324. self->iriap = NULL;
  325. /* Check if request succeeded */
  326. if (result != IAS_SUCCESS) {
  327. IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__,
  328. result);
  329. self->errno = result; /* We really need it later */
  330. /* Wake up any processes waiting for result */
  331. wake_up_interruptible(&self->query_wait);
  332. return;
  333. }
  334. /* Pass the object to the caller (so the caller must delete it) */
  335. self->ias_result = value;
  336. self->errno = 0;
  337. /* Wake up any processes waiting for result */
  338. wake_up_interruptible(&self->query_wait);
  339. }
  340. /*
  341. * Function irda_selective_discovery_indication (discovery)
  342. *
  343. * Got a selective discovery indication from IrLMP.
  344. *
  345. * IrLMP is telling us that this node is new and matching our hint bit
  346. * filter. Wake up any process waiting for answer...
  347. */
  348. static void irda_selective_discovery_indication(discinfo_t *discovery,
  349. DISCOVERY_MODE mode,
  350. void *priv)
  351. {
  352. struct irda_sock *self;
  353. IRDA_DEBUG(2, "%s()\n", __func__);
  354. self = (struct irda_sock *) priv;
  355. if (!self) {
  356. IRDA_WARNING("%s: lost myself!\n", __func__);
  357. return;
  358. }
  359. /* Pass parameter to the caller */
  360. self->cachedaddr = discovery->daddr;
  361. /* Wake up process if its waiting for device to be discovered */
  362. wake_up_interruptible(&self->query_wait);
  363. }
  364. /*
  365. * Function irda_discovery_timeout (priv)
  366. *
  367. * Timeout in the selective discovery process
  368. *
  369. * We were waiting for a node to be discovered, but nothing has come up
  370. * so far. Wake up the user and tell him that we failed...
  371. */
  372. static void irda_discovery_timeout(u_long priv)
  373. {
  374. struct irda_sock *self;
  375. IRDA_DEBUG(2, "%s()\n", __func__);
  376. self = (struct irda_sock *) priv;
  377. BUG_ON(self == NULL);
  378. /* Nothing for the caller */
  379. self->cachelog = NULL;
  380. self->cachedaddr = 0;
  381. self->errno = -ETIME;
  382. /* Wake up process if its still waiting... */
  383. wake_up_interruptible(&self->query_wait);
  384. }
  385. /*
  386. * Function irda_open_tsap (self)
  387. *
  388. * Open local Transport Service Access Point (TSAP)
  389. *
  390. */
  391. static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
  392. {
  393. notify_t notify;
  394. if (self->tsap) {
  395. IRDA_WARNING("%s: busy!\n", __func__);
  396. return -EBUSY;
  397. }
  398. /* Initialize callbacks to be used by the IrDA stack */
  399. irda_notify_init(&notify);
  400. notify.connect_confirm = irda_connect_confirm;
  401. notify.connect_indication = irda_connect_indication;
  402. notify.disconnect_indication = irda_disconnect_indication;
  403. notify.data_indication = irda_data_indication;
  404. notify.udata_indication = irda_data_indication;
  405. notify.flow_indication = irda_flow_indication;
  406. notify.instance = self;
  407. strncpy(notify.name, name, NOTIFY_MAX_NAME);
  408. self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
  409. &notify);
  410. if (self->tsap == NULL) {
  411. IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
  412. __func__);
  413. return -ENOMEM;
  414. }
  415. /* Remember which TSAP selector we actually got */
  416. self->stsap_sel = self->tsap->stsap_sel;
  417. return 0;
  418. }
  419. /*
  420. * Function irda_open_lsap (self)
  421. *
  422. * Open local Link Service Access Point (LSAP). Used for opening Ultra
  423. * sockets
  424. */
  425. #ifdef CONFIG_IRDA_ULTRA
  426. static int irda_open_lsap(struct irda_sock *self, int pid)
  427. {
  428. notify_t notify;
  429. if (self->lsap) {
  430. IRDA_WARNING("%s(), busy!\n", __func__);
  431. return -EBUSY;
  432. }
  433. /* Initialize callbacks to be used by the IrDA stack */
  434. irda_notify_init(&notify);
  435. notify.udata_indication = irda_data_indication;
  436. notify.instance = self;
  437. strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
  438. self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
  439. if (self->lsap == NULL) {
  440. IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__);
  441. return -ENOMEM;
  442. }
  443. return 0;
  444. }
  445. #endif /* CONFIG_IRDA_ULTRA */
  446. /*
  447. * Function irda_find_lsap_sel (self, name)
  448. *
  449. * Try to lookup LSAP selector in remote LM-IAS
  450. *
  451. * Basically, we start a IAP query, and then go to sleep. When the query
  452. * return, irda_getvalue_confirm will wake us up, and we can examine the
  453. * result of the query...
  454. * Note that in some case, the query fail even before we go to sleep,
  455. * creating some races...
  456. */
  457. static int irda_find_lsap_sel(struct irda_sock *self, char *name)
  458. {
  459. IRDA_DEBUG(2, "%s(%p, %s)\n", __func__, self, name);
  460. if (self->iriap) {
  461. IRDA_WARNING("%s(): busy with a previous query\n",
  462. __func__);
  463. return -EBUSY;
  464. }
  465. self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
  466. irda_getvalue_confirm);
  467. if(self->iriap == NULL)
  468. return -ENOMEM;
  469. /* Treat unexpected wakeup as disconnect */
  470. self->errno = -EHOSTUNREACH;
  471. /* Query remote LM-IAS */
  472. iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
  473. name, "IrDA:TinyTP:LsapSel");
  474. /* Wait for answer, if not yet finished (or failed) */
  475. if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
  476. /* Treat signals as disconnect */
  477. return -EHOSTUNREACH;
  478. /* Check what happened */
  479. if (self->errno)
  480. {
  481. /* Requested object/attribute doesn't exist */
  482. if((self->errno == IAS_CLASS_UNKNOWN) ||
  483. (self->errno == IAS_ATTRIB_UNKNOWN))
  484. return (-EADDRNOTAVAIL);
  485. else
  486. return (-EHOSTUNREACH);
  487. }
  488. /* Get the remote TSAP selector */
  489. switch (self->ias_result->type) {
  490. case IAS_INTEGER:
  491. IRDA_DEBUG(4, "%s() int=%d\n",
  492. __func__, self->ias_result->t.integer);
  493. if (self->ias_result->t.integer != -1)
  494. self->dtsap_sel = self->ias_result->t.integer;
  495. else
  496. self->dtsap_sel = 0;
  497. break;
  498. default:
  499. self->dtsap_sel = 0;
  500. IRDA_DEBUG(0, "%s(), bad type!\n", __func__);
  501. break;
  502. }
  503. if (self->ias_result)
  504. irias_delete_value(self->ias_result);
  505. if (self->dtsap_sel)
  506. return 0;
  507. return -EADDRNOTAVAIL;
  508. }
  509. /*
  510. * Function irda_discover_daddr_and_lsap_sel (self, name)
  511. *
  512. * This try to find a device with the requested service.
  513. *
  514. * It basically look into the discovery log. For each address in the list,
  515. * it queries the LM-IAS of the device to find if this device offer
  516. * the requested service.
  517. * If there is more than one node supporting the service, we complain
  518. * to the user (it should move devices around).
  519. * The, we set both the destination address and the lsap selector to point
  520. * on the service on the unique device we have found.
  521. *
  522. * Note : this function fails if there is more than one device in range,
  523. * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
  524. * Moreover, we would need to wait the LAP disconnection...
  525. */
  526. static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
  527. {
  528. discinfo_t *discoveries; /* Copy of the discovery log */
  529. int number; /* Number of nodes in the log */
  530. int i;
  531. int err = -ENETUNREACH;
  532. __u32 daddr = DEV_ADDR_ANY; /* Address we found the service on */
  533. __u8 dtsap_sel = 0x0; /* TSAP associated with it */
  534. IRDA_DEBUG(2, "%s(), name=%s\n", __func__, name);
  535. /* Ask lmp for the current discovery log
  536. * Note : we have to use irlmp_get_discoveries(), as opposed
  537. * to play with the cachelog directly, because while we are
  538. * making our ias query, le log might change... */
  539. discoveries = irlmp_get_discoveries(&number, self->mask.word,
  540. self->nslots);
  541. /* Check if the we got some results */
  542. if (discoveries == NULL)
  543. return -ENETUNREACH; /* No nodes discovered */
  544. /*
  545. * Now, check all discovered devices (if any), and connect
  546. * client only about the services that the client is
  547. * interested in...
  548. */
  549. for(i = 0; i < number; i++) {
  550. /* Try the address in the log */
  551. self->daddr = discoveries[i].daddr;
  552. self->saddr = 0x0;
  553. IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
  554. __func__, self->daddr);
  555. /* Query remote LM-IAS for this service */
  556. err = irda_find_lsap_sel(self, name);
  557. switch (err) {
  558. case 0:
  559. /* We found the requested service */
  560. if(daddr != DEV_ADDR_ANY) {
  561. IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
  562. __func__, name);
  563. self->daddr = DEV_ADDR_ANY;
  564. kfree(discoveries);
  565. return(-ENOTUNIQ);
  566. }
  567. /* First time we found that one, save it ! */
  568. daddr = self->daddr;
  569. dtsap_sel = self->dtsap_sel;
  570. break;
  571. case -EADDRNOTAVAIL:
  572. /* Requested service simply doesn't exist on this node */
  573. break;
  574. default:
  575. /* Something bad did happen :-( */
  576. IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__);
  577. self->daddr = DEV_ADDR_ANY;
  578. kfree(discoveries);
  579. return(-EHOSTUNREACH);
  580. break;
  581. }
  582. }
  583. /* Cleanup our copy of the discovery log */
  584. kfree(discoveries);
  585. /* Check out what we found */
  586. if(daddr == DEV_ADDR_ANY) {
  587. IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
  588. __func__, name);
  589. self->daddr = DEV_ADDR_ANY;
  590. return(-EADDRNOTAVAIL);
  591. }
  592. /* Revert back to discovered device & service */
  593. self->daddr = daddr;
  594. self->saddr = 0x0;
  595. self->dtsap_sel = dtsap_sel;
  596. IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
  597. __func__, name, self->daddr);
  598. return 0;
  599. }
  600. /*
  601. * Function irda_getname (sock, uaddr, uaddr_len, peer)
  602. *
  603. * Return the our own, or peers socket address (sockaddr_irda)
  604. *
  605. */
  606. static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
  607. int *uaddr_len, int peer)
  608. {
  609. struct sockaddr_irda saddr;
  610. struct sock *sk = sock->sk;
  611. struct irda_sock *self = irda_sk(sk);
  612. if (peer) {
  613. if (sk->sk_state != TCP_ESTABLISHED)
  614. return -ENOTCONN;
  615. saddr.sir_family = AF_IRDA;
  616. saddr.sir_lsap_sel = self->dtsap_sel;
  617. saddr.sir_addr = self->daddr;
  618. } else {
  619. saddr.sir_family = AF_IRDA;
  620. saddr.sir_lsap_sel = self->stsap_sel;
  621. saddr.sir_addr = self->saddr;
  622. }
  623. IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
  624. IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__, saddr.sir_addr);
  625. /* uaddr_len come to us uninitialised */
  626. *uaddr_len = sizeof (struct sockaddr_irda);
  627. memcpy(uaddr, &saddr, *uaddr_len);
  628. return 0;
  629. }
  630. /*
  631. * Function irda_listen (sock, backlog)
  632. *
  633. * Just move to the listen state
  634. *
  635. */
  636. static int irda_listen(struct socket *sock, int backlog)
  637. {
  638. struct sock *sk = sock->sk;
  639. IRDA_DEBUG(2, "%s()\n", __func__);
  640. if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
  641. (sk->sk_type != SOCK_DGRAM))
  642. return -EOPNOTSUPP;
  643. if (sk->sk_state != TCP_LISTEN) {
  644. sk->sk_max_ack_backlog = backlog;
  645. sk->sk_state = TCP_LISTEN;
  646. return 0;
  647. }
  648. return -EOPNOTSUPP;
  649. }
  650. /*
  651. * Function irda_bind (sock, uaddr, addr_len)
  652. *
  653. * Used by servers to register their well known TSAP
  654. *
  655. */
  656. static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  657. {
  658. struct sock *sk = sock->sk;
  659. struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
  660. struct irda_sock *self = irda_sk(sk);
  661. int err;
  662. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  663. if (addr_len != sizeof(struct sockaddr_irda))
  664. return -EINVAL;
  665. #ifdef CONFIG_IRDA_ULTRA
  666. /* Special care for Ultra sockets */
  667. if ((sk->sk_type == SOCK_DGRAM) &&
  668. (sk->sk_protocol == IRDAPROTO_ULTRA)) {
  669. self->pid = addr->sir_lsap_sel;
  670. if (self->pid & 0x80) {
  671. IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
  672. return -EOPNOTSUPP;
  673. }
  674. err = irda_open_lsap(self, self->pid);
  675. if (err < 0)
  676. return err;
  677. /* Pretend we are connected */
  678. sock->state = SS_CONNECTED;
  679. sk->sk_state = TCP_ESTABLISHED;
  680. return 0;
  681. }
  682. #endif /* CONFIG_IRDA_ULTRA */
  683. self->ias_obj = irias_new_object(addr->sir_name, jiffies);
  684. if (self->ias_obj == NULL)
  685. return -ENOMEM;
  686. err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
  687. if (err < 0) {
  688. kfree(self->ias_obj->name);
  689. kfree(self->ias_obj);
  690. return err;
  691. }
  692. /* Register with LM-IAS */
  693. irias_add_integer_attrib(self->ias_obj, "IrDA:TinyTP:LsapSel",
  694. self->stsap_sel, IAS_KERNEL_ATTR);
  695. irias_insert_object(self->ias_obj);
  696. return 0;
  697. }
  698. /*
  699. * Function irda_accept (sock, newsock, flags)
  700. *
  701. * Wait for incoming connection
  702. *
  703. */
  704. static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
  705. {
  706. struct sock *sk = sock->sk;
  707. struct irda_sock *new, *self = irda_sk(sk);
  708. struct sock *newsk;
  709. struct sk_buff *skb;
  710. int err;
  711. IRDA_DEBUG(2, "%s()\n", __func__);
  712. err = irda_create(sock_net(sk), newsock, sk->sk_protocol);
  713. if (err)
  714. return err;
  715. if (sock->state != SS_UNCONNECTED)
  716. return -EINVAL;
  717. if ((sk = sock->sk) == NULL)
  718. return -EINVAL;
  719. if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
  720. (sk->sk_type != SOCK_DGRAM))
  721. return -EOPNOTSUPP;
  722. if (sk->sk_state != TCP_LISTEN)
  723. return -EINVAL;
  724. /*
  725. * The read queue this time is holding sockets ready to use
  726. * hooked into the SABM we saved
  727. */
  728. /*
  729. * We can perform the accept only if there is incoming data
  730. * on the listening socket.
  731. * So, we will block the caller until we receive any data.
  732. * If the caller was waiting on select() or poll() before
  733. * calling us, the data is waiting for us ;-)
  734. * Jean II
  735. */
  736. while (1) {
  737. skb = skb_dequeue(&sk->sk_receive_queue);
  738. if (skb)
  739. break;
  740. /* Non blocking operation */
  741. if (flags & O_NONBLOCK)
  742. return -EWOULDBLOCK;
  743. err = wait_event_interruptible(*(sk->sk_sleep),
  744. skb_peek(&sk->sk_receive_queue));
  745. if (err)
  746. return err;
  747. }
  748. newsk = newsock->sk;
  749. if (newsk == NULL)
  750. return -EIO;
  751. newsk->sk_state = TCP_ESTABLISHED;
  752. new = irda_sk(newsk);
  753. /* Now attach up the new socket */
  754. new->tsap = irttp_dup(self->tsap, new);
  755. if (!new->tsap) {
  756. IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
  757. kfree_skb(skb);
  758. return -1;
  759. }
  760. new->stsap_sel = new->tsap->stsap_sel;
  761. new->dtsap_sel = new->tsap->dtsap_sel;
  762. new->saddr = irttp_get_saddr(new->tsap);
  763. new->daddr = irttp_get_daddr(new->tsap);
  764. new->max_sdu_size_tx = self->max_sdu_size_tx;
  765. new->max_sdu_size_rx = self->max_sdu_size_rx;
  766. new->max_data_size = self->max_data_size;
  767. new->max_header_size = self->max_header_size;
  768. memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
  769. /* Clean up the original one to keep it in listen state */
  770. irttp_listen(self->tsap);
  771. /* Wow ! What is that ? Jean II */
  772. skb->sk = NULL;
  773. skb->destructor = NULL;
  774. kfree_skb(skb);
  775. sk->sk_ack_backlog--;
  776. newsock->state = SS_CONNECTED;
  777. irda_connect_response(new);
  778. return 0;
  779. }
  780. /*
  781. * Function irda_connect (sock, uaddr, addr_len, flags)
  782. *
  783. * Connect to a IrDA device
  784. *
  785. * The main difference with a "standard" connect is that with IrDA we need
  786. * to resolve the service name into a TSAP selector (in TCP, port number
  787. * doesn't have to be resolved).
  788. * Because of this service name resoltion, we can offer "auto-connect",
  789. * where we connect to a service without specifying a destination address.
  790. *
  791. * Note : by consulting "errno", the user space caller may learn the cause
  792. * of the failure. Most of them are visible in the function, others may come
  793. * from subroutines called and are listed here :
  794. * o EBUSY : already processing a connect
  795. * o EHOSTUNREACH : bad addr->sir_addr argument
  796. * o EADDRNOTAVAIL : bad addr->sir_name argument
  797. * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
  798. * o ENETUNREACH : no node found on the network (auto-connect)
  799. */
  800. static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
  801. int addr_len, int flags)
  802. {
  803. struct sock *sk = sock->sk;
  804. struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
  805. struct irda_sock *self = irda_sk(sk);
  806. int err;
  807. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  808. /* Don't allow connect for Ultra sockets */
  809. if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
  810. return -ESOCKTNOSUPPORT;
  811. if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
  812. sock->state = SS_CONNECTED;
  813. return 0; /* Connect completed during a ERESTARTSYS event */
  814. }
  815. if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
  816. sock->state = SS_UNCONNECTED;
  817. return -ECONNREFUSED;
  818. }
  819. if (sk->sk_state == TCP_ESTABLISHED)
  820. return -EISCONN; /* No reconnect on a seqpacket socket */
  821. sk->sk_state = TCP_CLOSE;
  822. sock->state = SS_UNCONNECTED;
  823. if (addr_len != sizeof(struct sockaddr_irda))
  824. return -EINVAL;
  825. /* Check if user supplied any destination device address */
  826. if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
  827. /* Try to find one suitable */
  828. err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
  829. if (err) {
  830. IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__);
  831. return err;
  832. }
  833. } else {
  834. /* Use the one provided by the user */
  835. self->daddr = addr->sir_addr;
  836. IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__, self->daddr);
  837. /* If we don't have a valid service name, we assume the
  838. * user want to connect on a specific LSAP. Prevent
  839. * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
  840. if((addr->sir_name[0] != '\0') ||
  841. (addr->sir_lsap_sel >= 0x70)) {
  842. /* Query remote LM-IAS using service name */
  843. err = irda_find_lsap_sel(self, addr->sir_name);
  844. if (err) {
  845. IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
  846. return err;
  847. }
  848. } else {
  849. /* Directly connect to the remote LSAP
  850. * specified by the sir_lsap field.
  851. * Please use with caution, in IrDA LSAPs are
  852. * dynamic and there is no "well-known" LSAP. */
  853. self->dtsap_sel = addr->sir_lsap_sel;
  854. }
  855. }
  856. /* Check if we have opened a local TSAP */
  857. if (!self->tsap)
  858. irda_open_tsap(self, LSAP_ANY, addr->sir_name);
  859. /* Move to connecting socket, start sending Connect Requests */
  860. sock->state = SS_CONNECTING;
  861. sk->sk_state = TCP_SYN_SENT;
  862. /* Connect to remote device */
  863. err = irttp_connect_request(self->tsap, self->dtsap_sel,
  864. self->saddr, self->daddr, NULL,
  865. self->max_sdu_size_rx, NULL);
  866. if (err) {
  867. IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
  868. return err;
  869. }
  870. /* Now the loop */
  871. if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
  872. return -EINPROGRESS;
  873. if (wait_event_interruptible(*(sk->sk_sleep),
  874. (sk->sk_state != TCP_SYN_SENT)))
  875. return -ERESTARTSYS;
  876. if (sk->sk_state != TCP_ESTABLISHED) {
  877. sock->state = SS_UNCONNECTED;
  878. err = sock_error(sk);
  879. return err? err : -ECONNRESET;
  880. }
  881. sock->state = SS_CONNECTED;
  882. /* At this point, IrLMP has assigned our source address */
  883. self->saddr = irttp_get_saddr(self->tsap);
  884. return 0;
  885. }
  886. static struct proto irda_proto = {
  887. .name = "IRDA",
  888. .owner = THIS_MODULE,
  889. .obj_size = sizeof(struct irda_sock),
  890. };
  891. /*
  892. * Function irda_create (sock, protocol)
  893. *
  894. * Create IrDA socket
  895. *
  896. */
  897. static int irda_create(struct net *net, struct socket *sock, int protocol)
  898. {
  899. struct sock *sk;
  900. struct irda_sock *self;
  901. IRDA_DEBUG(2, "%s()\n", __func__);
  902. if (net != &init_net)
  903. return -EAFNOSUPPORT;
  904. /* Check for valid socket type */
  905. switch (sock->type) {
  906. case SOCK_STREAM: /* For TTP connections with SAR disabled */
  907. case SOCK_SEQPACKET: /* For TTP connections with SAR enabled */
  908. case SOCK_DGRAM: /* For TTP Unitdata or LMP Ultra transfers */
  909. break;
  910. default:
  911. return -ESOCKTNOSUPPORT;
  912. }
  913. /* Allocate networking socket */
  914. sk = sk_alloc(net, PF_IRDA, GFP_ATOMIC, &irda_proto);
  915. if (sk == NULL)
  916. return -ENOMEM;
  917. self = irda_sk(sk);
  918. IRDA_DEBUG(2, "%s() : self is %p\n", __func__, self);
  919. init_waitqueue_head(&self->query_wait);
  920. /* Initialise networking socket struct */
  921. sock_init_data(sock, sk); /* Note : set sk->sk_refcnt to 1 */
  922. sk->sk_family = PF_IRDA;
  923. sk->sk_protocol = protocol;
  924. switch (sock->type) {
  925. case SOCK_STREAM:
  926. sock->ops = &irda_stream_ops;
  927. self->max_sdu_size_rx = TTP_SAR_DISABLE;
  928. break;
  929. case SOCK_SEQPACKET:
  930. sock->ops = &irda_seqpacket_ops;
  931. self->max_sdu_size_rx = TTP_SAR_UNBOUND;
  932. break;
  933. case SOCK_DGRAM:
  934. switch (protocol) {
  935. #ifdef CONFIG_IRDA_ULTRA
  936. case IRDAPROTO_ULTRA:
  937. sock->ops = &irda_ultra_ops;
  938. /* Initialise now, because we may send on unbound
  939. * sockets. Jean II */
  940. self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
  941. self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
  942. break;
  943. #endif /* CONFIG_IRDA_ULTRA */
  944. case IRDAPROTO_UNITDATA:
  945. sock->ops = &irda_dgram_ops;
  946. /* We let Unitdata conn. be like seqpack conn. */
  947. self->max_sdu_size_rx = TTP_SAR_UNBOUND;
  948. break;
  949. default:
  950. return -ESOCKTNOSUPPORT;
  951. }
  952. break;
  953. default:
  954. return -ESOCKTNOSUPPORT;
  955. }
  956. /* Register as a client with IrLMP */
  957. self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
  958. self->mask.word = 0xffff;
  959. self->rx_flow = self->tx_flow = FLOW_START;
  960. self->nslots = DISCOVERY_DEFAULT_SLOTS;
  961. self->daddr = DEV_ADDR_ANY; /* Until we get connected */
  962. self->saddr = 0x0; /* so IrLMP assign us any link */
  963. return 0;
  964. }
  965. /*
  966. * Function irda_destroy_socket (self)
  967. *
  968. * Destroy socket
  969. *
  970. */
  971. static void irda_destroy_socket(struct irda_sock *self)
  972. {
  973. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  974. /* Unregister with IrLMP */
  975. irlmp_unregister_client(self->ckey);
  976. irlmp_unregister_service(self->skey);
  977. /* Unregister with LM-IAS */
  978. if (self->ias_obj) {
  979. irias_delete_object(self->ias_obj);
  980. self->ias_obj = NULL;
  981. }
  982. if (self->iriap) {
  983. iriap_close(self->iriap);
  984. self->iriap = NULL;
  985. }
  986. if (self->tsap) {
  987. irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
  988. irttp_close_tsap(self->tsap);
  989. self->tsap = NULL;
  990. }
  991. #ifdef CONFIG_IRDA_ULTRA
  992. if (self->lsap) {
  993. irlmp_close_lsap(self->lsap);
  994. self->lsap = NULL;
  995. }
  996. #endif /* CONFIG_IRDA_ULTRA */
  997. }
  998. /*
  999. * Function irda_release (sock)
  1000. */
  1001. static int irda_release(struct socket *sock)
  1002. {
  1003. struct sock *sk = sock->sk;
  1004. IRDA_DEBUG(2, "%s()\n", __func__);
  1005. if (sk == NULL)
  1006. return 0;
  1007. lock_sock(sk);
  1008. sk->sk_state = TCP_CLOSE;
  1009. sk->sk_shutdown |= SEND_SHUTDOWN;
  1010. sk->sk_state_change(sk);
  1011. /* Destroy IrDA socket */
  1012. irda_destroy_socket(irda_sk(sk));
  1013. sock_orphan(sk);
  1014. sock->sk = NULL;
  1015. release_sock(sk);
  1016. /* Purge queues (see sock_init_data()) */
  1017. skb_queue_purge(&sk->sk_receive_queue);
  1018. /* Destroy networking socket if we are the last reference on it,
  1019. * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
  1020. sock_put(sk);
  1021. /* Notes on socket locking and deallocation... - Jean II
  1022. * In theory we should put pairs of sock_hold() / sock_put() to
  1023. * prevent the socket to be destroyed whenever there is an
  1024. * outstanding request or outstanding incoming packet or event.
  1025. *
  1026. * 1) This may include IAS request, both in connect and getsockopt.
  1027. * Unfortunately, the situation is a bit more messy than it looks,
  1028. * because we close iriap and kfree(self) above.
  1029. *
  1030. * 2) This may include selective discovery in getsockopt.
  1031. * Same stuff as above, irlmp registration and self are gone.
  1032. *
  1033. * Probably 1 and 2 may not matter, because it's all triggered
  1034. * by a process and the socket layer already prevent the
  1035. * socket to go away while a process is holding it, through
  1036. * sockfd_put() and fput()...
  1037. *
  1038. * 3) This may include deferred TSAP closure. In particular,
  1039. * we may receive a late irda_disconnect_indication()
  1040. * Fortunately, (tsap_cb *)->close_pend should protect us
  1041. * from that.
  1042. *
  1043. * I did some testing on SMP, and it looks solid. And the socket
  1044. * memory leak is now gone... - Jean II
  1045. */
  1046. return 0;
  1047. }
  1048. /*
  1049. * Function irda_sendmsg (iocb, sock, msg, len)
  1050. *
  1051. * Send message down to TinyTP. This function is used for both STREAM and
  1052. * SEQPACK services. This is possible since it forces the client to
  1053. * fragment the message if necessary
  1054. */
  1055. static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
  1056. struct msghdr *msg, size_t len)
  1057. {
  1058. struct sock *sk = sock->sk;
  1059. struct irda_sock *self;
  1060. struct sk_buff *skb;
  1061. int err = -EPIPE;
  1062. IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
  1063. /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
  1064. if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
  1065. MSG_NOSIGNAL))
  1066. return -EINVAL;
  1067. if (sk->sk_shutdown & SEND_SHUTDOWN)
  1068. goto out_err;
  1069. if (sk->sk_state != TCP_ESTABLISHED)
  1070. return -ENOTCONN;
  1071. self = irda_sk(sk);
  1072. /* Check if IrTTP is wants us to slow down */
  1073. if (wait_event_interruptible(*(sk->sk_sleep),
  1074. (self->tx_flow != FLOW_STOP || sk->sk_state != TCP_ESTABLISHED)))
  1075. return -ERESTARTSYS;
  1076. /* Check if we are still connected */
  1077. if (sk->sk_state != TCP_ESTABLISHED)
  1078. return -ENOTCONN;
  1079. /* Check that we don't send out too big frames */
  1080. if (len > self->max_data_size) {
  1081. IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
  1082. __func__, len, self->max_data_size);
  1083. len = self->max_data_size;
  1084. }
  1085. skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
  1086. msg->msg_flags & MSG_DONTWAIT, &err);
  1087. if (!skb)
  1088. goto out_err;
  1089. skb_reserve(skb, self->max_header_size + 16);
  1090. skb_reset_transport_header(skb);
  1091. skb_put(skb, len);
  1092. err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
  1093. if (err) {
  1094. kfree_skb(skb);
  1095. goto out_err;
  1096. }
  1097. /*
  1098. * Just send the message to TinyTP, and let it deal with possible
  1099. * errors. No need to duplicate all that here
  1100. */
  1101. err = irttp_data_request(self->tsap, skb);
  1102. if (err) {
  1103. IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
  1104. goto out_err;
  1105. }
  1106. /* Tell client how much data we actually sent */
  1107. return len;
  1108. out_err:
  1109. return sk_stream_error(sk, msg->msg_flags, err);
  1110. }
  1111. /*
  1112. * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
  1113. *
  1114. * Try to receive message and copy it to user. The frame is discarded
  1115. * after being read, regardless of how much the user actually read
  1116. */
  1117. static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
  1118. struct msghdr *msg, size_t size, int flags)
  1119. {
  1120. struct sock *sk = sock->sk;
  1121. struct irda_sock *self = irda_sk(sk);
  1122. struct sk_buff *skb;
  1123. size_t copied;
  1124. int err;
  1125. IRDA_DEBUG(4, "%s()\n", __func__);
  1126. if ((err = sock_error(sk)) < 0)
  1127. return err;
  1128. skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
  1129. flags & MSG_DONTWAIT, &err);
  1130. if (!skb)
  1131. return err;
  1132. skb_reset_transport_header(skb);
  1133. copied = skb->len;
  1134. if (copied > size) {
  1135. IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
  1136. __func__, copied, size);
  1137. copied = size;
  1138. msg->msg_flags |= MSG_TRUNC;
  1139. }
  1140. skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
  1141. skb_free_datagram(sk, skb);
  1142. /*
  1143. * Check if we have previously stopped IrTTP and we know
  1144. * have more free space in our rx_queue. If so tell IrTTP
  1145. * to start delivering frames again before our rx_queue gets
  1146. * empty
  1147. */
  1148. if (self->rx_flow == FLOW_STOP) {
  1149. if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
  1150. IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
  1151. self->rx_flow = FLOW_START;
  1152. irttp_flow_request(self->tsap, FLOW_START);
  1153. }
  1154. }
  1155. return copied;
  1156. }
  1157. /*
  1158. * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
  1159. */
  1160. static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
  1161. struct msghdr *msg, size_t size, int flags)
  1162. {
  1163. struct sock *sk = sock->sk;
  1164. struct irda_sock *self = irda_sk(sk);
  1165. int noblock = flags & MSG_DONTWAIT;
  1166. size_t copied = 0;
  1167. int target, err;
  1168. long timeo;
  1169. IRDA_DEBUG(3, "%s()\n", __func__);
  1170. if ((err = sock_error(sk)) < 0)
  1171. return err;
  1172. if (sock->flags & __SO_ACCEPTCON)
  1173. return(-EINVAL);
  1174. if (flags & MSG_OOB)
  1175. return -EOPNOTSUPP;
  1176. target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
  1177. timeo = sock_rcvtimeo(sk, noblock);
  1178. msg->msg_namelen = 0;
  1179. do {
  1180. int chunk;
  1181. struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
  1182. if (skb == NULL) {
  1183. DEFINE_WAIT(wait);
  1184. int ret = 0;
  1185. if (copied >= target)
  1186. break;
  1187. prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
  1188. /*
  1189. * POSIX 1003.1g mandates this order.
  1190. */
  1191. ret = sock_error(sk);
  1192. if (ret)
  1193. ;
  1194. else if (sk->sk_shutdown & RCV_SHUTDOWN)
  1195. ;
  1196. else if (noblock)
  1197. ret = -EAGAIN;
  1198. else if (signal_pending(current))
  1199. ret = sock_intr_errno(timeo);
  1200. else if (sk->sk_state != TCP_ESTABLISHED)
  1201. ret = -ENOTCONN;
  1202. else if (skb_peek(&sk->sk_receive_queue) == NULL)
  1203. /* Wait process until data arrives */
  1204. schedule();
  1205. finish_wait(sk->sk_sleep, &wait);
  1206. if (ret)
  1207. return ret;
  1208. if (sk->sk_shutdown & RCV_SHUTDOWN)
  1209. break;
  1210. continue;
  1211. }
  1212. chunk = min_t(unsigned int, skb->len, size);
  1213. if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
  1214. skb_queue_head(&sk->sk_receive_queue, skb);
  1215. if (copied == 0)
  1216. copied = -EFAULT;
  1217. break;
  1218. }
  1219. copied += chunk;
  1220. size -= chunk;
  1221. /* Mark read part of skb as used */
  1222. if (!(flags & MSG_PEEK)) {
  1223. skb_pull(skb, chunk);
  1224. /* put the skb back if we didn't use it up.. */
  1225. if (skb->len) {
  1226. IRDA_DEBUG(1, "%s(), back on q!\n",
  1227. __func__);
  1228. skb_queue_head(&sk->sk_receive_queue, skb);
  1229. break;
  1230. }
  1231. kfree_skb(skb);
  1232. } else {
  1233. IRDA_DEBUG(0, "%s() questionable!?\n", __func__);
  1234. /* put message back and return */
  1235. skb_queue_head(&sk->sk_receive_queue, skb);
  1236. break;
  1237. }
  1238. } while (size);
  1239. /*
  1240. * Check if we have previously stopped IrTTP and we know
  1241. * have more free space in our rx_queue. If so tell IrTTP
  1242. * to start delivering frames again before our rx_queue gets
  1243. * empty
  1244. */
  1245. if (self->rx_flow == FLOW_STOP) {
  1246. if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
  1247. IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
  1248. self->rx_flow = FLOW_START;
  1249. irttp_flow_request(self->tsap, FLOW_START);
  1250. }
  1251. }
  1252. return copied;
  1253. }
  1254. /*
  1255. * Function irda_sendmsg_dgram (iocb, sock, msg, len)
  1256. *
  1257. * Send message down to TinyTP for the unreliable sequenced
  1258. * packet service...
  1259. *
  1260. */
  1261. static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
  1262. struct msghdr *msg, size_t len)
  1263. {
  1264. struct sock *sk = sock->sk;
  1265. struct irda_sock *self;
  1266. struct sk_buff *skb;
  1267. int err;
  1268. IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
  1269. if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
  1270. return -EINVAL;
  1271. if (sk->sk_shutdown & SEND_SHUTDOWN) {
  1272. send_sig(SIGPIPE, current, 0);
  1273. return -EPIPE;
  1274. }
  1275. if (sk->sk_state != TCP_ESTABLISHED)
  1276. return -ENOTCONN;
  1277. self = irda_sk(sk);
  1278. /*
  1279. * Check that we don't send out too big frames. This is an unreliable
  1280. * service, so we have no fragmentation and no coalescence
  1281. */
  1282. if (len > self->max_data_size) {
  1283. IRDA_DEBUG(0, "%s(), Warning to much data! "
  1284. "Chopping frame from %zd to %d bytes!\n",
  1285. __func__, len, self->max_data_size);
  1286. len = self->max_data_size;
  1287. }
  1288. skb = sock_alloc_send_skb(sk, len + self->max_header_size,
  1289. msg->msg_flags & MSG_DONTWAIT, &err);
  1290. if (!skb)
  1291. return -ENOBUFS;
  1292. skb_reserve(skb, self->max_header_size);
  1293. skb_reset_transport_header(skb);
  1294. IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
  1295. skb_put(skb, len);
  1296. err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
  1297. if (err) {
  1298. kfree_skb(skb);
  1299. return err;
  1300. }
  1301. /*
  1302. * Just send the message to TinyTP, and let it deal with possible
  1303. * errors. No need to duplicate all that here
  1304. */
  1305. err = irttp_udata_request(self->tsap, skb);
  1306. if (err) {
  1307. IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
  1308. return err;
  1309. }
  1310. return len;
  1311. }
  1312. /*
  1313. * Function irda_sendmsg_ultra (iocb, sock, msg, len)
  1314. *
  1315. * Send message down to IrLMP for the unreliable Ultra
  1316. * packet service...
  1317. */
  1318. #ifdef CONFIG_IRDA_ULTRA
  1319. static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
  1320. struct msghdr *msg, size_t len)
  1321. {
  1322. struct sock *sk = sock->sk;
  1323. struct irda_sock *self;
  1324. __u8 pid = 0;
  1325. int bound = 0;
  1326. struct sk_buff *skb;
  1327. int err;
  1328. IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
  1329. if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
  1330. return -EINVAL;
  1331. if (sk->sk_shutdown & SEND_SHUTDOWN) {
  1332. send_sig(SIGPIPE, current, 0);
  1333. return -EPIPE;
  1334. }
  1335. self = irda_sk(sk);
  1336. /* Check if an address was specified with sendto. Jean II */
  1337. if (msg->msg_name) {
  1338. struct sockaddr_irda *addr = (struct sockaddr_irda *) msg->msg_name;
  1339. /* Check address, extract pid. Jean II */
  1340. if (msg->msg_namelen < sizeof(*addr))
  1341. return -EINVAL;
  1342. if (addr->sir_family != AF_IRDA)
  1343. return -EINVAL;
  1344. pid = addr->sir_lsap_sel;
  1345. if (pid & 0x80) {
  1346. IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
  1347. return -EOPNOTSUPP;
  1348. }
  1349. } else {
  1350. /* Check that the socket is properly bound to an Ultra
  1351. * port. Jean II */
  1352. if ((self->lsap == NULL) ||
  1353. (sk->sk_state != TCP_ESTABLISHED)) {
  1354. IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
  1355. __func__);
  1356. return -ENOTCONN;
  1357. }
  1358. /* Use PID from socket */
  1359. bound = 1;
  1360. }
  1361. /*
  1362. * Check that we don't send out too big frames. This is an unreliable
  1363. * service, so we have no fragmentation and no coalescence
  1364. */
  1365. if (len > self->max_data_size) {
  1366. IRDA_DEBUG(0, "%s(), Warning to much data! "
  1367. "Chopping frame from %zd to %d bytes!\n",
  1368. __func__, len, self->max_data_size);
  1369. len = self->max_data_size;
  1370. }
  1371. skb = sock_alloc_send_skb(sk, len + self->max_header_size,
  1372. msg->msg_flags & MSG_DONTWAIT, &err);
  1373. if (!skb)
  1374. return -ENOBUFS;
  1375. skb_reserve(skb, self->max_header_size);
  1376. skb_reset_transport_header(skb);
  1377. IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
  1378. skb_put(skb, len);
  1379. err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
  1380. if (err) {
  1381. kfree_skb(skb);
  1382. return err;
  1383. }
  1384. err = irlmp_connless_data_request((bound ? self->lsap : NULL),
  1385. skb, pid);
  1386. if (err) {
  1387. IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
  1388. return err;
  1389. }
  1390. return len;
  1391. }
  1392. #endif /* CONFIG_IRDA_ULTRA */
  1393. /*
  1394. * Function irda_shutdown (sk, how)
  1395. */
  1396. static int irda_shutdown(struct socket *sock, int how)
  1397. {
  1398. struct sock *sk = sock->sk;
  1399. struct irda_sock *self = irda_sk(sk);
  1400. IRDA_DEBUG(1, "%s(%p)\n", __func__, self);
  1401. sk->sk_state = TCP_CLOSE;
  1402. sk->sk_shutdown |= SEND_SHUTDOWN;
  1403. sk->sk_state_change(sk);
  1404. if (self->iriap) {
  1405. iriap_close(self->iriap);
  1406. self->iriap = NULL;
  1407. }
  1408. if (self->tsap) {
  1409. irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
  1410. irttp_close_tsap(self->tsap);
  1411. self->tsap = NULL;
  1412. }
  1413. /* A few cleanup so the socket look as good as new... */
  1414. self->rx_flow = self->tx_flow = FLOW_START; /* needed ??? */
  1415. self->daddr = DEV_ADDR_ANY; /* Until we get re-connected */
  1416. self->saddr = 0x0; /* so IrLMP assign us any link */
  1417. return 0;
  1418. }
  1419. /*
  1420. * Function irda_poll (file, sock, wait)
  1421. */
  1422. static unsigned int irda_poll(struct file * file, struct socket *sock,
  1423. poll_table *wait)
  1424. {
  1425. struct sock *sk = sock->sk;
  1426. struct irda_sock *self = irda_sk(sk);
  1427. unsigned int mask;
  1428. IRDA_DEBUG(4, "%s()\n", __func__);
  1429. poll_wait(file, sk->sk_sleep, wait);
  1430. mask = 0;
  1431. /* Exceptional events? */
  1432. if (sk->sk_err)
  1433. mask |= POLLERR;
  1434. if (sk->sk_shutdown & RCV_SHUTDOWN) {
  1435. IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
  1436. mask |= POLLHUP;
  1437. }
  1438. /* Readable? */
  1439. if (!skb_queue_empty(&sk->sk_receive_queue)) {
  1440. IRDA_DEBUG(4, "Socket is readable\n");
  1441. mask |= POLLIN | POLLRDNORM;
  1442. }
  1443. /* Connection-based need to check for termination and startup */
  1444. switch (sk->sk_type) {
  1445. case SOCK_STREAM:
  1446. if (sk->sk_state == TCP_CLOSE) {
  1447. IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
  1448. mask |= POLLHUP;
  1449. }
  1450. if (sk->sk_state == TCP_ESTABLISHED) {
  1451. if ((self->tx_flow == FLOW_START) &&
  1452. sock_writeable(sk))
  1453. {
  1454. mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
  1455. }
  1456. }
  1457. break;
  1458. case SOCK_SEQPACKET:
  1459. if ((self->tx_flow == FLOW_START) &&
  1460. sock_writeable(sk))
  1461. {
  1462. mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
  1463. }
  1464. break;
  1465. case SOCK_DGRAM:
  1466. if (sock_writeable(sk))
  1467. mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
  1468. break;
  1469. default:
  1470. break;
  1471. }
  1472. return mask;
  1473. }
  1474. /*
  1475. * Function irda_ioctl (sock, cmd, arg)
  1476. */
  1477. static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  1478. {
  1479. struct sock *sk = sock->sk;
  1480. IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__, cmd);
  1481. switch (cmd) {
  1482. case TIOCOUTQ: {
  1483. long amount;
  1484. amount = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
  1485. if (amount < 0)
  1486. amount = 0;
  1487. if (put_user(amount, (unsigned int __user *)arg))
  1488. return -EFAULT;
  1489. return 0;
  1490. }
  1491. case TIOCINQ: {
  1492. struct sk_buff *skb;
  1493. long amount = 0L;
  1494. /* These two are safe on a single CPU system as only user tasks fiddle here */
  1495. if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
  1496. amount = skb->len;
  1497. if (put_user(amount, (unsigned int __user *)arg))
  1498. return -EFAULT;
  1499. return 0;
  1500. }
  1501. case SIOCGSTAMP:
  1502. if (sk != NULL)
  1503. return sock_get_timestamp(sk, (struct timeval __user *)arg);
  1504. return -EINVAL;
  1505. case SIOCGIFADDR:
  1506. case SIOCSIFADDR:
  1507. case SIOCGIFDSTADDR:
  1508. case SIOCSIFDSTADDR:
  1509. case SIOCGIFBRDADDR:
  1510. case SIOCSIFBRDADDR:
  1511. case SIOCGIFNETMASK:
  1512. case SIOCSIFNETMASK:
  1513. case SIOCGIFMETRIC:
  1514. case SIOCSIFMETRIC:
  1515. return -EINVAL;
  1516. default:
  1517. IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__);
  1518. return -ENOIOCTLCMD;
  1519. }
  1520. /*NOTREACHED*/
  1521. return 0;
  1522. }
  1523. #ifdef CONFIG_COMPAT
  1524. /*
  1525. * Function irda_ioctl (sock, cmd, arg)
  1526. */
  1527. static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  1528. {
  1529. /*
  1530. * All IRDA's ioctl are standard ones.
  1531. */
  1532. return -ENOIOCTLCMD;
  1533. }
  1534. #endif
  1535. /*
  1536. * Function irda_setsockopt (sock, level, optname, optval, optlen)
  1537. *
  1538. * Set some options for the socket
  1539. *
  1540. */
  1541. static int irda_setsockopt(struct socket *sock, int level, int optname,
  1542. char __user *optval, int optlen)
  1543. {
  1544. struct sock *sk = sock->sk;
  1545. struct irda_sock *self = irda_sk(sk);
  1546. struct irda_ias_set *ias_opt;
  1547. struct ias_object *ias_obj;
  1548. struct ias_attrib * ias_attr; /* Attribute in IAS object */
  1549. int opt, free_ias = 0;
  1550. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  1551. if (level != SOL_IRLMP)
  1552. return -ENOPROTOOPT;
  1553. switch (optname) {
  1554. case IRLMP_IAS_SET:
  1555. /* The user want to add an attribute to an existing IAS object
  1556. * (in the IAS database) or to create a new object with this
  1557. * attribute.
  1558. * We first query IAS to know if the object exist, and then
  1559. * create the right attribute...
  1560. */
  1561. if (optlen != sizeof(struct irda_ias_set))
  1562. return -EINVAL;
  1563. ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
  1564. if (ias_opt == NULL)
  1565. return -ENOMEM;
  1566. /* Copy query to the driver. */
  1567. if (copy_from_user(ias_opt, optval, optlen)) {
  1568. kfree(ias_opt);
  1569. return -EFAULT;
  1570. }
  1571. /* Find the object we target.
  1572. * If the user gives us an empty string, we use the object
  1573. * associated with this socket. This will workaround
  1574. * duplicated class name - Jean II */
  1575. if(ias_opt->irda_class_name[0] == '\0') {
  1576. if(self->ias_obj == NULL) {
  1577. kfree(ias_opt);
  1578. return -EINVAL;
  1579. }
  1580. ias_obj = self->ias_obj;
  1581. } else
  1582. ias_obj = irias_find_object(ias_opt->irda_class_name);
  1583. /* Only ROOT can mess with the global IAS database.
  1584. * Users can only add attributes to the object associated
  1585. * with the socket they own - Jean II */
  1586. if((!capable(CAP_NET_ADMIN)) &&
  1587. ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
  1588. kfree(ias_opt);
  1589. return -EPERM;
  1590. }
  1591. /* If the object doesn't exist, create it */
  1592. if(ias_obj == (struct ias_object *) NULL) {
  1593. /* Create a new object */
  1594. ias_obj = irias_new_object(ias_opt->irda_class_name,
  1595. jiffies);
  1596. if (ias_obj == NULL) {
  1597. kfree(ias_opt);
  1598. return -ENOMEM;
  1599. }
  1600. free_ias = 1;
  1601. }
  1602. /* Do we have the attribute already ? */
  1603. if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
  1604. kfree(ias_opt);
  1605. if (free_ias) {
  1606. kfree(ias_obj->name);
  1607. kfree(ias_obj);
  1608. }
  1609. return -EINVAL;
  1610. }
  1611. /* Look at the type */
  1612. switch(ias_opt->irda_attrib_type) {
  1613. case IAS_INTEGER:
  1614. /* Add an integer attribute */
  1615. irias_add_integer_attrib(
  1616. ias_obj,
  1617. ias_opt->irda_attrib_name,
  1618. ias_opt->attribute.irda_attrib_int,
  1619. IAS_USER_ATTR);
  1620. break;
  1621. case IAS_OCT_SEQ:
  1622. /* Check length */
  1623. if(ias_opt->attribute.irda_attrib_octet_seq.len >
  1624. IAS_MAX_OCTET_STRING) {
  1625. kfree(ias_opt);
  1626. if (free_ias) {
  1627. kfree(ias_obj->name);
  1628. kfree(ias_obj);
  1629. }
  1630. return -EINVAL;
  1631. }
  1632. /* Add an octet sequence attribute */
  1633. irias_add_octseq_attrib(
  1634. ias_obj,
  1635. ias_opt->irda_attrib_name,
  1636. ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
  1637. ias_opt->attribute.irda_attrib_octet_seq.len,
  1638. IAS_USER_ATTR);
  1639. break;
  1640. case IAS_STRING:
  1641. /* Should check charset & co */
  1642. /* Check length */
  1643. /* The length is encoded in a __u8, and
  1644. * IAS_MAX_STRING == 256, so there is no way
  1645. * userspace can pass us a string too large.
  1646. * Jean II */
  1647. /* NULL terminate the string (avoid troubles) */
  1648. ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
  1649. /* Add a string attribute */
  1650. irias_add_string_attrib(
  1651. ias_obj,
  1652. ias_opt->irda_attrib_name,
  1653. ias_opt->attribute.irda_attrib_string.string,
  1654. IAS_USER_ATTR);
  1655. break;
  1656. default :
  1657. kfree(ias_opt);
  1658. if (free_ias) {
  1659. kfree(ias_obj->name);
  1660. kfree(ias_obj);
  1661. }
  1662. return -EINVAL;
  1663. }
  1664. irias_insert_object(ias_obj);
  1665. kfree(ias_opt);
  1666. break;
  1667. case IRLMP_IAS_DEL:
  1668. /* The user want to delete an object from our local IAS
  1669. * database. We just need to query the IAS, check is the
  1670. * object is not owned by the kernel and delete it.
  1671. */
  1672. if (optlen != sizeof(struct irda_ias_set))
  1673. return -EINVAL;
  1674. ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
  1675. if (ias_opt == NULL)
  1676. return -ENOMEM;
  1677. /* Copy query to the driver. */
  1678. if (copy_from_user(ias_opt, optval, optlen)) {
  1679. kfree(ias_opt);
  1680. return -EFAULT;
  1681. }
  1682. /* Find the object we target.
  1683. * If the user gives us an empty string, we use the object
  1684. * associated with this socket. This will workaround
  1685. * duplicated class name - Jean II */
  1686. if(ias_opt->irda_class_name[0] == '\0')
  1687. ias_obj = self->ias_obj;
  1688. else
  1689. ias_obj = irias_find_object(ias_opt->irda_class_name);
  1690. if(ias_obj == (struct ias_object *) NULL) {
  1691. kfree(ias_opt);
  1692. return -EINVAL;
  1693. }
  1694. /* Only ROOT can mess with the global IAS database.
  1695. * Users can only del attributes from the object associated
  1696. * with the socket they own - Jean II */
  1697. if((!capable(CAP_NET_ADMIN)) &&
  1698. ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
  1699. kfree(ias_opt);
  1700. return -EPERM;
  1701. }
  1702. /* Find the attribute (in the object) we target */
  1703. ias_attr = irias_find_attrib(ias_obj,
  1704. ias_opt->irda_attrib_name);
  1705. if(ias_attr == (struct ias_attrib *) NULL) {
  1706. kfree(ias_opt);
  1707. return -EINVAL;
  1708. }
  1709. /* Check is the user space own the object */
  1710. if(ias_attr->value->owner != IAS_USER_ATTR) {
  1711. IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__);
  1712. kfree(ias_opt);
  1713. return -EPERM;
  1714. }
  1715. /* Remove the attribute (and maybe the object) */
  1716. irias_delete_attrib(ias_obj, ias_attr, 1);
  1717. kfree(ias_opt);
  1718. break;
  1719. case IRLMP_MAX_SDU_SIZE:
  1720. if (optlen < sizeof(int))
  1721. return -EINVAL;
  1722. if (get_user(opt, (int __user *)optval))
  1723. return -EFAULT;
  1724. /* Only possible for a seqpacket service (TTP with SAR) */
  1725. if (sk->sk_type != SOCK_SEQPACKET) {
  1726. IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
  1727. __func__, opt);
  1728. self->max_sdu_size_rx = opt;
  1729. } else {
  1730. IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
  1731. __func__);
  1732. return -ENOPROTOOPT;
  1733. }
  1734. break;
  1735. case IRLMP_HINTS_SET:
  1736. if (optlen < sizeof(int))
  1737. return -EINVAL;
  1738. /* The input is really a (__u8 hints[2]), easier as an int */
  1739. if (get_user(opt, (int __user *)optval))
  1740. return -EFAULT;
  1741. /* Unregister any old registration */
  1742. if (self->skey)
  1743. irlmp_unregister_service(self->skey);
  1744. self->skey = irlmp_register_service((__u16) opt);
  1745. break;
  1746. case IRLMP_HINT_MASK_SET:
  1747. /* As opposed to the previous case which set the hint bits
  1748. * that we advertise, this one set the filter we use when
  1749. * making a discovery (nodes which don't match any hint
  1750. * bit in the mask are not reported).
  1751. */
  1752. if (optlen < sizeof(int))
  1753. return -EINVAL;
  1754. /* The input is really a (__u8 hints[2]), easier as an int */
  1755. if (get_user(opt, (int __user *)optval))
  1756. return -EFAULT;
  1757. /* Set the new hint mask */
  1758. self->mask.word = (__u16) opt;
  1759. /* Mask out extension bits */
  1760. self->mask.word &= 0x7f7f;
  1761. /* Check if no bits */
  1762. if(!self->mask.word)
  1763. self->mask.word = 0xFFFF;
  1764. break;
  1765. default:
  1766. return -ENOPROTOOPT;
  1767. }
  1768. return 0;
  1769. }
  1770. /*
  1771. * Function irda_extract_ias_value(ias_opt, ias_value)
  1772. *
  1773. * Translate internal IAS value structure to the user space representation
  1774. *
  1775. * The external representation of IAS values, as we exchange them with
  1776. * user space program is quite different from the internal representation,
  1777. * as stored in the IAS database (because we need a flat structure for
  1778. * crossing kernel boundary).
  1779. * This function transform the former in the latter. We also check
  1780. * that the value type is valid.
  1781. */
  1782. static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
  1783. struct ias_value *ias_value)
  1784. {
  1785. /* Look at the type */
  1786. switch (ias_value->type) {
  1787. case IAS_INTEGER:
  1788. /* Copy the integer */
  1789. ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
  1790. break;
  1791. case IAS_OCT_SEQ:
  1792. /* Set length */
  1793. ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
  1794. /* Copy over */
  1795. memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
  1796. ias_value->t.oct_seq, ias_value->len);
  1797. break;
  1798. case IAS_STRING:
  1799. /* Set length */
  1800. ias_opt->attribute.irda_attrib_string.len = ias_value->len;
  1801. ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
  1802. /* Copy over */
  1803. memcpy(ias_opt->attribute.irda_attrib_string.string,
  1804. ias_value->t.string, ias_value->len);
  1805. /* NULL terminate the string (avoid troubles) */
  1806. ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
  1807. break;
  1808. case IAS_MISSING:
  1809. default :
  1810. return -EINVAL;
  1811. }
  1812. /* Copy type over */
  1813. ias_opt->irda_attrib_type = ias_value->type;
  1814. return 0;
  1815. }
  1816. /*
  1817. * Function irda_getsockopt (sock, level, optname, optval, optlen)
  1818. */
  1819. static int irda_getsockopt(struct socket *sock, int level, int optname,
  1820. char __user *optval, int __user *optlen)
  1821. {
  1822. struct sock *sk = sock->sk;
  1823. struct irda_sock *self = irda_sk(sk);
  1824. struct irda_device_list list;
  1825. struct irda_device_info *discoveries;
  1826. struct irda_ias_set * ias_opt; /* IAS get/query params */
  1827. struct ias_object * ias_obj; /* Object in IAS */
  1828. struct ias_attrib * ias_attr; /* Attribute in IAS object */
  1829. int daddr = DEV_ADDR_ANY; /* Dest address for IAS queries */
  1830. int val = 0;
  1831. int len = 0;
  1832. int err;
  1833. int offset, total;
  1834. IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
  1835. if (level != SOL_IRLMP)
  1836. return -ENOPROTOOPT;
  1837. if (get_user(len, optlen))
  1838. return -EFAULT;
  1839. if(len < 0)
  1840. return -EINVAL;
  1841. switch (optname) {
  1842. case IRLMP_ENUMDEVICES:
  1843. /* Ask lmp for the current discovery log */
  1844. discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
  1845. self->nslots);
  1846. /* Check if the we got some results */
  1847. if (discoveries == NULL)
  1848. return -EAGAIN; /* Didn't find any devices */
  1849. err = 0;
  1850. /* Write total list length back to client */
  1851. if (copy_to_user(optval, &list,
  1852. sizeof(struct irda_device_list) -
  1853. sizeof(struct irda_device_info)))
  1854. err = -EFAULT;
  1855. /* Offset to first device entry */
  1856. offset = sizeof(struct irda_device_list) -
  1857. sizeof(struct irda_device_info);
  1858. /* Copy the list itself - watch for overflow */
  1859. if(list.len > 2048)
  1860. {
  1861. err = -EINVAL;
  1862. goto bed;
  1863. }
  1864. total = offset + (list.len * sizeof(struct irda_device_info));
  1865. if (total > len)
  1866. total = len;
  1867. if (copy_to_user(optval+offset, discoveries, total - offset))
  1868. err = -EFAULT;
  1869. /* Write total number of bytes used back to client */
  1870. if (put_user(total, optlen))
  1871. err = -EFAULT;
  1872. bed:
  1873. /* Free up our buffer */
  1874. kfree(discoveries);
  1875. if (err)
  1876. return err;
  1877. break;
  1878. case IRLMP_MAX_SDU_SIZE:
  1879. val = self->max_data_size;
  1880. len = sizeof(int);
  1881. if (put_user(len, optlen))
  1882. return -EFAULT;
  1883. if (copy_to_user(optval, &val, len))
  1884. return -EFAULT;
  1885. break;
  1886. case IRLMP_IAS_GET:
  1887. /* The user want an object from our local IAS database.
  1888. * We just need to query the IAS and return the value
  1889. * that we found */
  1890. /* Check that the user has allocated the right space for us */
  1891. if (len != sizeof(struct irda_ias_set))
  1892. return -EINVAL;
  1893. ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
  1894. if (ias_opt == NULL)
  1895. return -ENOMEM;
  1896. /* Copy query to the driver. */
  1897. if (copy_from_user(ias_opt, optval, len)) {
  1898. kfree(ias_opt);
  1899. return -EFAULT;
  1900. }
  1901. /* Find the object we target.
  1902. * If the user gives us an empty string, we use the object
  1903. * associated with this socket. This will workaround
  1904. * duplicated class name - Jean II */
  1905. if(ias_opt->irda_class_name[0] == '\0')
  1906. ias_obj = self->ias_obj;
  1907. else
  1908. ias_obj = irias_find_object(ias_opt->irda_class_name);
  1909. if(ias_obj == (struct ias_object *) NULL) {
  1910. kfree(ias_opt);
  1911. return -EINVAL;
  1912. }
  1913. /* Find the attribute (in the object) we target */
  1914. ias_attr = irias_find_attrib(ias_obj,
  1915. ias_opt->irda_attrib_name);
  1916. if(ias_attr == (struct ias_attrib *) NULL) {
  1917. kfree(ias_opt);
  1918. return -EINVAL;
  1919. }
  1920. /* Translate from internal to user structure */
  1921. err = irda_extract_ias_value(ias_opt, ias_attr->value);
  1922. if(err) {
  1923. kfree(ias_opt);
  1924. return err;
  1925. }
  1926. /* Copy reply to the user */
  1927. if (copy_to_user(optval, ias_opt,
  1928. sizeof(struct irda_ias_set))) {
  1929. kfree(ias_opt);
  1930. return -EFAULT;
  1931. }
  1932. /* Note : don't need to put optlen, we checked it */
  1933. kfree(ias_opt);
  1934. break;
  1935. case IRLMP_IAS_QUERY:
  1936. /* The user want an object from a remote IAS database.
  1937. * We need to use IAP to query the remote database and
  1938. * then wait for the answer to come back. */
  1939. /* Check that the user has allocated the right space for us */
  1940. if (len != sizeof(struct irda_ias_set))
  1941. return -EINVAL;
  1942. ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
  1943. if (ias_opt == NULL)
  1944. return -ENOMEM;
  1945. /* Copy query to the driver. */
  1946. if (copy_from_user(ias_opt, optval, len)) {
  1947. kfree(ias_opt);
  1948. return -EFAULT;
  1949. }
  1950. /* At this point, there are two cases...
  1951. * 1) the socket is connected - that's the easy case, we
  1952. * just query the device we are connected to...
  1953. * 2) the socket is not connected - the user doesn't want
  1954. * to connect and/or may not have a valid service name
  1955. * (so can't create a fake connection). In this case,
  1956. * we assume that the user pass us a valid destination
  1957. * address in the requesting structure...
  1958. */
  1959. if(self->daddr != DEV_ADDR_ANY) {
  1960. /* We are connected - reuse known daddr */
  1961. daddr = self->daddr;
  1962. } else {
  1963. /* We are not connected, we must specify a valid
  1964. * destination address */
  1965. daddr = ias_opt->daddr;
  1966. if((!daddr) || (daddr == DEV_ADDR_ANY)) {
  1967. kfree(ias_opt);
  1968. return -EINVAL;
  1969. }
  1970. }
  1971. /* Check that we can proceed with IAP */
  1972. if (self->iriap) {
  1973. IRDA_WARNING("%s: busy with a previous query\n",
  1974. __func__);
  1975. kfree(ias_opt);
  1976. return -EBUSY;
  1977. }
  1978. self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
  1979. irda_getvalue_confirm);
  1980. if (self->iriap == NULL) {
  1981. kfree(ias_opt);
  1982. return -ENOMEM;
  1983. }
  1984. /* Treat unexpected wakeup as disconnect */
  1985. self->errno = -EHOSTUNREACH;
  1986. /* Query remote LM-IAS */
  1987. iriap_getvaluebyclass_request(self->iriap,
  1988. self->saddr, daddr,
  1989. ias_opt->irda_class_name,
  1990. ias_opt->irda_attrib_name);
  1991. /* Wait for answer, if not yet finished (or failed) */
  1992. if (wait_event_interruptible(self->query_wait,
  1993. (self->iriap == NULL))) {
  1994. /* pending request uses copy of ias_opt-content
  1995. * we can free it regardless! */
  1996. kfree(ias_opt);
  1997. /* Treat signals as disconnect */
  1998. return -EHOSTUNREACH;
  1999. }
  2000. /* Check what happened */
  2001. if (self->errno)
  2002. {
  2003. kfree(ias_opt);
  2004. /* Requested object/attribute doesn't exist */
  2005. if((self->errno == IAS_CLASS_UNKNOWN) ||
  2006. (self->errno == IAS_ATTRIB_UNKNOWN))
  2007. return (-EADDRNOTAVAIL);
  2008. else
  2009. return (-EHOSTUNREACH);
  2010. }
  2011. /* Translate from internal to user structure */
  2012. err = irda_extract_ias_value(ias_opt, self->ias_result);
  2013. if (self->ias_result)
  2014. irias_delete_value(self->ias_result);
  2015. if (err) {
  2016. kfree(ias_opt);
  2017. return err;
  2018. }
  2019. /* Copy reply to the user */
  2020. if (copy_to_user(optval, ias_opt,
  2021. sizeof(struct irda_ias_set))) {
  2022. kfree(ias_opt);
  2023. return -EFAULT;
  2024. }
  2025. /* Note : don't need to put optlen, we checked it */
  2026. kfree(ias_opt);
  2027. break;
  2028. case IRLMP_WAITDEVICE:
  2029. /* This function is just another way of seeing life ;-)
  2030. * IRLMP_ENUMDEVICES assumes that you have a static network,
  2031. * and that you just want to pick one of the devices present.
  2032. * On the other hand, in here we assume that no device is
  2033. * present and that at some point in the future a device will
  2034. * come into range. When this device arrive, we just wake
  2035. * up the caller, so that he has time to connect to it before
  2036. * the device goes away...
  2037. * Note : once the node has been discovered for more than a
  2038. * few second, it won't trigger this function, unless it
  2039. * goes away and come back changes its hint bits (so we
  2040. * might call it IRLMP_WAITNEWDEVICE).
  2041. */
  2042. /* Check that the user is passing us an int */
  2043. if (len != sizeof(int))
  2044. return -EINVAL;
  2045. /* Get timeout in ms (max time we block the caller) */
  2046. if (get_user(val, (int __user *)optval))
  2047. return -EFAULT;
  2048. /* Tell IrLMP we want to be notified */
  2049. irlmp_update_client(self->ckey, self->mask.word,
  2050. irda_selective_discovery_indication,
  2051. NULL, (void *) self);
  2052. /* Do some discovery (and also return cached results) */
  2053. irlmp_discovery_request(self->nslots);
  2054. /* Wait until a node is discovered */
  2055. if (!self->cachedaddr) {
  2056. int ret = 0;
  2057. IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__);
  2058. /* Set watchdog timer to expire in <val> ms. */
  2059. self->errno = 0;
  2060. setup_timer(&self->watchdog, irda_discovery_timeout,
  2061. (unsigned long)self);
  2062. self->watchdog.expires = jiffies + (val * HZ/1000);
  2063. add_timer(&(self->watchdog));
  2064. /* Wait for IR-LMP to call us back */
  2065. __wait_event_interruptible(self->query_wait,
  2066. (self->cachedaddr != 0 || self->errno == -ETIME),
  2067. ret);
  2068. /* If watchdog is still activated, kill it! */
  2069. if(timer_pending(&(self->watchdog)))
  2070. del_timer(&(self->watchdog));
  2071. IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__);
  2072. if (ret != 0)
  2073. return ret;
  2074. }
  2075. else
  2076. IRDA_DEBUG(1, "%s(), found immediately !\n",
  2077. __func__);
  2078. /* Tell IrLMP that we have been notified */
  2079. irlmp_update_client(self->ckey, self->mask.word,
  2080. NULL, NULL, NULL);
  2081. /* Check if the we got some results */
  2082. if (!self->cachedaddr)
  2083. return -EAGAIN; /* Didn't find any devices */
  2084. daddr = self->cachedaddr;
  2085. /* Cleanup */
  2086. self->cachedaddr = 0;
  2087. /* We return the daddr of the device that trigger the
  2088. * wakeup. As irlmp pass us only the new devices, we
  2089. * are sure that it's not an old device.
  2090. * If the user want more details, he should query
  2091. * the whole discovery log and pick one device...
  2092. */
  2093. if (put_user(daddr, (int __user *)optval))
  2094. return -EFAULT;
  2095. break;
  2096. default:
  2097. return -ENOPROTOOPT;
  2098. }
  2099. return 0;
  2100. }
  2101. static struct net_proto_family irda_family_ops = {
  2102. .family = PF_IRDA,
  2103. .create = irda_create,
  2104. .owner = THIS_MODULE,
  2105. };
  2106. static const struct proto_ops SOCKOPS_WRAPPED(irda_stream_ops) = {
  2107. .family = PF_IRDA,
  2108. .owner = THIS_MODULE,
  2109. .release = irda_release,
  2110. .bind = irda_bind,
  2111. .connect = irda_connect,
  2112. .socketpair = sock_no_socketpair,
  2113. .accept = irda_accept,
  2114. .getname = irda_getname,
  2115. .poll = irda_poll,
  2116. .ioctl = irda_ioctl,
  2117. #ifdef CONFIG_COMPAT
  2118. .compat_ioctl = irda_compat_ioctl,
  2119. #endif
  2120. .listen = irda_listen,
  2121. .shutdown = irda_shutdown,
  2122. .setsockopt = irda_setsockopt,
  2123. .getsockopt = irda_getsockopt,
  2124. .sendmsg = irda_sendmsg,
  2125. .recvmsg = irda_recvmsg_stream,
  2126. .mmap = sock_no_mmap,
  2127. .sendpage = sock_no_sendpage,
  2128. };
  2129. static const struct proto_ops SOCKOPS_WRAPPED(irda_seqpacket_ops) = {
  2130. .family = PF_IRDA,
  2131. .owner = THIS_MODULE,
  2132. .release = irda_release,
  2133. .bind = irda_bind,
  2134. .connect = irda_connect,
  2135. .socketpair = sock_no_socketpair,
  2136. .accept = irda_accept,
  2137. .getname = irda_getname,
  2138. .poll = datagram_poll,
  2139. .ioctl = irda_ioctl,
  2140. #ifdef CONFIG_COMPAT
  2141. .compat_ioctl = irda_compat_ioctl,
  2142. #endif
  2143. .listen = irda_listen,
  2144. .shutdown = irda_shutdown,
  2145. .setsockopt = irda_setsockopt,
  2146. .getsockopt = irda_getsockopt,
  2147. .sendmsg = irda_sendmsg,
  2148. .recvmsg = irda_recvmsg_dgram,
  2149. .mmap = sock_no_mmap,
  2150. .sendpage = sock_no_sendpage,
  2151. };
  2152. static const struct proto_ops SOCKOPS_WRAPPED(irda_dgram_ops) = {
  2153. .family = PF_IRDA,
  2154. .owner = THIS_MODULE,
  2155. .release = irda_release,
  2156. .bind = irda_bind,
  2157. .connect = irda_connect,
  2158. .socketpair = sock_no_socketpair,
  2159. .accept = irda_accept,
  2160. .getname = irda_getname,
  2161. .poll = datagram_poll,
  2162. .ioctl = irda_ioctl,
  2163. #ifdef CONFIG_COMPAT
  2164. .compat_ioctl = irda_compat_ioctl,
  2165. #endif
  2166. .listen = irda_listen,
  2167. .shutdown = irda_shutdown,
  2168. .setsockopt = irda_setsockopt,
  2169. .getsockopt = irda_getsockopt,
  2170. .sendmsg = irda_sendmsg_dgram,
  2171. .recvmsg = irda_recvmsg_dgram,
  2172. .mmap = sock_no_mmap,
  2173. .sendpage = sock_no_sendpage,
  2174. };
  2175. #ifdef CONFIG_IRDA_ULTRA
  2176. static const struct proto_ops SOCKOPS_WRAPPED(irda_ultra_ops) = {
  2177. .family = PF_IRDA,
  2178. .owner = THIS_MODULE,
  2179. .release = irda_release,
  2180. .bind = irda_bind,
  2181. .connect = sock_no_connect,
  2182. .socketpair = sock_no_socketpair,
  2183. .accept = sock_no_accept,
  2184. .getname = irda_getname,
  2185. .poll = datagram_poll,
  2186. .ioctl = irda_ioctl,
  2187. #ifdef CONFIG_COMPAT
  2188. .compat_ioctl = irda_compat_ioctl,
  2189. #endif
  2190. .listen = sock_no_listen,
  2191. .shutdown = irda_shutdown,
  2192. .setsockopt = irda_setsockopt,
  2193. .getsockopt = irda_getsockopt,
  2194. .sendmsg = irda_sendmsg_ultra,
  2195. .recvmsg = irda_recvmsg_dgram,
  2196. .mmap = sock_no_mmap,
  2197. .sendpage = sock_no_sendpage,
  2198. };
  2199. #endif /* CONFIG_IRDA_ULTRA */
  2200. SOCKOPS_WRAP(irda_stream, PF_IRDA);
  2201. SOCKOPS_WRAP(irda_seqpacket, PF_IRDA);
  2202. SOCKOPS_WRAP(irda_dgram, PF_IRDA);
  2203. #ifdef CONFIG_IRDA_ULTRA
  2204. SOCKOPS_WRAP(irda_ultra, PF_IRDA);
  2205. #endif /* CONFIG_IRDA_ULTRA */
  2206. /*
  2207. * Function irsock_init (pro)
  2208. *
  2209. * Initialize IrDA protocol
  2210. *
  2211. */
  2212. int __init irsock_init(void)
  2213. {
  2214. int rc = proto_register(&irda_proto, 0);
  2215. if (rc == 0)
  2216. rc = sock_register(&irda_family_ops);
  2217. return rc;
  2218. }
  2219. /*
  2220. * Function irsock_cleanup (void)
  2221. *
  2222. * Remove IrDA protocol
  2223. *
  2224. */
  2225. void irsock_cleanup(void)
  2226. {
  2227. sock_unregister(PF_IRDA);
  2228. proto_unregister(&irda_proto);
  2229. }