NetBSD Problem Report #57159

From www@netbsd.org  Wed Jan  4 14:34:57 2023
Return-Path: <www@netbsd.org>
Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits))
	(Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified))
	by mollari.NetBSD.org (Postfix) with ESMTPS id 21D221A9239
	for <gnats-bugs@gnats.NetBSD.org>; Wed,  4 Jan 2023 14:34:57 +0000 (UTC)
Message-Id: <20230104143455.76CF21A923A@mollari.NetBSD.org>
Date: Wed,  4 Jan 2023 14:34:55 +0000 (UTC)
From: br0nko@protonmail.com
Reply-To: br0nko@protonmail.com
To: gnats-bugs@NetBSD.org
Subject: davical requiring tuning and and version upgrade
X-Send-Pr-Version: www-1.0

>Number:         57159
>Category:       pkg
>Synopsis:       davical requiring tuning and and version upgrade
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    pkg-manager
>State:          closed
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Jan 04 14:35:00 +0000 2023
>Closed-Date:    Sun Apr 02 01:17:28 +0000 2023
>Last-Modified:  Sun Apr 02 01:17:28 +0000 2023
>Originator:     br0nko
>Release:        2022Q4
>Organization:
>Environment:
NetBSD n10.domain.internal 10.0_BETA NetBSD 10.0_BETA (GENERIC) #0: Sat Dec 31 04:55:53 UTC 2022  mkrepro@mkrepro.NetBSD.org:/usr/src/sys/arch/amd64/compile/GENERIC amd64
>Description:
davical require several config tweaks and version upgrade to be fully functional (php8):

1/ apache setup provided in /usr/pkg/etc/davical/davical.conf need to be updated for apache 2.4 access control directive:

--- davical.conf.ori	2023-01-04 12:26:46.905846358 +0000
+++ davical.conf	2023-01-04 14:09:03.223599890 +0000
@@ -5,8 +5,7 @@
 <Directory "/usr/pkg/share/davical/htdocs">
 	AllowOverride All
 	DirectoryIndex index.php
-	Order Allow,Deny
-	Allow from All
+	Require all granted
 	php_value include_path "/usr/pkg/lib/php/awl"
 </Directory>

@@ -22,8 +21,7 @@
 #	DirectoryIndex index.php
 #
 #	<Location />
-#		Order allow,deny
-#		Allow from all
+#		Require all granted
 #	</Location>
 #
 #	php_value include_path "/usr/pkg/lib/php/awl"

2/ /usr/pkg/etc/davical/config.php permissions need to be adjusted
With a setup using unix socket, I was getting the following error while accessing davical home page:

[Wed Jan 04 13:25:23.804274 2023] [php:warn] [pid 1752] [client 192.168.1.45:63507] PHP Warning:  include(): Failed opening '/usr/pkg/etc/davical/config.php' for inclusion (include_path='../inc:/usr/pkg/lib/php/awl/inc:/usr/pkg/lib/php/awl') in /usr/pkg/share/davical/htdocs/always.php on line 211
[Wed Jan 04 13:25:23.809626 2023] [php:warn] [pid 1752] [client 192.168.1.45:63507] PHP Warning:  Undefined variable $connection_strings in /usr/pkg/lib/php/awl/inc/AwlQuery.php on line 55
[Wed Jan 04 13:25:23.809648 2023] [php:warn] [pid 1752] [client 192.168.1.45:63507] PHP Warning:  foreach() argument must be of type array|object, null given in /usr/pkg/lib/php/awl/inc/AwlQuery.php on line 55

Appears to be a file permission issue:

-rw-r-----  1 root  wheel  33027 Jan  4 12:26 config.php

Changing group permission to www did the trick (might not be the best approach)

-rw-r-----  1 root  www    33027 Jan  4 13:35 config.php

3/ Davical setup page is broken

Exception [0] Call to undefined function get_magic_quotes_gpc()
At line 154 of /usr/pkg/share/davical/htdocs/setup.php
================= Stack Trace ===================
/usr/pkg/share/davical/htdocs/setup.php[390] build_dependencies_table()
/usr/pkg/share/davical/htdocs/setup.php[359] check_magic_quotes_gpc()

This is a bug due to deprecated get_magic_quotes* function call, fixed in davical 1.1.11:
https://gitlab.com/davical-project/davical/-/issues/234
https://wiki.davical.org/index.php/Release_Notes/1.1.11

4/ Tools page also broken

Exception [0] Call to undefined function each()
At line 486 of /usr/pkg/lib/php/awl/inc/DataEntry.php
================= Stack Trace ===================
/usr/pkg/share/davical/htdocs/tools.php[165] Tools->render()
/usr/pkg/share/davical/htdocs/tools.php[43] Tools::renderImportFromDirectory()
/usr/pkg/share/davical/htdocs/tools.php[85] EntryForm->StartForm()

This time a bug in AWL with php8, fixed starting 0.62 (probably better to upgrade to 0.63, as there's others php8.1 fixes ):
https://gitlab.com/davical-project/awl/-/commit/0adab0ac9a939196bee96f30ff6bc1e00eff3edb


>How-To-Repeat:
do the default install (unix socket / apache) 
>Fix:
see Full description

>Release-Note:

>Audit-Trail:
From: br0nko <br0nko@protonmail.com>
To: "gnats-bugs@NetBSD.org" <gnats-bugs@NetBSD.org>
Cc: 
Subject: Re: pkg/57159
Date: Wed, 04 Jan 2023 19:42:33 +0000

 Rearding config.php permissions, I've just realized that it might be relate=
 d to the fact that I did install davical first and apache afterward. www us=
 er/group was not existing.=20

 https://github.com/NetBSD/pkgsrc/blob/fd4f1be4d8c55f0b777d7d052bb5fdf68d3d2=
 c15/www/davical/Makefile#L64






From: br0nko <br0nko@protonmail.com>
To: "gnats-bugs@NetBSD.org" <gnats-bugs@NetBSD.org>
Cc: 
Subject: Re: pkg/57159
Date: Thu, 05 Jan 2023 08:31:10 +0000

 Sorry, I wasn't using pkgsrc-2022Q4, I've been misleading since I was runni=
 ng 10.0 Beta version.
 Q4 has the necessary davical/awl update. Remain apache configuration and ma=
 ybe config.php permission in case another web server than apache would be i=
 n use. These are minor issues.=20

 Sorry for the noise.=20



State-Changed-From-To: open->closed
State-Changed-By: dholland@NetBSD.org
State-Changed-When: Sun, 02 Apr 2023 01:17:28 +0000
State-Changed-Why:
local problem


>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.47 2022/09/11 19:34:41 kim Exp $
$NetBSD: gnats_config.sh,v 1.9 2014/08/02 14:16:04 spz Exp $
Copyright © 1994-2023 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.