Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HexEditor plugin creates an empty folder "plugins\Compare" #10

Closed
d0vgan opened this issue Feb 11, 2019 · 4 comments
Closed

HexEditor plugin creates an empty folder "plugins\Compare" #10

d0vgan opened this issue Feb 11, 2019 · 4 comments
Milestone

Comments

@d0vgan
Copy link

d0vgan commented Feb 11, 2019

Notepad++ 7.6.3, 32-bit.
When the "HexEditor.dll" (version 0.9.5.11) is placed under the "plugins\HexEditor" folder, an empty folder "plugins\Compare" is created when Notepad++ starts.
If the "HexEditor.dll" is removed, the folder "plugins\Compare" is not created.

@d0vgan
Copy link
Author

d0vgan commented Feb 11, 2019

The same behavior with HexEditor_0.9.5.19_x86.zip

@chcg
Copy link
Owner

chcg commented Feb 14, 2019

@d0vgan See

::SendMessage(nppData._nppHandle, NPPM_GETPLUGINSCONFIGDIR, MAX_PATH, (LPARAM)configPath);
::PathRemoveBackslash(configPath);
/* Test if config path exist, if not create */
if (::PathFileExists(configPath) == FALSE)
{
vector<string> vPaths;
*_tcsrchr(configPath, '\\') = NULL;
do {
vPaths.push_back(configPath);
*_tcsrchr(configPath, NULL) = NULL;
} while (::PathFileExists(configPath) == FALSE);
for (size_t i = vPaths.size(); i > 0; --i)
{
_tcscpy(configPath, vPaths[i-1].c_str());
::CreateDirectory(configPath, NULL);
}
}
/* init compare file path */
_tcscpy(cmparePath, configPath);
*_tcsrchr(cmparePath, '\\') = NULL;
::PathAppend(cmparePath, COMPARE_PATH);

Seems that is expected behaviour. Since 7.6.x it might make sense to use the plugin subdir to create such a dir.

Additional observation:
The conf dir from NPPM_GETPLUGINSCONFIGDIR is not called first to retrieve the needed buffer size, but called just with MAX_PATH (see https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file, so maybe 260), so if the path exceed that size NULL is provided from N++. This might be the root cause of remaining #1 issues.

@d0vgan
Copy link
Author

d0vgan commented Feb 14, 2019

Looks like this folder is used by the function DoCompare where temporary files to be compared are created... I would highly recommend to use e.g. $(PLUGINS_CONFIG_DIR)\HexEdit\Compare or %TEMP%\HexEdit\Compare instead.
The root issue is that a folder Notepad++\plugins\Compare is created by the plugin. This folder is just not applicable for the task of temporary files comparison.

@d0vgan
Copy link
Author

d0vgan commented Feb 14, 2019

Ah, I forgot I can build the plugin myself :)
IMHO, this line in "Hex.cpp" just should not be there:
*_tcsrchr(cmparePath, '\\') = NULL;
What it does is it jumps one level up from the "Config" folder.
Why???
I have no answer for this.
I've started to experiment with the code (such as removing the mentioned line). In such case, the "Compare" folder is created under the "Config" folder, but after a few additional actions (when I checked how the comparison works) the plugin just crashed :( That killed my enthusiasm of further experiments.

@chcg chcg added this to the 0.9.6 milestone Apr 18, 2020
chcg added a commit that referenced this issue Apr 19, 2020
move compare folder under plugin dir as a first step
chcg added a commit that referenced this issue Apr 19, 2020
fix additional finding regarding unchecked config path size from NPPM_GETPLUGINSCONFIGDIR,
needs to be < MAX_PATH otherwise an error is returned by N++ and the buffer is empty
-> just return in this case
@chcg chcg closed this as completed Apr 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants