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)
283 struct tty_struct
*tty_port_tty_get(struct tty_port
*port
)
286 struct tty_struct
*tty
;
288 spin_lock_irqsave(&port
->lock
, flags
);
289 tty
= tty_kref_get(port
->tty
);
290 spin_unlock_irqrestore(&port
->lock
, flags
);
293 EXPORT_SYMBOL(tty_port_tty_get
);
296 * tty_port_tty_set - set the tty of a port
300 * Associate the port and tty pair. Manages any internal refcounts.
301 * Pass NULL to deassociate a port
303 void tty_port_tty_set(struct tty_port
*port
, struct tty_struct
*tty
)
307 spin_lock_irqsave(&port
->lock
, flags
);
308 tty_kref_put(port
->tty
);
309 port
->tty
= tty_kref_get(tty
);
310 spin_unlock_irqrestore(&port
->lock
, flags
);
312 EXPORT_SYMBOL(tty_port_tty_set
);
314 static void tty_port_shutdown(struct tty_port
*port
, struct tty_struct
*tty
)
316 mutex_lock(&port
->mutex
);
320 if (tty_port_initialized(port
)) {
321 tty_port_set_initialized(port
, 0);
323 * Drop DTR/RTS if HUPCL is set. This causes any attached
324 * modem to hang up the line.
326 if (tty
&& C_HUPCL(tty
))
327 tty_port_lower_dtr_rts(port
);
329 if (port
->ops
->shutdown
)
330 port
->ops
->shutdown(port
);
333 mutex_unlock(&port
->mutex
);
337 * tty_port_hangup - hangup helper
340 * Perform port level tty hangup flag and count changes. Drop the tty
343 * Caller holds tty lock.
345 void tty_port_hangup(struct tty_port
*port
)
347 struct tty_struct
*tty
;
350 spin_lock_irqsave(&port
->lock
, flags
);
354 set_bit(TTY_IO_ERROR
, &tty
->flags
);
356 spin_unlock_irqrestore(&port
->lock
, flags
);
357 tty_port_set_active(port
, 0);
358 tty_port_shutdown(port
, tty
);
360 wake_up_interruptible(&port
->open_wait
);
361 wake_up_interruptible(&port
->delta_msr_wait
);
363 EXPORT_SYMBOL(tty_port_hangup
);
366 * tty_port_tty_hangup - helper to hang up a tty
369 * @check_clocal: hang only ttys with CLOCAL unset?
371 void tty_port_tty_hangup(struct tty_port
*port
, bool check_clocal
)
373 struct tty_struct
*tty
= tty_port_tty_get(port
);
375 if (tty
&& (!check_clocal
|| !C_CLOCAL(tty
)))
379 EXPORT_SYMBOL_GPL(tty_port_tty_hangup
);
382 * tty_port_tty_wakeup - helper to wake up a tty
386 void tty_port_tty_wakeup(struct tty_port
*port
)
388 port
->client_ops
->write_wakeup(port
);
390 EXPORT_SYMBOL_GPL(tty_port_tty_wakeup
);
393 * tty_port_carrier_raised - carrier raised check
396 * Wrapper for the carrier detect logic. For the moment this is used
397 * to hide some internal details. This will eventually become entirely
398 * internal to the tty port.
400 int tty_port_carrier_raised(struct tty_port
*port
)
402 if (port
->ops
->carrier_raised
== NULL
)
404 return port
->ops
->carrier_raised(port
);
406 EXPORT_SYMBOL(tty_port_carrier_raised
);
409 * tty_port_raise_dtr_rts - Raise DTR/RTS
412 * Wrapper for the DTR/RTS raise logic. For the moment this is used
413 * to hide some internal details. This will eventually become entirely
414 * internal to the tty port.
416 void tty_port_raise_dtr_rts(struct tty_port
*port
)
418 if (port
->ops
->dtr_rts
)
419 port
->ops
->dtr_rts(port
, 1);
421 EXPORT_SYMBOL(tty_port_raise_dtr_rts
);
424 * tty_port_lower_dtr_rts - Lower DTR/RTS
427 * Wrapper for the DTR/RTS raise logic. For the moment this is used
428 * to hide some internal details. This will eventually become entirely
429 * internal to the tty port.
431 void tty_port_lower_dtr_rts(struct tty_port
*port
)
433 if (port
->ops
->dtr_rts
)
434 port
->ops
->dtr_rts(port
, 0);
436 EXPORT_SYMBOL(tty_port_lower_dtr_rts
);
439 * tty_port_block_til_ready - Waiting logic for tty open
440 * @port: the tty port being opened
441 * @tty: the tty device being bound
442 * @filp: the file pointer of the opener or NULL
444 * Implement the core POSIX/SuS tty behaviour when opening a tty device.
446 * - hangup (both before and during)
447 * - non blocking open
450 * - port flags and counts
452 * The passed tty_port must implement the carrier_raised method if it can
453 * do carrier detect and the dtr_rts method if it supports software
454 * management of these lines. Note that the dtr/rts raise is done each
455 * iteration as a hangup may have previously dropped them while we wait.
457 * Caller holds tty lock.
459 * NB: May drop and reacquire tty lock when blocking, so tty and tty_port
460 * may have changed state (eg., may have been hung up).
462 int tty_port_block_til_ready(struct tty_port
*port
,
463 struct tty_struct
*tty
, struct file
*filp
)
465 int do_clocal
= 0, retval
;
469 /* if non-blocking mode is set we can pass directly to open unless
470 the port has just hung up or is in another error state */
471 if (tty_io_error(tty
)) {
472 tty_port_set_active(port
, 1);
475 if (filp
== NULL
|| (filp
->f_flags
& O_NONBLOCK
)) {
476 /* Indicate we are open */
478 tty_port_raise_dtr_rts(port
);
479 tty_port_set_active(port
, 1);
486 /* Block waiting until we can proceed. We may need to wait for the
487 carrier, but we must also wait for any close that is in progress
488 before the next open may complete */
492 /* The port lock protects the port counts */
493 spin_lock_irqsave(&port
->lock
, flags
);
495 port
->blocked_open
++;
496 spin_unlock_irqrestore(&port
->lock
, flags
);
499 /* Indicate we are open */
500 if (C_BAUD(tty
) && tty_port_initialized(port
))
501 tty_port_raise_dtr_rts(port
);
503 prepare_to_wait(&port
->open_wait
, &wait
, TASK_INTERRUPTIBLE
);
504 /* Check for a hangup or uninitialised port.
505 Return accordingly */
506 if (tty_hung_up_p(filp
) || !tty_port_initialized(port
)) {
507 if (port
->flags
& ASYNC_HUP_NOTIFY
)
510 retval
= -ERESTARTSYS
;
514 * Probe the carrier. For devices with no carrier detect
515 * tty_port_carrier_raised will always return true.
516 * Never ask drivers if CLOCAL is set, this causes troubles
519 if (do_clocal
|| tty_port_carrier_raised(port
))
521 if (signal_pending(current
)) {
522 retval
= -ERESTARTSYS
;
529 finish_wait(&port
->open_wait
, &wait
);
531 /* Update counts. A parallel hangup will have set count to zero and
532 we must not mess that up further */
533 spin_lock_irqsave(&port
->lock
, flags
);
534 if (!tty_hung_up_p(filp
))
536 port
->blocked_open
--;
537 spin_unlock_irqrestore(&port
->lock
, flags
);
539 tty_port_set_active(port
, 1);
542 EXPORT_SYMBOL(tty_port_block_til_ready
);
544 static void tty_port_drain_delay(struct tty_port
*port
, struct tty_struct
*tty
)
546 unsigned int bps
= tty_get_baud_rate(tty
);
550 timeout
= (HZ
* 10 * port
->drain_delay
) / bps
;
551 timeout
= max_t(long, timeout
, HZ
/ 10);
555 schedule_timeout_interruptible(timeout
);
558 /* Caller holds tty lock. */
559 int tty_port_close_start(struct tty_port
*port
,
560 struct tty_struct
*tty
, struct file
*filp
)
564 if (tty_hung_up_p(filp
))
567 spin_lock_irqsave(&port
->lock
, flags
);
568 if (tty
->count
== 1 && port
->count
!= 1) {
569 tty_warn(tty
, "%s: tty->count = 1 port count = %d\n", __func__
,
573 if (--port
->count
< 0) {
574 tty_warn(tty
, "%s: bad port count (%d)\n", __func__
,
580 spin_unlock_irqrestore(&port
->lock
, flags
);
583 spin_unlock_irqrestore(&port
->lock
, flags
);
587 if (tty_port_initialized(port
)) {
588 /* Don't block on a stalled port, just pull the chain */
589 if (tty
->flow_stopped
)
590 tty_driver_flush_buffer(tty
);
591 if (port
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
592 tty_wait_until_sent(tty
, port
->closing_wait
);
593 if (port
->drain_delay
)
594 tty_port_drain_delay(port
, tty
);
596 /* Flush the ldisc buffering */
597 tty_ldisc_flush(tty
);
599 /* Report to caller this is the last port reference */
602 EXPORT_SYMBOL(tty_port_close_start
);
604 /* Caller holds tty lock */
605 void tty_port_close_end(struct tty_port
*port
, struct tty_struct
*tty
)
609 tty_ldisc_flush(tty
);
612 spin_lock_irqsave(&port
->lock
, flags
);
614 if (port
->blocked_open
) {
615 spin_unlock_irqrestore(&port
->lock
, flags
);
616 if (port
->close_delay
)
617 msleep_interruptible(jiffies_to_msecs(port
->close_delay
));
618 spin_lock_irqsave(&port
->lock
, flags
);
619 wake_up_interruptible(&port
->open_wait
);
621 spin_unlock_irqrestore(&port
->lock
, flags
);
622 tty_port_set_active(port
, 0);
624 EXPORT_SYMBOL(tty_port_close_end
);
629 * Caller holds tty lock
631 void tty_port_close(struct tty_port
*port
, struct tty_struct
*tty
,
634 if (tty_port_close_start(port
, tty
, filp
) == 0)
636 tty_port_shutdown(port
, tty
);
638 set_bit(TTY_IO_ERROR
, &tty
->flags
);
639 tty_port_close_end(port
, tty
);
640 tty_port_tty_set(port
, NULL
);
642 EXPORT_SYMBOL(tty_port_close
);
645 * tty_port_install - generic tty->ops->install handler
646 * @port: tty_port of the device
647 * @driver: tty_driver for this device
648 * @tty: tty to be installed
650 * It is the same as tty_standard_install except the provided @port is linked
651 * to a concrete tty specified by @tty. Use this or tty_port_register_device
652 * (or both). Call tty_port_link_device as a last resort.
654 int tty_port_install(struct tty_port
*port
, struct tty_driver
*driver
,
655 struct tty_struct
*tty
)
658 return tty_standard_install(driver
, tty
);
660 EXPORT_SYMBOL_GPL(tty_port_install
);
665 * Caller holds tty lock.
667 * NB: may drop and reacquire tty lock (in tty_port_block_til_ready()) so
668 * tty and tty_port may have changed state (eg., may be hung up now)
670 int tty_port_open(struct tty_port
*port
, struct tty_struct
*tty
,
673 spin_lock_irq(&port
->lock
);
675 spin_unlock_irq(&port
->lock
);
676 tty_port_tty_set(port
, tty
);
679 * Do the device-specific open only if the hardware isn't
680 * already initialized. Serialize open and shutdown using the
684 mutex_lock(&port
->mutex
);
686 if (!tty_port_initialized(port
)) {
687 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
688 if (port
->ops
->activate
) {
689 int retval
= port
->ops
->activate(port
, tty
);
691 mutex_unlock(&port
->mutex
);
695 tty_port_set_initialized(port
, 1);
697 mutex_unlock(&port
->mutex
);
698 return tty_port_block_til_ready(port
, tty
, filp
);
701 EXPORT_SYMBOL(tty_port_open
);