diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-03-19 20:02:01 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-03-19 20:02:01 -0400 |
commit | 10ce3cc919f50c2043b41ca968b43c26a3672600 (patch) | |
tree | ea409366a5208aced495bc0516a08b81fd43222e /net/unix | |
parent | 24e3e5ae1e4c2a3a32f5b1f96b4e3fd721806acd (diff) | |
parent | 5c6a7a62c130afef3d61c1dee153012231ff5cd9 (diff) |
Merge branch 'next' into for-linus
Diffstat (limited to 'net/unix')
-rw-r--r-- | net/unix/Kconfig | 7 | ||||
-rw-r--r-- | net/unix/Makefile | 3 | ||||
-rw-r--r-- | net/unix/af_unix.c | 85 | ||||
-rw-r--r-- | net/unix/diag.c | 329 |
4 files changed, 386 insertions, 38 deletions
diff --git a/net/unix/Kconfig b/net/unix/Kconfig index 5a69733bcdad..8b31ab85d050 100644 --- a/net/unix/Kconfig +++ b/net/unix/Kconfig | |||
@@ -19,3 +19,10 @@ config UNIX | |||
19 | 19 | ||
20 | Say Y unless you know what you are doing. | 20 | Say Y unless you know what you are doing. |
21 | 21 | ||
22 | config UNIX_DIAG | ||
23 | tristate "UNIX: socket monitoring interface" | ||
24 | depends on UNIX | ||
25 | default n | ||
26 | ---help--- | ||
27 | Support for UNIX socket monitoring interface used by the ss tool. | ||
28 | If unsure, say Y. | ||
diff --git a/net/unix/Makefile b/net/unix/Makefile index b852a2bde9a8..b663c607b1c6 100644 --- a/net/unix/Makefile +++ b/net/unix/Makefile | |||
@@ -6,3 +6,6 @@ obj-$(CONFIG_UNIX) += unix.o | |||
6 | 6 | ||
7 | unix-y := af_unix.o garbage.o | 7 | unix-y := af_unix.o garbage.o |
8 | unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o | 8 | unix-$(CONFIG_SYSCTL) += sysctl_net_unix.o |
9 | |||
10 | obj-$(CONFIG_UNIX_DIAG) += unix_diag.o | ||
11 | unix_diag-y := diag.o | ||
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 466fbcc5cf77..85d3bb7490aa 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
@@ -115,8 +115,10 @@ | |||
115 | #include <net/checksum.h> | 115 | #include <net/checksum.h> |
116 | #include <linux/security.h> | 116 | #include <linux/security.h> |
117 | 117 | ||
118 | static struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1]; | 118 | struct hlist_head unix_socket_table[UNIX_HASH_SIZE + 1]; |
119 | static DEFINE_SPINLOCK(unix_table_lock); | 119 | EXPORT_SYMBOL_GPL(unix_socket_table); |
120 | DEFINE_SPINLOCK(unix_table_lock); | ||
121 | EXPORT_SYMBOL_GPL(unix_table_lock); | ||
120 | static atomic_long_t unix_nr_socks; | 122 | static atomic_long_t unix_nr_socks; |
121 | 123 | ||
122 | #define unix_sockets_unbound (&unix_socket_table[UNIX_HASH_SIZE]) | 124 | #define unix_sockets_unbound (&unix_socket_table[UNIX_HASH_SIZE]) |
@@ -172,7 +174,7 @@ static inline int unix_recvq_full(struct sock const *sk) | |||
172 | return skb_queue_len(&sk->sk_receive_queue) > sk->sk_max_ack_backlog; | 174 | return skb_queue_len(&sk->sk_receive_queue) > sk->sk_max_ack_backlog; |
173 | } | 175 | } |
174 | 176 | ||
175 | static struct sock *unix_peer_get(struct sock *s) | 177 | struct sock *unix_peer_get(struct sock *s) |
176 | { | 178 | { |
177 | struct sock *peer; | 179 | struct sock *peer; |
178 | 180 | ||
@@ -183,6 +185,7 @@ static struct sock *unix_peer_get(struct sock *s) | |||
183 | unix_state_unlock(s); | 185 | unix_state_unlock(s); |
184 | return peer; | 186 | return peer; |
185 | } | 187 | } |
188 | EXPORT_SYMBOL_GPL(unix_peer_get); | ||
186 | 189 | ||
187 | static inline void unix_release_addr(struct unix_address *addr) | 190 | static inline void unix_release_addr(struct unix_address *addr) |
188 | { | 191 | { |
@@ -847,7 +850,7 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) | |||
847 | atomic_set(&addr->refcnt, 1); | 850 | atomic_set(&addr->refcnt, 1); |
848 | 851 | ||
849 | if (sun_path[0]) { | 852 | if (sun_path[0]) { |
850 | unsigned int mode; | 853 | umode_t mode; |
851 | err = 0; | 854 | err = 0; |
852 | /* | 855 | /* |
853 | * Get the parent directory, calculate the hash for last | 856 | * Get the parent directory, calculate the hash for last |
@@ -1915,7 +1918,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
1915 | struct sk_buff *skb; | 1918 | struct sk_buff *skb; |
1916 | 1919 | ||
1917 | unix_state_lock(sk); | 1920 | unix_state_lock(sk); |
1918 | skb = skb_dequeue(&sk->sk_receive_queue); | 1921 | skb = skb_peek(&sk->sk_receive_queue); |
1919 | if (skb == NULL) { | 1922 | if (skb == NULL) { |
1920 | unix_sk(sk)->recursion_level = 0; | 1923 | unix_sk(sk)->recursion_level = 0; |
1921 | if (copied >= target) | 1924 | if (copied >= target) |
@@ -1955,10 +1958,8 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
1955 | if (check_creds) { | 1958 | if (check_creds) { |
1956 | /* Never glue messages from different writers */ | 1959 | /* Never glue messages from different writers */ |
1957 | if ((UNIXCB(skb).pid != siocb->scm->pid) || | 1960 | if ((UNIXCB(skb).pid != siocb->scm->pid) || |
1958 | (UNIXCB(skb).cred != siocb->scm->cred)) { | 1961 | (UNIXCB(skb).cred != siocb->scm->cred)) |
1959 | skb_queue_head(&sk->sk_receive_queue, skb); | ||
1960 | break; | 1962 | break; |
1961 | } | ||
1962 | } else { | 1963 | } else { |
1963 | /* Copy credentials */ | 1964 | /* Copy credentials */ |
1964 | scm_set_cred(siocb->scm, UNIXCB(skb).pid, UNIXCB(skb).cred); | 1965 | scm_set_cred(siocb->scm, UNIXCB(skb).pid, UNIXCB(skb).cred); |
@@ -1973,7 +1974,6 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
1973 | 1974 | ||
1974 | chunk = min_t(unsigned int, skb->len, size); | 1975 | chunk = min_t(unsigned int, skb->len, size); |
1975 | if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) { | 1976 | if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) { |
1976 | skb_queue_head(&sk->sk_receive_queue, skb); | ||
1977 | if (copied == 0) | 1977 | if (copied == 0) |
1978 | copied = -EFAULT; | 1978 | copied = -EFAULT; |
1979 | break; | 1979 | break; |
@@ -1988,12 +1988,10 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
1988 | if (UNIXCB(skb).fp) | 1988 | if (UNIXCB(skb).fp) |
1989 | unix_detach_fds(siocb->scm, skb); | 1989 | unix_detach_fds(siocb->scm, skb); |
1990 | 1990 | ||
1991 | /* put the skb back if we didn't use it up.. */ | 1991 | if (skb->len) |
1992 | if (skb->len) { | ||
1993 | skb_queue_head(&sk->sk_receive_queue, skb); | ||
1994 | break; | 1992 | break; |
1995 | } | ||
1996 | 1993 | ||
1994 | skb_unlink(skb, &sk->sk_receive_queue); | ||
1997 | consume_skb(skb); | 1995 | consume_skb(skb); |
1998 | 1996 | ||
1999 | if (siocb->scm->fp) | 1997 | if (siocb->scm->fp) |
@@ -2004,8 +2002,6 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
2004 | if (UNIXCB(skb).fp) | 2002 | if (UNIXCB(skb).fp) |
2005 | siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp); | 2003 | siocb->scm->fp = scm_fp_dup(UNIXCB(skb).fp); |
2006 | 2004 | ||
2007 | /* put message back and return */ | ||
2008 | skb_queue_head(&sk->sk_receive_queue, skb); | ||
2009 | break; | 2005 | break; |
2010 | } | 2006 | } |
2011 | } while (size); | 2007 | } while (size); |
@@ -2058,6 +2054,36 @@ static int unix_shutdown(struct socket *sock, int mode) | |||
2058 | return 0; | 2054 | return 0; |
2059 | } | 2055 | } |
2060 | 2056 | ||
2057 | long unix_inq_len(struct sock *sk) | ||
2058 | { | ||
2059 | struct sk_buff *skb; | ||
2060 | long amount = 0; | ||
2061 | |||
2062 | if (sk->sk_state == TCP_LISTEN) | ||
2063 | return -EINVAL; | ||
2064 | |||
2065 | spin_lock(&sk->sk_receive_queue.lock); | ||
2066 | if (sk->sk_type == SOCK_STREAM || | ||
2067 | sk->sk_type == SOCK_SEQPACKET) { | ||
2068 | skb_queue_walk(&sk->sk_receive_queue, skb) | ||
2069 | amount += skb->len; | ||
2070 | } else { | ||
2071 | skb = skb_peek(&sk->sk_receive_queue); | ||
2072 | if (skb) | ||
2073 | amount = skb->len; | ||
2074 | } | ||
2075 | spin_unlock(&sk->sk_receive_queue.lock); | ||
2076 | |||
2077 | return amount; | ||
2078 | } | ||
2079 | EXPORT_SYMBOL_GPL(unix_inq_len); | ||
2080 | |||
2081 | long unix_outq_len(struct sock *sk) | ||
2082 | { | ||
2083 | return sk_wmem_alloc_get(sk); | ||
2084 | } | ||
2085 | EXPORT_SYMBOL_GPL(unix_outq_len); | ||
2086 | |||
2061 | static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | 2087 | static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
2062 | { | 2088 | { |
2063 | struct sock *sk = sock->sk; | 2089 | struct sock *sk = sock->sk; |
@@ -2066,33 +2092,16 @@ static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) | |||
2066 | 2092 | ||
2067 | switch (cmd) { | 2093 | switch (cmd) { |
2068 | case SIOCOUTQ: | 2094 | case SIOCOUTQ: |
2069 | amount = sk_wmem_alloc_get(sk); | 2095 | amount = unix_outq_len(sk); |
2070 | err = put_user(amount, (int __user *)arg); | 2096 | err = put_user(amount, (int __user *)arg); |
2071 | break; | 2097 | break; |
2072 | case SIOCINQ: | 2098 | case SIOCINQ: |
2073 | { | 2099 | amount = unix_inq_len(sk); |
2074 | struct sk_buff *skb; | 2100 | if (amount < 0) |
2075 | 2101 | err = amount; | |
2076 | if (sk->sk_state == TCP_LISTEN) { | 2102 | else |
2077 | err = -EINVAL; | ||
2078 | break; | ||
2079 | } | ||
2080 | |||
2081 | spin_lock(&sk->sk_receive_queue.lock); | ||
2082 | if (sk->sk_type == SOCK_STREAM || | ||
2083 | sk->sk_type == SOCK_SEQPACKET) { | ||
2084 | skb_queue_walk(&sk->sk_receive_queue, skb) | ||
2085 | amount += skb->len; | ||
2086 | } else { | ||
2087 | skb = skb_peek(&sk->sk_receive_queue); | ||
2088 | if (skb) | ||
2089 | amount = skb->len; | ||
2090 | } | ||
2091 | spin_unlock(&sk->sk_receive_queue.lock); | ||
2092 | err = put_user(amount, (int __user *)arg); | 2103 | err = put_user(amount, (int __user *)arg); |
2093 | break; | 2104 | break; |
2094 | } | ||
2095 | |||
2096 | default: | 2105 | default: |
2097 | err = -ENOIOCTLCMD; | 2106 | err = -ENOIOCTLCMD; |
2098 | break; | 2107 | break; |
diff --git a/net/unix/diag.c b/net/unix/diag.c new file mode 100644 index 000000000000..6b7697fd911b --- /dev/null +++ b/net/unix/diag.c | |||
@@ -0,0 +1,329 @@ | |||
1 | #include <linux/types.h> | ||
2 | #include <linux/spinlock.h> | ||
3 | #include <linux/sock_diag.h> | ||
4 | #include <linux/unix_diag.h> | ||
5 | #include <linux/skbuff.h> | ||
6 | #include <linux/module.h> | ||
7 | #include <net/netlink.h> | ||
8 | #include <net/af_unix.h> | ||
9 | #include <net/tcp_states.h> | ||
10 | |||
11 | #define UNIX_DIAG_PUT(skb, attrtype, attrlen) \ | ||
12 | RTA_DATA(__RTA_PUT(skb, attrtype, attrlen)) | ||
13 | |||
14 | static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb) | ||
15 | { | ||
16 | struct unix_address *addr = unix_sk(sk)->addr; | ||
17 | char *s; | ||
18 | |||
19 | if (addr) { | ||
20 | s = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_NAME, addr->len - sizeof(short)); | ||
21 | memcpy(s, addr->name->sun_path, addr->len - sizeof(short)); | ||
22 | } | ||
23 | |||
24 | return 0; | ||
25 | |||
26 | rtattr_failure: | ||
27 | return -EMSGSIZE; | ||
28 | } | ||
29 | |||
30 | static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb) | ||
31 | { | ||
32 | struct dentry *dentry = unix_sk(sk)->dentry; | ||
33 | struct unix_diag_vfs *uv; | ||
34 | |||
35 | if (dentry) { | ||
36 | uv = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_VFS, sizeof(*uv)); | ||
37 | uv->udiag_vfs_ino = dentry->d_inode->i_ino; | ||
38 | uv->udiag_vfs_dev = dentry->d_sb->s_dev; | ||
39 | } | ||
40 | |||
41 | return 0; | ||
42 | |||
43 | rtattr_failure: | ||
44 | return -EMSGSIZE; | ||
45 | } | ||
46 | |||
47 | static int sk_diag_dump_peer(struct sock *sk, struct sk_buff *nlskb) | ||
48 | { | ||
49 | struct sock *peer; | ||
50 | int ino; | ||
51 | |||
52 | peer = unix_peer_get(sk); | ||
53 | if (peer) { | ||
54 | unix_state_lock(peer); | ||
55 | ino = sock_i_ino(peer); | ||
56 | unix_state_unlock(peer); | ||
57 | sock_put(peer); | ||
58 | |||
59 | RTA_PUT_U32(nlskb, UNIX_DIAG_PEER, ino); | ||
60 | } | ||
61 | |||
62 | return 0; | ||
63 | rtattr_failure: | ||
64 | return -EMSGSIZE; | ||
65 | } | ||
66 | |||
67 | static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb) | ||
68 | { | ||
69 | struct sk_buff *skb; | ||
70 | u32 *buf; | ||
71 | int i; | ||
72 | |||
73 | if (sk->sk_state == TCP_LISTEN) { | ||
74 | spin_lock(&sk->sk_receive_queue.lock); | ||
75 | buf = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_ICONS, | ||
76 | sk->sk_receive_queue.qlen * sizeof(u32)); | ||
77 | i = 0; | ||
78 | skb_queue_walk(&sk->sk_receive_queue, skb) { | ||
79 | struct sock *req, *peer; | ||
80 | |||
81 | req = skb->sk; | ||
82 | /* | ||
83 | * The state lock is outer for the same sk's | ||
84 | * queue lock. With the other's queue locked it's | ||
85 | * OK to lock the state. | ||
86 | */ | ||
87 | unix_state_lock_nested(req); | ||
88 | peer = unix_sk(req)->peer; | ||
89 | buf[i++] = (peer ? sock_i_ino(peer) : 0); | ||
90 | unix_state_unlock(req); | ||
91 | } | ||
92 | spin_unlock(&sk->sk_receive_queue.lock); | ||
93 | } | ||
94 | |||
95 | return 0; | ||
96 | |||
97 | rtattr_failure: | ||
98 | spin_unlock(&sk->sk_receive_queue.lock); | ||
99 | return -EMSGSIZE; | ||
100 | } | ||
101 | |||
102 | static int sk_diag_show_rqlen(struct sock *sk, struct sk_buff *nlskb) | ||
103 | { | ||
104 | struct unix_diag_rqlen *rql; | ||
105 | |||
106 | rql = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_RQLEN, sizeof(*rql)); | ||
107 | |||
108 | if (sk->sk_state == TCP_LISTEN) { | ||
109 | rql->udiag_rqueue = sk->sk_receive_queue.qlen; | ||
110 | rql->udiag_wqueue = sk->sk_max_ack_backlog; | ||
111 | } else { | ||
112 | rql->udiag_rqueue = (__u32)unix_inq_len(sk); | ||
113 | rql->udiag_wqueue = (__u32)unix_outq_len(sk); | ||
114 | } | ||
115 | |||
116 | return 0; | ||
117 | |||
118 | rtattr_failure: | ||
119 | return -EMSGSIZE; | ||
120 | } | ||
121 | |||
122 | static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req, | ||
123 | u32 pid, u32 seq, u32 flags, int sk_ino) | ||
124 | { | ||
125 | unsigned char *b = skb_tail_pointer(skb); | ||
126 | struct nlmsghdr *nlh; | ||
127 | struct unix_diag_msg *rep; | ||
128 | |||
129 | nlh = NLMSG_PUT(skb, pid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep)); | ||
130 | nlh->nlmsg_flags = flags; | ||
131 | |||
132 | rep = NLMSG_DATA(nlh); | ||
133 | |||
134 | rep->udiag_family = AF_UNIX; | ||
135 | rep->udiag_type = sk->sk_type; | ||
136 | rep->udiag_state = sk->sk_state; | ||
137 | rep->udiag_ino = sk_ino; | ||
138 | sock_diag_save_cookie(sk, rep->udiag_cookie); | ||
139 | |||
140 | if ((req->udiag_show & UDIAG_SHOW_NAME) && | ||
141 | sk_diag_dump_name(sk, skb)) | ||
142 | goto nlmsg_failure; | ||
143 | |||
144 | if ((req->udiag_show & UDIAG_SHOW_VFS) && | ||
145 | sk_diag_dump_vfs(sk, skb)) | ||
146 | goto nlmsg_failure; | ||
147 | |||
148 | if ((req->udiag_show & UDIAG_SHOW_PEER) && | ||
149 | sk_diag_dump_peer(sk, skb)) | ||
150 | goto nlmsg_failure; | ||
151 | |||
152 | if ((req->udiag_show & UDIAG_SHOW_ICONS) && | ||
153 | sk_diag_dump_icons(sk, skb)) | ||
154 | goto nlmsg_failure; | ||
155 | |||
156 | if ((req->udiag_show & UDIAG_SHOW_RQLEN) && | ||
157 | sk_diag_show_rqlen(sk, skb)) | ||
158 | goto nlmsg_failure; | ||
159 | |||
160 | if ((req->udiag_show & UDIAG_SHOW_MEMINFO) && | ||
161 | sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO)) | ||
162 | goto nlmsg_failure; | ||
163 | |||
164 | nlh->nlmsg_len = skb_tail_pointer(skb) - b; | ||
165 | return skb->len; | ||
166 | |||
167 | nlmsg_failure: | ||
168 | nlmsg_trim(skb, b); | ||
169 | return -EMSGSIZE; | ||
170 | } | ||
171 | |||
172 | static int sk_diag_dump(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req, | ||
173 | u32 pid, u32 seq, u32 flags) | ||
174 | { | ||
175 | int sk_ino; | ||
176 | |||
177 | unix_state_lock(sk); | ||
178 | sk_ino = sock_i_ino(sk); | ||
179 | unix_state_unlock(sk); | ||
180 | |||
181 | if (!sk_ino) | ||
182 | return 0; | ||
183 | |||
184 | return sk_diag_fill(sk, skb, req, pid, seq, flags, sk_ino); | ||
185 | } | ||
186 | |||
187 | static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb) | ||
188 | { | ||
189 | struct unix_diag_req *req; | ||
190 | int num, s_num, slot, s_slot; | ||
191 | |||
192 | req = NLMSG_DATA(cb->nlh); | ||
193 | |||
194 | s_slot = cb->args[0]; | ||
195 | num = s_num = cb->args[1]; | ||
196 | |||
197 | spin_lock(&unix_table_lock); | ||
198 | for (slot = s_slot; slot <= UNIX_HASH_SIZE; s_num = 0, slot++) { | ||
199 | struct sock *sk; | ||
200 | struct hlist_node *node; | ||
201 | |||
202 | num = 0; | ||
203 | sk_for_each(sk, node, &unix_socket_table[slot]) { | ||
204 | if (num < s_num) | ||
205 | goto next; | ||
206 | if (!(req->udiag_states & (1 << sk->sk_state))) | ||
207 | goto next; | ||
208 | if (sk_diag_dump(sk, skb, req, | ||
209 | NETLINK_CB(cb->skb).pid, | ||
210 | cb->nlh->nlmsg_seq, | ||
211 | NLM_F_MULTI) < 0) | ||
212 | goto done; | ||
213 | next: | ||
214 | num++; | ||
215 | } | ||
216 | } | ||
217 | done: | ||
218 | spin_unlock(&unix_table_lock); | ||
219 | cb->args[0] = slot; | ||
220 | cb->args[1] = num; | ||
221 | |||
222 | return skb->len; | ||
223 | } | ||
224 | |||
225 | static struct sock *unix_lookup_by_ino(int ino) | ||
226 | { | ||
227 | int i; | ||
228 | struct sock *sk; | ||
229 | |||
230 | spin_lock(&unix_table_lock); | ||
231 | for (i = 0; i <= UNIX_HASH_SIZE; i++) { | ||
232 | struct hlist_node *node; | ||
233 | |||
234 | sk_for_each(sk, node, &unix_socket_table[i]) | ||
235 | if (ino == sock_i_ino(sk)) { | ||
236 | sock_hold(sk); | ||
237 | spin_unlock(&unix_table_lock); | ||
238 | |||
239 | return sk; | ||
240 | } | ||
241 | } | ||
242 | |||
243 | spin_unlock(&unix_table_lock); | ||
244 | return NULL; | ||
245 | } | ||
246 | |||
247 | static int unix_diag_get_exact(struct sk_buff *in_skb, | ||
248 | const struct nlmsghdr *nlh, | ||
249 | struct unix_diag_req *req) | ||
250 | { | ||
251 | int err = -EINVAL; | ||
252 | struct sock *sk; | ||
253 | struct sk_buff *rep; | ||
254 | unsigned int extra_len; | ||
255 | |||
256 | if (req->udiag_ino == 0) | ||
257 | goto out_nosk; | ||
258 | |||
259 | sk = unix_lookup_by_ino(req->udiag_ino); | ||
260 | err = -ENOENT; | ||
261 | if (sk == NULL) | ||
262 | goto out_nosk; | ||
263 | |||
264 | err = sock_diag_check_cookie(sk, req->udiag_cookie); | ||
265 | if (err) | ||
266 | goto out; | ||
267 | |||
268 | extra_len = 256; | ||
269 | again: | ||
270 | err = -ENOMEM; | ||
271 | rep = alloc_skb(NLMSG_SPACE((sizeof(struct unix_diag_msg) + extra_len)), | ||
272 | GFP_KERNEL); | ||
273 | if (!rep) | ||
274 | goto out; | ||
275 | |||
276 | err = sk_diag_fill(sk, rep, req, NETLINK_CB(in_skb).pid, | ||
277 | nlh->nlmsg_seq, 0, req->udiag_ino); | ||
278 | if (err < 0) { | ||
279 | kfree_skb(rep); | ||
280 | extra_len += 256; | ||
281 | if (extra_len >= PAGE_SIZE) | ||
282 | goto out; | ||
283 | |||
284 | goto again; | ||
285 | } | ||
286 | err = netlink_unicast(sock_diag_nlsk, rep, NETLINK_CB(in_skb).pid, | ||
287 | MSG_DONTWAIT); | ||
288 | if (err > 0) | ||
289 | err = 0; | ||
290 | out: | ||
291 | if (sk) | ||
292 | sock_put(sk); | ||
293 | out_nosk: | ||
294 | return err; | ||
295 | } | ||
296 | |||
297 | static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h) | ||
298 | { | ||
299 | int hdrlen = sizeof(struct unix_diag_req); | ||
300 | |||
301 | if (nlmsg_len(h) < hdrlen) | ||
302 | return -EINVAL; | ||
303 | |||
304 | if (h->nlmsg_flags & NLM_F_DUMP) | ||
305 | return netlink_dump_start(sock_diag_nlsk, skb, h, | ||
306 | unix_diag_dump, NULL, 0); | ||
307 | else | ||
308 | return unix_diag_get_exact(skb, h, (struct unix_diag_req *)NLMSG_DATA(h)); | ||
309 | } | ||
310 | |||
311 | static struct sock_diag_handler unix_diag_handler = { | ||
312 | .family = AF_UNIX, | ||
313 | .dump = unix_diag_handler_dump, | ||
314 | }; | ||
315 | |||
316 | static int __init unix_diag_init(void) | ||
317 | { | ||
318 | return sock_diag_register(&unix_diag_handler); | ||
319 | } | ||
320 | |||
321 | static void __exit unix_diag_exit(void) | ||
322 | { | ||
323 | sock_diag_unregister(&unix_diag_handler); | ||
324 | } | ||
325 | |||
326 | module_init(unix_diag_init); | ||
327 | module_exit(unix_diag_exit); | ||
328 | MODULE_LICENSE("GPL"); | ||
329 | MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */); | ||