1
2
3
4
5
6#include <linux/ipc.h>
7#include <linux/msg.h>
8#include <linux/ipc_namespace.h>
9#include <linux/rcupdate.h>
10#include <linux/nsproxy.h>
11#include <linux/slab.h>
12#include <linux/fs.h>
13#include <linux/mount.h>
14#include <linux/user_namespace.h>
15
16#include "util.h"
17
18static struct ipc_namespace *create_ipc_ns(struct task_struct *tsk,
19 struct ipc_namespace *old_ns)
20{
21 struct ipc_namespace *ns;
22 int err;
23
24 ns = kmalloc(sizeof(struct ipc_namespace), GFP_KERNEL);
25 if (ns == NULL)
26 return ERR_PTR(-ENOMEM);
27
28 atomic_set(&ns->count, 1);
29 err = mq_init_ns(ns);
30 if (err) {
31 kfree(ns);
32 return ERR_PTR(err);
33 }
34 atomic_inc(&nr_ipc_ns);
35
36 sem_init_ns(ns);
37 msg_init_ns(ns);
38 shm_init_ns(ns);
39
40
41
42
43
44
45 ipcns_notify(IPCNS_CREATED);
46 register_ipcns_notifier(ns);
47
48 ns->user_ns = get_user_ns(task_cred_xxx(tsk, user)->user_ns);
49
50 return ns;
51}
52
53struct ipc_namespace *copy_ipcs(unsigned long flags,
54 struct task_struct *tsk)
55{
56 struct ipc_namespace *ns = tsk->nsproxy->ipc_ns;
57
58 if (!(flags & CLONE_NEWIPC))
59 return get_ipc_ns(ns);
60 return create_ipc_ns(tsk, ns);
61}
62
63
64
65
66
67
68
69
70
71void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids,
72 void (*free)(struct ipc_namespace *, struct kern_ipc_perm *))
73{
74 struct kern_ipc_perm *perm;
75 int next_id;
76 int total, in_use;
77
78 down_write(&ids->rw_mutex);
79
80 in_use = ids->in_use;
81
82 for (total = 0, next_id = 0; total < in_use; next_id++) {
83 perm = idr_find(&ids->ipcs_idr, next_id);
84 if (perm == NULL)
85 continue;
86 ipc_lock_by_ptr(perm);
87 free(ns, perm);
88 total++;
89 }
90 up_write(&ids->rw_mutex);
91}
92
93static void free_ipc_ns(struct ipc_namespace *ns)
94{
95
96
97
98
99
100
101
102
103 unregister_ipcns_notifier(ns);
104 sem_exit_ns(ns);
105 msg_exit_ns(ns);
106 shm_exit_ns(ns);
107 atomic_dec(&nr_ipc_ns);
108
109
110
111
112
113 ipcns_notify(IPCNS_REMOVED);
114 put_user_ns(ns->user_ns);
115 kfree(ns);
116}
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134void put_ipc_ns(struct ipc_namespace *ns)
135{
136 if (atomic_dec_and_lock(&ns->count, &mq_lock)) {
137 mq_clear_sbinfo(ns);
138 spin_unlock(&mq_lock);
139 mq_put_mnt(ns);
140 free_ipc_ns(ns);
141 }
142}
143