Project

General

Profile

Actions

Defect #11872

closed

Private issue visible to anonymous users after its author is deleted

Added by Anonymous over 11 years ago. Updated over 11 years ago.

Status:
Closed
Priority:
Normal
Category:
Issues
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

The attached patch fixes defect #10148.

Specifically, suppose an anonymous (= not logged in) user submits an issue. Or alternatively, a user submits an issue, but later that user's account is deleted (in that case the issue is marked as submitted by anonymous).

Suppose further that the issue is marked as private. Then logged in users w/o the require permissions are not able to view the issue, as it is private.

But non-logged in users are able to view it. That is so because the code logic always allows the user who submitted a report to view it... Which in this particular case does not really make sense. The first part of the attached patch addresses this.

The second part fixes a minor bug in the allowed_to? method, which used to use "detect" instead of "any?", causing it to sometimes return a role object instead of a boolean.


Files

private-issues-fix.patch (1.36 KB) private-issues-fix.patch Anonymous, 2012-09-19 02:34
0001-Replace-incorrect-.detect-call-by-.any.patch (1.12 KB) 0001-Replace-incorrect-.detect-call-by-.any.patch Replace detect by any? calls Anonymous, 2012-09-19 15:03
0002-Fix-bug-with-private-issues-submitted-by-or-assigned.patch (2.08 KB) 0002-Fix-bug-with-private-issues-submitted-by-or-assigned.patch Fix bug with private issues submitted by or assigned to Anonymous, 2012-09-19 15:03

Related issues

Related to Redmine - Defect #10148: Private issue in public projectsClosed2012-02-03

Actions
Actions #1

Updated by Etienne Massip over 11 years ago

  • Tracker changed from Patch to Defect
  • Subject changed from Fix: Some private issues were visible to non-logged in users to Some private issues were visible to non-logged in users
  • Category set to Issues
  • Status changed from New to Confirmed
  • Affected version (unused) set to 2.1.0
  • Affected version set to 2.1.0

Interesting, it seems there might be a big issue indeed if author is anonymous (is this really possible?).

I haven't tested yet (hence the conditionnal), but this issue is worth being set as Confirmed so someone will have a look to it.

Your patch lacks the covering of the 'own' issue visibility setting and the Issue.visible_condition though.

Do you have any plugin installed?

Actions #2

Updated by Anonymous over 11 years ago

Etienne, please take a look at #10148, which already covers this issue. Indeed, I only opened up this new report because nobody seemed to even notice that I proposed a fix for the bug. You may want to close one of the two reports as a duplicate of the other.

And it is rather easy to confirm this bug. No plugins "required" ;) meaning I can reproduce it in a bare installation of redmine. Just setup a redmine instance allowing private issues, as well as submission by anonymous users. Submit an issue while logged out. Mark it as private. Then, try to view the issue while logged in as a non-admin, non-privileged user -- you can't, because it is private. Then log out, and voila, you can view it.

Note that a colleague of mine independently discovered the problem when we were reviewing redmine along with several other issue trackers as candidates for our new issue tracking system. I subsequently analysed it, and then found #10148, where several other people report seeing this problem, too.

You are right, the patch is not covering the 'own' issue visibility setting. I was under the impression that it does not have to, as the test for whether an issue is in "own" visibility already checks if the user is logged in. But I guess it does not hurt to add the check there, too. It's also adds some symmetry - and thus might make a future refactoring of that code easier.

I was not aware of Issue.visible_condition, oops!

The new attached patch address all of this. It also fixes another case: private issues assigned to anonymous were still shown to anon users but hidden from logged in users. However, this code really screams for some refactoring.

Actions #3

Updated by Jean-Philippe Lang over 11 years ago

With this patch, if we set the issues visibility of the anonymous role to 'own', then anonymous users won't be able to see any issues. Is that what we expect? Seems right but I just want to make it clear because it breaks a test.

Actions #4

Updated by Anonymous over 11 years ago

For what it's worth, I think that it is perfectly logical that anon users are not able to see any issues if the visibility of the anon role is set to 'own'. So I'd say the failing test should be changed (but I am even not sure how to run the test suite, so I can't submit this as a patch right now, sorry).

Actions #5

Updated by Etienne Massip over 11 years ago

I think it's nonsense to let the 'own' choice for Anonymous role and that we should remove the option from the dropdown list.

Actions #6

Updated by Jean-Philippe Lang over 11 years ago

Etienne Massip wrote:

I think it's nonsense to let the 'own' choice for Anonymous role and that we should remove the option from the dropdown list.

Yes, and the 'all' option does not make much more sense for the anonymous role. Maybe we can simply remove the choice for this role.

Actions #7

Updated by Jean-Philippe Lang over 11 years ago

  • Subject changed from Some private issues were visible to non-logged in users to Private issue visible to anonymous users after its author is deleted
  • Target version set to 2.1.1
Actions #8

Updated by Jean-Philippe Lang over 11 years ago

  • Status changed from Confirmed to Resolved
  • Assignee set to Jean-Philippe Lang
  • Resolution set to Fixed

Problem fixed in r10433 and the issues visibility option for the anonymous role is removed role in r10437 since 'all' and 'own' does not make sense for this role.

Actions #9

Updated by Jean-Philippe Lang over 11 years ago

  • Status changed from Resolved to Closed

Merged into 2.1-stable.

Actions #10

Updated by Anonymous over 11 years ago

Thank you for applying this and already releasing this in 2.1.1, yay!

But may I remind you about bug #10148? I think that one should be closed now, too, as it reports the same issue.

Actions

Also available in: Atom PDF