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

fix shared mailbox subscription bug when one user is prefix of other #5155

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
251 changes: 251 additions & 0 deletions cassandane/Cassandane/Cyrus/Shared.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,251 @@
#!/usr/bin/perl
#
# Copyright (c) 2011-2024 Fastmail Pty Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# 3. The name "Fastmail Pty Ltd" must not be used to
# endorse or promote products derived from this software without
# prior written permission. For permission or any legal
# details, please contact
# Fastmail Pty Ltd
# PO Box 234
# Collins St West 8007
# Victoria
# Australia
#
# 4. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by Fastmail Pty. Ltd."
#
# FASTMAIL PTY LTD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL OPERA SOFTWARE AUSTRALIA BE LIABLE FOR ANY SPECIAL, INDIRECT
# OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
# USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
# OF THIS SOFTWARE.
#

package Cassandane::Cyrus::Shared;
use strict;
use warnings;
use DateTime;
use Data::Dumper;

use lib '.';
use base qw(Cassandane::Cyrus::TestCase);
use Cassandane::Instance;
use Cassandane::Mboxname;
use Cassandane::Util::Log;
use Cassandane::Util::Words;

$Data::Dumper::Sortkeys = 1;

sub new
{
my ($class, @args) = @_;

my $self = $class->SUPER::new({ adminstore => 1 }, @args);

return $self;
}

sub set_up
{
my ($self) = @_;

$self->SUPER::set_up();
}

sub tear_down
{
my ($self) = @_;

$self->SUPER::tear_down();
}

sub shared_subscribe_common
{
my ($self, $user1, $user2) = @_;

my $service = $self->{instance}->get_service('imap');
my $config = $self->{instance}->{config};
my $sep = $config->get_bool('unixhierarchysep', 'on') ? '/' : '.';

my $user1_inbox = Cassandane::Mboxname->new(config => $config);
$user1_inbox->from_username($user1);

my @user1_mailboxes = map {
$user1_inbox->make_child($_);
} random_words(3);
$self->{instance}->create_user($user1,
subdirs => \@user1_mailboxes);

my $user1_store = $service->create_store(username => $user1);
my $user1_talk = $user1_store->get_client();

foreach my $mb (@user1_mailboxes) {
$user1_talk->subscribe($mb->to_external('owner'));
$user1_talk->setacl($mb->to_external('owner'), $user2, 'lrs');
}

my $user2_inbox = Cassandane::Mboxname->new(config => $config);
$user2_inbox->from_username($user2);

my @user2_mailboxes = map {
$user2_inbox->make_child($_);
} random_words(3);
$self->{instance}->create_user($user2,
subdirs => \@user2_mailboxes);

my $user2_store = $service->create_store(username => $user2);
my $user2_talk = $user2_store->get_client();

foreach my $mb (@user2_mailboxes) {
$user2_talk->subscribe($mb->to_external('owner'));
$user2_talk->setacl($mb->to_external('owner'), $user1, 'lrs');
}

$user1_talk->list('', '*');

xlog("subscribe as $user1 to $user2\'s shared mb's");
foreach my $mb (@user2_mailboxes) {
$user1_talk->subscribe($mb->to_external('other'));
$self->assert_equals('ok', $user1_talk->get_last_completion_response());
}

xlog("but not their inbox");
$user1_talk->subscribe($user2_inbox->to_external('other'));
$self->assert_equals('no', $user1_talk->get_last_completion_response());

xlog("make sure $user1 has the right subscriptions");
my $user1_subs = $user1_talk->list([qw(SUBSCRIBED)],
'', '*',
'RETURN', [qw(CHILDREN)]);
$self->assert_mailbox_structure($user1_subs, $sep, {
(map {(
$_->to_external('owner') => [ '\\Subscribed', '\\HasNoChildren' ]
)} @user1_mailboxes),
(map {(
$_->to_external('other') => [
'\\Subscribed',
'\\HasNoChildren',
]
)} @user2_mailboxes),
});

xlog("unsub as $user1 from $user2\'s folders");
foreach my $mb (@user2_mailboxes) {
$user1_talk->unsubscribe($mb->to_external('other'));
$self->assert_equals('ok', $user1_talk->get_last_completion_response());
}

xlog("make sure $user1 has the right subscriptions");
$user1_subs = $user1_talk->list([qw(SUBSCRIBED)],
'', '*',
'RETURN', [qw(CHILDREN)]);
$self->assert_mailbox_structure($user1_subs, $sep, {
(map {(
$_->to_external('owner') => [ '\\Subscribed', '\\HasNoChildren' ]
)} @user1_mailboxes),
});

xlog("subscribe as $user2 to $user1\'s shared mb's");
foreach my $mb (@user1_mailboxes) {
$user2_talk->subscribe($mb->to_external('other'));
$self->assert_equals('ok',
$user2_talk->get_last_completion_response());
}

xlog("but not their inbox");
$user2_talk->subscribe($user1_inbox->to_external('other'));
$self->assert_equals('no', $user2_talk->get_last_completion_response());

xlog("make sure $user2 has the right subscriptions");
my $user2_subs = $user2_talk->list([qw(SUBSCRIBED)],
'', '*',
'RETURN', [qw(CHILDREN)]);
$self->assert_mailbox_structure($user2_subs, $sep, {
(map {(
$_->to_external('owner') => [ '\\Subscribed', '\\HasNoChildren' ]
)} @user2_mailboxes),
(map {(
$_->to_external('other') => [
'\\Subscribed',
'\\HasNoChildren',
]
)} @user1_mailboxes),
});

xlog("unsub as $user2 from $user1\'s folders");
foreach my $mb (@user1_mailboxes) {
$user2_talk->unsubscribe($mb->to_external('other'));
$self->assert_equals('ok',
$user2_talk->get_last_completion_response());
}

xlog("make sure $user2 has the right subscriptions");
$user2_subs = $user2_talk->list([qw(SUBSCRIBED)],
'', '*',
'RETURN', [qw(CHILDREN)]);
$self->assert_mailbox_structure($user2_subs, $sep, {
(map {(
$_->to_external('owner') => [ '\\Subscribed', '\\HasNoChildren' ]
)} @user2_mailboxes),
});
}

