From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../hunspell/glue/mozHunspellRLBoxHost.h | 122 +++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 extensions/spellcheck/hunspell/glue/mozHunspellRLBoxHost.h (limited to 'extensions/spellcheck/hunspell/glue/mozHunspellRLBoxHost.h') diff --git a/extensions/spellcheck/hunspell/glue/mozHunspellRLBoxHost.h b/extensions/spellcheck/hunspell/glue/mozHunspellRLBoxHost.h new file mode 100644 index 0000000000..f92070eabf --- /dev/null +++ b/extensions/spellcheck/hunspell/glue/mozHunspellRLBoxHost.h @@ -0,0 +1,122 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozHunspellRLBoxHost_h +#define mozHunspellRLBoxHost_h + +#include +#include +#include +#include +#include +#include + +#include "RLBoxHunspell.h" +#include "mozilla/Result.h" +#include "mozilla/ResultExtensions.h" +#include "mozilla/RWLock.h" +#include "nsIChannel.h" +#include "nsIInputStream.h" +#include "nsReadLine.h" + +namespace mozilla { + +class mozHunspellFileMgrHost final { + public: + /** + * aFilename must be a local file/jar URI for the file to load. + */ + explicit mozHunspellFileMgrHost(const nsCString& aFilename); + ~mozHunspellFileMgrHost() = default; + + bool GetLine(std::string& aResult); + int GetLineNum() const { return mLineNum; } + + static Result GetSize(const nsCString& aFilename); + + private: + static mozilla::Result Open( + const nsCString& aPath, nsCOMPtr& aChannel, + nsCOMPtr& aStream); + + mozilla::Result ReadLine(nsCString& aLine); + + int mLineNum = 0; + nsCOMPtr mStream; + nsLineBuffer mLineBuffer; +}; + +class mozHunspellCallbacks { + public: + // APIs invoked by the sandboxed hunspell file manager + static tainted_hunspell CreateFilemgr( + rlbox_sandbox_hunspell& aSandbox, + tainted_hunspell t_aFilename); + static tainted_hunspell GetLine(rlbox_sandbox_hunspell& aSandbox, + tainted_hunspell t_aFd, + tainted_hunspell t_aLinePtr); + static tainted_hunspell GetLineNum(rlbox_sandbox_hunspell& aSandbox, + tainted_hunspell t_aFd); + static void DestructFilemgr(rlbox_sandbox_hunspell& aSandbox, + tainted_hunspell t_aFd); + + // APIs necessary for hunspell UTF encoding + static tainted_hunspell ToUpperCase( + rlbox_sandbox_hunspell& aSandbox, tainted_hunspell t_aChar); + static tainted_hunspell ToLowerCase( + rlbox_sandbox_hunspell& aSandbox, tainted_hunspell t_aChar); + static tainted_hunspell GetCurrentCS( + rlbox_sandbox_hunspell& aSandbox, tainted_hunspell t_es); + + protected: + // API called by RLBox + + /** + * Add filename to allow list. + */ + static void AllowFile(const nsCString& aFilename); + friend RLBoxHunspell* RLBoxHunspell::Create(const nsCString& affpath, + const nsCString& dpath); + /** + * Clear allow list and map of hunspell file managers. + */ + static void Clear(); + friend RLBoxHunspell::~RLBoxHunspell(); + + private: + /** + * sFileMgrMap holds a map between unique uint32_t + * integers and mozHunspellFileMgrHost instances + */ + static std::map> + sFileMgrMap; + + /** + * sFileMgrAllowList contains the filenames of the dictionary files hunspell + * is allowed to open + */ + static std::set sFileMgrAllowList; + /** + * Reader-writer lock for the sFileMgrMap + */ + static mozilla::StaticRWLock sFileMgrMapLock; + /** + * Tracks the next possibly unused id for sFileMgrMap + */ + static uint32_t sCurrentFreshId; + /** + * Returns an unused id for sFileMgrMap + */ + static uint32_t GetFreshId(); + /** + * Returns the mozHunspellFileMgrHost for the given uint32_t id + */ + static mozHunspellFileMgrHost& GetMozHunspellFileMgrHost( + tainted_hunspell t_aFd); +}; +} // namespace mozilla + +#endif -- cgit v1.2.3