1 /*********************************************************************
3 * Filename: ircomm_core.c
5 * Description: IrCOMM service interface
6 * Status: Experimental.
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun Jun 6 20:37:34 1999
9 * Modified at: Tue Dec 21 13:26:41 1999
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1999 Dag Brattli, All Rights Reserved.
13 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 ********************************************************************/
32 #include <linux/module.h>
33 #include <linux/sched.h>
34 #include <linux/proc_fs.h>
35 #include <linux/seq_file.h>
36 #include <linux/init.h>
38 #include <net/irda/irda.h>
39 #include <net/irda/irmod.h>
40 #include <net/irda/irlmp.h>
41 #include <net/irda/iriap.h>
42 #include <net/irda/irttp.h>
43 #include <net/irda/irias_object.h>
45 #include <net/irda/ircomm_event.h>
46 #include <net/irda/ircomm_lmp.h>
47 #include <net/irda/ircomm_ttp.h>
48 #include <net/irda/ircomm_param.h>
49 #include <net/irda/ircomm_core.h>
51 static int __ircomm_close(struct ircomm_cb *self);
52 static void ircomm_control_indication(struct ircomm_cb *self,
53 struct sk_buff *skb, int clen);
56 extern struct proc_dir_entry *proc_irda;
57 static int ircomm_seq_open(struct inode *, struct file *);
59 static struct file_operations ircomm_proc_fops = {
61 .open = ircomm_seq_open,
64 .release = seq_release,
66 #endif /* CONFIG_PROC_FS */
68 hashbin_t *ircomm = NULL;
70 static int __init ircomm_init(void)
72 ircomm = hashbin_new(HB_LOCK);
74 IRDA_ERROR("%s(), can't allocate hashbin!\n", __FUNCTION__);
79 { struct proc_dir_entry *ent;
80 ent = create_proc_entry("ircomm", 0, proc_irda);
82 ent->proc_fops = &ircomm_proc_fops;
84 #endif /* CONFIG_PROC_FS */
86 IRDA_MESSAGE("IrCOMM protocol (Dag Brattli)\n");
91 static void __exit ircomm_cleanup(void)
93 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
95 hashbin_delete(ircomm, (FREE_FUNC) __ircomm_close);
98 remove_proc_entry("ircomm", proc_irda);
99 #endif /* CONFIG_PROC_FS */
103 * Function ircomm_open (client_notify)
105 * Start a new IrCOMM instance
108 struct ircomm_cb *ircomm_open(notify_t *notify, __u8 service_type, int line)
110 struct ircomm_cb *self = NULL;
113 IRDA_DEBUG(2, "%s(), service_type=0x%02x\n", __FUNCTION__ ,
116 IRDA_ASSERT(ircomm != NULL, return NULL;);
118 self = kmalloc(sizeof(struct ircomm_cb), GFP_ATOMIC);
122 memset(self, 0, sizeof(struct ircomm_cb));
124 self->notify = *notify;
125 self->magic = IRCOMM_MAGIC;
127 /* Check if we should use IrLMP or IrTTP */
128 if (service_type & IRCOMM_3_WIRE_RAW) {
129 self->flow_status = FLOW_START;
130 ret = ircomm_open_lsap(self);
132 ret = ircomm_open_tsap(self);
139 self->service_type = service_type;
142 hashbin_insert(ircomm, (irda_queue_t *) self, line, NULL);
144 ircomm_next_state(self, IRCOMM_IDLE);
149 EXPORT_SYMBOL(ircomm_open);
152 * Function ircomm_close_instance (self)
154 * Remove IrCOMM instance
157 static int __ircomm_close(struct ircomm_cb *self)
159 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
161 /* Disconnect link if any */
162 ircomm_do_event(self, IRCOMM_DISCONNECT_REQUEST, NULL, NULL);
166 irttp_close_tsap(self->tsap);
172 irlmp_close_lsap(self->lsap);
183 * Function ircomm_close (self)
185 * Closes and removes the specified IrCOMM instance
188 int ircomm_close(struct ircomm_cb *self)
190 struct ircomm_cb *entry;
192 IRDA_ASSERT(self != NULL, return -EIO;);
193 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EIO;);
195 IRDA_DEBUG(0, "%s()\n", __FUNCTION__ );
197 entry = hashbin_remove(ircomm, self->line, NULL);
199 IRDA_ASSERT(entry == self, return -1;);
201 return __ircomm_close(self);
204 EXPORT_SYMBOL(ircomm_close);
207 * Function ircomm_connect_request (self, service_type)
209 * Impl. of this function is differ from one of the reference. This
210 * function does discovery as well as sending connect request
213 int ircomm_connect_request(struct ircomm_cb *self, __u8 dlsap_sel,
214 __u32 saddr, __u32 daddr, struct sk_buff *skb,
217 struct ircomm_info info;
220 IRDA_DEBUG(2 , "%s()\n", __FUNCTION__ );
222 IRDA_ASSERT(self != NULL, return -1;);
223 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
225 self->service_type= service_type;
227 info.dlsap_sel = dlsap_sel;
231 ret = ircomm_do_event(self, IRCOMM_CONNECT_REQUEST, skb, &info);
236 EXPORT_SYMBOL(ircomm_connect_request);
239 * Function ircomm_connect_indication (self, qos, skb)
241 * Notify user layer about the incoming connection
244 void ircomm_connect_indication(struct ircomm_cb *self, struct sk_buff *skb,
245 struct ircomm_info *info)
249 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
251 /* Check if the packet contains data on the control channel */
256 * If there are any data hiding in the control channel, we must
257 * deliver it first. The side effect is that the control channel
258 * will be removed from the skb
260 if (self->notify.connect_indication)
261 self->notify.connect_indication(self->notify.instance, self,
262 info->qos, info->max_data_size,
263 info->max_header_size, skb);
265 IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
270 * Function ircomm_connect_response (self, userdata, max_sdu_size)
272 * User accepts connection
275 int ircomm_connect_response(struct ircomm_cb *self, struct sk_buff *userdata)
279 IRDA_ASSERT(self != NULL, return -1;);
280 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
282 IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
284 ret = ircomm_do_event(self, IRCOMM_CONNECT_RESPONSE, userdata, NULL);
289 EXPORT_SYMBOL(ircomm_connect_response);
292 * Function connect_confirm (self, skb)
294 * Notify user layer that the link is now connected
297 void ircomm_connect_confirm(struct ircomm_cb *self, struct sk_buff *skb,
298 struct ircomm_info *info)
300 IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
302 if (self->notify.connect_confirm )
303 self->notify.connect_confirm(self->notify.instance,
306 info->max_header_size, skb);
308 IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
313 * Function ircomm_data_request (self, userdata)
315 * Send IrCOMM data to peer device
318 int ircomm_data_request(struct ircomm_cb *self, struct sk_buff *skb)
322 IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
324 IRDA_ASSERT(self != NULL, return -EFAULT;);
325 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EFAULT;);
326 IRDA_ASSERT(skb != NULL, return -EFAULT;);
328 ret = ircomm_do_event(self, IRCOMM_DATA_REQUEST, skb, NULL);
333 EXPORT_SYMBOL(ircomm_data_request);
336 * Function ircomm_data_indication (self, skb)
338 * Data arrived, so deliver it to user
341 void ircomm_data_indication(struct ircomm_cb *self, struct sk_buff *skb)
343 IRDA_DEBUG(4, "%s()\n", __FUNCTION__ );
345 IRDA_ASSERT(skb->len > 0, return;);
347 if (self->notify.data_indication)
348 self->notify.data_indication(self->notify.instance, self, skb);
350 IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
355 * Function ircomm_process_data (self, skb)
357 * Data arrived which may contain control channel data
360 void ircomm_process_data(struct ircomm_cb *self, struct sk_buff *skb)
364 IRDA_ASSERT(skb->len > 0, return;);
369 * If there are any data hiding in the control channel, we must
370 * deliver it first. The side effect is that the control channel
371 * will be removed from the skb
374 ircomm_control_indication(self, skb, clen);
376 /* Remove control channel from data channel */
377 skb_pull(skb, clen+1);
380 ircomm_data_indication(self, skb);
382 IRDA_DEBUG(4, "%s(), data was control info only!\n",
388 * Function ircomm_control_request (self, params)
390 * Send control data to peer device
393 int ircomm_control_request(struct ircomm_cb *self, struct sk_buff *skb)
397 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
399 IRDA_ASSERT(self != NULL, return -EFAULT;);
400 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EFAULT;);
401 IRDA_ASSERT(skb != NULL, return -EFAULT;);
403 ret = ircomm_do_event(self, IRCOMM_CONTROL_REQUEST, skb, NULL);
408 EXPORT_SYMBOL(ircomm_control_request);
411 * Function ircomm_control_indication (self, skb)
413 * Data has arrived on the control channel
416 static void ircomm_control_indication(struct ircomm_cb *self,
417 struct sk_buff *skb, int clen)
419 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
421 /* Use udata for delivering data on the control channel */
422 if (self->notify.udata_indication) {
423 struct sk_buff *ctrl_skb;
425 /* We don't own the skb, so clone it */
426 ctrl_skb = skb_clone(skb, GFP_ATOMIC);
430 /* Remove data channel from control channel */
431 skb_trim(ctrl_skb, clen+1);
433 self->notify.udata_indication(self->notify.instance, self,
436 /* Drop reference count -
437 * see ircomm_tty_control_indication(). */
438 dev_kfree_skb(ctrl_skb);
440 IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
445 * Function ircomm_disconnect_request (self, userdata, priority)
447 * User layer wants to disconnect the IrCOMM connection
450 int ircomm_disconnect_request(struct ircomm_cb *self, struct sk_buff *userdata)
452 struct ircomm_info info;
455 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
457 IRDA_ASSERT(self != NULL, return -1;);
458 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -1;);
460 ret = ircomm_do_event(self, IRCOMM_DISCONNECT_REQUEST, userdata,
465 EXPORT_SYMBOL(ircomm_disconnect_request);
468 * Function disconnect_indication (self, skb)
470 * Tell user that the link has been disconnected
473 void ircomm_disconnect_indication(struct ircomm_cb *self, struct sk_buff *skb,
474 struct ircomm_info *info)
476 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
478 IRDA_ASSERT(info != NULL, return;);
480 if (self->notify.disconnect_indication) {
481 self->notify.disconnect_indication(self->notify.instance, self,
484 IRDA_DEBUG(0, "%s(), missing handler\n", __FUNCTION__ );
489 * Function ircomm_flow_request (self, flow)
494 void ircomm_flow_request(struct ircomm_cb *self, LOCAL_FLOW flow)
496 IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
498 IRDA_ASSERT(self != NULL, return;);
499 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return;);
501 if (self->service_type == IRCOMM_3_WIRE_RAW)
504 irttp_flow_request(self->tsap, flow);
507 EXPORT_SYMBOL(ircomm_flow_request);
509 #ifdef CONFIG_PROC_FS
510 static void *ircomm_seq_start(struct seq_file *seq, loff_t *pos)
512 struct ircomm_cb *self;
515 spin_lock_irq(&ircomm->hb_spinlock);
517 for (self = (struct ircomm_cb *) hashbin_get_first(ircomm);
519 self = (struct ircomm_cb *) hashbin_get_next(ircomm)) {
527 static void *ircomm_seq_next(struct seq_file *seq, void *v, loff_t *pos)
531 return (void *) hashbin_get_next(ircomm);
534 static void ircomm_seq_stop(struct seq_file *seq, void *v)
536 spin_unlock_irq(&ircomm->hb_spinlock);
539 static int ircomm_seq_show(struct seq_file *seq, void *v)
541 const struct ircomm_cb *self = v;
543 IRDA_ASSERT(self->magic == IRCOMM_MAGIC, return -EINVAL; );
545 if(self->line < 0x10)
546 seq_printf(seq, "ircomm%d", self->line);
548 seq_printf(seq, "irlpt%d", self->line - 0x10);
551 " state: %s, slsap_sel: %#02x, dlsap_sel: %#02x, mode:",
552 ircomm_state[ self->state],
553 self->slsap_sel, self->dlsap_sel);
555 if(self->service_type & IRCOMM_3_WIRE_RAW)
556 seq_printf(seq, " 3-wire-raw");
557 if(self->service_type & IRCOMM_3_WIRE)
558 seq_printf(seq, " 3-wire");
559 if(self->service_type & IRCOMM_9_WIRE)
560 seq_printf(seq, " 9-wire");
561 if(self->service_type & IRCOMM_CENTRONICS)
562 seq_printf(seq, " Centronics");
568 static struct seq_operations ircomm_seq_ops = {
569 .start = ircomm_seq_start,
570 .next = ircomm_seq_next,
571 .stop = ircomm_seq_stop,
572 .show = ircomm_seq_show,
575 static int ircomm_seq_open(struct inode *inode, struct file *file)
577 return seq_open(file, &ircomm_seq_ops);
579 #endif /* CONFIG_PROC_FS */
581 MODULE_AUTHOR("Dag Brattli <dag@brattli.net>");
582 MODULE_DESCRIPTION("IrCOMM protocol");
583 MODULE_LICENSE("GPL");
585 module_init(ircomm_init);
586 module_exit(ircomm_cleanup);