Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1245035
| From | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: GPF in shm_lock ipc |
| Date | 2015-10-12 21:00 +0200 |
| Message-ID | <qiQuf-7F7-37@gated-at.bofh.it> (permalink) |
| References | <qiI3F-3Hd-15@gated-at.bofh.it> <qiKoO-7fZ-31@gated-at.bofh.it> <qiPyb-6fF-27@gated-at.bofh.it> <qiPRv-6RC-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, 12 Oct 2015, Kirill A. Shutemov wrote:
>On Mon, Oct 12, 2015 at 10:49:45AM -0700, Davidlohr Bueso wrote:
>> diff --git a/ipc/shm.c b/ipc/shm.c
>> index 4178727..9615f19 100644
>> --- a/ipc/shm.c
>> +++ b/ipc/shm.c
>> @@ -385,9 +385,25 @@ static struct mempolicy *shm_get_policy(struct vm_area_struct *vma,
>> static int shm_mmap(struct file *file, struct vm_area_struct *vma)
>> {
>> - struct shm_file_data *sfd = shm_file_data(file);
>> + struct file *vma_file = vma->vm_file;
>> + struct shm_file_data *sfd = shm_file_data(vma_file);
>> + struct ipc_ids *ids = &shm_ids(sfd->ns);
>> + struct kern_ipc_perm *shp;
>> int ret;
>> + rcu_read_lock();
>> + shp = ipc_obtain_object_check(ids, sfd->id);
>> + if (IS_ERR(shp)) {
>> + ret = -EINVAL;
>> + goto err;
>> + }
>> +
>> + if (!ipc_valid_object(shp)) {
>> + ret = -EIDRM;
>> + goto err;
>> + }
>> + rcu_read_unlock();
>> +
>
>Hm. Isn't it racy? What prevents IPC_RMID from happening after this point?
Nothing, but that is later caught by shm_open() doing similar checks. We
basically end up doing a check between ->mmap() calls, which is fair imho.
Note that this can occur anywhere in ipc as IPC_RMID is a user request/cmd,
and we try to respect it -- thus you can argue this race anywhere, which is
why we have EIDRM/EINVL. Ultimately the user should not be doing such hacks
_anyway_. So I'm not really concerned about it.
Another similar alternative would be perhaps to make shm_lock() return an
error, and thus propagate that error to mmap return. That way we would have
a silent way out of the warning scenario (afterward we cannot race as we
hold the ipc object lock). However, the users would now have to take this
into account...
[validity check lockless]
->mmap()
[validity check lock]
>Shouldn't we bump shm_nattch here? Or some other refcount?
At least not shm_nattach, as that would acknowledge a new attachment after
a valid IPC_RMID. But the problem is also with how we check for marked for
deletion segments -- ipc_valid_object() checking the deleted flag. As such,
we always rely on explicitly checking against the deleted flag.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
GPF in shm_lock ipc Dmitry Vyukov <dvyukov@google.com> - 2015-10-12 12:00 +0200
Re: GPF in shm_lock ipc Dmitry Vyukov <dvyukov@google.com> - 2015-10-12 13:50 +0200
Re: GPF in shm_lock ipc Vlastimil Babka <vbabka@suse.cz> - 2015-10-12 13:50 +0200
Re: GPF in shm_lock ipc "Kirill A. Shutemov" <kirill@shutemov.name> - 2015-10-12 14:30 +0200
Re: GPF in shm_lock ipc Davidlohr Bueso <dave@stgolabs.net> - 2015-10-12 20:00 +0200
Re: GPF in shm_lock ipc "Kirill A. Shutemov" <kirill@shutemov.name> - 2015-10-12 20:20 +0200
Re: GPF in shm_lock ipc Davidlohr Bueso <dave@stgolabs.net> - 2015-10-12 21:00 +0200
Re: GPF in shm_lock ipc Davidlohr Bueso <dave@stgolabs.net> - 2015-10-13 05:20 +0200
Re: GPF in shm_lock ipc "Kirill A. Shutemov" <kirill@shutemov.name> - 2015-10-13 14:40 +0200
csiph-web