[PATCH v2] xclipboard: avoid overflow crash when building labels
James Cloos
cloos at jhcloos.com
Mon Jul 18 09:43:18 PDT 2011
> This replaces sprintf with XtAsprintf to avoid crashing when creating
> various potentially large labels.
>
> https://bugs.launchpad.net/ubuntu/+source/x11-apps/+bug/792642
>
> Signed-off-by: Kees Cook <kees.cook at canonical.com>
> ---
> xclipboard.c | 5 +++--
> xcutsel.c | 8 +++++---
> 2 files changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/xclipboard.c b/xclipboard.c
> index 1fddf4c..62a214c 100644
> --- a/xclipboard.c
> +++ b/xclipboard.c
> @@ -332,13 +332,14 @@ AcceptSaveFile(Widget w, XEvent *e, String *argv, Cardinal *argc)
> XtPopdown (fileDialogShell);
> if (!success)
> {
> - char failMessage[1024];
> + char *failMessage;
>
> - sprintf (failMessage, "Can't open file \"%s\"", filename);
> + XtAsprintf (&failMessage, "Can't open file \"%s\"", filename);
> XtSetArg (args[0], XtNlabel, failMessage);
> XtSetValues (failDialog, args, 1);
> CenterWidgetOnEvent (failDialogShell, e);
> XtPopup (failDialogShell, XtGrabNone);
> + XtFree (failMessage);
> }
> else
> {
> diff --git a/xcutsel.c b/xcutsel.c
> index 690e201..3386b57 100644
> --- a/xcutsel.c
> +++ b/xcutsel.c
> @@ -258,7 +258,7 @@ GetBuffer(Widget w, XtPointer closure, XtPointer callData)
> int
> main(int argc, char *argv[])
> {
> - char label[100];
> + char *label;
> Widget box, button;
> XtAppContext appcon;
> Widget shell;
> @@ -288,19 +288,21 @@ main(int argc, char *argv[])
> XtAddCallback( button, XtNcallback, Quit, NULL );
>
> /* %%% hack alert... */
> - sprintf(label, "*label:copy %s to %d",
> + XtAsprintf(&label, "*label:copy %s to %d",
> options.selection_name,
> options.buffer);
> XrmPutLineResource( &rdb, label );
> + XtFree(label);
>
> button =
> XtCreateManagedWidget("sel-cut", commandWidgetClass, box, NULL, ZERO);
> XtAddCallback( button, XtNcallback, GetSelection, NULL );
>
> - sprintf(label, "*label:copy %d to %s",
> + XtAsprintf(&label, "*label:copy %d to %s",
> options.buffer,
> options.selection_name);
> XrmPutLineResource( &rdb, label );
> + XtFree(label);
>
> button =
> XtCreateManagedWidget("cut-sel", commandWidgetClass, box, NULL, ZERO);
> --
> 1.7.4.1
Reviewed-by: James Cloos <cloos at jhcloos.com>
-JimC
--
James Cloos <cloos at jhcloos.com> OpenPGP: 1024D/ED7DAEA6
More information about the xorg-devel
mailing list