1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/types.h>
7 #include <linux/errno.h>
9 #include <linux/tty_driver.h>
10 #include <linux/tty_flip.h>
11 #include <linux/serial.h>
12 #include <linux/timer.h>
13 #include <linux/string.h>
14 #include <linux/slab.h>
15 #include <linux/sched/signal.h>
16 #include <linux/wait.h>
17 #include <linux/bitops.h>
18 #include <linux/delay.h>
19 #include <linux/module.h>
20 #include <linux/serdev.h>
22 static int tty_port_default_receive_buf(struct tty_port
*port
,
23 const unsigned char *p
,
24 const unsigned char *f
, size_t count
)
27 struct tty_struct
*tty
;
28 struct tty_ldisc
*disc
;
30 tty
= READ_ONCE(port
->itty
);
34 disc
= tty_ldisc_ref(tty
);
38 ret
= tty_ldisc_receive_buf(disc
, p
, (char *)f
, count
);
40 tty_ldisc_deref(disc
);
45 static void tty_port_default_wakeup(struct tty_port
*port
)
47 struct tty_struct
*tty
= tty_port_tty_get(port
);
55 const struct tty_port_client_operations tty_port_default_client_ops
= {
56 .receive_buf
= tty_port_default_receive_buf
,
57 .write_wakeup
= tty_port_default_wakeup
,
59 EXPORT_SYMBOL_GPL(tty_port_default_client_ops
);
61 void tty_port_init(struct tty_port
*port
)
63 memset(port
, 0, sizeof(*port
));
64 tty_buffer_init(port
);
65 init_waitqueue_head(&port
->open_wait
);
66 init_waitqueue_head(&port
->delta_msr_wait
);
67 mutex_init(&port
->mutex
);
68 mutex_init(&port
->buf_mutex
);
69 spin_lock_init(&port
->lock
);
70 port
->close_delay
= (50 * HZ
) / 100;
71 port
->closing_wait
= (3000 * HZ
) / 100;
72 port
->client_ops
= &tty_port_default_client_ops
;
73 kref_init(&port
->kref
);
75 EXPORT_SYMBOL(tty_port_init
);
78 * tty_port_link_device - link tty and tty_port
79 * @port: tty_port of the device
80 * @driver: tty_driver for this device
81 * @index: index of the tty
83 * Provide the tty layer with a link from a tty (specified by @index) to a
84 * tty_port (@port). Use this only if neither tty_port_register_device nor
85 * tty_port_install is used in the driver. If used, this has to be called before
86 * tty_register_driver.
88 void tty_port_link_device(struct tty_port
*port
,
89 struct tty_driver
*driver
, unsigned index
)
91 if (WARN_ON(index
>= driver
->num
))
93 driver
->ports
[index
] = port
;
95 EXPORT_SYMBOL_GPL(tty_port_link_device
);
98 * tty_port_register_device - register tty device
99 * @port: tty_port of the device
100 * @driver: tty_driver for this device
101 * @index: index of the tty
102 * @device: parent if exists, otherwise NULL
104 * It is the same as tty_register_device except the provided @port is linked to
105 * a concrete tty specified by @index. Use this or tty_port_install (or both).
106 * Call tty_port_link_device as a last resort.
108 struct device
*tty_port_register_device(struct tty_port
*port
,
109 struct tty_driver
*driver
, unsigned index
,
110 struct device
*device
)
112 return tty_port_register_device_attr(port
, driver
, index
, device
, NULL
, NULL
);
114 EXPORT_SYMBOL_GPL(tty_port_register_device
);
117 * tty_port_register_device_attr - register tty device
118 * @port: tty_port of the device
119 * @driver: tty_driver for this device
120 * @index: index of the tty
121 * @device: parent if exists, otherwise NULL
122 * @drvdata: Driver data to be set to device.
123 * @attr_grp: Attribute group to be set on device.
125 * It is the same as tty_register_device_attr except the provided @port is
126 * linked to a concrete tty specified by @index. Use this or tty_port_install
127 * (or both). Call tty_port_link_device as a last resort.
129 struct device
*tty_port_register_device_attr(struct tty_port
*port
,
130 struct tty_driver
*driver
, unsigned index
,
131 struct device
*device
, void *drvdata
,
132 const struct attribute_group
**attr_grp
)
134 tty_port_link_device(port
, driver
, index
);
135 return tty_register_device_attr(driver
, index
, device
, drvdata
,
138 EXPORT_SYMBOL_GPL(tty_port_register_device_attr
);
141 * tty_port_register_device_attr_serdev - register tty or serdev device
142 * @port: tty_port of the device
143 * @driver: tty_driver for this device
144 * @index: index of the tty
145 * @device: parent if exists, otherwise NULL
146 * @drvdata: driver data for the device
147 * @attr_grp: attribute group for the device
149 * Register a serdev or tty device depending on if the parent device has any
150 * defined serdev clients or not.
152 struct device
*tty_port_register_device_attr_serdev(struct tty_port
*port
,
153 struct tty_driver
*driver
, unsigned index
,
154 struct device
*device
, void *drvdata
,
155 const struct attribute_group
**attr_grp
)
159 tty_port_link_device(port
, driver
, index
);
161 dev
= serdev_tty_port_register(port
, device
, driver
, index
);
162 if (PTR_ERR(dev
) != -ENODEV
) {
163 /* Skip creating cdev if we registered a serdev device */
167 return tty_register_device_attr(driver
, index
, device
, drvdata
,
170 EXPORT_SYMBOL_GPL(tty_port_register_device_attr_serdev
);
173 * tty_port_register_device_serdev - register tty or serdev device
174 * @port: tty_port of the device
175 * @driver: tty_driver for this device
176 * @index: index of the tty
177 * @device: parent if exists, otherwise NULL
179 * Register a serdev or tty device depending on if the parent device has any
180 * defined serdev clients or not.
182 struct device
*tty_port_register_device_serdev(struct tty_port
*port
,
183 struct tty_driver
*driver
, unsigned index
,
184 struct device
*device
)
186 return tty_port_register_device_attr_serdev(port
, driver
, index
,
189 EXPORT_SYMBOL_GPL(tty_port_register_device_serdev
);
192 * tty_port_unregister_device - deregister a tty or serdev device
193 * @port: tty_port of the device
194 * @driver: tty_driver for this device
195 * @index: index of the tty
197 * If a tty or serdev device is registered with a call to
198 * tty_port_register_device_serdev() then this function must be called when
199 * the device is gone.
201 void tty_port_unregister_device(struct tty_port
*port
,
202 struct tty_driver
*driver
, unsigned index
)
206 ret
= serdev_tty_port_unregister(port
);
210 tty_unregister_device(driver
, index
);
212 EXPORT_SYMBOL_GPL(tty_port_unregister_device
);
214 int tty_port_alloc_xmit_buf(struct tty_port
*port
)
216 /* We may sleep in get_zeroed_page() */
217 mutex_lock(&port
->buf_mutex
);
218 if (port
->xmit_buf
== NULL
)
219 port
->xmit_buf
= (unsigned char *)get_zeroed_page(GFP_KERNEL
);
220 mutex_unlock(&port
->buf_mutex
);
221 if (port
->xmit_buf
== NULL
)
225 EXPORT_SYMBOL(tty_port_alloc_xmit_buf
);
227 void tty_port_free_xmit_buf(struct tty_port
*port
)
229 mutex_lock(&port
->buf_mutex
);
230 if (port
->xmit_buf
!= NULL
) {
231 free_page((unsigned long)port
->xmit_buf
);
232 port
->xmit_buf
= NULL
;
234 mutex_unlock(&port
->buf_mutex
);
236 EXPORT_SYMBOL(tty_port_free_xmit_buf
);
239 * tty_port_destroy -- destroy inited port
240 * @port: tty port to be destroyed
242 * When a port was initialized using tty_port_init, one has to destroy the
243 * port by this function. Either indirectly by using tty_port refcounting
244 * (tty_port_put) or directly if refcounting is not used.
246 void tty_port_destroy(struct tty_port
*port
)
248 tty_buffer_cancel_work(port
);
249 tty_buffer_free_all(port
);
251 EXPORT_SYMBOL(tty_port_destroy
);
253 static void tty_port_destructor(struct kref
*kref
)
255 struct tty_port
*port
= container_of(kref
, struct tty_port
, kref
);
257 /* check if last port ref was dropped before tty release */
258 if (WARN_ON(port
->itty
))
261 free_page((unsigned long)port
->xmit_buf
);
262 tty_port_destroy(port
);
263 if (port
->ops
&& port
->ops
->destruct
)
264 port
->ops
->destruct(port
);
269 void tty_port_put(struct tty_port
*port
)
272 kref_put(&port
->kref
, tty_port_destructor
);
274 EXPORT_SYMBOL(tty_port_put
);
277 * tty_port_tty_get - get a tty reference
280 * Return a refcount protected tty instance or NULL if the port is not
281 * associated with a tty (eg due to close or hangup)
284 struct tty_struct
*tty_port_tty_get(struct tty_port
*port
)
287 struct tty_struct
*tty
;
289 spin_lock_irqsave(&port
->lock
, flags
);
290 tty
= tty_kref_get(port
->tty
);
291 spin_unlock_irqrestore(&port
->lock
, flags
);
294 EXPORT_SYMBOL(tty_port_tty_get
);
297 * tty_port_tty_set - set the tty of a port
301 * Associate the port and tty pair. Manages any internal refcounts.
302 * Pass NULL to deassociate a port
305 void tty_port_tty_set(struct tty_port
*port
, struct tty_struct
*tty
)
309 spin_lock_irqsave(&port
->lock
, flags
);
310 tty_kref_put(port
->tty
);
311 port
->tty
= tty_kref_get(tty
);
312 spin_unlock_irqrestore(&port
->lock
, flags
);
314 EXPORT_SYMBOL(tty_port_tty_set
);
316 static void tty_port_shutdown(struct tty_port
*port
, struct tty_struct
*tty
)
318 mutex_lock(&port
->mutex
);
322 if (tty_port_initialized(port
)) {
323 tty_port_set_initialized(port
, 0);
325 * Drop DTR/RTS if HUPCL is set. This causes any attached
326 * modem to hang up the line.
328 if (tty
&& C_HUPCL(tty
))
329 tty_port_lower_dtr_rts(port
);
331 if (port
->ops
->shutdown
)
332 port
->ops
->shutdown(port
);
335 mutex_unlock(&port
->mutex
);
339 * tty_port_hangup - hangup helper
342 * Perform port level tty hangup flag and count changes. Drop the tty
345 * Caller holds tty lock.
348 void tty_port_hangup(struct tty_port
*port
)
350 struct tty_struct
*tty
;
353 spin_lock_irqsave(&port
->lock
, flags
);
357 set_bit(TTY_IO_ERROR
, &tty
->flags
);
359 spin_unlock_irqrestore(&port
->lock
, flags
);
360 tty_port_set_active(port
, 0);
361 tty_port_shutdown(port
, tty
);
363 wake_up_interruptible(&port
->open_wait
);
364 wake_up_interruptible(&port
->delta_msr_wait
);
366 EXPORT_SYMBOL(tty_port_hangup
);
369 * tty_port_tty_hangup - helper to hang up a tty
372 * @check_clocal: hang only ttys with CLOCAL unset?
374 void tty_port_tty_hangup(struct tty_port
*port
, bool check_clocal
)
376 struct tty_struct
*tty
= tty_port_tty_get(port
);
378 if (tty
&& (!check_clocal
|| !C_CLOCAL(tty
)))
382 EXPORT_SYMBOL_GPL(tty_port_tty_hangup
);
385 * tty_port_tty_wakeup - helper to wake up a tty
389 void tty_port_tty_wakeup(struct tty_port
*port
)
391 port
->client_ops
->write_wakeup(port
);
393 EXPORT_SYMBOL_GPL(tty_port_tty_wakeup
);
396 * tty_port_carrier_raised - carrier raised check
399 * Wrapper for the carrier detect logic. For the moment this is used
400 * to hide some internal details. This will eventually become entirely
401 * internal to the tty port.
404 int tty_port_carrier_raised(struct tty_port
*port
)
406 if (port
->ops
->carrier_raised
== NULL
)
408 return port
->ops
->carrier_raised(port
);
410 EXPORT_SYMBOL(tty_port_carrier_raised
);
413 * tty_port_raise_dtr_rts - Raise DTR/RTS
416 * Wrapper for the DTR/RTS raise logic. For the moment this is used
417 * to hide some internal details. This will eventually become entirely
418 * internal to the tty port.
421 void tty_port_raise_dtr_rts(struct tty_port
*port
)
423 if (port
->ops
->dtr_rts
)
424 port
->ops
->dtr_rts(port
, 1);
426 EXPORT_SYMBOL(tty_port_raise_dtr_rts
);
429 * tty_port_lower_dtr_rts - Lower DTR/RTS
432 * Wrapper for the DTR/RTS raise logic. For the moment this is used
433 * to hide some internal details. This will eventually become entirely
434 * internal to the tty port.
437 void tty_port_lower_dtr_rts(struct tty_port
*port
)
439 if (port
->ops
->dtr_rts
)
440 port
->ops
->dtr_rts(port
, 0);
442 EXPORT_SYMBOL(tty_port_lower_dtr_rts
);
445 * tty_port_block_til_ready - Waiting logic for tty open
446 * @port: the tty port being opened
447 * @tty: the tty device being bound
448 * @filp: the file pointer of the opener or NULL
450 * Implement the core POSIX/SuS tty behaviour when opening a tty device.
452 * - hangup (both before and during)
453 * - non blocking open
456 * - port flags and counts
458 * The passed tty_port must implement the carrier_raised method if it can
459 * do carrier detect and the dtr_rts method if it supports software
460 * management of these lines. Note that the dtr/rts raise is done each
461 * iteration as a hangup may have previously dropped them while we wait.
463 * Caller holds tty lock.
465 * NB: May drop and reacquire tty lock when blocking, so tty and tty_port
466 * may have changed state (eg., may have been hung up).
469 int tty_port_block_til_ready(struct tty_port
*port
,
470 struct tty_struct
*tty
, struct file
*filp
)
472 int do_clocal
= 0, retval
;
476 /* if non-blocking mode is set we can pass directly to open unless
477 the port has just hung up or is in another error state */
478 if (tty_io_error(tty
)) {
479 tty_port_set_active(port
, 1);
482 if (filp
== NULL
|| (filp
->f_flags
& O_NONBLOCK
)) {
483 /* Indicate we are open */
485 tty_port_raise_dtr_rts(port
);
486 tty_port_set_active(port
, 1);
493 /* Block waiting until we can proceed. We may need to wait for the
494 carrier, but we must also wait for any close that is in progress
495 before the next open may complete */
499 /* The port lock protects the port counts */
500 spin_lock_irqsave(&port
->lock
, flags
);
502 port
->blocked_open
++;
503 spin_unlock_irqrestore(&port
->lock
, flags
);
506 /* Indicate we are open */
507 if (C_BAUD(tty
) && tty_port_initialized(port
))
508 tty_port_raise_dtr_rts(port
);
510 prepare_to_wait(&port
->open_wait
, &wait
, TASK_INTERRUPTIBLE
);
511 /* Check for a hangup or uninitialised port.
512 Return accordingly */
513 if (tty_hung_up_p(filp
) || !tty_port_initialized(port
)) {
514 if (port
->flags
& ASYNC_HUP_NOTIFY
)
517 retval
= -ERESTARTSYS
;
521 * Probe the carrier. For devices with no carrier detect
522 * tty_port_carrier_raised will always return true.
523 * Never ask drivers if CLOCAL is set, this causes troubles
526 if (do_clocal
|| tty_port_carrier_raised(port
))
528 if (signal_pending(current
)) {
529 retval
= -ERESTARTSYS
;
536 finish_wait(&port
->open_wait
, &wait
);
538 /* Update counts. A parallel hangup will have set count to zero and
539 we must not mess that up further */
540 spin_lock_irqsave(&port
->lock
, flags
);
541 if (!tty_hung_up_p(filp
))
543 port
->blocked_open
--;
544 spin_unlock_irqrestore(&port
->lock
, flags
);
546 tty_port_set_active(port
, 1);
549 EXPORT_SYMBOL(tty_port_block_til_ready
);
551 static void tty_port_drain_delay(struct tty_port
*port
, struct tty_struct
*tty
)
553 unsigned int bps
= tty_get_baud_rate(tty
);
557 timeout
= (HZ
* 10 * port
->drain_delay
) / bps
;
558 timeout
= max_t(long, timeout
, HZ
/ 10);
562 schedule_timeout_interruptible(timeout
);
565 /* Caller holds tty lock. */
566 int tty_port_close_start(struct tty_port
*port
,
567 struct tty_struct
*tty
, struct file
*filp
)
571 if (tty_hung_up_p(filp
))
574 spin_lock_irqsave(&port
->lock
, flags
);
575 if (tty
->count
== 1 && port
->count
!= 1) {
576 tty_warn(tty
, "%s: tty->count = 1 port count = %d\n", __func__
,
580 if (--port
->count
< 0) {
581 tty_warn(tty
, "%s: bad port count (%d)\n", __func__
,
587 spin_unlock_irqrestore(&port
->lock
, flags
);
590 spin_unlock_irqrestore(&port
->lock
, flags
);
594 if (tty_port_initialized(port
)) {
595 /* Don't block on a stalled port, just pull the chain */
596 if (tty
->flow_stopped
)
597 tty_driver_flush_buffer(tty
);
598 if (port
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
599 tty_wait_until_sent(tty
, port
->closing_wait
);
600 if (port
->drain_delay
)
601 tty_port_drain_delay(port
, tty
);
603 /* Flush the ldisc buffering */
604 tty_ldisc_flush(tty
);
606 /* Report to caller this is the last port reference */
609 EXPORT_SYMBOL(tty_port_close_start
);
611 /* Caller holds tty lock */
612 void tty_port_close_end(struct tty_port
*port
, struct tty_struct
*tty
)
616 tty_ldisc_flush(tty
);
619 spin_lock_irqsave(&port
->lock
, flags
);
621 if (port
->blocked_open
) {
622 spin_unlock_irqrestore(&port
->lock
, flags
);
623 if (port
->close_delay
)
624 msleep_interruptible(jiffies_to_msecs(port
->close_delay
));
625 spin_lock_irqsave(&port
->lock
, flags
);
626 wake_up_interruptible(&port
->open_wait
);
628 spin_unlock_irqrestore(&port
->lock
, flags
);
629 tty_port_set_active(port
, 0);
631 EXPORT_SYMBOL(tty_port_close_end
);
636 * Caller holds tty lock
638 void tty_port_close(struct tty_port
*port
, struct tty_struct
*tty
,
641 if (tty_port_close_start(port
, tty
, filp
) == 0)
643 tty_port_shutdown(port
, tty
);
645 set_bit(TTY_IO_ERROR
, &tty
->flags
);
646 tty_port_close_end(port
, tty
);
647 tty_port_tty_set(port
, NULL
);
649 EXPORT_SYMBOL(tty_port_close
);
652 * tty_port_install - generic tty->ops->install handler
653 * @port: tty_port of the device
654 * @driver: tty_driver for this device
655 * @tty: tty to be installed
657 * It is the same as tty_standard_install except the provided @port is linked
658 * to a concrete tty specified by @tty. Use this or tty_port_register_device
659 * (or both). Call tty_port_link_device as a last resort.
661 int tty_port_install(struct tty_port
*port
, struct tty_driver
*driver
,
662 struct tty_struct
*tty
)
665 return tty_standard_install(driver
, tty
);
667 EXPORT_SYMBOL_GPL(tty_port_install
);
672 * Caller holds tty lock.
674 * NB: may drop and reacquire tty lock (in tty_port_block_til_ready()) so
675 * tty and tty_port may have changed state (eg., may be hung up now)
677 int tty_port_open(struct tty_port
*port
, struct tty_struct
*tty
,
680 spin_lock_irq(&port
->lock
);
682 spin_unlock_irq(&port
->lock
);
683 tty_port_tty_set(port
, tty
);
686 * Do the device-specific open only if the hardware isn't
687 * already initialized. Serialize open and shutdown using the
691 mutex_lock(&port
->mutex
);
693 if (!tty_port_initialized(port
)) {
694 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
695 if (port
->ops
->activate
) {
696 int retval
= port
->ops
->activate(port
, tty
);
698 mutex_unlock(&port
->mutex
);
702 tty_port_set_initialized(port
, 1);
704 mutex_unlock(&port
->mutex
);
705 return tty_port_block_til_ready(port
, tty
, filp
);
708 EXPORT_SYMBOL(tty_port_open
);