|
@@ -2760,6 +2760,24 @@ static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static void tty_warn_deprecated_flags(struct serial_struct __user *ss)
|
|
|
+{
|
|
|
+ static DEFINE_RATELIMIT_STATE(depr_flags,
|
|
|
+ DEFAULT_RATELIMIT_INTERVAL,
|
|
|
+ DEFAULT_RATELIMIT_BURST);
|
|
|
+ char comm[TASK_COMM_LEN];
|
|
|
+ int flags;
|
|
|
+
|
|
|
+ if (get_user(flags, &ss->flags))
|
|
|
+ return;
|
|
|
+
|
|
|
+ flags &= ASYNC_DEPRECATED;
|
|
|
+
|
|
|
+ if (flags && __ratelimit(&depr_flags))
|
|
|
+ pr_warning("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
|
|
|
+ __func__, get_task_comm(comm, current), flags);
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* if pty, return the slave side (real_tty)
|
|
|
* otherwise, return self
|
|
@@ -2903,6 +2921,9 @@ long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
break;
|
|
|
}
|
|
|
break;
|
|
|
+ case TIOCSSERIAL:
|
|
|
+ tty_warn_deprecated_flags(p);
|
|
|
+ break;
|
|
|
}
|
|
|
if (tty->ops->ioctl) {
|
|
|
retval = tty->ops->ioctl(tty, cmd, arg);
|