Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Aug 2023 23:29:39 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 3f2dba6ca294 - 2023Q3 - devel/RStudio: Fix crash caused by the std::bad_cast exception in RStudio-server
Message-ID:  <202308282329.37SNTdFY061628@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2023Q3 has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3f2dba6ca2947b25c5bfd5f529a4bd60a38114e3

commit 3f2dba6ca2947b25c5bfd5f529a4bd60a38114e3
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2023-08-28 23:25:46 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2023-08-28 23:29:37 +0000

    devel/RStudio: Fix crash caused by the std::bad_cast exception in RStudio-server
    
    This caused users to be unable to log in.
    The workround is now in place.
    
    (cherry picked from commit 78d590c1287a4c5cdc5e51404e0702bbb6e7d2c6)
---
 devel/RStudio/Makefile                             |  2 +-
 ...patch-src_cpp_server_auth_ServerAuthHandler.cpp | 26 ++++++++++++++++++++++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/devel/RStudio/Makefile b/devel/RStudio/Makefile
index 218a96db00d2..dcc39863ecb0 100644
--- a/devel/RStudio/Makefile
+++ b/devel/RStudio/Makefile
@@ -4,7 +4,7 @@
 PORTNAME=	RStudio
 DISTVERSIONPREFIX=	v
 DISTVERSION=	2022.12.0+353
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	devel math java
 MASTER_SITES=	https://s3.amazonaws.com/rstudio-buildtools/dictionaries/:dictionaries \
 		https://s3.amazonaws.com/rstudio-buildtools/:buildtools
diff --git a/devel/RStudio/files/patch-src_cpp_server_auth_ServerAuthHandler.cpp b/devel/RStudio/files/patch-src_cpp_server_auth_ServerAuthHandler.cpp
new file mode 100644
index 000000000000..50698fa7bb48
--- /dev/null
+++ b/devel/RStudio/files/patch-src_cpp_server_auth_ServerAuthHandler.cpp
@@ -0,0 +1,26 @@
+- workaround for the std:bad_cast exception in the licensed user info retrievel code
+- that isn't even used on FreeBSD
+- see https://github.com/rstudio/rstudio/issues/12377
+- resolution: the offending function's body is commented out for the time being
+
+--- src/cpp/server/auth/ServerAuthHandler.cpp.orig	2023-08-28 18:24:18 UTC
++++ src/cpp/server/auth/ServerAuthHandler.cpp
+@@ -383,6 +383,7 @@ Error getUserFromDatabase(const boost::shared_ptr<ICon
+                           boost::posix_time::ptime* pLastSignin,
+                           bool* pExists)
+ {
++#if 0
+    LOG_DEBUG_MESSAGE("Getting user from database: " + user.getUsername());
+    
+    *pLocked = true;
+@@ -439,6 +440,10 @@ Error getUserFromDatabase(const boost::shared_ptr<ICon
+    }
+ 
+    *pExists = foundUser;
++#endif
++
++   *pExists = false;
++
+    return Success();
+ }
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308282329.37SNTdFY061628>