summaryrefslogtreecommitdiffstats
path: root/drivers/tty/vt
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2017-06-03 03:35:07 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-06-09 05:07:36 -0400
commit915f0a8d2884d05538ae5c06e09f40d364fa2c3f (patch)
treed30b6abab427a4fb5a63202c7c1613aaed409768 /drivers/tty/vt
parent6987dc8a70976561d22450b5858fc9767788cc1c (diff)
vt: use copy_to_user instead of __put_user in GIO_UNIMAP ioctl
A nice big linear transfer, no need to flip stac/PAN/etc every half-entry. Also, yay __put_user() after checking only read. Signed-off-by: Adam Borowski <kilobyte@angband.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/vt')
-rw-r--r--drivers/tty/vt/consolemap.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/tty/vt/consolemap.c b/drivers/tty/vt/consolemap.c
index 1361f2a8b832..c6a692f63a9b 100644
--- a/drivers/tty/vt/consolemap.c
+++ b/drivers/tty/vt/consolemap.c
@@ -740,11 +740,11 @@ EXPORT_SYMBOL(con_copy_unimap);
740 */ 740 */
741int con_get_unimap(struct vc_data *vc, ushort ct, ushort __user *uct, struct unipair __user *list) 741int con_get_unimap(struct vc_data *vc, ushort ct, ushort __user *uct, struct unipair __user *list)
742{ 742{
743 int i, j, k; 743 int i, j, k, ret = 0;
744 ushort ect; 744 ushort ect;
745 u16 **p1, *p2; 745 u16 **p1, *p2;
746 struct uni_pagedir *p; 746 struct uni_pagedir *p;
747 struct unipair *unilist, *plist; 747 struct unipair *unilist;
748 748
749 unilist = kmalloc_array(ct, sizeof(struct unipair), GFP_KERNEL); 749 unilist = kmalloc_array(ct, sizeof(struct unipair), GFP_KERNEL);
750 if (!unilist) 750 if (!unilist)
@@ -775,13 +775,11 @@ int con_get_unimap(struct vc_data *vc, ushort ct, ushort __user *uct, struct uni
775 } 775 }
776 } 776 }
777 console_unlock(); 777 console_unlock();
778 for (i = min(ect, ct), plist = unilist; i; i--, list++, plist++) { 778 if (copy_to_user(list, unilist, min(ect, ct) * sizeof(struct unipair)))
779 __put_user(plist->unicode, &list->unicode); 779 ret = -EFAULT;
780 __put_user(plist->fontpos, &list->fontpos); 780 put_user(ect, uct);
781 }
782 __put_user(ect, uct);
783 kfree(unilist); 781 kfree(unilist);
784 return ((ect <= ct) ? 0 : -ENOMEM); 782 return ret ? ret : (ect <= ct) ? 0 : -ENOMEM;
785} 783}
786 784
787/* 785/*