diff options
| author | Alexandre Oliva <lxoliva@fsfla.org> | 2017-06-13 16:47:49 +0000 |
|---|---|---|
| committer | Alexandre Oliva <lxoliva@fsfla.org> | 2017-06-13 16:47:49 +0000 |
| commit | 9d45559078a2f569a7963a40bfe1f8c5cc8d97ad (patch) | |
| tree | a4db78d5b3d20744723e3c5b855a885e64228486 /freed-ora/current | |
| parent | fb3f61b7db24062e8b988325086ae74507a1d429 (diff) | |
| download | linux-libre-raptor-9d45559078a2f569a7963a40bfe1f8c5cc8d97ad.tar.gz linux-libre-raptor-9d45559078a2f569a7963a40bfe1f8c5cc8d97ad.zip | |
4.11.4-100.fc24.gnu
Diffstat (limited to 'freed-ora/current')
11 files changed, 252 insertions, 550 deletions
diff --git a/freed-ora/current/f24/0001-dccp-tcp-do-not-inherit-mc_list-from-parent.patch b/freed-ora/current/f24/0001-dccp-tcp-do-not-inherit-mc_list-from-parent.patch deleted file mode 100644 index 677841397..000000000 --- a/freed-ora/current/f24/0001-dccp-tcp-do-not-inherit-mc_list-from-parent.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 657831ffc38e30092a2d5f03d385d710eb88b09a Mon Sep 17 00:00:00 2001 -From: Eric Dumazet <edumazet@google.com> -Date: Tue, 9 May 2017 06:29:19 -0700 -Subject: [PATCH] dccp/tcp: do not inherit mc_list from parent - -syzkaller found a way to trigger double frees from ip_mc_drop_socket() - -It turns out that leave a copy of parent mc_list at accept() time, -which is very bad. - -Very similar to commit 8b485ce69876 ("tcp: do not inherit -fastopen_req from parent") - -Initial report from Pray3r, completed by Andrey one. -Thanks a lot to them ! - -Signed-off-by: Eric Dumazet <edumazet@google.com> -Reported-by: Pray3r <pray3r.z@gmail.com> -Reported-by: Andrey Konovalov <andreyknvl@google.com> -Tested-by: Andrey Konovalov <andreyknvl@google.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - net/ipv4/inet_connection_sock.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c -index 5e313c1..1054d33 100644 ---- a/net/ipv4/inet_connection_sock.c -+++ b/net/ipv4/inet_connection_sock.c -@@ -794,6 +794,8 @@ struct sock *inet_csk_clone_lock(const struct sock *sk, - /* listeners have SOCK_RCU_FREE, not the children */ - sock_reset_flag(newsk, SOCK_RCU_FREE); - -+ inet_sk(newsk)->mc_list = NULL; -+ - newsk->sk_mark = inet_rsk(req)->ir_mark; - atomic64_set(&newsk->sk_cookie, - atomic64_read(&inet_rsk(req)->ir_cookie)); --- -2.9.4 - diff --git a/freed-ora/current/f24/0001-ipv6-Prevent-overrun-when-parsing-v6-header-options.patch b/freed-ora/current/f24/0001-ipv6-Prevent-overrun-when-parsing-v6-header-options.patch deleted file mode 100644 index b388a6910..000000000 --- a/freed-ora/current/f24/0001-ipv6-Prevent-overrun-when-parsing-v6-header-options.patch +++ /dev/null @@ -1,231 +0,0 @@ -From 2423496af35d94a87156b063ea5cedffc10a70a1 Mon Sep 17 00:00:00 2001 -From: Craig Gallek <kraig@google.com> -Date: Tue, 16 May 2017 14:36:23 -0400 -Subject: [PATCH] ipv6: Prevent overrun when parsing v6 header options - -The KASAN warning repoted below was discovered with a syzkaller -program. The reproducer is basically: - int s = socket(AF_INET6, SOCK_RAW, NEXTHDR_HOP); - send(s, &one_byte_of_data, 1, MSG_MORE); - send(s, &more_than_mtu_bytes_data, 2000, 0); - -The socket() call sets the nexthdr field of the v6 header to -NEXTHDR_HOP, the first send call primes the payload with a non zero -byte of data, and the second send call triggers the fragmentation path. - -The fragmentation code tries to parse the header options in order -to figure out where to insert the fragment option. Since nexthdr points -to an invalid option, the calculation of the size of the network header -can made to be much larger than the linear section of the skb and data -is read outside of it. - -This fix makes ip6_find_1stfrag return an error if it detects -running out-of-bounds. - -[ 42.361487] ================================================================== -[ 42.364412] BUG: KASAN: slab-out-of-bounds in ip6_fragment+0x11c8/0x3730 -[ 42.365471] Read of size 840 at addr ffff88000969e798 by task ip6_fragment-oo/3789 -[ 42.366469] -[ 42.366696] CPU: 1 PID: 3789 Comm: ip6_fragment-oo Not tainted 4.11.0+ #41 -[ 42.367628] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.1-1ubuntu1 04/01/2014 -[ 42.368824] Call Trace: -[ 42.369183] dump_stack+0xb3/0x10b -[ 42.369664] print_address_description+0x73/0x290 -[ 42.370325] kasan_report+0x252/0x370 -[ 42.370839] ? ip6_fragment+0x11c8/0x3730 -[ 42.371396] check_memory_region+0x13c/0x1a0 -[ 42.371978] memcpy+0x23/0x50 -[ 42.372395] ip6_fragment+0x11c8/0x3730 -[ 42.372920] ? nf_ct_expect_unregister_notifier+0x110/0x110 -[ 42.373681] ? ip6_copy_metadata+0x7f0/0x7f0 -[ 42.374263] ? ip6_forward+0x2e30/0x2e30 -[ 42.374803] ip6_finish_output+0x584/0x990 -[ 42.375350] ip6_output+0x1b7/0x690 -[ 42.375836] ? ip6_finish_output+0x990/0x990 -[ 42.376411] ? ip6_fragment+0x3730/0x3730 -[ 42.376968] ip6_local_out+0x95/0x160 -[ 42.377471] ip6_send_skb+0xa1/0x330 -[ 42.377969] ip6_push_pending_frames+0xb3/0xe0 -[ 42.378589] rawv6_sendmsg+0x2051/0x2db0 -[ 42.379129] ? rawv6_bind+0x8b0/0x8b0 -[ 42.379633] ? _copy_from_user+0x84/0xe0 -[ 42.380193] ? debug_check_no_locks_freed+0x290/0x290 -[ 42.380878] ? ___sys_sendmsg+0x162/0x930 -[ 42.381427] ? rcu_read_lock_sched_held+0xa3/0x120 -[ 42.382074] ? sock_has_perm+0x1f6/0x290 -[ 42.382614] ? ___sys_sendmsg+0x167/0x930 -[ 42.383173] ? lock_downgrade+0x660/0x660 -[ 42.383727] inet_sendmsg+0x123/0x500 -[ 42.384226] ? inet_sendmsg+0x123/0x500 -[ 42.384748] ? inet_recvmsg+0x540/0x540 -[ 42.385263] sock_sendmsg+0xca/0x110 -[ 42.385758] SYSC_sendto+0x217/0x380 -[ 42.386249] ? SYSC_connect+0x310/0x310 -[ 42.386783] ? __might_fault+0x110/0x1d0 -[ 42.387324] ? lock_downgrade+0x660/0x660 -[ 42.387880] ? __fget_light+0xa1/0x1f0 -[ 42.388403] ? __fdget+0x18/0x20 -[ 42.388851] ? sock_common_setsockopt+0x95/0xd0 -[ 42.389472] ? SyS_setsockopt+0x17f/0x260 -[ 42.390021] ? entry_SYSCALL_64_fastpath+0x5/0xbe -[ 42.390650] SyS_sendto+0x40/0x50 -[ 42.391103] entry_SYSCALL_64_fastpath+0x1f/0xbe -[ 42.391731] RIP: 0033:0x7fbbb711e383 -[ 42.392217] RSP: 002b:00007ffff4d34f28 EFLAGS: 00000246 ORIG_RAX: 000000000000002c -[ 42.393235] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fbbb711e383 -[ 42.394195] RDX: 0000000000001000 RSI: 00007ffff4d34f60 RDI: 0000000000000003 -[ 42.395145] RBP: 0000000000000046 R08: 00007ffff4d34f40 R09: 0000000000000018 -[ 42.396056] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000400aad -[ 42.396598] R13: 0000000000000066 R14: 00007ffff4d34ee0 R15: 00007fbbb717af00 -[ 42.397257] -[ 42.397411] Allocated by task 3789: -[ 42.397702] save_stack_trace+0x16/0x20 -[ 42.398005] save_stack+0x46/0xd0 -[ 42.398267] kasan_kmalloc+0xad/0xe0 -[ 42.398548] kasan_slab_alloc+0x12/0x20 -[ 42.398848] __kmalloc_node_track_caller+0xcb/0x380 -[ 42.399224] __kmalloc_reserve.isra.32+0x41/0xe0 -[ 42.399654] __alloc_skb+0xf8/0x580 -[ 42.400003] sock_wmalloc+0xab/0xf0 -[ 42.400346] __ip6_append_data.isra.41+0x2472/0x33d0 -[ 42.400813] ip6_append_data+0x1a8/0x2f0 -[ 42.401122] rawv6_sendmsg+0x11ee/0x2db0 -[ 42.401505] inet_sendmsg+0x123/0x500 -[ 42.401860] sock_sendmsg+0xca/0x110 -[ 42.402209] ___sys_sendmsg+0x7cb/0x930 -[ 42.402582] __sys_sendmsg+0xd9/0x190 -[ 42.402941] SyS_sendmsg+0x2d/0x50 -[ 42.403273] entry_SYSCALL_64_fastpath+0x1f/0xbe -[ 42.403718] -[ 42.403871] Freed by task 1794: -[ 42.404146] save_stack_trace+0x16/0x20 -[ 42.404515] save_stack+0x46/0xd0 -[ 42.404827] kasan_slab_free+0x72/0xc0 -[ 42.405167] kfree+0xe8/0x2b0 -[ 42.405462] skb_free_head+0x74/0xb0 -[ 42.405806] skb_release_data+0x30e/0x3a0 -[ 42.406198] skb_release_all+0x4a/0x60 -[ 42.406563] consume_skb+0x113/0x2e0 -[ 42.406910] skb_free_datagram+0x1a/0xe0 -[ 42.407288] netlink_recvmsg+0x60d/0xe40 -[ 42.407667] sock_recvmsg+0xd7/0x110 -[ 42.408022] ___sys_recvmsg+0x25c/0x580 -[ 42.408395] __sys_recvmsg+0xd6/0x190 -[ 42.408753] SyS_recvmsg+0x2d/0x50 -[ 42.409086] entry_SYSCALL_64_fastpath+0x1f/0xbe -[ 42.409513] -[ 42.409665] The buggy address belongs to the object at ffff88000969e780 -[ 42.409665] which belongs to the cache kmalloc-512 of size 512 -[ 42.410846] The buggy address is located 24 bytes inside of -[ 42.410846] 512-byte region [ffff88000969e780, ffff88000969e980) -[ 42.411941] The buggy address belongs to the page: -[ 42.412405] page:ffffea000025a780 count:1 mapcount:0 mapping: (null) index:0x0 compound_mapcount: 0 -[ 42.413298] flags: 0x100000000008100(slab|head) -[ 42.413729] raw: 0100000000008100 0000000000000000 0000000000000000 00000001800c000c -[ 42.414387] raw: ffffea00002a9500 0000000900000007 ffff88000c401280 0000000000000000 -[ 42.415074] page dumped because: kasan: bad access detected -[ 42.415604] -[ 42.415757] Memory state around the buggy address: -[ 42.416222] ffff88000969e880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -[ 42.416904] ffff88000969e900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -[ 42.417591] >ffff88000969e980: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc -[ 42.418273] ^ -[ 42.418588] ffff88000969ea00: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb -[ 42.419273] ffff88000969ea80: fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb -[ 42.419882] ================================================================== - -Reported-by: Andrey Konovalov <andreyknvl@google.com> -Signed-off-by: Craig Gallek <kraig@google.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - net/ipv6/ip6_offload.c | 2 ++ - net/ipv6/ip6_output.c | 4 ++++ - net/ipv6/output_core.c | 14 ++++++++------ - net/ipv6/udp_offload.c | 2 ++ - 4 files changed, 16 insertions(+), 6 deletions(-) - -diff --git a/net/ipv6/ip6_offload.c b/net/ipv6/ip6_offload.c -index 93e58a5..eab36ab 100644 ---- a/net/ipv6/ip6_offload.c -+++ b/net/ipv6/ip6_offload.c -@@ -117,6 +117,8 @@ static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, - - if (udpfrag) { - unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr); -+ if (unfrag_ip6hlen < 0) -+ return ERR_PTR(unfrag_ip6hlen); - fptr = (struct frag_hdr *)((u8 *)ipv6h + unfrag_ip6hlen); - fptr->frag_off = htons(offset); - if (skb->next) -diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c -index 58f6288..01deecd 100644 ---- a/net/ipv6/ip6_output.c -+++ b/net/ipv6/ip6_output.c -@@ -598,6 +598,10 @@ int ip6_fragment(struct net *net, struct sock *sk, struct sk_buff *skb, - u8 *prevhdr, nexthdr = 0; - - hlen = ip6_find_1stfragopt(skb, &prevhdr); -+ if (hlen < 0) { -+ err = hlen; -+ goto fail; -+ } - nexthdr = *prevhdr; - - mtu = ip6_skb_dst_mtu(skb); -diff --git a/net/ipv6/output_core.c b/net/ipv6/output_core.c -index cd42523..e9065b8 100644 ---- a/net/ipv6/output_core.c -+++ b/net/ipv6/output_core.c -@@ -79,14 +79,13 @@ EXPORT_SYMBOL(ipv6_select_ident); - int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) - { - u16 offset = sizeof(struct ipv6hdr); -- struct ipv6_opt_hdr *exthdr = -- (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1); - unsigned int packet_len = skb_tail_pointer(skb) - - skb_network_header(skb); - int found_rhdr = 0; - *nexthdr = &ipv6_hdr(skb)->nexthdr; - -- while (offset + 1 <= packet_len) { -+ while (offset <= packet_len) { -+ struct ipv6_opt_hdr *exthdr; - - switch (**nexthdr) { - -@@ -107,13 +106,16 @@ int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr) - return offset; - } - -- offset += ipv6_optlen(exthdr); -- *nexthdr = &exthdr->nexthdr; -+ if (offset + sizeof(struct ipv6_opt_hdr) > packet_len) -+ return -EINVAL; -+ - exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + - offset); -+ offset += ipv6_optlen(exthdr); -+ *nexthdr = &exthdr->nexthdr; - } - -- return offset; -+ return -EINVAL; - } - EXPORT_SYMBOL(ip6_find_1stfragopt); - -diff --git a/net/ipv6/udp_offload.c b/net/ipv6/udp_offload.c -index ac858c4..b348cff 100644 ---- a/net/ipv6/udp_offload.c -+++ b/net/ipv6/udp_offload.c -@@ -91,6 +91,8 @@ static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, - * bytes to insert fragment header. - */ - unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr); -+ if (unfrag_ip6hlen < 0) -+ return ERR_PTR(unfrag_ip6hlen); - nexthdr = *prevhdr; - *prevhdr = NEXTHDR_FRAGMENT; - unfrag_len = (skb_network_header(skb) - skb_mac_header(skb)) + --- -2.9.4 - diff --git a/freed-ora/current/f24/0001-ipv6-dccp-do-not-inherit-ipv6_mc_list-from-parent.patch b/freed-ora/current/f24/0001-ipv6-dccp-do-not-inherit-ipv6_mc_list-from-parent.patch deleted file mode 100644 index e0492c870..000000000 --- a/freed-ora/current/f24/0001-ipv6-dccp-do-not-inherit-ipv6_mc_list-from-parent.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 83eaddab4378db256d00d295bda6ca997cd13a52 Mon Sep 17 00:00:00 2001 -From: WANG Cong <xiyou.wangcong@gmail.com> -Date: Tue, 9 May 2017 16:59:54 -0700 -Subject: [PATCH] ipv6/dccp: do not inherit ipv6_mc_list from parent - -Like commit 657831ffc38e ("dccp/tcp: do not inherit mc_list from parent") -we should clear ipv6_mc_list etc. for IPv6 sockets too. - -Cc: Eric Dumazet <edumazet@google.com> -Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com> -Acked-by: Eric Dumazet <edumazet@google.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - net/dccp/ipv6.c | 6 ++++++ - net/ipv6/tcp_ipv6.c | 2 ++ - 2 files changed, 8 insertions(+) - -diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c -index d9b6a4e..b6bbb71 100644 ---- a/net/dccp/ipv6.c -+++ b/net/dccp/ipv6.c -@@ -426,6 +426,9 @@ static struct sock *dccp_v6_request_recv_sock(const struct sock *sk, - newsk->sk_backlog_rcv = dccp_v4_do_rcv; - newnp->pktoptions = NULL; - newnp->opt = NULL; -+ newnp->ipv6_mc_list = NULL; -+ newnp->ipv6_ac_list = NULL; -+ newnp->ipv6_fl_list = NULL; - newnp->mcast_oif = inet6_iif(skb); - newnp->mcast_hops = ipv6_hdr(skb)->hop_limit; - -@@ -490,6 +493,9 @@ static struct sock *dccp_v6_request_recv_sock(const struct sock *sk, - /* Clone RX bits */ - newnp->rxopt.all = np->rxopt.all; - -+ newnp->ipv6_mc_list = NULL; -+ newnp->ipv6_ac_list = NULL; -+ newnp->ipv6_fl_list = NULL; - newnp->pktoptions = NULL; - newnp->opt = NULL; - newnp->mcast_oif = inet6_iif(skb); -diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c -index aeb9497..df5a9ff 100644 ---- a/net/ipv6/tcp_ipv6.c -+++ b/net/ipv6/tcp_ipv6.c -@@ -1062,6 +1062,7 @@ static struct sock *tcp_v6_syn_recv_sock(const struct sock *sk, struct sk_buff * - newtp->af_specific = &tcp_sock_ipv6_mapped_specific; - #endif - -+ newnp->ipv6_mc_list = NULL; - newnp->ipv6_ac_list = NULL; - newnp->ipv6_fl_list = NULL; - newnp->pktoptions = NULL; -@@ -1131,6 +1132,7 @@ static struct sock *tcp_v6_syn_recv_sock(const struct sock *sk, struct sk_buff * - First: no IPv4 options. - */ - newinet->inet_opt = NULL; -+ newnp->ipv6_mc_list = NULL; - newnp->ipv6_ac_list = NULL; - newnp->ipv6_fl_list = NULL; - --- -2.9.4 - diff --git a/freed-ora/current/f24/0001-platform-x86-thinkpad_acpi-guard-generic-hotkey-case.patch b/freed-ora/current/f24/0001-platform-x86-thinkpad_acpi-guard-generic-hotkey-case.patch new file mode 100644 index 000000000..847c70ce8 --- /dev/null +++ b/freed-ora/current/f24/0001-platform-x86-thinkpad_acpi-guard-generic-hotkey-case.patch @@ -0,0 +1,71 @@ +From 6bb84c0f9da1144e0d443798a76d5769b7d554af Mon Sep 17 00:00:00 2001 +From: Christian Kellner <christian@kellner.me> +Date: Tue, 28 Feb 2017 17:10:56 +0100 +Subject: [PATCH 1/2] platform/x86: thinkpad_acpi: guard generic hotkey case + +Currently when dispatching hotkeys we check if the scancode is in +the range of 0 and TPACPI_HOTKEY_MAP_LEN, although the bottom 20 +entries in the hotkey keymap are already adaptive keycodes. +Therefore we introduce a TP_ACPI_HOTKEYSCAN_ADAPTIVE_START and +ensure that we are in the range 0 and ADAPTIVE_START for the generic +keycode case. + +Signed-off-by: Christian Kellner <ckellner@redhat.com> +Reviewed-by: Hans de Goede <hdegoede@redhat.com> +Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> +Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> +--- + drivers/platform/x86/thinkpad_acpi.c | 12 +++++++----- + 1 file changed, 7 insertions(+), 5 deletions(-) + +diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c +index 1d18b32..e2b962f 100644 +--- a/drivers/platform/x86/thinkpad_acpi.c ++++ b/drivers/platform/x86/thinkpad_acpi.c +@@ -1922,7 +1922,9 @@ enum { /* hot key scan codes (derived from ACPI DSDT) */ + TP_ACPI_HOTKEYSCAN_UNK7, + TP_ACPI_HOTKEYSCAN_UNK8, + +- TP_ACPI_HOTKEYSCAN_MUTE2, ++ /* Adaptive keyboard keycodes */ ++ TP_ACPI_HOTKEYSCAN_ADAPTIVE_START, ++ TP_ACPI_HOTKEYSCAN_MUTE2 = TP_ACPI_HOTKEYSCAN_ADAPTIVE_START, + TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO, + TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL, + TP_ACPI_HOTKEYSCAN_CLOUD, +@@ -3656,7 +3658,6 @@ static const int adaptive_keyboard_modes[] = { + #define DFR_CHANGE_ROW 0x101 + #define DFR_SHOW_QUICKVIEW_ROW 0x102 + #define FIRST_ADAPTIVE_KEY 0x103 +-#define ADAPTIVE_KEY_OFFSET 0x020 + + /* press Fn key a while second, it will switch to Function Mode. Then + * release Fn key, previous mode be restored. +@@ -3747,12 +3748,13 @@ static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode) + default: + if (scancode < FIRST_ADAPTIVE_KEY || + scancode >= FIRST_ADAPTIVE_KEY + TPACPI_HOTKEY_MAP_LEN - +- ADAPTIVE_KEY_OFFSET) { ++ TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { + pr_info("Unhandled adaptive keyboard key: 0x%x\n", + scancode); + return false; + } +- keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY + ADAPTIVE_KEY_OFFSET]; ++ keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY + ++ TP_ACPI_HOTKEYSCAN_ADAPTIVE_START]; + if (keycode != KEY_RESERVED) { + mutex_lock(&tpacpi_inputdev_send_mutex); + +@@ -3778,7 +3780,7 @@ static bool hotkey_notify_hotkey(const u32 hkey, + *ignore_acpi_ev = false; + + /* HKEY event 0x1001 is scancode 0x00 */ +- if (scancode > 0 && scancode <= TPACPI_HOTKEY_MAP_LEN) { ++ if (scancode > 0 && scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { + scancode--; + if (!(hotkey_source_mask & (1 << scancode))) { + tpacpi_input_send_key_masked(scancode); +-- +2.9.4 + diff --git a/freed-ora/current/f24/0001-sctp-do-not-inherit-ipv6_-mc-ac-fl-_list-from-parent.patch b/freed-ora/current/f24/0001-sctp-do-not-inherit-ipv6_-mc-ac-fl-_list-from-parent.patch deleted file mode 100644 index 8c4339f64..000000000 --- a/freed-ora/current/f24/0001-sctp-do-not-inherit-ipv6_-mc-ac-fl-_list-from-parent.patch +++ /dev/null @@ -1,33 +0,0 @@ -From fdcee2cbb8438702ea1b328fb6e0ac5e9a40c7f8 Mon Sep 17 00:00:00 2001 -From: Eric Dumazet <edumazet@google.com> -Date: Wed, 17 May 2017 07:16:40 -0700 -Subject: [PATCH] sctp: do not inherit ipv6_{mc|ac|fl}_list from parent - -SCTP needs fixes similar to 83eaddab4378 ("ipv6/dccp: do not inherit -ipv6_mc_list from parent"), otherwise bad things can happen. - -Signed-off-by: Eric Dumazet <edumazet@google.com> -Reported-by: Andrey Konovalov <andreyknvl@google.com> -Tested-by: Andrey Konovalov <andreyknvl@google.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - net/sctp/ipv6.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c -index 142b70e..f5b45b8 100644 ---- a/net/sctp/ipv6.c -+++ b/net/sctp/ipv6.c -@@ -677,6 +677,9 @@ static struct sock *sctp_v6_create_accept_sk(struct sock *sk, - newnp = inet6_sk(newsk); - - memcpy(newnp, np, sizeof(struct ipv6_pinfo)); -+ newnp->ipv6_mc_list = NULL; -+ newnp->ipv6_ac_list = NULL; -+ newnp->ipv6_fl_list = NULL; - - rcu_read_lock(); - opt = rcu_dereference(np->opt); --- -2.9.4 - diff --git a/freed-ora/current/f24/0002-platform-x86-thinkpad_acpi-add-mapping-for-new-hotke.patch b/freed-ora/current/f24/0002-platform-x86-thinkpad_acpi-add-mapping-for-new-hotke.patch new file mode 100644 index 000000000..2c9bcbbeb --- /dev/null +++ b/freed-ora/current/f24/0002-platform-x86-thinkpad_acpi-add-mapping-for-new-hotke.patch @@ -0,0 +1,158 @@ +From 82e71b57b1b4347126b1ffd7b2beed2bc8b795bd Mon Sep 17 00:00:00 2001 +From: Christian Kellner <christian@kellner.me> +Date: Tue, 28 Feb 2017 17:10:57 +0100 +Subject: [PATCH 2/2] platform/x86: thinkpad_acpi: add mapping for new hotkeys + +The T470, X270 emits new hkey events in the 0x1311 - 0x1315 range. +According to the user manual they should launch a user selected +favorite application (star icon, 0x1311), snipping tool (0x1312, +currently ignored), enable/disable bluetooth (0x1314) and open they +keyboard settings (0x1315). + +The third nibble (0xf00) is used to differentiate between the original +hotkeys, the adaptive keyboard codes and the new, additional ones. + +Signed-off-by: Christian Kellner <ckellner@redhat.com> +Reviewed-by: Hans de Goede <hdegoede@redhat.com> +Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> +Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> +--- + drivers/platform/x86/thinkpad_acpi.c | 91 +++++++++++++++++++++++++++++++----- + 1 file changed, 79 insertions(+), 12 deletions(-) + +diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c +index e2b962f..7b6cb0c 100644 +--- a/drivers/platform/x86/thinkpad_acpi.c ++++ b/drivers/platform/x86/thinkpad_acpi.c +@@ -1945,6 +1945,15 @@ enum { /* hot key scan codes (derived from ACPI DSDT) */ + TP_ACPI_HOTKEYSCAN_CAMERA_MODE, + TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY, + ++ /* Lenovo extended keymap, starting at 0x1300 */ ++ TP_ACPI_HOTKEYSCAN_EXTENDED_START, ++ /* first new observed key (star, favorites) is 0x1311 */ ++ TP_ACPI_HOTKEYSCAN_STAR = 69, ++ TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2, ++ TP_ACPI_HOTKEYSCAN_UNK25, ++ TP_ACPI_HOTKEYSCAN_BLUETOOTH, ++ TP_ACPI_HOTKEYSCAN_KEYBOARD, ++ + /* Hotkey keymap size */ + TPACPI_HOTKEY_MAP_LEN + }; +@@ -3252,6 +3261,15 @@ static int __init hotkey_init(struct ibm_init_struct *iibm) + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, + KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ ++ /* No assignment, used for newer Lenovo models */ ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN ++ + }, + + /* Generic keymap for Lenovo ThinkPads */ +@@ -3337,6 +3355,29 @@ static int __init hotkey_init(struct ibm_init_struct *iibm) + KEY_RESERVED, /* Microphone cancellation */ + KEY_RESERVED, /* Camera mode */ + KEY_RESERVED, /* Rotate display, 0x116 */ ++ ++ /* ++ * These are found in 2017 models (e.g. T470s, X270). ++ * The lowest known value is 0x311, which according to ++ * the manual should launch a user defined favorite ++ * application. ++ * ++ * The offset for these is TP_ACPI_HOTKEYSCAN_EXTENDED_START, ++ * corresponding to 0x34. ++ */ ++ ++ /* (assignments unknown, please report if found) */ ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, ++ KEY_UNKNOWN, ++ ++ KEY_FAVORITES, /* Favorite app, 0x311 */ ++ KEY_RESERVED, /* Clipping tool */ ++ KEY_RESERVED, ++ KEY_BLUETOOTH, /* Bluetooth */ ++ KEY_KEYBOARD /* Keyboard, 0x315 */ + }, + }; + +@@ -3747,8 +3788,9 @@ static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode) + + default: + if (scancode < FIRST_ADAPTIVE_KEY || +- scancode >= FIRST_ADAPTIVE_KEY + TPACPI_HOTKEY_MAP_LEN - +- TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { ++ scancode >= FIRST_ADAPTIVE_KEY + ++ TP_ACPI_HOTKEYSCAN_EXTENDED_START - ++ TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { + pr_info("Unhandled adaptive keyboard key: 0x%x\n", + scancode); + return false; +@@ -3779,19 +3821,44 @@ static bool hotkey_notify_hotkey(const u32 hkey, + *send_acpi_ev = true; + *ignore_acpi_ev = false; + +- /* HKEY event 0x1001 is scancode 0x00 */ +- if (scancode > 0 && scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { +- scancode--; +- if (!(hotkey_source_mask & (1 << scancode))) { +- tpacpi_input_send_key_masked(scancode); +- *send_acpi_ev = false; +- } else { +- *ignore_acpi_ev = true; ++ /* ++ * Original events are in the 0x10XX range, the adaptive keyboard ++ * found in 2014 X1 Carbon emits events are of 0x11XX. In 2017 ++ * models, additional keys are emitted through 0x13XX. ++ */ ++ switch ((hkey >> 8) & 0xf) { ++ case 0: ++ if (scancode > 0 && ++ scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) { ++ /* HKEY event 0x1001 is scancode 0x00 */ ++ scancode--; ++ if (!(hotkey_source_mask & (1 << scancode))) { ++ tpacpi_input_send_key_masked(scancode); ++ *send_acpi_ev = false; ++ } else { ++ *ignore_acpi_ev = true; ++ } ++ return true; + } +- return true; +- } else { ++ break; ++ ++ case 1: + return adaptive_keyboard_hotkey_notify_hotkey(scancode); ++ ++ case 3: ++ /* Extended keycodes start at 0x300 and our offset into the map ++ * TP_ACPI_HOTKEYSCAN_EXTENDED_START. The calculated scancode ++ * will be positive, but might not be in the correct range. ++ */ ++ scancode -= (0x300 - TP_ACPI_HOTKEYSCAN_EXTENDED_START); ++ if (scancode >= TP_ACPI_HOTKEYSCAN_EXTENDED_START && ++ scancode < TPACPI_HOTKEY_MAP_LEN) { ++ tpacpi_input_send_key(scancode); ++ return true; ++ } ++ break; + } ++ + return false; + } + +-- +2.9.4 + diff --git a/freed-ora/current/f24/kernel.spec b/freed-ora/current/f24/kernel.spec index 65810f241..63589103b 100644 --- a/freed-ora/current/f24/kernel.spec +++ b/freed-ora/current/f24/kernel.spec @@ -42,7 +42,7 @@ Summary: The Linux kernel # For non-released -rc kernels, this will be appended after the rcX and # gitX tags, so a 3 here would become part of release "0.rcX.gitX.3" # -%global baserelease 101 +%global baserelease 100 %global fedora_build %{baserelease} # base_sublevel is the kernel version we're starting with and patching @@ -92,7 +92,7 @@ Summary: The Linux kernel %if 0%{?released_kernel} # Do we have a -stable update to apply? -%define stable_update 3 +%define stable_update 4 # Set rpm version accordingly %if 0%{?stable_update} %define stablerev %{stable_update} @@ -669,31 +669,20 @@ Patch864: dell-laptop-Adds-support-for-keyboard-backlight-timeout-AC-settings.pa Patch866: 0001-SUNRPC-Refactor-svc_set_num_threads.patch Patch867: 0002-NFSv4-Fix-callback-server-shutdown.patch -#CVE-2017-8890 rhbz 1450972 -Patch868: 0001-dccp-tcp-do-not-inherit-mc_list-from-parent.patch - -#CVE-2017-9074 rhbz 1452679 -Patch869: 0001-ipv6-Prevent-overrun-when-parsing-v6-header-options.patch - -#CVE-2017-9075 rhbz 1452691 -Patch870: 0001-sctp-do-not-inherit-ipv6_-mc-ac-fl-_list-from-parent.patch - -#CVE-2017-9076 CVE-2017-9077 rhbz 1452688 1452744 -Patch871: 0001-ipv6-dccp-do-not-inherit-ipv6_mc_list-from-parent.patch - #Fix broadwell issues Patch675: drm-i915-Do-not-drop-pagetables-when-empty.patch # rhbz 1455780 Patch676: 2-2-nvme-Quirk-APST-on-Intel-600P-P3100-devices.patch -# Networking fix reported on bodhi -Patch678: net-v2-ip6_tunnel-ip6_gre-fix-setting-of-DSCP-on-encapsulated-packets.patch - # rhbz 1458222 1458499 # As linked from http://marc.info/?l=linux-netdev&m=149336766030175&w=2 Patch679: actual_udpencap_fix.patch +# rhbz 1459272 +Patch680: 0001-platform-x86-thinkpad_acpi-guard-generic-hotkey-case.patch +Patch681: 0002-platform-x86-thinkpad_acpi-add-mapping-for-new-hotke.patch + # END OF PATCH DEFINITIONS %endif @@ -2354,6 +2343,15 @@ fi # # %changelog +* Sat Jun 10 2017 Alexandre Oliva <lxoliva@fsfla.org> -libre +- GNU Linux-libre 4.11.4-gnu. + +* Wed Jun 07 2017 Laura Abbott <labbott@fedoraproject.org> - 4.11.4-200 +- Linux v4.11.4 + +* Tue Jun 06 2017 Laura Abbott <labbott@redhat.com> +- Backport hotkey event support for 2017 thinkpad models (rhbz 1459272) + * Mon Jun 05 2017 Laura Abbott <labbott@fedoraproject.org> - 4.11.3-101 - Bump and build once again diff --git a/freed-ora/current/f24/net-v2-ip6_tunnel-ip6_gre-fix-setting-of-DSCP-on-encapsulated-packets.patch b/freed-ora/current/f24/net-v2-ip6_tunnel-ip6_gre-fix-setting-of-DSCP-on-encapsulated-packets.patch deleted file mode 100644 index ce6ff6cb6..000000000 --- a/freed-ora/current/f24/net-v2-ip6_tunnel-ip6_gre-fix-setting-of-DSCP-on-encapsulated-packets.patch +++ /dev/null @@ -1,156 +0,0 @@ -From 479c281e52ae159f09bb7467c1ef47e3d77ef23a Mon Sep 17 00:00:00 2001 -From: Peter Dawson <petedaws@gmail.com> -Date: Fri, 26 May 2017 06:35:18 +1000 -Subject: [PATCH] ip6_tunnel, ip6_gre: fix setting of DSCP on encapsulated - packets - -This fix addresses two problems in the way the DSCP field is formulated - on the encapsulating header of IPv6 tunnels. -Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=195661 - -1) The IPv6 tunneling code was manipulating the DSCP field of the - encapsulating packet using the 32b flowlabel. Since the flowlabel is - only the lower 20b it was incorrect to assume that the upper 12b - containing the DSCP and ECN fields would remain intact when formulating - the encapsulating header. This fix handles the 'inherit' and - 'fixed-value' DSCP cases explicitly using the extant dsfield u8 variable. - -2) The use of INET_ECN_encapsulate(0, dsfield) in ip6_tnl_xmit was - incorrect and resulted in the DSCP value always being set to 0. - -Commit 90427ef5d2a4 ("ipv6: fix flow labels when the traffic class - is non-0") caused the regression by masking out the flowlabel - which exposed the incorrect handling of the DSCP portion of the - flowlabel in ip6_tunnel and ip6_gre. - -Fixes: 90427ef5d2a4 ("ipv6: fix flow labels when the traffic class is non-0") -Signed-off-by: Peter Dawson <peter.a.dawson@boeing.com> ---- - net/ipv6/ip6_gre.c | 13 +++++++------ - net/ipv6/ip6_tunnel.c | 21 +++++++++++++-------- - 2 files changed, 20 insertions(+), 14 deletions(-) - -diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c -index 6fcb7cb..4d60164 100644 ---- a/net/ipv6/ip6_gre.c -+++ b/net/ipv6/ip6_gre.c -@@ -537,11 +537,10 @@ static inline int ip6gre_xmit_ipv4(struct sk_buff *skb, struct net_device *dev) - - memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6)); - -- dsfield = ipv4_get_dsfield(iph); -- - if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) -- fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT) -- & IPV6_TCLASS_MASK; -+ dsfield = ipv4_get_dsfield(iph); -+ else -+ dsfield = ip6_tclass(t->parms.flowinfo); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) - fl6.flowi6_mark = skb->mark; - -@@ -596,9 +595,11 @@ static inline int ip6gre_xmit_ipv6(struct sk_buff *skb, struct net_device *dev) - - memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6)); - -- dsfield = ipv6_get_dsfield(ipv6h); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) -- fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK); -+ dsfield = ipv6_get_dsfield(ipv6h); -+ else -+ dsfield = ip6_tclass(t->parms.flowinfo); -+ - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) - fl6.flowlabel |= ip6_flowlabel(ipv6h); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) -diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c -index a9692ec..15ff339 100644 ---- a/net/ipv6/ip6_tunnel.c -+++ b/net/ipv6/ip6_tunnel.c -@@ -1196,7 +1196,7 @@ int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield, - skb_push(skb, sizeof(struct ipv6hdr)); - skb_reset_network_header(skb); - ipv6h = ipv6_hdr(skb); -- ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), -+ ip6_flow_hdr(ipv6h, dsfield, - ip6_make_flowlabel(net, skb, fl6->flowlabel, true, fl6)); - ipv6h->hop_limit = hop_limit; - ipv6h->nexthdr = proto; -@@ -1231,8 +1231,6 @@ ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - if (tproto != IPPROTO_IPIP && tproto != 0) - return -1; - -- dsfield = ipv4_get_dsfield(iph); -- - if (t->parms.collect_md) { - struct ip_tunnel_info *tun_info; - const struct ip_tunnel_key *key; -@@ -1246,6 +1244,7 @@ ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - fl6.flowi6_proto = IPPROTO_IPIP; - fl6.daddr = key->u.ipv6.dst; - fl6.flowlabel = key->label; -+ dsfield = ip6_tclass(key->label); - } else { - if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) - encap_limit = t->parms.encap_limit; -@@ -1254,8 +1253,9 @@ ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - fl6.flowi6_proto = IPPROTO_IPIP; - - if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) -- fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT) -- & IPV6_TCLASS_MASK; -+ dsfield = ipv4_get_dsfield(iph); -+ else -+ dsfield = ip6_tclass(t->parms.flowinfo); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) - fl6.flowi6_mark = skb->mark; - } -@@ -1265,6 +1265,8 @@ ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6)) - return -1; - -+ dsfield = INET_ECN_encapsulate(dsfield, ipv4_get_dsfield(iph)); -+ - skb_set_inner_ipproto(skb, IPPROTO_IPIP); - - err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, -@@ -1298,8 +1300,6 @@ ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - ip6_tnl_addr_conflict(t, ipv6h)) - return -1; - -- dsfield = ipv6_get_dsfield(ipv6h); -- - if (t->parms.collect_md) { - struct ip_tunnel_info *tun_info; - const struct ip_tunnel_key *key; -@@ -1313,6 +1313,7 @@ ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - fl6.flowi6_proto = IPPROTO_IPV6; - fl6.daddr = key->u.ipv6.dst; - fl6.flowlabel = key->label; -+ dsfield = ip6_tclass(key->label); - } else { - offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb)); - /* ip6_tnl_parse_tlv_enc_lim() might have reallocated skb->head */ -@@ -1335,7 +1336,9 @@ ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - fl6.flowi6_proto = IPPROTO_IPV6; - - if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS) -- fl6.flowlabel |= (*(__be32 *)ipv6h & IPV6_TCLASS_MASK); -+ dsfield = ipv6_get_dsfield(ipv6h); -+ else -+ dsfield = ip6_tclass(t->parms.flowinfo); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL) - fl6.flowlabel |= ip6_flowlabel(ipv6h); - if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK) -@@ -1347,6 +1350,8 @@ ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev) - if (iptunnel_handle_offloads(skb, SKB_GSO_IPXIP6)) - return -1; - -+ dsfield = INET_ECN_encapsulate(dsfield, ipv6_get_dsfield(ipv6h)); -+ - skb_set_inner_ipproto(skb, IPPROTO_IPV6); - - err = ip6_tnl_xmit(skb, dev, dsfield, &fl6, encap_limit, &mtu, --- -2.7.5 - diff --git a/freed-ora/current/f24/patch-4.11-gnu-4.11.3-gnu.xz.sign b/freed-ora/current/f24/patch-4.11-gnu-4.11.3-gnu.xz.sign deleted file mode 100644 index 2fefbca5f..000000000 --- a/freed-ora/current/f24/patch-4.11-gnu-4.11.3-gnu.xz.sign +++ /dev/null @@ -1,7 +0,0 @@ ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2 - -iEYEABECAAYFAlkoPZcACgkQvLfPh359R6fUDQCgn7gwONAnuU3fFbX5gvAfo1OM -ZxAAoJqLK1uCrgiK5FCb4HbTl7wCTHcr -=8vYW ------END PGP SIGNATURE----- diff --git a/freed-ora/current/f24/patch-4.11-gnu-4.11.4-gnu.xz.sign b/freed-ora/current/f24/patch-4.11-gnu-4.11.4-gnu.xz.sign new file mode 100644 index 000000000..93398b94e --- /dev/null +++ b/freed-ora/current/f24/patch-4.11-gnu-4.11.4-gnu.xz.sign @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2 + +iEYEABECAAYFAlk5VlEACgkQvLfPh359R6dGQgCeIKW/lOp/PhEcWEPQuTjfgF6F +FkQAnj+Aek763UKgmZiErIanjaY6vqAo +=lhmg +-----END PGP SIGNATURE----- diff --git a/freed-ora/current/f24/sources b/freed-ora/current/f24/sources index bcc9ee683..92b2ee708 100644 --- a/freed-ora/current/f24/sources +++ b/freed-ora/current/f24/sources @@ -1,3 +1,3 @@ SHA512 (linux-libre-4.11-gnu.tar.xz) = f1d9138024b127385248de5c8eb72123b717bbbaba3e80bded20f073acac816a7ea979c4677ddc72252a8ec77c6a6c1d1738b1c20106f7d53ef39c9cf64c1853 SHA512 (perf-man-4.11.tar.gz) = 0b070d2f10a743329de2f532e2d7e19ef385a3e6ef3c700b591ae2697604dbe542b36e31121b3e37517ee8071ab800386fa8663c24a5b36520a18e096c6eefc8 -SHA512 (patch-4.11-gnu-4.11.3-gnu.xz) = 5110084b5579851aeae0f88a4c2e6f230926ca38dbdeab78de63c7bb4c8ac8efa40d8828baa79ca976873fc268bc560e9eebd9eff2d4d23fa3cbc66b23a4851a +SHA512 (patch-4.11-gnu-4.11.4-gnu.xz) = 40bbd6d18d362c5c51f138fe8772fd57c1a2232e6fbcadabd4f152217b45c05e3018e976686fdc982f59008a12addc9c57de91b1332df7c1b78a05aa3e9809fe |