sub test_subscribe
{
my ($self) = @_;

$self->shared_subscribe_common('firstuser', 'seconduser');
}

sub test_subscribe_prefix
{
my ($self) = @_;

# one user is a prefix of the other!
$self->shared_subscribe_common('chris', 'christopher');
}

sub test_subscribe_vd
:VirtDomains :CrossDomains
{
my ($self) = @_;

$self->shared_subscribe_common('[email protected]',
'[email protected]');
}

sub test_subscribe_vd_prefix
:VirtDomains :CrossDomains
{
my ($self) = @_;

$self->shared_subscribe_common('[email protected]',
'[email protected]');
}

sub test_subscribe_vd_prefix2
:VirtDomains :CrossDomains
{
my ($self) = @_;

$self->shared_subscribe_common('[email protected]',
'[email protected]');
}

1;
11 changes: 9 additions & 2 deletions cassandane/Cassandane/Instance.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1073,8 +1073,15 @@ sub create_user
my $adminclient = $adminstore->get_client();

my @mboxes = ( $mb->to_external() );
map { push(@mboxes, $mb->make_child($_)->to_external()); } @{$params{subdirs}}
if ($params{subdirs});
foreach my $subdir (defined $params{subdirs} ? @{$params{subdirs}} : ())
{
if (ref $subdir eq 'Cassandane::Mboxname') {
push(@mboxes, $subdir->to_external());
}
else {
push(@mboxes, $mb->make_child($subdir)->to_external());
}
}

foreach my $mb (@mboxes)
{
Expand Down
64 changes: 54 additions & 10 deletions cassandane/Cassandane/Mboxname.pm
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,18 @@ sub _external_separator
my ($self) = @_;
die "No Config specified"
unless defined $self->{config};
return $self->{config}->get_bool('unixhierarchysep', 'off') ? '/' : '.';
return $self->{config}->get_bool('unixhierarchysep', 'on') ? '/' : '.';
}

sub _external_separator_regexp
{
my ($self) = @_;
die "No Config specified"
unless defined $self->{config};
return $self->{config}->get_bool('unixhierarchysep', 'off') ? qr/\// : qr/\./;
return $self->{config}->get_bool('unixhierarchysep', 'on') ? qr/\// : qr/\./;
}


# XXX assumes input is always in the admin namespace
sub from_external
{
my ($self, $s) = @_;
Expand All @@ -161,20 +161,64 @@ sub from_external
die "Bad external name \"$s\""
if !defined $userid || $prefix ne 'user';

map { s/\./\^/g } @comps;
$self->_set($domain, $userid, join('.', @comps));
}

sub to_external
{
my ($self) = @_;
my ($self, $namespace) = @_;

my @comps;
push(@comps, 'user', $self->{userid}) if defined $self->{userid};
push(@comps, split(/\./, $self->{box})) if defined $self->{box};
my $s = join($self->_external_separator, @comps);
$s .= '@' . $self->{domain} if defined $self->{domain};
$namespace ||= 'admin';

return ($s eq '' ? undef : $s);
my $altnamespace = $self->{config}->get_bool('altnamespace', 'on');

my @boxes;
@boxes = split/\./, $self->{box} if $self->{box};
if ($self->{config}->get_bool('unixhierarchysep', 'on')) {
map { s/\^/\./g } @boxes;
}

if ($namespace eq 'admin' || !$altnamespace) {
my @comps;

push @comps, 'user', $self->{userid} if defined $self->{userid};
push @comps, @boxes;

my $s = join($self->_external_separator, @comps);
$s .= '@' . $self->{domain} if defined $self->{domain};

return ($s eq '' ? undef : $s);
}
else {
# altnamespace is active, behaviour depends on whether we're
# the mailbox's owner or someone else
my @comps;

if ($namespace ne 'owner') {
die "Can't make external name for other user without userid"
if not $self->{userid};

my $userprefix = $self->{config}->get('userprefix');
$userprefix ||= 'Other Users';

my $userid = $self->{userid};
my $domain = $self->{domain};

if (!$self->{config}->get_bool('unixhierarchysep', 'on')) {
$domain =~ s/\./^/g;
}
$userid .= '@' . $domain if $domain;

push @comps, $userprefix, $userid;
}

push @comps, (@boxes ? @boxes : 'INBOX');

my $s = join($self->_external_separator, @comps);

return ($s eq '' ? undef : $s);
}
}

sub from_internal
Expand Down
Loading
Loading