public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement
@ 2021-08-08 21:31 Peter Müller
  2021-08-09  9:06 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2021-08-08 21:31 UTC (permalink / raw)
  To: location

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

This one apparently went down the drain between these two patches:
- https://patchwork.ipfire.org/project/location/patch/20210522125758.28770-1-peter.mueller(a)ipfire.org/
- https://patchwork.ipfire.org/project/location/patch/aefd1904-4b38-f5cf-ab1d-9d69636cf914(a)ipfire.org/

Due to other safeguards, the current damage in production is limited to:

location=# SELECT * FROM networks WHERE country = 'ZZ';
      network       | country | original_countries | source
--------------------+---------+--------------------+--------
 130.195.64.0/19    | ZZ      | {ZZ}               | APNIC
 130.195.96.0/19    | ZZ      | {ZZ}               | APNIC
 122.252.24.0/21    | ZZ      | {ZZ}               | APNIC
 2406:840:10::/48   | ZZ      | {ZZ}               | APNIC
 2406:840:fd0f::/48 | ZZ      | {ZZ}               | APNIC
(5 rows)

Fixes: #12673

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/python/location-importer.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index bec0b62..da058d3 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -702,6 +702,7 @@ class CLI(object):
 				if validcountries and invalidcountries:
 					log.warning("Skipping network with bogus countr(y|ies) %s (original countries: %s): %s" % \
 						(invalidcountries, inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
+					break
 
 				# Everything is fine here, run INSERT statement...
 				self.db.execute("INSERT INTO _rirdata(network, country, original_countries, source) \
-- 
2.26.2

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

* Re: [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement
  2021-08-08 21:31 [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement Peter Müller
@ 2021-08-09  9:06 ` Michael Tremer
  2021-08-09 13:05   ` Peter Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2021-08-09  9:06 UTC (permalink / raw)
  To: location

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

Hello,

Are you sure you don’t want this to be “continue”?

> On 8 Aug 2021, at 23:31, Peter Müller <peter.mueller(a)ipfire.org> wrote:
> 
> This one apparently went down the drain between these two patches:
> - https://patchwork.ipfire.org/project/location/patch/20210522125758.28770-1-peter.mueller(a)ipfire.org/
> - https://patchwork.ipfire.org/project/location/patch/aefd1904-4b38-f5cf-ab1d-9d69636cf914(a)ipfire.org/
> 
> Due to other safeguards, the current damage in production is limited to:
> 
> location=# SELECT * FROM networks WHERE country = 'ZZ';
>      network       | country | original_countries | source
> --------------------+---------+--------------------+--------
> 130.195.64.0/19    | ZZ      | {ZZ}               | APNIC
> 130.195.96.0/19    | ZZ      | {ZZ}               | APNIC
> 122.252.24.0/21    | ZZ      | {ZZ}               | APNIC
> 2406:840:10::/48   | ZZ      | {ZZ}               | APNIC
> 2406:840:fd0f::/48 | ZZ      | {ZZ}               | APNIC
> (5 rows)
> 
> Fixes: #12673
> 
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> src/python/location-importer.in | 1 +
> 1 file changed, 1 insertion(+)
> 
> diff --git a/src/python/location-importer.in b/src/python/location-importer.in
> index bec0b62..da058d3 100644
> --- a/src/python/location-importer.in
> +++ b/src/python/location-importer.in
> @@ -702,6 +702,7 @@ class CLI(object):
> 				if validcountries and invalidcountries:
> 					log.warning("Skipping network with bogus countr(y|ies) %s (original countries: %s): %s" % \
> 						(invalidcountries, inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
> +					break
> 
> 				# Everything is fine here, run INSERT statement...
> 				self.db.execute("INSERT INTO _rirdata(network, country, original_countries, source) \
> -- 
> 2.26.2


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

* Re: [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement
  2021-08-09  9:06 ` Michael Tremer
@ 2021-08-09 13:05   ` Peter Müller
  2021-08-11 10:06     ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2021-08-09 13:05 UTC (permalink / raw)
  To: location

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

Hello Michael,

yes: All networks processed in this for-loop have the same country code set.
If one of them is found to have an invalid country code set, all the others of
this batch will do so as well - there is no need to check them individually.

Thanks, and best regards,
Peter Müller


> Hello,
> 
> Are you sure you don’t want this to be “continue”?
> 
>> On 8 Aug 2021, at 23:31, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>>
>> This one apparently went down the drain between these two patches:
>> - https://patchwork.ipfire.org/project/location/patch/20210522125758.28770-1-peter.mueller(a)ipfire.org/
>> - https://patchwork.ipfire.org/project/location/patch/aefd1904-4b38-f5cf-ab1d-9d69636cf914(a)ipfire.org/
>>
>> Due to other safeguards, the current damage in production is limited to:
>>
>> location=# SELECT * FROM networks WHERE country = 'ZZ';
>>      network       | country | original_countries | source
>> --------------------+---------+--------------------+--------
>> 130.195.64.0/19    | ZZ      | {ZZ}               | APNIC
>> 130.195.96.0/19    | ZZ      | {ZZ}               | APNIC
>> 122.252.24.0/21    | ZZ      | {ZZ}               | APNIC
>> 2406:840:10::/48   | ZZ      | {ZZ}               | APNIC
>> 2406:840:fd0f::/48 | ZZ      | {ZZ}               | APNIC
>> (5 rows)
>>
>> Fixes: #12673
>>
>> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
>> ---
>> src/python/location-importer.in | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/src/python/location-importer.in b/src/python/location-importer.in
>> index bec0b62..da058d3 100644
>> --- a/src/python/location-importer.in
>> +++ b/src/python/location-importer.in
>> @@ -702,6 +702,7 @@ class CLI(object):
>> 				if validcountries and invalidcountries:
>> 					log.warning("Skipping network with bogus countr(y|ies) %s (original countries: %s): %s" % \
>> 						(invalidcountries, inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
>> +					break
>>
>> 				# Everything is fine here, run INSERT statement...
>> 				self.db.execute("INSERT INTO _rirdata(network, country, original_countries, source) \
>> -- 
>> 2.26.2
> 

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

* Re: [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement
  2021-08-09 13:05   ` Peter Müller
@ 2021-08-11 10:06     ` Michael Tremer
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2021-08-11 10:06 UTC (permalink / raw)
  To: location

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

Okay, merged. Thank you for the clarification.

> On 9 Aug 2021, at 15:05, Peter Müller <peter.mueller(a)ipfire.org> wrote:
> 
> Hello Michael,
> 
> yes: All networks processed in this for-loop have the same country code set.
> If one of them is found to have an invalid country code set, all the others of
> this batch will do so as well - there is no need to check them individually.
> 
> Thanks, and best regards,
> Peter Müller
> 
> 
>> Hello,
>> 
>> Are you sure you don’t want this to be “continue”?
>> 
>>> On 8 Aug 2021, at 23:31, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>>> 
>>> This one apparently went down the drain between these two patches:
>>> - https://patchwork.ipfire.org/project/location/patch/20210522125758.28770-1-peter.mueller(a)ipfire.org/
>>> - https://patchwork.ipfire.org/project/location/patch/aefd1904-4b38-f5cf-ab1d-9d69636cf914(a)ipfire.org/
>>> 
>>> Due to other safeguards, the current damage in production is limited to:
>>> 
>>> location=# SELECT * FROM networks WHERE country = 'ZZ';
>>>     network       | country | original_countries | source
>>> --------------------+---------+--------------------+--------
>>> 130.195.64.0/19    | ZZ      | {ZZ}               | APNIC
>>> 130.195.96.0/19    | ZZ      | {ZZ}               | APNIC
>>> 122.252.24.0/21    | ZZ      | {ZZ}               | APNIC
>>> 2406:840:10::/48   | ZZ      | {ZZ}               | APNIC
>>> 2406:840:fd0f::/48 | ZZ      | {ZZ}               | APNIC
>>> (5 rows)
>>> 
>>> Fixes: #12673
>>> 
>>> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
>>> ---
>>> src/python/location-importer.in | 1 +
>>> 1 file changed, 1 insertion(+)
>>> 
>>> diff --git a/src/python/location-importer.in b/src/python/location-importer.in
>>> index bec0b62..da058d3 100644
>>> --- a/src/python/location-importer.in
>>> +++ b/src/python/location-importer.in
>>> @@ -702,6 +702,7 @@ class CLI(object):
>>> 				if validcountries and invalidcountries:
>>> 					log.warning("Skipping network with bogus countr(y|ies) %s (original countries: %s): %s" % \
>>> 						(invalidcountries, inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
>>> +					break
>>> 
>>> 				# Everything is fine here, run INSERT statement...
>>> 				self.db.execute("INSERT INTO _rirdata(network, country, original_countries, source) \
>>> -- 
>>> 2.26.2
>> 


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

end of thread, other threads:[~2021-08-11 10:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-08 21:31 [PATCH] location-importer.in: Braindead me accidentally forgot a "break" statement Peter Müller
2021-08-09  9:06 ` Michael Tremer
2021-08-09 13:05   ` Peter Müller
2021-08-11 10:06     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox