all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [SECURITY] Which packages bundle sqlite?
@ 2018-12-17 14:48 Alex Vong
  2018-12-17 16:46 ` Alex Vong
  0 siblings, 1 reply; 5+ messages in thread
From: Alex Vong @ 2018-12-17 14:48 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 371 bytes --]

Hello Guix,

Recently, a remote execution vulnerability is discovered in
sqlite[0][1]. Apart from updating the sqlite package, I think we need to
update all packages bundling sqlite as well. What do you think?

Cheers,
Alex

[0]: https://blade.tencent.com/magellan/index_en.html
[1]: https://www.reddit.com/r/netsec/comments/a6ab59/magellan_sqlite_remote_code_execution/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [SECURITY] Which packages bundle sqlite?
  2018-12-17 14:48 [SECURITY] Which packages bundle sqlite? Alex Vong
@ 2018-12-17 16:46 ` Alex Vong
  2018-12-17 19:04   ` bug#33751: " Mark H Weaver
  2018-12-17 19:04   ` Mark H Weaver
  0 siblings, 2 replies; 5+ messages in thread
From: Alex Vong @ 2018-12-17 16:46 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 677 bytes --]

I also want to know should we graft in this case since updating sqlite
would cause ~4000s rebuilts. Besides, how to deal with packages that
inherit sqlite when grafting?
(e.g. sqlite-with-fts5 and sqlite-with-column-metadata)

Thanks,
Alex

Alex Vong <alexvong1995@gmail.com> writes:

> Hello Guix,
>
> Recently, a remote execution vulnerability is discovered in
> sqlite[0][1]. Apart from updating the sqlite package, I think we need to
> update all packages bundling sqlite as well. What do you think?
>
> Cheers,
> Alex
>
> [0]: https://blade.tencent.com/magellan/index_en.html
> [1]:
> https://www.reddit.com/r/netsec/comments/a6ab59/magellan_sqlite_remote_code_execution/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#33751: [SECURITY] Which packages bundle sqlite?
  2018-12-17 16:46 ` Alex Vong
@ 2018-12-17 19:04   ` Mark H Weaver
  2018-12-17 19:04   ` Mark H Weaver
  1 sibling, 0 replies; 5+ messages in thread
From: Mark H Weaver @ 2018-12-17 19:04 UTC (permalink / raw)
  To: Alex Vong; +Cc: guix-devel, 33751

Hi Alex,

This issue is being tracked at <https://bugs.gnu.org/33751>,
so it would be best to send followups regarding this issue to
<33751@debbugs.gnu.org>.

Alex Vong <alexvong1995@gmail.com> writes:

> I also want to know should we graft in this case since updating sqlite
> would cause ~4000s rebuilts.

Yes, it should be grafted.

> Besides, how to deal with packages that
> inherit sqlite when grafting?
> (e.g. sqlite-with-fts5 and sqlite-with-column-metadata)

These should be changed to use the 'package/inherit' macro.

Thanks for working on it!

      Mark

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [SECURITY] Which packages bundle sqlite?
  2018-12-17 16:46 ` Alex Vong
  2018-12-17 19:04   ` bug#33751: " Mark H Weaver
@ 2018-12-17 19:04   ` Mark H Weaver
  2018-12-18  3:07     ` bug#33751: " Alex Vong
  1 sibling, 1 reply; 5+ messages in thread
From: Mark H Weaver @ 2018-12-17 19:04 UTC (permalink / raw)
  To: Alex Vong; +Cc: guix-devel, 33751

Hi Alex,

This issue is being tracked at <https://bugs.gnu.org/33751>,
so it would be best to send followups regarding this issue to
<33751@debbugs.gnu.org>.

Alex Vong <alexvong1995@gmail.com> writes:

> I also want to know should we graft in this case since updating sqlite
> would cause ~4000s rebuilts.

Yes, it should be grafted.

> Besides, how to deal with packages that
> inherit sqlite when grafting?
> (e.g. sqlite-with-fts5 and sqlite-with-column-metadata)

These should be changed to use the 'package/inherit' macro.

Thanks for working on it!

      Mark

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#33751: [SECURITY] Which packages bundle sqlite?
  2018-12-17 19:04   ` Mark H Weaver
@ 2018-12-18  3:07     ` Alex Vong
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Vong @ 2018-12-18  3:07 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 33751, alexvong1995

[-- Attachment #1: Type: text/plain, Size: 822 bytes --]

Hi Mark,

Mark H Weaver <mhw@netris.org> writes:

> Hi Alex,
>
> This issue is being tracked at <https://bugs.gnu.org/33751>,
> so it would be best to send followups regarding this issue to
> <33751@debbugs.gnu.org>.
>
Thanks for pointing me to the right place. I checked guix-patches but
not guix...

> Alex Vong <alexvong1995@gmail.com> writes:
>
>> I also want to know should we graft in this case since updating sqlite
>> would cause ~4000s rebuilts.
>
> Yes, it should be grafted.
>
>> Besides, how to deal with packages that
>> inherit sqlite when grafting?
>> (e.g. sqlite-with-fts5 and sqlite-with-column-metadata)
>
> These should be changed to use the 'package/inherit' macro.
>
I sent the patch to
<https://debbugs.gnu.org/cgi/bugreport.cgi?bug=33783>.

> Thanks for working on it!
>
>       Mark

Cheers,
Alex

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-12-18  3:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-17 14:48 [SECURITY] Which packages bundle sqlite? Alex Vong
2018-12-17 16:46 ` Alex Vong
2018-12-17 19:04   ` bug#33751: " Mark H Weaver
2018-12-17 19:04   ` Mark H Weaver
2018-12-18  3:07     ` bug#33751: " Alex Vong

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

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.