firewire: cdev: sort includes
[deliverable/linux.git] / drivers / firewire / fw-cdev.c
1 /*
2 * Char device for device raw access
3 *
4 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #include <linux/compat.h>
22 #include <linux/delay.h>
23 #include <linux/device.h>
24 #include <linux/errno.h>
25 #include <linux/firewire-cdev.h>
26 #include <linux/idr.h>
27 #include <linux/kernel.h>
28 #include <linux/kref.h>
29 #include <linux/mm.h>
30 #include <linux/module.h>
31 #include <linux/mutex.h>
32 #include <linux/poll.h>
33 #include <linux/preempt.h>
34 #include <linux/spinlock.h>
35 #include <linux/time.h>
36 #include <linux/vmalloc.h>
37 #include <linux/wait.h>
38
39 #include <asm/system.h>
40 #include <asm/uaccess.h>
41
42 #include "fw-device.h"
43 #include "fw-topology.h"
44 #include "fw-transaction.h"
45
46 struct client {
47 u32 version;
48 struct fw_device *device;
49
50 spinlock_t lock;
51 bool in_shutdown;
52 struct idr resource_idr;
53 struct list_head event_list;
54 wait_queue_head_t wait;
55 u64 bus_reset_closure;
56
57 struct fw_iso_context *iso_context;
58 u64 iso_closure;
59 struct fw_iso_buffer buffer;
60 unsigned long vm_start;
61
62 struct list_head link;
63 struct kref kref;
64 };
65
66 static inline void client_get(struct client *client)
67 {
68 kref_get(&client->kref);
69 }
70
71 static void client_release(struct kref *kref)
72 {
73 struct client *client = container_of(kref, struct client, kref);
74
75 fw_device_put(client->device);
76 kfree(client);
77 }
78
79 static void client_put(struct client *client)
80 {
81 kref_put(&client->kref, client_release);
82 }
83
84 struct client_resource;
85 typedef void (*client_resource_release_fn_t)(struct client *,
86 struct client_resource *);
87 struct client_resource {
88 client_resource_release_fn_t release;
89 int handle;
90 };
91
92 struct address_handler_resource {
93 struct client_resource resource;
94 struct fw_address_handler handler;
95 __u64 closure;
96 struct client *client;
97 };
98
99 struct outbound_transaction_resource {
100 struct client_resource resource;
101 struct fw_transaction transaction;
102 };
103
104 struct inbound_transaction_resource {
105 struct client_resource resource;
106 struct fw_request *request;
107 void *data;
108 size_t length;
109 };
110
111 struct descriptor_resource {
112 struct client_resource resource;
113 struct fw_descriptor descriptor;
114 u32 data[0];
115 };
116
117 /*
118 * dequeue_event() just kfree()'s the event, so the event has to be
119 * the first field in a struct XYZ_event.
120 */
121 struct event {
122 struct { void *data; size_t size; } v[2];
123 struct list_head link;
124 };
125
126 struct bus_reset_event {
127 struct event event;
128 struct fw_cdev_event_bus_reset reset;
129 };
130
131 struct outbound_transaction_event {
132 struct event event;
133 struct client *client;
134 struct outbound_transaction_resource r;
135 struct fw_cdev_event_response response;
136 };
137
138 struct inbound_transaction_event {
139 struct event event;
140 struct fw_cdev_event_request request;
141 };
142
143 struct iso_interrupt_event {
144 struct event event;
145 struct fw_cdev_event_iso_interrupt interrupt;
146 };
147
148 static inline void __user *u64_to_uptr(__u64 value)
149 {
150 return (void __user *)(unsigned long)value;
151 }
152
153 static inline __u64 uptr_to_u64(void __user *ptr)
154 {
155 return (__u64)(unsigned long)ptr;
156 }
157
158 static int fw_device_op_open(struct inode *inode, struct file *file)
159 {
160 struct fw_device *device;
161 struct client *client;
162
163 device = fw_device_get_by_devt(inode->i_rdev);
164 if (device == NULL)
165 return -ENODEV;
166
167 if (fw_device_is_shutdown(device)) {
168 fw_device_put(device);
169 return -ENODEV;
170 }
171
172 client = kzalloc(sizeof(*client), GFP_KERNEL);
173 if (client == NULL) {
174 fw_device_put(device);
175 return -ENOMEM;
176 }
177
178 client->device = device;
179 spin_lock_init(&client->lock);
180 idr_init(&client->resource_idr);
181 INIT_LIST_HEAD(&client->event_list);
182 init_waitqueue_head(&client->wait);
183 kref_init(&client->kref);
184
185 file->private_data = client;
186
187 mutex_lock(&device->client_list_mutex);
188 list_add_tail(&client->link, &device->client_list);
189 mutex_unlock(&device->client_list_mutex);
190
191 return 0;
192 }
193
194 static void queue_event(struct client *client, struct event *event,
195 void *data0, size_t size0, void *data1, size_t size1)
196 {
197 unsigned long flags;
198
199 event->v[0].data = data0;
200 event->v[0].size = size0;
201 event->v[1].data = data1;
202 event->v[1].size = size1;
203
204 spin_lock_irqsave(&client->lock, flags);
205 if (client->in_shutdown)
206 kfree(event);
207 else
208 list_add_tail(&event->link, &client->event_list);
209 spin_unlock_irqrestore(&client->lock, flags);
210
211 wake_up_interruptible(&client->wait);
212 }
213
214 static int dequeue_event(struct client *client,
215 char __user *buffer, size_t count)
216 {
217 unsigned long flags;
218 struct event *event;
219 size_t size, total;
220 int i, ret;
221
222 ret = wait_event_interruptible(client->wait,
223 !list_empty(&client->event_list) ||
224 fw_device_is_shutdown(client->device));
225 if (ret < 0)
226 return ret;
227
228 if (list_empty(&client->event_list) &&
229 fw_device_is_shutdown(client->device))
230 return -ENODEV;
231
232 spin_lock_irqsave(&client->lock, flags);
233 event = list_first_entry(&client->event_list, struct event, link);
234 list_del(&event->link);
235 spin_unlock_irqrestore(&client->lock, flags);
236
237 total = 0;
238 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
239 size = min(event->v[i].size, count - total);
240 if (copy_to_user(buffer + total, event->v[i].data, size)) {
241 ret = -EFAULT;
242 goto out;
243 }
244 total += size;
245 }
246 ret = total;
247
248 out:
249 kfree(event);
250
251 return ret;
252 }
253
254 static ssize_t fw_device_op_read(struct file *file, char __user *buffer,
255 size_t count, loff_t *offset)
256 {
257 struct client *client = file->private_data;
258
259 return dequeue_event(client, buffer, count);
260 }
261
262 static void fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
263 struct client *client)
264 {
265 struct fw_card *card = client->device->card;
266 unsigned long flags;
267
268 spin_lock_irqsave(&card->lock, flags);
269
270 event->closure = client->bus_reset_closure;
271 event->type = FW_CDEV_EVENT_BUS_RESET;
272 event->generation = client->device->generation;
273 event->node_id = client->device->node_id;
274 event->local_node_id = card->local_node->node_id;
275 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
276 event->irm_node_id = card->irm_node->node_id;
277 event->root_node_id = card->root_node->node_id;
278
279 spin_unlock_irqrestore(&card->lock, flags);
280 }
281
282 static void for_each_client(struct fw_device *device,
283 void (*callback)(struct client *client))
284 {
285 struct client *c;
286
287 mutex_lock(&device->client_list_mutex);
288 list_for_each_entry(c, &device->client_list, link)
289 callback(c);
290 mutex_unlock(&device->client_list_mutex);
291 }
292
293 static void queue_bus_reset_event(struct client *client)
294 {
295 struct bus_reset_event *e;
296
297 e = kzalloc(sizeof(*e), GFP_KERNEL);
298 if (e == NULL) {
299 fw_notify("Out of memory when allocating bus reset event\n");
300 return;
301 }
302
303 fill_bus_reset_event(&e->reset, client);
304
305 queue_event(client, &e->event,
306 &e->reset, sizeof(e->reset), NULL, 0);
307 }
308
309 void fw_device_cdev_update(struct fw_device *device)
310 {
311 for_each_client(device, queue_bus_reset_event);
312 }
313
314 static void wake_up_client(struct client *client)
315 {
316 wake_up_interruptible(&client->wait);
317 }
318
319 void fw_device_cdev_remove(struct fw_device *device)
320 {
321 for_each_client(device, wake_up_client);
322 }
323
324 static int ioctl_get_info(struct client *client, void *buffer)
325 {
326 struct fw_cdev_get_info *get_info = buffer;
327 struct fw_cdev_event_bus_reset bus_reset;
328 unsigned long ret = 0;
329
330 client->version = get_info->version;
331 get_info->version = FW_CDEV_VERSION;
332 get_info->card = client->device->card->index;
333
334 down_read(&fw_device_rwsem);
335
336 if (get_info->rom != 0) {
337 void __user *uptr = u64_to_uptr(get_info->rom);
338 size_t want = get_info->rom_length;
339 size_t have = client->device->config_rom_length * 4;
340
341 ret = copy_to_user(uptr, client->device->config_rom,
342 min(want, have));
343 }
344 get_info->rom_length = client->device->config_rom_length * 4;
345
346 up_read(&fw_device_rwsem);
347
348 if (ret != 0)
349 return -EFAULT;
350
351 client->bus_reset_closure = get_info->bus_reset_closure;
352 if (get_info->bus_reset != 0) {
353 void __user *uptr = u64_to_uptr(get_info->bus_reset);
354
355 fill_bus_reset_event(&bus_reset, client);
356 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
357 return -EFAULT;
358 }
359
360 return 0;
361 }
362
363 static int add_client_resource(struct client *client,
364 struct client_resource *resource, gfp_t gfp_mask)
365 {
366 unsigned long flags;
367 int ret;
368
369 retry:
370 if (idr_pre_get(&client->resource_idr, gfp_mask) == 0)
371 return -ENOMEM;
372
373 spin_lock_irqsave(&client->lock, flags);
374 if (client->in_shutdown)
375 ret = -ECANCELED;
376 else
377 ret = idr_get_new(&client->resource_idr, resource,
378 &resource->handle);
379 if (ret >= 0)
380 client_get(client);
381 spin_unlock_irqrestore(&client->lock, flags);
382
383 if (ret == -EAGAIN)
384 goto retry;
385
386 return ret < 0 ? ret : 0;
387 }
388
389 static int release_client_resource(struct client *client, u32 handle,
390 client_resource_release_fn_t release,
391 struct client_resource **resource)
392 {
393 struct client_resource *r;
394 unsigned long flags;
395
396 spin_lock_irqsave(&client->lock, flags);
397 if (client->in_shutdown)
398 r = NULL;
399 else
400 r = idr_find(&client->resource_idr, handle);
401 if (r && r->release == release)
402 idr_remove(&client->resource_idr, handle);
403 spin_unlock_irqrestore(&client->lock, flags);
404
405 if (!(r && r->release == release))
406 return -EINVAL;
407
408 if (resource)
409 *resource = r;
410 else
411 r->release(client, r);
412
413 client_put(client);
414
415 return 0;
416 }
417
418 static void release_transaction(struct client *client,
419 struct client_resource *resource)
420 {
421 struct outbound_transaction_resource *r = container_of(resource,
422 struct outbound_transaction_resource, resource);
423
424 fw_cancel_transaction(client->device->card, &r->transaction);
425 }
426
427 static void complete_transaction(struct fw_card *card, int rcode,
428 void *payload, size_t length, void *data)
429 {
430 struct outbound_transaction_event *e = data;
431 struct fw_cdev_event_response *rsp = &e->response;
432 struct client *client = e->client;
433 unsigned long flags;
434
435 if (length < rsp->length)
436 rsp->length = length;
437 if (rcode == RCODE_COMPLETE)
438 memcpy(rsp->data, payload, rsp->length);
439
440 spin_lock_irqsave(&client->lock, flags);
441 /*
442 * 1. If called while in shutdown, the idr tree must be left untouched.
443 * The idr handle will be removed and the client reference will be
444 * dropped later.
445 * 2. If the call chain was release_client_resource ->
446 * release_transaction -> complete_transaction (instead of a normal
447 * conclusion of the transaction), i.e. if this resource was already
448 * unregistered from the idr, the client reference will be dropped
449 * by release_client_resource and we must not drop it here.
450 */
451 if (!client->in_shutdown &&
452 idr_find(&client->resource_idr, e->r.resource.handle)) {
453 idr_remove(&client->resource_idr, e->r.resource.handle);
454 /* Drop the idr's reference */
455 client_put(client);
456 }
457 spin_unlock_irqrestore(&client->lock, flags);
458
459 rsp->type = FW_CDEV_EVENT_RESPONSE;
460 rsp->rcode = rcode;
461
462 /*
463 * In the case that sizeof(*rsp) doesn't align with the position of the
464 * data, and the read is short, preserve an extra copy of the data
465 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
466 * for short reads and some apps depended on it, this is both safe
467 * and prudent for compatibility.
468 */
469 if (rsp->length <= sizeof(*rsp) - offsetof(typeof(*rsp), data))
470 queue_event(client, &e->event, rsp, sizeof(*rsp),
471 rsp->data, rsp->length);
472 else
473 queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length,
474 NULL, 0);
475
476 /* Drop the transaction callback's reference */
477 client_put(client);
478 }
479
480 static int ioctl_send_request(struct client *client, void *buffer)
481 {
482 struct fw_device *device = client->device;
483 struct fw_cdev_send_request *request = buffer;
484 struct outbound_transaction_event *e;
485 int ret;
486
487 /* What is the biggest size we'll accept, really? */
488 if (request->length > 4096)
489 return -EINVAL;
490
491 e = kmalloc(sizeof(*e) + request->length, GFP_KERNEL);
492 if (e == NULL)
493 return -ENOMEM;
494
495 e->client = client;
496 e->response.length = request->length;
497 e->response.closure = request->closure;
498
499 if (request->data &&
500 copy_from_user(e->response.data,
501 u64_to_uptr(request->data), request->length)) {
502 ret = -EFAULT;
503 goto failed;
504 }
505
506 switch (request->tcode) {
507 case TCODE_WRITE_QUADLET_REQUEST:
508 case TCODE_WRITE_BLOCK_REQUEST:
509 case TCODE_READ_QUADLET_REQUEST:
510 case TCODE_READ_BLOCK_REQUEST:
511 case TCODE_LOCK_MASK_SWAP:
512 case TCODE_LOCK_COMPARE_SWAP:
513 case TCODE_LOCK_FETCH_ADD:
514 case TCODE_LOCK_LITTLE_ADD:
515 case TCODE_LOCK_BOUNDED_ADD:
516 case TCODE_LOCK_WRAP_ADD:
517 case TCODE_LOCK_VENDOR_DEPENDENT:
518 break;
519 default:
520 ret = -EINVAL;
521 goto failed;
522 }
523
524 e->r.resource.release = release_transaction;
525 ret = add_client_resource(client, &e->r.resource, GFP_KERNEL);
526 if (ret < 0)
527 goto failed;
528
529 /* Get a reference for the transaction callback */
530 client_get(client);
531
532 fw_send_request(device->card, &e->r.transaction,
533 request->tcode & 0x1f,
534 device->node->node_id,
535 request->generation,
536 device->max_speed,
537 request->offset,
538 e->response.data, request->length,
539 complete_transaction, e);
540
541 if (request->data)
542 return sizeof(request) + request->length;
543 else
544 return sizeof(request);
545 failed:
546 kfree(e);
547
548 return ret;
549 }
550
551 static void release_request(struct client *client,
552 struct client_resource *resource)
553 {
554 struct inbound_transaction_resource *r = container_of(resource,
555 struct inbound_transaction_resource, resource);
556
557 fw_send_response(client->device->card, r->request,
558 RCODE_CONFLICT_ERROR);
559 kfree(r);
560 }
561
562 static void handle_request(struct fw_card *card, struct fw_request *request,
563 int tcode, int destination, int source,
564 int generation, int speed,
565 unsigned long long offset,
566 void *payload, size_t length, void *callback_data)
567 {
568 struct address_handler_resource *handler = callback_data;
569 struct inbound_transaction_resource *r;
570 struct inbound_transaction_event *e;
571 int ret;
572
573 r = kmalloc(sizeof(*r), GFP_ATOMIC);
574 e = kmalloc(sizeof(*e), GFP_ATOMIC);
575 if (r == NULL || e == NULL)
576 goto failed;
577
578 r->request = request;
579 r->data = payload;
580 r->length = length;
581
582 r->resource.release = release_request;
583 ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC);
584 if (ret < 0)
585 goto failed;
586
587 e->request.type = FW_CDEV_EVENT_REQUEST;
588 e->request.tcode = tcode;
589 e->request.offset = offset;
590 e->request.length = length;
591 e->request.handle = r->resource.handle;
592 e->request.closure = handler->closure;
593
594 queue_event(handler->client, &e->event,
595 &e->request, sizeof(e->request), payload, length);
596 return;
597
598 failed:
599 kfree(r);
600 kfree(e);
601 fw_send_response(card, request, RCODE_CONFLICT_ERROR);
602 }
603
604 static void release_address_handler(struct client *client,
605 struct client_resource *resource)
606 {
607 struct address_handler_resource *r =
608 container_of(resource, struct address_handler_resource, resource);
609
610 fw_core_remove_address_handler(&r->handler);
611 kfree(r);
612 }
613
614 static int ioctl_allocate(struct client *client, void *buffer)
615 {
616 struct fw_cdev_allocate *request = buffer;
617 struct address_handler_resource *r;
618 struct fw_address_region region;
619 int ret;
620
621 r = kmalloc(sizeof(*r), GFP_KERNEL);
622 if (r == NULL)
623 return -ENOMEM;
624
625 region.start = request->offset;
626 region.end = request->offset + request->length;
627 r->handler.length = request->length;
628 r->handler.address_callback = handle_request;
629 r->handler.callback_data = r;
630 r->closure = request->closure;
631 r->client = client;
632
633 ret = fw_core_add_address_handler(&r->handler, &region);
634 if (ret < 0) {
635 kfree(r);
636 return ret;
637 }
638
639 r->resource.release = release_address_handler;
640 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
641 if (ret < 0) {
642 release_address_handler(client, &r->resource);
643 return ret;
644 }
645 request->handle = r->resource.handle;
646
647 return 0;
648 }
649
650 static int ioctl_deallocate(struct client *client, void *buffer)
651 {
652 struct fw_cdev_deallocate *request = buffer;
653
654 return release_client_resource(client, request->handle,
655 release_address_handler, NULL);
656 }
657
658 static int ioctl_send_response(struct client *client, void *buffer)
659 {
660 struct fw_cdev_send_response *request = buffer;
661 struct client_resource *resource;
662 struct inbound_transaction_resource *r;
663
664 if (release_client_resource(client, request->handle,
665 release_request, &resource) < 0)
666 return -EINVAL;
667
668 r = container_of(resource, struct inbound_transaction_resource,
669 resource);
670 if (request->length < r->length)
671 r->length = request->length;
672 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
673 return -EFAULT;
674
675 fw_send_response(client->device->card, r->request, request->rcode);
676 kfree(r);
677
678 return 0;
679 }
680
681 static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
682 {
683 struct fw_cdev_initiate_bus_reset *request = buffer;
684 int short_reset;
685
686 short_reset = (request->type == FW_CDEV_SHORT_RESET);
687
688 return fw_core_initiate_bus_reset(client->device->card, short_reset);
689 }
690
691 static void release_descriptor(struct client *client,
692 struct client_resource *resource)
693 {
694 struct descriptor_resource *r =
695 container_of(resource, struct descriptor_resource, resource);
696
697 fw_core_remove_descriptor(&r->descriptor);
698 kfree(r);
699 }
700
701 static int ioctl_add_descriptor(struct client *client, void *buffer)
702 {
703 struct fw_cdev_add_descriptor *request = buffer;
704 struct descriptor_resource *r;
705 int ret;
706
707 if (request->length > 256)
708 return -EINVAL;
709
710 r = kmalloc(sizeof(*r) + request->length * 4, GFP_KERNEL);
711 if (r == NULL)
712 return -ENOMEM;
713
714 if (copy_from_user(r->data,
715 u64_to_uptr(request->data), request->length * 4)) {
716 ret = -EFAULT;
717 goto failed;
718 }
719
720 r->descriptor.length = request->length;
721 r->descriptor.immediate = request->immediate;
722 r->descriptor.key = request->key;
723 r->descriptor.data = r->data;
724
725 ret = fw_core_add_descriptor(&r->descriptor);
726 if (ret < 0)
727 goto failed;
728
729 r->resource.release = release_descriptor;
730 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
731 if (ret < 0) {
732 fw_core_remove_descriptor(&r->descriptor);
733 goto failed;
734 }
735 request->handle = r->resource.handle;
736
737 return 0;
738 failed:
739 kfree(r);
740
741 return ret;
742 }
743
744 static int ioctl_remove_descriptor(struct client *client, void *buffer)
745 {
746 struct fw_cdev_remove_descriptor *request = buffer;
747
748 return release_client_resource(client, request->handle,
749 release_descriptor, NULL);
750 }
751
752 static void iso_callback(struct fw_iso_context *context, u32 cycle,
753 size_t header_length, void *header, void *data)
754 {
755 struct client *client = data;
756 struct iso_interrupt_event *e;
757
758 e = kzalloc(sizeof(*e) + header_length, GFP_ATOMIC);
759 if (e == NULL)
760 return;
761
762 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
763 e->interrupt.closure = client->iso_closure;
764 e->interrupt.cycle = cycle;
765 e->interrupt.header_length = header_length;
766 memcpy(e->interrupt.header, header, header_length);
767 queue_event(client, &e->event, &e->interrupt,
768 sizeof(e->interrupt) + header_length, NULL, 0);
769 }
770
771 static int ioctl_create_iso_context(struct client *client, void *buffer)
772 {
773 struct fw_cdev_create_iso_context *request = buffer;
774 struct fw_iso_context *context;
775
776 /* We only support one context at this time. */
777 if (client->iso_context != NULL)
778 return -EBUSY;
779
780 if (request->channel > 63)
781 return -EINVAL;
782
783 switch (request->type) {
784 case FW_ISO_CONTEXT_RECEIVE:
785 if (request->header_size < 4 || (request->header_size & 3))
786 return -EINVAL;
787
788 break;
789
790 case FW_ISO_CONTEXT_TRANSMIT:
791 if (request->speed > SCODE_3200)
792 return -EINVAL;
793
794 break;
795
796 default:
797 return -EINVAL;
798 }
799
800 context = fw_iso_context_create(client->device->card,
801 request->type,
802 request->channel,
803 request->speed,
804 request->header_size,
805 iso_callback, client);
806 if (IS_ERR(context))
807 return PTR_ERR(context);
808
809 client->iso_closure = request->closure;
810 client->iso_context = context;
811
812 /* We only support one context at this time. */
813 request->handle = 0;
814
815 return 0;
816 }
817
818 /* Macros for decoding the iso packet control header. */
819 #define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
820 #define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
821 #define GET_SKIP(v) (((v) >> 17) & 0x01)
822 #define GET_TAG(v) (((v) >> 18) & 0x03)
823 #define GET_SY(v) (((v) >> 20) & 0x0f)
824 #define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
825
826 static int ioctl_queue_iso(struct client *client, void *buffer)
827 {
828 struct fw_cdev_queue_iso *request = buffer;
829 struct fw_cdev_iso_packet __user *p, *end, *next;
830 struct fw_iso_context *ctx = client->iso_context;
831 unsigned long payload, buffer_end, header_length;
832 u32 control;
833 int count;
834 struct {
835 struct fw_iso_packet packet;
836 u8 header[256];
837 } u;
838
839 if (ctx == NULL || request->handle != 0)
840 return -EINVAL;
841
842 /*
843 * If the user passes a non-NULL data pointer, has mmap()'ed
844 * the iso buffer, and the pointer points inside the buffer,
845 * we setup the payload pointers accordingly. Otherwise we
846 * set them both to 0, which will still let packets with
847 * payload_length == 0 through. In other words, if no packets
848 * use the indirect payload, the iso buffer need not be mapped
849 * and the request->data pointer is ignored.
850 */
851
852 payload = (unsigned long)request->data - client->vm_start;
853 buffer_end = client->buffer.page_count << PAGE_SHIFT;
854 if (request->data == 0 || client->buffer.pages == NULL ||
855 payload >= buffer_end) {
856 payload = 0;
857 buffer_end = 0;
858 }
859
860 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
861
862 if (!access_ok(VERIFY_READ, p, request->size))
863 return -EFAULT;
864
865 end = (void __user *)p + request->size;
866 count = 0;
867 while (p < end) {
868 if (get_user(control, &p->control))
869 return -EFAULT;
870 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
871 u.packet.interrupt = GET_INTERRUPT(control);
872 u.packet.skip = GET_SKIP(control);
873 u.packet.tag = GET_TAG(control);
874 u.packet.sy = GET_SY(control);
875 u.packet.header_length = GET_HEADER_LENGTH(control);
876
877 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
878 header_length = u.packet.header_length;
879 } else {
880 /*
881 * We require that header_length is a multiple of
882 * the fixed header size, ctx->header_size.
883 */
884 if (ctx->header_size == 0) {
885 if (u.packet.header_length > 0)
886 return -EINVAL;
887 } else if (u.packet.header_length % ctx->header_size != 0) {
888 return -EINVAL;
889 }
890 header_length = 0;
891 }
892
893 next = (struct fw_cdev_iso_packet __user *)
894 &p->header[header_length / 4];
895 if (next > end)
896 return -EINVAL;
897 if (__copy_from_user
898 (u.packet.header, p->header, header_length))
899 return -EFAULT;
900 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
901 u.packet.header_length + u.packet.payload_length > 0)
902 return -EINVAL;
903 if (payload + u.packet.payload_length > buffer_end)
904 return -EINVAL;
905
906 if (fw_iso_context_queue(ctx, &u.packet,
907 &client->buffer, payload))
908 break;
909
910 p = next;
911 payload += u.packet.payload_length;
912 count++;
913 }
914
915 request->size -= uptr_to_u64(p) - request->packets;
916 request->packets = uptr_to_u64(p);
917 request->data = client->vm_start + payload;
918
919 return count;
920 }
921
922 static int ioctl_start_iso(struct client *client, void *buffer)
923 {
924 struct fw_cdev_start_iso *request = buffer;
925
926 if (client->iso_context == NULL || request->handle != 0)
927 return -EINVAL;
928
929 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
930 if (request->tags == 0 || request->tags > 15)
931 return -EINVAL;
932
933 if (request->sync > 15)
934 return -EINVAL;
935 }
936
937 return fw_iso_context_start(client->iso_context, request->cycle,
938 request->sync, request->tags);
939 }
940
941 static int ioctl_stop_iso(struct client *client, void *buffer)
942 {
943 struct fw_cdev_stop_iso *request = buffer;
944
945 if (client->iso_context == NULL || request->handle != 0)
946 return -EINVAL;
947
948 return fw_iso_context_stop(client->iso_context);
949 }
950
951 static int ioctl_get_cycle_timer(struct client *client, void *buffer)
952 {
953 struct fw_cdev_get_cycle_timer *request = buffer;
954 struct fw_card *card = client->device->card;
955 unsigned long long bus_time;
956 struct timeval tv;
957 unsigned long flags;
958
959 preempt_disable();
960 local_irq_save(flags);
961
962 bus_time = card->driver->get_bus_time(card);
963 do_gettimeofday(&tv);
964
965 local_irq_restore(flags);
966 preempt_enable();
967
968 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
969 request->cycle_timer = bus_time & 0xffffffff;
970 return 0;
971 }
972
973 static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
974 ioctl_get_info,
975 ioctl_send_request,
976 ioctl_allocate,
977 ioctl_deallocate,
978 ioctl_send_response,
979 ioctl_initiate_bus_reset,
980 ioctl_add_descriptor,
981 ioctl_remove_descriptor,
982 ioctl_create_iso_context,
983 ioctl_queue_iso,
984 ioctl_start_iso,
985 ioctl_stop_iso,
986 ioctl_get_cycle_timer,
987 };
988
989 static int dispatch_ioctl(struct client *client,
990 unsigned int cmd, void __user *arg)
991 {
992 char buffer[256];
993 int ret;
994
995 if (_IOC_TYPE(cmd) != '#' ||
996 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
997 return -EINVAL;
998
999 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1000 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
1001 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
1002 return -EFAULT;
1003 }
1004
1005 ret = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
1006 if (ret < 0)
1007 return ret;
1008
1009 if (_IOC_DIR(cmd) & _IOC_READ) {
1010 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
1011 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
1012 return -EFAULT;
1013 }
1014
1015 return ret;
1016 }
1017
1018 static long fw_device_op_ioctl(struct file *file,
1019 unsigned int cmd, unsigned long arg)
1020 {
1021 struct client *client = file->private_data;
1022
1023 if (fw_device_is_shutdown(client->device))
1024 return -ENODEV;
1025
1026 return dispatch_ioctl(client, cmd, (void __user *) arg);
1027 }
1028
1029 #ifdef CONFIG_COMPAT
1030 static long fw_device_op_compat_ioctl(struct file *file,
1031 unsigned int cmd, unsigned long arg)
1032 {
1033 struct client *client = file->private_data;
1034
1035 if (fw_device_is_shutdown(client->device))
1036 return -ENODEV;
1037
1038 return dispatch_ioctl(client, cmd, compat_ptr(arg));
1039 }
1040 #endif
1041
1042 static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1043 {
1044 struct client *client = file->private_data;
1045 enum dma_data_direction direction;
1046 unsigned long size;
1047 int page_count, ret;
1048
1049 if (fw_device_is_shutdown(client->device))
1050 return -ENODEV;
1051
1052 /* FIXME: We could support multiple buffers, but we don't. */
1053 if (client->buffer.pages != NULL)
1054 return -EBUSY;
1055
1056 if (!(vma->vm_flags & VM_SHARED))
1057 return -EINVAL;
1058
1059 if (vma->vm_start & ~PAGE_MASK)
1060 return -EINVAL;
1061
1062 client->vm_start = vma->vm_start;
1063 size = vma->vm_end - vma->vm_start;
1064 page_count = size >> PAGE_SHIFT;
1065 if (size & ~PAGE_MASK)
1066 return -EINVAL;
1067
1068 if (vma->vm_flags & VM_WRITE)
1069 direction = DMA_TO_DEVICE;
1070 else
1071 direction = DMA_FROM_DEVICE;
1072
1073 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1074 page_count, direction);
1075 if (ret < 0)
1076 return ret;
1077
1078 ret = fw_iso_buffer_map(&client->buffer, vma);
1079 if (ret < 0)
1080 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1081
1082 return ret;
1083 }
1084
1085 static int shutdown_resource(int id, void *p, void *data)
1086 {
1087 struct client_resource *r = p;
1088 struct client *client = data;
1089
1090 r->release(client, r);
1091 client_put(client);
1092
1093 return 0;
1094 }
1095
1096 static int fw_device_op_release(struct inode *inode, struct file *file)
1097 {
1098 struct client *client = file->private_data;
1099 struct event *e, *next_e;
1100 unsigned long flags;
1101
1102 mutex_lock(&client->device->client_list_mutex);
1103 list_del(&client->link);
1104 mutex_unlock(&client->device->client_list_mutex);
1105
1106 if (client->buffer.pages)
1107 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1108
1109 if (client->iso_context)
1110 fw_iso_context_destroy(client->iso_context);
1111
1112 /* Freeze client->resource_idr and client->event_list */
1113 spin_lock_irqsave(&client->lock, flags);
1114 client->in_shutdown = true;
1115 spin_unlock_irqrestore(&client->lock, flags);
1116
1117 idr_for_each(&client->resource_idr, shutdown_resource, client);
1118 idr_remove_all(&client->resource_idr);
1119 idr_destroy(&client->resource_idr);
1120
1121 list_for_each_entry_safe(e, next_e, &client->event_list, link)
1122 kfree(e);
1123
1124 client_put(client);
1125
1126 return 0;
1127 }
1128
1129 static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1130 {
1131 struct client *client = file->private_data;
1132 unsigned int mask = 0;
1133
1134 poll_wait(file, &client->wait, pt);
1135
1136 if (fw_device_is_shutdown(client->device))
1137 mask |= POLLHUP | POLLERR;
1138 if (!list_empty(&client->event_list))
1139 mask |= POLLIN | POLLRDNORM;
1140
1141 return mask;
1142 }
1143
1144 const struct file_operations fw_device_ops = {
1145 .owner = THIS_MODULE,
1146 .open = fw_device_op_open,
1147 .read = fw_device_op_read,
1148 .unlocked_ioctl = fw_device_op_ioctl,
1149 .poll = fw_device_op_poll,
1150 .release = fw_device_op_release,
1151 .mmap = fw_device_op_mmap,
1152
1153 #ifdef CONFIG_COMPAT
1154 .compat_ioctl = fw_device_op_compat_ioctl,
1155 #endif
1156 };
This page took 0.058379 seconds and 5 git commands to generate.