From: Michael Krufky <mkrufky@linuxtv.org>
To: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: Hans Verkuil <hverkuil@xs4all.nl>,
video4linux-list@redhat.com, Alan Cox <alan@lxorguk.ukuu.org.uk>,
linux-kernel@vger.kernel.org, ivtv-devel@ivtvdriver.org,
Frank Bennett <biercenator@gmail.com>
Subject: Re: [PATCH] Fix VIDIOCGAP corruption in ivtv
Date: Sun, 20 Apr 2008 12:10:00 -0400 [thread overview]
Message-ID: <480B6AD8.9090404@linuxtv.org> (raw)
In-Reply-To: <200804201806.33464.hverkuil@xs4all.nl>
Hans Verkuil wrote:
> On Sunday 20 April 2008 13:27:36 Alan Cox wrote:
>
>> Frank Bennett reported that ivtv was causing skype to crash. With
>> help from one of their developers he showed it was a kernel problem.
>> VIDIOCGCAP copies a name into a fixed length buffer - ivtv uses names
>> that are too long and does not truncate them so corrupts a few bytes
>> of the app data area.
>>
>> Possibly the names also want trimming but for now this should fix the
>> corruption case.
>>
>
> Ouch, nasty one.
>
> Mauro, can you apply this patch to the v4l-dvb master?
>
> Mike, this one should obviously go into a 2.6.25 dot-release, and I
> think also to a 2.6.24 dot-release.
>
> Frank, thank you for reporting this!
>
> Hans
>
> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Mauro,
I'll get this into -stable for 2.6.24.y and 2.6.25.y as soon as it's in Linus' tree. Please send this with your first round of patches for 2.6.26
Regards,
Mike
>
>> Signed-off-by: Alan Cox <alan@redhat.com>
>>
>> ---
>> linux.vanilla-2.6.25-rc8-mm2/drivers/media/video/ivtv/ivtv-ioctl.c 20
>> 08-04-13 15:36:53.000000000 +0100 +++
>> linux-2.6.25-rc8-mm2/drivers/media/video/ivtv/ivtv-ioctl.c 2008-04-20
>> 12:15:33.000000000 +0100 @@ -742,7 +742,8 @@
>>
>> memset(vcap, 0, sizeof(*vcap));
>> strcpy(vcap->driver, IVTV_DRIVER_NAME); /* driver name */
>> - strcpy(vcap->card, itv->card_name); /* card type */
>> + strncpy(vcap->card, itv->card_name,
>> + sizeof(vcap->card)-1); /* card type */
>> strcpy(vcap->bus_info, pci_name(itv->dev)); /* bus info... */
>> vcap->version = IVTV_DRIVER_VERSION; /* version */
>> vcap->capabilities = itv->v4l2_cap; /* capabilities */
>>
>> --
>> "Hello, welcome to Jon Masters' house of pain"
>> - Jon after a particularly good night
>>
>> --
>> video4linux-list mailing list
>> Unsubscribe
>> mailto:video4linux-list-request@redhat.com?subject=unsubscribe
>> https://www.redhat.com/mailman/listinfo/video4linux-list
>>
>
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Michael Krufky <mkrufky@linuxtv.org>
To: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: video4linux-list@redhat.com, linux-kernel@vger.kernel.org,
ivtv-devel@ivtvdriver.org, Frank Bennett <biercenator@gmail.com>,
Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: Re: [PATCH] Fix VIDIOCGAP corruption in ivtv
Date: Sun, 20 Apr 2008 12:10:00 -0400 [thread overview]
Message-ID: <480B6AD8.9090404@linuxtv.org> (raw)
In-Reply-To: <200804201806.33464.hverkuil@xs4all.nl>
Hans Verkuil wrote:
> On Sunday 20 April 2008 13:27:36 Alan Cox wrote:
>
>> Frank Bennett reported that ivtv was causing skype to crash. With
>> help from one of their developers he showed it was a kernel problem.
>> VIDIOCGCAP copies a name into a fixed length buffer - ivtv uses names
>> that are too long and does not truncate them so corrupts a few bytes
>> of the app data area.
>>
>> Possibly the names also want trimming but for now this should fix the
>> corruption case.
>>
>
> Ouch, nasty one.
>
> Mauro, can you apply this patch to the v4l-dvb master?
>
> Mike, this one should obviously go into a 2.6.25 dot-release, and I
> think also to a 2.6.24 dot-release.
>
> Frank, thank you for reporting this!
>
> Hans
>
> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Mauro,
I'll get this into -stable for 2.6.24.y and 2.6.25.y as soon as it's in Linus' tree. Please send this with your first round of patches for 2.6.26
Regards,
Mike
>
>> Signed-off-by: Alan Cox <alan@redhat.com>
>>
>> ---
>> linux.vanilla-2.6.25-rc8-mm2/drivers/media/video/ivtv/ivtv-ioctl.c 20
>> 08-04-13 15:36:53.000000000 +0100 +++
>> linux-2.6.25-rc8-mm2/drivers/media/video/ivtv/ivtv-ioctl.c 2008-04-20
>> 12:15:33.000000000 +0100 @@ -742,7 +742,8 @@
>>
>> memset(vcap, 0, sizeof(*vcap));
>> strcpy(vcap->driver, IVTV_DRIVER_NAME); /* driver name */
>> - strcpy(vcap->card, itv->card_name); /* card type */
>> + strncpy(vcap->card, itv->card_name,
>> + sizeof(vcap->card)-1); /* card type */
>> strcpy(vcap->bus_info, pci_name(itv->dev)); /* bus info... */
>> vcap->version = IVTV_DRIVER_VERSION; /* version */
>> vcap->capabilities = itv->v4l2_cap; /* capabilities */
>>
>> --
>> "Hello, welcome to Jon Masters' house of pain"
>> - Jon after a particularly good night
>>
>> --
>> video4linux-list mailing list
>> Unsubscribe
>> mailto:video4linux-list-request@redhat.com?subject=unsubscribe
>> https://www.redhat.com/mailman/listinfo/video4linux-list
>>
>
>
>
--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list
next prev parent reply other threads:[~2008-04-20 16:10 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-20 11:27 [PATCH] Fix VIDIOCGAP corruption in ivtv Alan Cox
2008-04-20 11:27 ` Alan Cox
2008-04-20 16:06 ` Hans Verkuil
2008-04-20 16:06 ` Hans Verkuil
2008-04-20 16:10 ` Michael Krufky [this message]
2008-04-20 16:10 ` Michael Krufky
2008-04-23 17:34 ` Mauro Carvalho Chehab
2008-04-23 17:34 ` Mauro Carvalho Chehab
2008-04-23 18:03 ` mkrufky
2008-04-23 18:03 ` mkrufky
2008-04-24 2:24 ` Mauro Carvalho Chehab
2008-04-24 2:24 ` Mauro Carvalho Chehab
2008-04-24 3:03 ` Michael Krufky
2008-04-24 3:03 ` Michael Krufky
2008-04-23 19:26 ` Frank Bennett
2008-04-24 15:47 ` Mauro Carvalho Chehab
2008-04-24 15:47 ` Mauro Carvalho Chehab
2008-04-24 16:00 ` Alan Cox
2008-04-24 16:00 ` Alan Cox
2008-04-24 16:19 ` Mauro Carvalho Chehab
2008-04-24 16:19 ` Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=480B6AD8.9090404@linuxtv.org \
--to=mkrufky@linuxtv.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=biercenator@gmail.com \
--cc=hverkuil@xs4all.nl \
--cc=ivtv-devel@ivtvdriver.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mchehab@infradead.org \
--cc=video4linux-list@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.