2 * IBM/3270 Driver - fullscreen driver.
5 * Original 3270 Code for 2.4 written by Richard Hitt (UTS Global)
6 * Rewritten for 2.5/2.6 by Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Copyright IBM Corp. 2003, 2009
10 #include <linux/bootmem.h>
11 #include <linux/console.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/compat.h>
15 #include <linux/module.h>
16 #include <linux/list.h>
17 #include <linux/slab.h>
18 #include <linux/types.h>
20 #include <asm/compat.h>
21 #include <asm/ccwdev.h>
23 #include <asm/ebcdic.h>
24 #include <asm/idals.h>
29 static struct raw3270_fn fs3270_fn
;
32 struct raw3270_view view
;
33 struct pid
*fs_pid
; /* Pid of controlling program. */
34 int read_command
; /* ccw command to use for reads. */
35 int write_command
; /* ccw command to use for writes. */
36 int attention
; /* Got attention. */
37 int active
; /* Fullscreen view is active. */
38 struct raw3270_request
*init
; /* single init request. */
39 wait_queue_head_t wait
; /* Init & attention wait queue. */
40 struct idal_buffer
*rdbuf
; /* full-screen-deactivate buffer */
41 size_t rdbuf_size
; /* size of data returned by RDBUF */
44 static DEFINE_MUTEX(fs3270_mutex
);
47 fs3270_wake_up(struct raw3270_request
*rq
, void *data
)
49 wake_up((wait_queue_head_t
*) data
);
53 fs3270_working(struct fs3270
*fp
)
56 * The fullscreen view is in working order if the view
57 * has been activated AND the initial request is finished.
59 return fp
->active
&& raw3270_request_final(fp
->init
);
63 fs3270_do_io(struct raw3270_view
*view
, struct raw3270_request
*rq
)
68 fp
= (struct fs3270
*) view
;
69 rq
->callback
= fs3270_wake_up
;
70 rq
->callback_data
= &fp
->wait
;
73 if (!fs3270_working(fp
)) {
74 /* Fullscreen view isn't ready yet. */
75 rc
= wait_event_interruptible(fp
->wait
,
80 rc
= raw3270_start(view
, rq
);
82 /* Started successfully. Now wait for completion. */
83 wait_event(fp
->wait
, raw3270_request_final(rq
));
85 } while (rc
== -EACCES
);
90 * Switch to the fullscreen view.
93 fs3270_reset_callback(struct raw3270_request
*rq
, void *data
)
97 fp
= (struct fs3270
*) rq
->view
;
98 raw3270_request_reset(rq
);
103 fs3270_restore_callback(struct raw3270_request
*rq
, void *data
)
107 fp
= (struct fs3270
*) rq
->view
;
108 if (rq
->rc
!= 0 || rq
->rescnt
!= 0) {
110 kill_pid(fp
->fs_pid
, SIGHUP
, 1);
113 raw3270_request_reset(rq
);
118 fs3270_activate(struct raw3270_view
*view
)
124 fp
= (struct fs3270
*) view
;
126 /* If an old init command is still running just return. */
127 if (!raw3270_request_final(fp
->init
))
130 if (fp
->rdbuf_size
== 0) {
131 /* No saved buffer. Just clear the screen. */
132 raw3270_request_set_cmd(fp
->init
, TC_EWRITEA
);
133 fp
->init
->callback
= fs3270_reset_callback
;
135 /* Restore fullscreen buffer saved by fs3270_deactivate. */
136 raw3270_request_set_cmd(fp
->init
, TC_EWRITEA
);
137 raw3270_request_set_idal(fp
->init
, fp
->rdbuf
);
138 fp
->init
->ccw
.count
= fp
->rdbuf_size
;
139 cp
= fp
->rdbuf
->data
[0];
148 fp
->init
->rescnt
= 0;
149 fp
->init
->callback
= fs3270_restore_callback
;
151 rc
= fp
->init
->rc
= raw3270_start_locked(view
, fp
->init
);
153 fp
->init
->callback(fp
->init
, NULL
);
160 * Shutdown fullscreen view.
163 fs3270_save_callback(struct raw3270_request
*rq
, void *data
)
167 fp
= (struct fs3270
*) rq
->view
;
169 /* Correct idal buffer element 0 address. */
170 fp
->rdbuf
->data
[0] -= 5;
171 fp
->rdbuf
->size
+= 5;
174 * If the rdbuf command failed or the idal buffer is
175 * to small for the amount of data returned by the
176 * rdbuf command, then we have no choice but to send
177 * a SIGHUP to the application.
179 if (rq
->rc
!= 0 || rq
->rescnt
== 0) {
181 kill_pid(fp
->fs_pid
, SIGHUP
, 1);
184 fp
->rdbuf_size
= fp
->rdbuf
->size
- rq
->rescnt
;
185 raw3270_request_reset(rq
);
190 fs3270_deactivate(struct raw3270_view
*view
)
194 fp
= (struct fs3270
*) view
;
197 /* If an old init command is still running just return. */
198 if (!raw3270_request_final(fp
->init
))
201 /* Prepare read-buffer request. */
202 raw3270_request_set_cmd(fp
->init
, TC_RDBUF
);
204 * Hackish: skip first 5 bytes of the idal buffer to make
205 * room for the TW_KR/TO_SBA/<address>/<address>/TO_IC sequence
206 * in the activation command.
208 fp
->rdbuf
->data
[0] += 5;
209 fp
->rdbuf
->size
-= 5;
210 raw3270_request_set_idal(fp
->init
, fp
->rdbuf
);
211 fp
->init
->rescnt
= 0;
212 fp
->init
->callback
= fs3270_save_callback
;
214 /* Start I/O to read in the 3270 buffer. */
215 fp
->init
->rc
= raw3270_start_locked(view
, fp
->init
);
217 fp
->init
->callback(fp
->init
, NULL
);
221 fs3270_irq(struct fs3270
*fp
, struct raw3270_request
*rq
, struct irb
*irb
)
223 /* Handle ATTN. Set indication and wake waiters for attention. */
224 if (irb
->scsw
.cmd
.dstat
& DEV_STAT_ATTENTION
) {
230 if (irb
->scsw
.cmd
.dstat
& DEV_STAT_UNIT_CHECK
)
233 /* Normal end. Copy residual count. */
234 rq
->rescnt
= irb
->scsw
.cmd
.count
;
239 * Process reads from fullscreen 3270.
242 fs3270_read(struct file
*filp
, char __user
*data
, size_t count
, loff_t
*off
)
245 struct raw3270_request
*rq
;
246 struct idal_buffer
*ib
;
249 if (count
== 0 || count
> 65535)
251 fp
= filp
->private_data
;
254 ib
= idal_buffer_alloc(count
, 0);
257 rq
= raw3270_request_alloc(0);
259 if (fp
->read_command
== 0 && fp
->write_command
!= 0)
260 fp
->read_command
= 6;
261 raw3270_request_set_cmd(rq
, fp
->read_command
? : 2);
262 raw3270_request_set_idal(rq
, ib
);
263 rc
= wait_event_interruptible(fp
->wait
, fp
->attention
);
266 rc
= fs3270_do_io(&fp
->view
, rq
);
269 if (idal_buffer_to_user(ib
, data
, count
) != 0)
276 raw3270_request_free(rq
);
279 idal_buffer_free(ib
);
284 * Process writes to fullscreen 3270.
287 fs3270_write(struct file
*filp
, const char __user
*data
, size_t count
, loff_t
*off
)
290 struct raw3270_request
*rq
;
291 struct idal_buffer
*ib
;
295 fp
= filp
->private_data
;
298 ib
= idal_buffer_alloc(count
, 0);
301 rq
= raw3270_request_alloc(0);
303 if (idal_buffer_from_user(ib
, data
, count
) == 0) {
304 write_command
= fp
->write_command
? : 1;
305 if (write_command
== 5)
307 raw3270_request_set_cmd(rq
, write_command
);
308 raw3270_request_set_idal(rq
, ib
);
309 rc
= fs3270_do_io(&fp
->view
, rq
);
311 rc
= count
- rq
->rescnt
;
314 raw3270_request_free(rq
);
317 idal_buffer_free(ib
);
322 * process ioctl commands for the tube driver
325 fs3270_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
329 struct raw3270_iocb iocb
;
332 fp
= filp
->private_data
;
335 if (is_compat_task())
336 argp
= compat_ptr(arg
);
338 argp
= (char __user
*)arg
;
340 mutex_lock(&fs3270_mutex
);
343 fp
->read_command
= arg
;
346 fp
->write_command
= arg
;
349 rc
= put_user(fp
->read_command
, argp
);
352 rc
= put_user(fp
->write_command
, argp
);
355 iocb
.model
= fp
->view
.model
;
356 iocb
.line_cnt
= fp
->view
.rows
;
357 iocb
.col_cnt
= fp
->view
.cols
;
361 if (copy_to_user(argp
, &iocb
, sizeof(struct raw3270_iocb
)))
365 mutex_unlock(&fs3270_mutex
);
370 * Allocate fs3270 structure.
372 static struct fs3270
*
373 fs3270_alloc_view(void)
377 fp
= kzalloc(sizeof(struct fs3270
),GFP_KERNEL
);
379 return ERR_PTR(-ENOMEM
);
380 fp
->init
= raw3270_request_alloc(0);
381 if (IS_ERR(fp
->init
)) {
383 return ERR_PTR(-ENOMEM
);
389 * Free fs3270 structure.
392 fs3270_free_view(struct raw3270_view
*view
)
396 fp
= (struct fs3270
*) view
;
398 idal_buffer_free(fp
->rdbuf
);
399 raw3270_request_free(((struct fs3270
*) view
)->init
);
404 * Unlink fs3270 data structure from filp.
407 fs3270_release(struct raw3270_view
*view
)
411 fp
= (struct fs3270
*) view
;
413 kill_pid(fp
->fs_pid
, SIGHUP
, 1);
416 /* View to a 3270 device. Can be console, tty or fullscreen. */
417 static struct raw3270_fn fs3270_fn
= {
418 .activate
= fs3270_activate
,
419 .deactivate
= fs3270_deactivate
,
420 .intv
= (void *) fs3270_irq
,
421 .release
= fs3270_release
,
422 .free
= fs3270_free_view
426 * This routine is called whenever a 3270 fullscreen device is opened.
429 fs3270_open(struct inode
*inode
, struct file
*filp
)
432 struct idal_buffer
*ib
;
435 if (imajor(file_inode(filp
)) != IBM_FS3270_MAJOR
)
437 minor
= iminor(file_inode(filp
));
438 /* Check for minor 0 multiplexer. */
440 struct tty_struct
*tty
= get_current_tty();
441 if (!tty
|| tty
->driver
->major
!= IBM_TTY3270_MAJOR
) {
448 mutex_lock(&fs3270_mutex
);
449 /* Check if some other program is already using fullscreen mode. */
450 fp
= (struct fs3270
*) raw3270_find_view(&fs3270_fn
, minor
);
452 raw3270_put_view(&fp
->view
);
456 /* Allocate fullscreen view structure. */
457 fp
= fs3270_alloc_view();
463 init_waitqueue_head(&fp
->wait
);
464 fp
->fs_pid
= get_pid(task_pid(current
));
465 rc
= raw3270_add_view(&fp
->view
, &fs3270_fn
, minor
);
467 fs3270_free_view(&fp
->view
);
471 /* Allocate idal-buffer. */
472 ib
= idal_buffer_alloc(2*fp
->view
.rows
*fp
->view
.cols
+ 5, 0);
474 raw3270_put_view(&fp
->view
);
475 raw3270_del_view(&fp
->view
);
481 rc
= raw3270_activate_view(&fp
->view
);
483 raw3270_put_view(&fp
->view
);
484 raw3270_del_view(&fp
->view
);
487 nonseekable_open(inode
, filp
);
488 filp
->private_data
= fp
;
490 mutex_unlock(&fs3270_mutex
);
495 * This routine is called when the 3270 tty is closed. We wait
496 * for the remaining request to be completed. Then we clean up.
499 fs3270_close(struct inode
*inode
, struct file
*filp
)
503 fp
= filp
->private_data
;
504 filp
->private_data
= NULL
;
508 raw3270_reset(&fp
->view
);
509 raw3270_put_view(&fp
->view
);
510 raw3270_del_view(&fp
->view
);
515 static const struct file_operations fs3270_fops
= {
516 .owner
= THIS_MODULE
, /* owner */
517 .read
= fs3270_read
, /* read */
518 .write
= fs3270_write
, /* write */
519 .unlocked_ioctl
= fs3270_ioctl
, /* ioctl */
520 .compat_ioctl
= fs3270_ioctl
, /* ioctl */
521 .open
= fs3270_open
, /* open */
522 .release
= fs3270_close
, /* release */
526 static void fs3270_create_cb(int minor
)
528 __register_chrdev(IBM_FS3270_MAJOR
, minor
, 1, "tub", &fs3270_fops
);
529 device_create(class3270
, NULL
, MKDEV(IBM_FS3270_MAJOR
, minor
),
530 NULL
, "3270/tub%d", minor
);
533 static void fs3270_destroy_cb(int minor
)
535 device_destroy(class3270
, MKDEV(IBM_FS3270_MAJOR
, minor
));
536 __unregister_chrdev(IBM_FS3270_MAJOR
, minor
, 1, "tub");
539 static struct raw3270_notifier fs3270_notifier
=
541 .create
= fs3270_create_cb
,
542 .destroy
= fs3270_destroy_cb
,
546 * 3270 fullscreen driver initialization.
553 rc
= __register_chrdev(IBM_FS3270_MAJOR
, 0, 1, "fs3270", &fs3270_fops
);
556 device_create(class3270
, NULL
, MKDEV(IBM_FS3270_MAJOR
, 0),
558 raw3270_register_notifier(&fs3270_notifier
);
565 raw3270_unregister_notifier(&fs3270_notifier
);
566 device_destroy(class3270
, MKDEV(IBM_FS3270_MAJOR
, 0));
567 __unregister_chrdev(IBM_FS3270_MAJOR
, 0, 1, "fs3270");
570 MODULE_LICENSE("GPL");
571 MODULE_ALIAS_CHARDEV_MAJOR(IBM_FS3270_MAJOR
);
573 module_init(fs3270_init
);
574 module_exit(fs3270_exit
);