Project

General

Profile

Actions

action #160083

closed

client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image

Added by amanzini 12 days ago. Updated 7 days ago.

Status:
Resolved
Priority:
High
Assignee:
Category:
Regressions/Crashes
Target version:
Start date:
2024-05-08
Due date:
% Done:

0%

Estimated time:
Tags:

Description

Observation

openQA test in scenario sle-15-SP4-Server-DVD-Updates-x86_64-fips_tests_xrdp_remote-desktop-client4@64bit fails in
windows_client_boot

Test suite description

Testsuite maintained at https://gitlab.suse.de/qe-security/osd-sle15-security.

Reproducible

Fails since (at least) Build 20240507-1

Expected result

Last good: 20240506-1 (or more recent)

Further details

Always latest result in this scenario: latest

First investigation

Looks like the password for the windows user is expired; need to change in the windows os image


Related issues 1 (0 open1 closed)

Related to openQA Project - action #130636: high response times on osd - Try nginx on OSD size:SResolvedmkittler2024-05-17

Actions
Actions #1

Updated by amanzini 12 days ago

  • Assignee set to amanzini
Actions #2

Updated by amanzini 12 days ago

  • Related to action #160068: All Windows Disks fail on boot/login: bernhard's password has expired (again) added
Actions #3

Updated by amanzini 11 days ago

when downloading the HDD assets, the http client gets a redirect and downloads an HTML page from microsoft instead of the proper .qcow2 image:

$ wget https://openqa.suse.de/tests/14235046/asset/hdd/windows-10-x86_64-22H2@windows_bios_boot.qcow2
--2024-05-09 08:43:03--  https://openqa.suse.de/tests/14235046/asset/hdd/windows-10-x86_64-22H2@windows_bios_boot.qcow2
Resolving openqa.suse.de (openqa.suse.de)... 10.145.10.207
Connecting to openqa.suse.de (openqa.suse.de)|10.145.10.207|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://www.microsoft.com/software-download/windows10ISO [following]
--2024-05-09 08:43:03--  https://www.microsoft.com/software-download/windows10ISO
Resolving www.microsoft.com (www.microsoft.com)... 2.23.9.218
Connecting to www.microsoft.com (www.microsoft.com)|2.23.9.218|:443... connected.
HTTP request sent, awaiting response...
worker35:/var/lib/openqa/cache/openqa.suse.de # head -1 windows-10-x86_64-22H2@windows_bios_boot.qcow2 
<!DOCTYPE html ><html xmlns:mscom="http://schemas.microsoft.com/CMSvNext" xmlns:md="http://schemas.microsoft.com/mscom-data" lang="cs-cz" xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js">
Actions #4

Updated by amanzini 11 days ago

from the nginx logs:

2a07:de40:b203:12:7ec2:55ff:fe24:de9c - - [09/May/2024:09:28:12 +0200] "GET /tests/14256623/asset/hdd/windows-10-x86_64-22H2@windows_bios_boot.qcow2 HTTP/1.1" 302 145 "-" "Mojolicious (Perl)" rt=0.000 urt="-"

the client ipv6 is not matching the regular expression at nginx config

# Optional faster assets downloads for large deployments
location /assets {
    alias /var/lib/openqa/share/factory;
    tcp_nopush         on;
    sendfile           on;
    sendfile_max_chunk 1m;
    if ($remote_addr !~ "^192\.168\.112\.|^195\.135\.221\.150|^10\.150\.1\.") {
      rewrite ^/assets/.*/[wW]in.*$ https://www.microsoft.com/software-download/windows10ISO last;
    }
}
Actions #5

Updated by amanzini 11 days ago

  • Tags set to infra
  • Subject changed from [security] test fails in windows_client_boot to client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image
  • Category changed from Bugs in existing tests to Infrastructure
  • Status changed from Workable to New
  • Assignee deleted (amanzini)

as a temp workaround, I disabled the redirect by directly editing the nginx config on the openqa.suse.de server; but the issue need to be properly addressed

Actions #6

Updated by amanzini 11 days ago

  • Project changed from openQA Tests to openQA Infrastructure
  • Category deleted (Infrastructure)
Actions #7

Updated by amanzini 11 days ago

  • Related to deleted (action #160068: All Windows Disks fail on boot/login: bernhard's password has expired (again))
Actions #8

Updated by jbaier_cz 11 days ago

  • Related to action #130636: high response times on osd - Try nginx on OSD size:S added
Actions #9

Updated by amanzini 11 days ago

  • Description updated (diff)
  • Category set to Regressions/Crashes
Actions #10

Updated by amanzini 11 days ago

  • Subject changed from client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image to openQA client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image
Actions #11

Updated by amanzini 11 days ago ยท Edited

as a temp workaround, I commented the redirect in the /etc/nginx/vhosts.d/openqa-locations.inc config file:

# Optional faster assets downloads for large deployments
location /assets {
    alias /var/lib/openqa/share/factory;
    tcp_nopush         on;
    sendfile           on;
    sendfile_max_chunk 1m;
    # amanzini - workaround to disable redirection on OSD windows image from ipv6
    #    if ($remote_addr !~ "^192\.168\.112\.|^195\.135\.221\.150|^10\.150\.1\.") {
    #  rewrite ^/assets/.*/[wW]in.*$ https://www.microsoft.com/software-download/windows10ISO last;
    #}
}
location / {
    proxy_pass "http://webui";
    tcp_nodelay        on;
    proxy_read_timeout 900;
    proxy_send_timeout 900;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Host $host:$server_port;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    # amanzini - workaround to disable redirection on OSD windows image from ipv6
    #if ($remote_addr !~ "^192\.168\.112\.|^195\.135\.221\.150|^10\.150\.1\.") {
    #  rewrite ^/tests/.*/asset/.*/[wW]in.*$ https://www.microsoft.com/software-download/windows10ISO last;
    #}
}
Actions #12

Updated by okurz 11 days ago

  • Priority changed from Normal to High
  • Target version set to Ready
Actions #13

Updated by ybonatakis 11 days ago

  • Subject changed from openQA client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image to client gets a redirect and downloads an HTML page from microsoft instead of the proper windows .qcow2 image
  • Description updated (diff)
  • Category deleted (Regressions/Crashes )
  • Priority changed from High to Normal
  • Target version deleted (Ready)

Idk why but /etc/nginx/vhosts.d/openqa-locations.inc from OSD is not the same as in the repo.

Actions #14

Updated by jbaier_cz 11 days ago

  • Category set to Regressions/Crashes
  • Priority changed from Normal to High
  • Target version set to Ready
Actions #15

Updated by tinita 10 days ago

  • Status changed from New to In Progress
  • Assignee set to tinita
Actions #16

Updated by tinita 10 days ago

  • Status changed from In Progress to Feedback
Actions

Also available in: Atom PDF