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