2012-03-31 02:46:00 +04:00
|
|
|
#include <sys/socket.h>
|
2011-12-26 22:12:03 +04:00
|
|
|
#include <linux/netlink.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/net.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/vfs.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2011-12-27 14:24:47 +04:00
|
|
|
#include <limits.h>
|
2012-02-29 16:06:56 +03:00
|
|
|
#include <sys/sendfile.h>
|
2011-12-27 14:24:47 +04:00
|
|
|
|
2011-12-26 22:12:03 +04:00
|
|
|
#include "types.h"
|
|
|
|
#include "libnetlink.h"
|
|
|
|
#include "sockets.h"
|
2012-04-23 14:12:00 +04:00
|
|
|
#include "sk-queue.h"
|
2011-12-26 22:12:03 +04:00
|
|
|
#include "unix_diag.h"
|
|
|
|
#include "image.h"
|
|
|
|
#include "crtools.h"
|
2011-12-27 14:24:47 +04:00
|
|
|
#include "util.h"
|
2012-01-17 21:30:00 +04:00
|
|
|
#include "inet_diag.h"
|
2012-03-29 16:40:10 +04:00
|
|
|
#include "files.h"
|
2012-03-29 16:44:15 +04:00
|
|
|
#include "util-net.h"
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
static char buf[4096];
|
|
|
|
|
|
|
|
#ifndef NETLINK_SOCK_DIAG
|
|
|
|
#define NETLINK_SOCK_DIAG NETLINK_INET_DIAG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SOCK_DIAG_BY_FAMILY
|
|
|
|
#define SOCK_DIAG_BY_FAMILY 20
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SOCKFS_MAGIC
|
|
|
|
#define SOCKFS_MAGIC 0x534F434B
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct unix_sk_desc {
|
2011-12-28 02:02:46 +04:00
|
|
|
struct socket_desc sd;
|
|
|
|
unsigned int type;
|
|
|
|
unsigned int state;
|
|
|
|
unsigned int peer_ino;
|
|
|
|
unsigned int rqlen;
|
2012-01-10 12:07:35 +04:00
|
|
|
unsigned int wqlen;
|
2011-12-28 02:02:46 +04:00
|
|
|
unsigned int namelen;
|
|
|
|
char *name;
|
2012-01-25 20:29:58 +04:00
|
|
|
unsigned int nr_icons;
|
2011-12-28 02:02:46 +04:00
|
|
|
unsigned int *icons;
|
2012-04-26 14:19:19 +04:00
|
|
|
struct list_head list;
|
2011-12-26 22:12:03 +04:00
|
|
|
};
|
|
|
|
|
2012-04-26 14:19:19 +04:00
|
|
|
static LIST_HEAD(unix_sockets);
|
|
|
|
|
2012-01-27 22:52:13 +04:00
|
|
|
struct unix_sk_listen_icon {
|
|
|
|
unsigned int peer_ino;
|
|
|
|
struct unix_sk_desc *sk_desc;
|
|
|
|
struct unix_sk_listen_icon *next;
|
|
|
|
};
|
|
|
|
|
2012-01-27 12:53:19 +04:00
|
|
|
#define SK_HASH_SIZE 32
|
|
|
|
#define SK_HASH_LINK(head, key, elem) \
|
|
|
|
do { \
|
|
|
|
(elem)->next = (head)[(key) % SK_HASH_SIZE]; \
|
|
|
|
(head)[(key) % SK_HASH_SIZE] = (elem); \
|
|
|
|
} while (0)
|
2012-01-27 22:52:13 +04:00
|
|
|
|
2012-01-10 15:49:38 +04:00
|
|
|
#define __gen_static_lookup_func(ret, name, head, _member, _type, _name)\
|
|
|
|
static ret *name(_type _name) { \
|
|
|
|
ret *d; \
|
|
|
|
for (d = head[_name % SK_HASH_SIZE]; d; d = d->next) { \
|
|
|
|
if (d->_member == _name) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
return d; \
|
2011-12-28 00:40:19 +04:00
|
|
|
}
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-27 12:53:19 +04:00
|
|
|
static struct socket_desc *sockets[SK_HASH_SIZE];
|
2012-02-10 17:53:53 +04:00
|
|
|
__gen_static_lookup_func(struct socket_desc, lookup_socket, sockets,
|
|
|
|
ino, int, ino);
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-27 22:52:13 +04:00
|
|
|
static struct unix_sk_listen_icon *unix_listen_icons[SK_HASH_SIZE];
|
2012-02-10 17:53:53 +04:00
|
|
|
__gen_static_lookup_func(struct unix_sk_listen_icon,
|
|
|
|
lookup_unix_listen_icons,
|
|
|
|
unix_listen_icons,
|
2012-01-27 22:52:13 +04:00
|
|
|
peer_ino, unsigned int, ino);
|
|
|
|
|
2012-04-26 14:30:42 +04:00
|
|
|
int sk_collect_one(int ino, int family, struct socket_desc *d)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2011-12-28 02:02:46 +04:00
|
|
|
d->ino = ino;
|
|
|
|
d->family = family;
|
|
|
|
|
2012-01-27 12:53:19 +04:00
|
|
|
SK_HASH_LINK(sockets, ino, d);
|
2011-12-28 02:02:46 +04:00
|
|
|
|
2011-12-26 22:12:03 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-10 17:53:56 +04:00
|
|
|
static void show_one_unix(char *act, const struct unix_sk_desc *sk)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2012-04-21 02:56:00 +04:00
|
|
|
pr_debug("\t%s: ino 0x%8x family %4d type %4d state %2d name %s\n",
|
|
|
|
act, sk->sd.ino, sk->sd.family, sk->type, sk->state, sk->name);
|
2012-01-25 20:32:01 +04:00
|
|
|
|
|
|
|
if (sk->nr_icons) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < sk->nr_icons; i++)
|
2012-02-17 22:51:23 +04:00
|
|
|
pr_debug("\t\ticon: %4d\n", sk->icons[i]);
|
2012-01-25 20:32:01 +04:00
|
|
|
}
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2012-02-10 17:53:56 +04:00
|
|
|
static void show_one_unix_img(const char *act, const struct unix_sk_entry *e)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2012-04-06 19:27:08 +04:00
|
|
|
pr_info("\t%s: id %u type %d state %d name %d bytes\n",
|
|
|
|
act, e->id, e->type, e->state, e->namelen);
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2012-02-10 17:53:56 +04:00
|
|
|
static int can_dump_unix_sk(const struct unix_sk_desc *sk)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2011-12-30 23:55:06 +04:00
|
|
|
if (sk->type != SOCK_STREAM &&
|
|
|
|
sk->type != SOCK_DGRAM) {
|
|
|
|
pr_err("Only stream/dgram sockets for now\n");
|
2011-12-26 22:12:03 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (sk->state) {
|
|
|
|
case TCP_LISTEN:
|
|
|
|
break;
|
|
|
|
case TCP_ESTABLISHED:
|
|
|
|
break;
|
2011-12-31 01:10:35 +04:00
|
|
|
case TCP_CLOSE:
|
|
|
|
if (sk->type != SOCK_DGRAM)
|
|
|
|
return 0;
|
|
|
|
break;
|
2011-12-26 22:12:03 +04:00
|
|
|
default:
|
|
|
|
pr_err("Unknown state %d\n", sk->state);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-04-10 18:10:19 +04:00
|
|
|
static int dump_one_unix(const struct socket_desc *_sk, struct fd_parms *p,
|
|
|
|
int lfd, const struct cr_fdset *cr_fdset)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2012-04-06 19:27:08 +04:00
|
|
|
struct unix_sk_desc *sk = (struct unix_sk_desc *)_sk;
|
|
|
|
struct fdinfo_entry fe;
|
2011-12-26 22:12:03 +04:00
|
|
|
struct unix_sk_entry ue;
|
|
|
|
|
|
|
|
if (!can_dump_unix_sk(sk))
|
|
|
|
goto err;
|
|
|
|
|
2012-04-10 18:10:19 +04:00
|
|
|
fe.fd = p->fd;
|
2012-04-06 19:27:08 +04:00
|
|
|
fe.type = FDINFO_UNIXSK;
|
|
|
|
fe.id = sk->sd.ino;
|
2012-04-10 18:36:59 +04:00
|
|
|
fe.flags = p->fd_flags;
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
if (write_img(fdset_fd(cr_fdset, CR_FD_FDINFO), &fe))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (sk->sd.already_dumped)
|
|
|
|
return 0;
|
|
|
|
|
2011-12-28 02:02:46 +04:00
|
|
|
ue.id = sk->sd.ino;
|
|
|
|
ue.type = sk->type;
|
|
|
|
ue.state = sk->state;
|
|
|
|
ue.namelen = sk->namelen;
|
2012-04-11 13:20:03 +04:00
|
|
|
ue.flags = p->flags;
|
2012-01-10 12:07:35 +04:00
|
|
|
ue.backlog = sk->wqlen;
|
2011-12-28 02:02:46 +04:00
|
|
|
ue.peer = sk->peer_ino;
|
2012-04-10 22:54:00 +04:00
|
|
|
ue.fown = p->fown;
|
2012-04-19 11:48:00 +04:00
|
|
|
ue.uflags = 0;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-04-05 18:12:51 +04:00
|
|
|
if (ue.peer) {
|
|
|
|
struct unix_sk_desc *peer;
|
|
|
|
|
|
|
|
peer = (struct unix_sk_desc *)lookup_socket(ue.peer);
|
|
|
|
if (!peer) {
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_err("Unix socket %#x without peer %#x\n",
|
2012-04-05 18:12:51 +04:00
|
|
|
ue.id, ue.peer);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peer should have us as peer or have a name by which
|
|
|
|
* we can access one.
|
|
|
|
*/
|
2012-04-19 11:48:00 +04:00
|
|
|
if (peer->peer_ino != ue.id) {
|
|
|
|
if (!peer->name) {
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_err("Unix socket %#x with unreachable peer %#x (%#x/%s)\n",
|
2012-04-19 11:48:00 +04:00
|
|
|
ue.id, ue.peer, peer->peer_ino, peer->name);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It can be external socket, so we defer dumping
|
|
|
|
* until all sockets the program owns are processed.
|
|
|
|
*/
|
2012-04-26 14:19:19 +04:00
|
|
|
if (!peer->sd.already_dumped)
|
|
|
|
list_add_tail(&peer->list, &unix_sockets);
|
2012-04-05 18:12:51 +04:00
|
|
|
}
|
|
|
|
} else if (ue.state == TCP_ESTABLISHED) {
|
2012-02-10 17:53:56 +04:00
|
|
|
const struct unix_sk_listen_icon *e;
|
2012-01-27 22:52:13 +04:00
|
|
|
|
2012-04-05 18:12:51 +04:00
|
|
|
/*
|
|
|
|
* If this is in-flight connection we need to figure
|
|
|
|
* out where to connect it on restore. Thus, tune up peer
|
|
|
|
* id by searching an existing listening socket.
|
|
|
|
*
|
|
|
|
* Note the socket name will be found at restore stage,
|
|
|
|
* not now, just to reduce size of dump files.
|
|
|
|
*/
|
|
|
|
|
2012-01-27 22:52:13 +04:00
|
|
|
e = lookup_unix_listen_icons(ue.id);
|
|
|
|
if (!e) {
|
|
|
|
pr_err("Dangling in-flight connection %d\n", ue.id);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* e->sk_desc is _never_ NULL */
|
|
|
|
if (e->sk_desc->state != TCP_LISTEN) {
|
|
|
|
pr_err("In-flight connection on "
|
|
|
|
"non-listening socket %d\n", ue.id);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-04-14 12:13:00 +04:00
|
|
|
ue.peer = e->sk_desc->sd.ino;
|
2012-01-27 22:52:13 +04:00
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_debug("\t\tFixed inflight socket %#x peer %#x)\n",
|
2012-02-10 17:53:54 +04:00
|
|
|
ue.id, ue.peer);
|
2012-01-27 22:52:13 +04:00
|
|
|
}
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
if (write_img(fdset_fd(glob_fdset, CR_FD_UNIXSK), &ue))
|
2012-01-22 20:20:40 +04:00
|
|
|
goto err;
|
2012-04-06 19:27:08 +04:00
|
|
|
if (write_img_buf(fdset_fd(glob_fdset, CR_FD_UNIXSK), sk->name, ue.namelen))
|
2012-01-22 20:20:40 +04:00
|
|
|
goto err;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-02-29 16:07:04 +03:00
|
|
|
if (sk->rqlen != 0 && !(sk->type == SOCK_STREAM &&
|
|
|
|
sk->state == TCP_LISTEN))
|
2012-04-23 14:12:00 +04:00
|
|
|
if (dump_sk_queue(lfd, ue.id))
|
2012-02-29 16:07:04 +03:00
|
|
|
goto err;
|
|
|
|
|
2012-04-10 18:10:19 +04:00
|
|
|
pr_info("Dumping unix socket at %d\n", p->fd);
|
2011-12-26 22:12:03 +04:00
|
|
|
show_one_unix("Dumping", sk);
|
|
|
|
show_one_unix_img("Dumped", &ue);
|
|
|
|
|
2012-04-26 14:19:19 +04:00
|
|
|
list_del_init(&sk->list);
|
2012-04-06 19:27:08 +04:00
|
|
|
sk->sd.already_dumped = 1;
|
2011-12-26 22:12:03 +04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-03-29 16:44:15 +04:00
|
|
|
int dump_socket(struct fd_parms *p, int lfd, const struct cr_fdset *cr_fdset)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
2012-03-27 12:42:59 +04:00
|
|
|
struct socket_desc *sk;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-03-29 16:40:10 +04:00
|
|
|
sk = lookup_socket(p->stat.st_ino);
|
2011-12-28 02:02:46 +04:00
|
|
|
if (!sk) {
|
2012-04-21 02:56:00 +04:00
|
|
|
pr_err("Uncollected socket 0x%8x\n", (int)p->stat.st_ino);
|
2011-12-26 22:12:03 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (sk->family) {
|
|
|
|
case AF_UNIX:
|
2012-04-10 18:10:19 +04:00
|
|
|
return dump_one_unix(sk, p, lfd, cr_fdset);
|
2012-01-17 21:30:00 +04:00
|
|
|
case AF_INET:
|
2012-04-21 02:56:00 +04:00
|
|
|
case AF_INET6:
|
2012-04-10 18:10:19 +04:00
|
|
|
return dump_one_inet(sk, p, cr_fdset);
|
2011-12-26 22:12:03 +04:00
|
|
|
default:
|
|
|
|
pr_err("BUG! Unknown socket collected\n");
|
2012-01-12 23:50:45 +04:00
|
|
|
break;
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
2012-01-12 23:50:45 +04:00
|
|
|
|
|
|
|
return -1;
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2012-01-17 21:30:00 +04:00
|
|
|
static int inet_tcp_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
2012-04-21 02:56:00 +04:00
|
|
|
return inet_collect_one(h, AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
2012-03-02 15:47:21 +04:00
|
|
|
}
|
2012-01-17 21:30:00 +04:00
|
|
|
|
2012-03-02 15:47:21 +04:00
|
|
|
static int inet_udp_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
2012-04-21 02:56:00 +04:00
|
|
|
return inet_collect_one(h, AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
2012-01-17 21:30:00 +04:00
|
|
|
}
|
|
|
|
|
2012-04-13 10:42:30 +04:00
|
|
|
static int inet_udplite_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
2012-04-21 02:56:00 +04:00
|
|
|
return inet_collect_one(h, AF_INET, SOCK_DGRAM, IPPROTO_UDPLITE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int inet6_tcp_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
return inet_collect_one(h, AF_INET6, SOCK_STREAM, IPPROTO_TCP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int inet6_udp_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
return inet_collect_one(h, AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int inet6_udplite_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
return inet_collect_one(h, AF_INET6, SOCK_DGRAM, IPPROTO_UDPLITE);
|
2012-04-13 10:42:30 +04:00
|
|
|
}
|
|
|
|
|
2012-02-10 17:53:56 +04:00
|
|
|
static int unix_collect_one(const struct unix_diag_msg *m,
|
|
|
|
struct rtattr **tb)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
|
|
|
struct unix_sk_desc *d, **h;
|
|
|
|
|
|
|
|
d = xzalloc(sizeof(*d));
|
2011-12-28 02:02:46 +04:00
|
|
|
if (!d)
|
2011-12-26 22:12:03 +04:00
|
|
|
return -1;
|
|
|
|
|
2011-12-28 02:02:46 +04:00
|
|
|
d->type = m->udiag_type;
|
|
|
|
d->state= m->udiag_state;
|
2012-04-26 14:19:19 +04:00
|
|
|
INIT_LIST_HEAD(&d->list);
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
if (tb[UNIX_DIAG_PEER])
|
|
|
|
d->peer_ino = *(int *)RTA_DATA(tb[UNIX_DIAG_PEER]);
|
|
|
|
|
|
|
|
if (tb[UNIX_DIAG_NAME]) {
|
2011-12-28 02:02:46 +04:00
|
|
|
int len = RTA_PAYLOAD(tb[UNIX_DIAG_NAME]);
|
|
|
|
char *name = xmalloc(len + 1);
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
if (!name)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
memcpy(name, RTA_DATA(tb[UNIX_DIAG_NAME]), len);
|
|
|
|
name[len] = '\0';
|
|
|
|
|
2012-04-05 17:39:33 +04:00
|
|
|
if (name[0] != '\0') {
|
2011-12-26 22:12:03 +04:00
|
|
|
struct unix_diag_vfs *uv;
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (name[0] != '/') {
|
2012-03-01 18:52:42 +04:00
|
|
|
pr_warn("Relative bind path '%s' "
|
|
|
|
"unsupported\n", name);
|
2012-01-12 19:28:46 +04:00
|
|
|
xfree(name);
|
|
|
|
xfree(d);
|
2012-01-12 17:45:24 +03:00
|
|
|
return 0;
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!tb[UNIX_DIAG_VFS]) {
|
|
|
|
pr_err("Bound socket w/o inode %d\n",
|
|
|
|
m->udiag_ino);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
uv = RTA_DATA(tb[UNIX_DIAG_VFS]);
|
|
|
|
if (stat(name, &st)) {
|
2012-01-31 15:13:05 +04:00
|
|
|
pr_perror("Can't stat socket %d(%s)",
|
2011-12-26 22:12:03 +04:00
|
|
|
m->udiag_ino, name);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((st.st_ino != uv->udiag_vfs_ino) ||
|
2012-02-08 16:09:04 +04:00
|
|
|
(st.st_dev != kdev_to_odev(uv->udiag_vfs_dev))) {
|
2012-02-10 17:53:54 +04:00
|
|
|
pr_info("unix: Dropping path for "
|
|
|
|
"unlinked bound "
|
2012-04-24 15:20:24 +04:00
|
|
|
"sk %#x.%#x real %#x.%#x\n",
|
2012-02-10 17:53:54 +04:00
|
|
|
(int)st.st_dev,
|
|
|
|
(int)st.st_ino,
|
|
|
|
(int)uv->udiag_vfs_dev,
|
|
|
|
(int)uv->udiag_vfs_ino);
|
2011-12-26 22:12:03 +04:00
|
|
|
/*
|
2012-04-05 17:39:33 +04:00
|
|
|
* When a socket is bound to unlinked file, we
|
|
|
|
* just drop his name, since noone will access
|
|
|
|
* it via one.
|
2011-12-26 22:12:03 +04:00
|
|
|
*/
|
|
|
|
xfree(name);
|
|
|
|
len = 0;
|
|
|
|
name = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
d->namelen = len;
|
|
|
|
d->name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tb[UNIX_DIAG_ICONS]) {
|
|
|
|
int len = RTA_PAYLOAD(tb[UNIX_DIAG_ICONS]);
|
2012-01-27 22:52:13 +04:00
|
|
|
int i;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-25 20:29:58 +04:00
|
|
|
d->icons = xmalloc(len);
|
2011-12-26 22:12:03 +04:00
|
|
|
if (!d->icons)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
memcpy(d->icons, RTA_DATA(tb[UNIX_DIAG_ICONS]), len);
|
2012-01-25 20:29:58 +04:00
|
|
|
d->nr_icons = len / sizeof(u32);
|
2012-01-27 22:52:13 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Remember these sockets, we will need them
|
|
|
|
* to fix up in-flight sockets peers.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < d->nr_icons; i++) {
|
|
|
|
struct unix_sk_listen_icon *e;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
e = xzalloc(sizeof(*e));
|
|
|
|
if (!e)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
SK_HASH_LINK(unix_listen_icons, d->icons[i], e);
|
|
|
|
|
2012-02-17 22:51:23 +04:00
|
|
|
pr_debug("\t\tCollected icon %d\n", d->icons[i]);
|
2012-01-27 22:52:13 +04:00
|
|
|
|
|
|
|
e->peer_ino = d->icons[i];
|
|
|
|
e->sk_desc = d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2012-01-10 12:07:35 +04:00
|
|
|
if (tb[UNIX_DIAG_RQLEN]) {
|
|
|
|
struct unix_diag_rqlen *rq;
|
|
|
|
|
|
|
|
rq = (struct unix_diag_rqlen *)RTA_DATA(tb[UNIX_DIAG_RQLEN]);
|
|
|
|
d->rqlen = rq->udiag_rqueue;
|
|
|
|
d->wqlen = rq->udiag_wqueue;
|
|
|
|
}
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-26 13:19:04 +04:00
|
|
|
sk_collect_one(m->udiag_ino, AF_UNIX, &d->sd);
|
2011-12-26 22:12:03 +04:00
|
|
|
show_one_unix("Collected", d);
|
|
|
|
|
2012-01-26 13:19:04 +04:00
|
|
|
return 0;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
err:
|
|
|
|
xfree(d->icons);
|
|
|
|
xfree(d->name);
|
|
|
|
xfree(d);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int unix_receive_one(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
struct unix_diag_msg *m = NLMSG_DATA(h);
|
|
|
|
struct rtattr *tb[UNIX_DIAG_MAX+1];
|
|
|
|
|
|
|
|
parse_rtattr(tb, UNIX_DIAG_MAX, (struct rtattr *)(m + 1),
|
2011-12-28 02:02:46 +04:00
|
|
|
h->nlmsg_len - NLMSG_LENGTH(sizeof(*m)));
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
return unix_collect_one(m, tb);
|
|
|
|
}
|
|
|
|
|
2012-01-17 16:28:21 +03:00
|
|
|
static int collect_sockets_nl(int nl, void *req, int size,
|
|
|
|
int (*receive_callback)(struct nlmsghdr *h))
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
|
|
|
struct msghdr msg;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
struct iovec iov;
|
|
|
|
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
2011-12-28 02:02:46 +04:00
|
|
|
msg.msg_name = &nladdr;
|
|
|
|
msg.msg_namelen = sizeof(nladdr);
|
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
2011-12-28 02:02:46 +04:00
|
|
|
nladdr.nl_family= AF_NETLINK;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-17 16:28:21 +03:00
|
|
|
iov.iov_base = req;
|
|
|
|
iov.iov_len = size;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
if (sendmsg(nl, &msg, 0) < 0) {
|
2012-01-31 15:13:05 +04:00
|
|
|
pr_perror("Can't send request message");
|
2011-12-28 02:02:46 +04:00
|
|
|
goto err;
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2011-12-28 02:02:46 +04:00
|
|
|
iov.iov_base = buf;
|
|
|
|
iov.iov_len = sizeof(buf);
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int err;
|
|
|
|
|
|
|
|
memset(&msg, 0, sizeof(msg));
|
2011-12-28 02:02:46 +04:00
|
|
|
msg.msg_name = &nladdr;
|
|
|
|
msg.msg_namelen = sizeof(nladdr);
|
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
err = recvmsg(nl, &msg, 0);
|
|
|
|
if (err < 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
2012-01-19 19:16:55 +04:00
|
|
|
else {
|
2012-01-31 15:13:05 +04:00
|
|
|
pr_perror("Error receiving nl report");
|
2011-12-28 02:02:46 +04:00
|
|
|
goto err;
|
2012-01-19 19:16:55 +04:00
|
|
|
}
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
if (err == 0)
|
|
|
|
break;
|
|
|
|
|
2012-01-17 16:28:21 +03:00
|
|
|
err = nlmsg_receive(buf, err, receive_callback);
|
2011-12-26 22:12:03 +04:00
|
|
|
if (err < 0)
|
2011-12-28 02:02:46 +04:00
|
|
|
goto err;
|
2011-12-26 22:12:03 +04:00
|
|
|
if (err == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2011-12-28 02:02:46 +04:00
|
|
|
err:
|
2011-12-26 22:12:03 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
int fix_external_unix_sockets(void)
|
2012-04-19 11:48:00 +04:00
|
|
|
{
|
2012-04-26 14:19:19 +04:00
|
|
|
struct unix_sk_desc *sk;
|
2012-04-19 11:48:00 +04:00
|
|
|
int i, ret = -1;
|
|
|
|
|
|
|
|
pr_debug("Dumping external sockets\n");
|
|
|
|
|
2012-04-26 14:19:19 +04:00
|
|
|
list_for_each_entry(sk, &unix_sockets, list) {
|
2012-04-26 14:20:22 +04:00
|
|
|
struct unix_sk_entry e = { };
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
BUG_ON(sk->sd.already_dumped);
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
if (!opts.ext_unix_sk) {
|
|
|
|
show_one_unix("Runaway socket", sk);
|
|
|
|
goto err;
|
|
|
|
}
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
if (sk->type != SOCK_DGRAM) {
|
|
|
|
show_one_unix("Ext stream not supported", sk);
|
|
|
|
goto err;
|
|
|
|
}
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
e.id = sk->sd.ino;
|
|
|
|
e.type = SOCK_DGRAM;
|
|
|
|
e.state = TCP_LISTEN;
|
|
|
|
e.namelen = sk->namelen;
|
|
|
|
e.uflags = USK_EXTERN;
|
|
|
|
e.peer = 0;
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
show_one_unix("Dumping extern", sk);
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
if (write_img(fdset_fd(glob_fdset, CR_FD_UNIXSK), &e))
|
|
|
|
goto err;
|
|
|
|
if (write_img_buf(fdset_fd(glob_fdset, CR_FD_UNIXSK),
|
|
|
|
sk->name, e.namelen))
|
|
|
|
goto err;
|
2012-04-19 11:48:00 +04:00
|
|
|
|
2012-04-26 14:20:22 +04:00
|
|
|
show_one_unix_img("Dumped extern", &e);
|
2012-04-19 11:48:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-12-26 22:12:03 +04:00
|
|
|
int collect_sockets(void)
|
|
|
|
{
|
2012-01-19 19:16:55 +04:00
|
|
|
int err = 0, tmp;
|
2011-12-26 22:12:03 +04:00
|
|
|
int nl;
|
2012-01-17 16:28:21 +03:00
|
|
|
int supp_type = 0;
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr hdr;
|
|
|
|
union {
|
2012-01-20 16:07:52 +04:00
|
|
|
struct unix_diag_req u;
|
|
|
|
struct inet_diag_req_v2 i;
|
2012-01-17 16:28:21 +03:00
|
|
|
} r;
|
|
|
|
} req;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
nl = socket(PF_NETLINK, SOCK_RAW, NETLINK_SOCK_DIAG);
|
|
|
|
if (nl < 0) {
|
2012-02-11 03:30:10 +04:00
|
|
|
pr_perror("Can't create sock diag socket");
|
2011-12-26 22:12:03 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-01-17 16:28:21 +03:00
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
req.hdr.nlmsg_len = sizeof(req);
|
|
|
|
req.hdr.nlmsg_type = SOCK_DIAG_BY_FAMILY;
|
|
|
|
req.hdr.nlmsg_flags = NLM_F_DUMP | NLM_F_REQUEST;
|
|
|
|
req.hdr.nlmsg_seq = CR_NLMSG_SEQ;
|
2011-12-28 02:02:46 +04:00
|
|
|
|
2012-01-17 16:28:21 +03:00
|
|
|
/* Collect UNIX sockets */
|
|
|
|
req.r.u.sdiag_family = AF_UNIX;
|
|
|
|
req.r.u.udiag_states = -1; /* All */
|
|
|
|
req.r.u.udiag_show = UDIAG_SHOW_NAME | UDIAG_SHOW_VFS |
|
|
|
|
UDIAG_SHOW_PEER | UDIAG_SHOW_ICONS |
|
|
|
|
UDIAG_SHOW_RQLEN;
|
2012-01-19 19:16:55 +04:00
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), unix_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
2012-01-17 16:28:21 +03:00
|
|
|
|
2012-01-17 21:30:00 +04:00
|
|
|
/* Collect IPv4 TCP sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_TCP;
|
2012-01-19 19:17:54 +04:00
|
|
|
req.r.i.idiag_ext = 0;
|
2012-01-17 21:30:00 +04:00
|
|
|
/* Only listening sockets supported yet */
|
|
|
|
req.r.i.idiag_states = 1 << TCP_LISTEN;
|
2012-01-19 19:16:55 +04:00
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet_tcp_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
2012-01-17 21:30:00 +04:00
|
|
|
|
2012-03-02 15:47:21 +04:00
|
|
|
/* Collect IPv4 UDP sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_UDP;
|
|
|
|
req.r.i.idiag_ext = 0;
|
|
|
|
req.r.i.idiag_states = -1; /* All */
|
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet_udp_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
|
|
|
|
2012-04-13 10:42:30 +04:00
|
|
|
/* Collect IPv4 UDP-lite sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_UDPLITE;
|
|
|
|
req.r.i.idiag_ext = 0;
|
|
|
|
req.r.i.idiag_states = -1; /* All */
|
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet_udplite_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
|
|
|
|
2012-04-21 02:56:00 +04:00
|
|
|
/* Collect IPv6 TCP sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET6;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_TCP;
|
|
|
|
req.r.i.idiag_ext = 0;
|
|
|
|
/* Only listening sockets supported yet */
|
|
|
|
req.r.i.idiag_states = 1 << TCP_LISTEN;
|
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet6_tcp_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
|
|
|
|
|
|
|
/* Collect IPv6 UDP sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET6;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_UDP;
|
|
|
|
req.r.i.idiag_ext = 0;
|
|
|
|
req.r.i.idiag_states = -1; /* All */
|
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet6_udp_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
|
|
|
|
|
|
|
/* Collect IPv6 UDP-lite sockets */
|
|
|
|
req.r.i.sdiag_family = AF_INET6;
|
|
|
|
req.r.i.sdiag_protocol = IPPROTO_UDPLITE;
|
|
|
|
req.r.i.idiag_ext = 0;
|
|
|
|
req.r.i.idiag_states = -1; /* All */
|
|
|
|
tmp = collect_sockets_nl(nl, &req, sizeof(req), inet6_udplite_receive_one);
|
|
|
|
if (tmp)
|
|
|
|
err = tmp;
|
2012-01-17 16:28:21 +03:00
|
|
|
out:
|
|
|
|
close(nl);
|
2011-12-26 22:12:03 +04:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
struct unix_sk_info {
|
|
|
|
struct unix_sk_entry ue;
|
|
|
|
struct list_head list;
|
|
|
|
char *name;
|
|
|
|
unsigned flags;
|
|
|
|
struct unix_sk_info *peer;
|
2012-04-06 20:03:31 +04:00
|
|
|
struct file_desc d;
|
2012-04-06 19:27:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define USK_PAIR_MASTER 0x1
|
|
|
|
#define USK_PAIR_SLAVE 0x2
|
|
|
|
|
|
|
|
static struct unix_sk_info *find_unix_sk(int id)
|
|
|
|
{
|
2012-04-06 20:30:48 +04:00
|
|
|
struct file_desc *d;
|
2012-04-06 19:27:08 +04:00
|
|
|
|
2012-04-06 20:30:48 +04:00
|
|
|
d = find_file_desc_raw(FDINFO_UNIXSK, id);
|
2012-04-12 22:44:00 +04:00
|
|
|
if (d)
|
|
|
|
return container_of(d, struct unix_sk_info, d);
|
|
|
|
return NULL;
|
2012-04-06 19:27:08 +04:00
|
|
|
}
|
|
|
|
|
2012-03-27 13:11:23 +04:00
|
|
|
static inline char *unknown(u32 val)
|
|
|
|
{
|
|
|
|
static char unk[12];
|
|
|
|
snprintf(unk, sizeof(unk), "x%d", val);
|
|
|
|
return unk;
|
|
|
|
}
|
|
|
|
|
2012-04-26 14:30:42 +04:00
|
|
|
char *skfamily2s(u32 f)
|
2012-03-27 13:11:23 +04:00
|
|
|
{
|
|
|
|
if (f == AF_INET)
|
|
|
|
return " inet";
|
2012-04-21 02:56:00 +04:00
|
|
|
else if (f == AF_INET6)
|
|
|
|
return "inet6";
|
2012-03-27 13:11:23 +04:00
|
|
|
else
|
|
|
|
return unknown(f);
|
|
|
|
}
|
|
|
|
|
2012-04-26 14:30:42 +04:00
|
|
|
char *sktype2s(u32 t)
|
2012-03-27 13:11:23 +04:00
|
|
|
{
|
|
|
|
if (t == SOCK_STREAM)
|
|
|
|
return "stream";
|
|
|
|
else if (t == SOCK_DGRAM)
|
|
|
|
return " dgram";
|
|
|
|
else
|
|
|
|
return unknown(t);
|
|
|
|
}
|
|
|
|
|
2012-04-26 14:30:42 +04:00
|
|
|
char *skproto2s(u32 p)
|
2012-03-27 13:11:23 +04:00
|
|
|
{
|
|
|
|
if (p == IPPROTO_UDP)
|
|
|
|
return "udp";
|
2012-04-13 10:42:30 +04:00
|
|
|
else if (p == IPPROTO_UDPLITE)
|
|
|
|
return "udpl";
|
2012-03-27 13:11:23 +04:00
|
|
|
else if (p == IPPROTO_TCP)
|
|
|
|
return "tcp";
|
|
|
|
else
|
|
|
|
return unknown(p);
|
|
|
|
}
|
|
|
|
|
2012-04-26 14:30:42 +04:00
|
|
|
char *skstate2s(u32 state)
|
2012-03-27 13:11:23 +04:00
|
|
|
{
|
|
|
|
if (state == TCP_ESTABLISHED)
|
|
|
|
return " estab";
|
|
|
|
else if (state == TCP_CLOSE)
|
|
|
|
return "closed";
|
|
|
|
else if (state == TCP_LISTEN)
|
|
|
|
return "listen";
|
|
|
|
else
|
|
|
|
return unknown(state);
|
|
|
|
}
|
|
|
|
|
2012-03-27 12:01:14 +04:00
|
|
|
void show_unixsk(int fd, struct cr_options *o)
|
2011-12-26 22:12:03 +04:00
|
|
|
{
|
|
|
|
struct unix_sk_entry ue;
|
2011-12-30 18:24:55 +04:00
|
|
|
int ret = 0;
|
2011-12-26 22:12:03 +04:00
|
|
|
|
2012-01-12 15:16:33 +04:00
|
|
|
pr_img_head(CR_FD_UNIXSK);
|
2011-12-26 22:12:03 +04:00
|
|
|
|
|
|
|
while (1) {
|
2012-01-22 20:20:40 +04:00
|
|
|
ret = read_img_eof(fd, &ue);
|
|
|
|
if (ret <= 0)
|
2011-12-26 22:12:03 +04:00
|
|
|
goto out;
|
|
|
|
|
2012-04-19 11:48:00 +04:00
|
|
|
pr_msg("id 0x%8x type %s state %s namelen %4d backlog %4d peer 0x%8x flags 0x%2x uflags 0x%2x",
|
2012-04-06 19:27:08 +04:00
|
|
|
ue.id, sktype2s(ue.type), skstate2s(ue.state),
|
2012-04-19 11:48:00 +04:00
|
|
|
ue.namelen, ue.backlog, ue.peer, ue.flags, ue.uflags);
|
2011-12-30 18:24:55 +04:00
|
|
|
|
|
|
|
if (ue.namelen) {
|
2012-02-11 03:30:09 +04:00
|
|
|
BUG_ON(ue.namelen > sizeof(buf));
|
2012-01-22 20:20:40 +04:00
|
|
|
ret = read_img_buf(fd, buf, ue.namelen);
|
|
|
|
if (ret < 0) {
|
|
|
|
pr_info("\n");
|
2011-12-30 18:24:55 +04:00
|
|
|
goto out;
|
2012-01-22 20:20:40 +04:00
|
|
|
}
|
2011-12-30 18:24:55 +04:00
|
|
|
if (!buf[0])
|
|
|
|
buf[0] = '@';
|
2012-03-27 13:11:23 +04:00
|
|
|
pr_msg(" --> %s\n", buf);
|
2011-12-30 18:24:55 +04:00
|
|
|
} else
|
2012-03-27 13:11:23 +04:00
|
|
|
pr_msg("\n");
|
2012-04-10 22:54:00 +04:00
|
|
|
pr_msg("\t"), show_fown_cont(&ue.fown), pr_msg("\n");
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
out:
|
2012-01-12 15:16:33 +04:00
|
|
|
pr_img_tail(CR_FD_UNIXSK);
|
2011-12-26 22:12:03 +04:00
|
|
|
}
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
struct unix_conn_job {
|
|
|
|
struct unix_sk_info *sk;
|
|
|
|
struct unix_conn_job *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct unix_conn_job *conn_jobs;
|
|
|
|
|
|
|
|
static int schedule_conn_job(struct unix_sk_info *ui)
|
|
|
|
{
|
|
|
|
struct unix_conn_job *cj;
|
|
|
|
|
|
|
|
cj = xmalloc(sizeof(*cj));
|
|
|
|
if (!cj)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
cj->sk = ui;
|
|
|
|
cj->next = conn_jobs;
|
|
|
|
conn_jobs = cj;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int run_unix_connections(void)
|
|
|
|
{
|
|
|
|
struct unix_conn_job *cj;
|
|
|
|
|
|
|
|
pr_info("Running delayed unix connections\n");
|
|
|
|
|
|
|
|
cj = conn_jobs;
|
|
|
|
while (cj) {
|
|
|
|
int attempts = 8;
|
|
|
|
struct unix_sk_info *ui = cj->sk;
|
|
|
|
struct unix_sk_info *peer = ui->peer;
|
|
|
|
struct fdinfo_list_entry *fle;
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("\tConnect %#x to %#x\n", ui->ue.id, peer->ue.id);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
fle = file_master(&ui->d);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
memcpy(&addr.sun_path, peer->name, peer->ue.namelen);
|
|
|
|
try_again:
|
2012-04-18 16:03:14 +04:00
|
|
|
if (connect(fle->fe.fd, (struct sockaddr *)&addr,
|
2012-04-06 19:27:08 +04:00
|
|
|
sizeof(addr.sun_family) +
|
|
|
|
peer->ue.namelen) < 0) {
|
|
|
|
if (attempts) {
|
|
|
|
usleep(1000);
|
|
|
|
attempts--;
|
|
|
|
goto try_again; /* FIXME use futex waiters */
|
|
|
|
}
|
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_perror("Can't connect %#x socket", ui->ue.id);
|
2012-04-06 19:27:08 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-23 14:12:00 +04:00
|
|
|
if (restore_sk_queue(fle->fe.fd, peer->ue.id))
|
2012-04-06 19:27:08 +04:00
|
|
|
return -1;
|
|
|
|
|
2012-04-26 14:03:49 +04:00
|
|
|
if (rst_file_params(fle->fe.fd, &ui->ue.fown, ui->ue.flags))
|
2012-04-26 13:55:41 +04:00
|
|
|
return -1;
|
2012-04-11 13:20:03 +04:00
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
cj = cj->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int bind_unix_sk(int sk, struct unix_sk_info *ui)
|
|
|
|
{
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
|
|
|
if ((ui->ue.type == SOCK_STREAM) && (ui->ue.state != TCP_LISTEN))
|
|
|
|
/*
|
|
|
|
* FIXME this can be done, but for doing this properly we
|
|
|
|
* need to bind socket to its name, then rename one to
|
|
|
|
* some temporary unique one and after all the sockets are
|
|
|
|
* restored we should walk those temp names and rename
|
|
|
|
* some of them back to real ones.
|
|
|
|
*/
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
memcpy(&addr.sun_path, ui->name, ui->ue.namelen);
|
|
|
|
|
|
|
|
if (bind(sk, (struct sockaddr *)&addr,
|
|
|
|
sizeof(addr.sun_family) + ui->ue.namelen)) {
|
|
|
|
pr_perror("Can't bind socket");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-06 20:39:48 +04:00
|
|
|
static int unixsk_should_open_transport(struct fdinfo_entry *fe,
|
2012-04-06 20:03:31 +04:00
|
|
|
struct file_desc *d)
|
2012-04-06 19:27:08 +04:00
|
|
|
{
|
|
|
|
struct unix_sk_info *ui;
|
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
ui = container_of(d, struct unix_sk_info, d);
|
2012-04-06 19:27:08 +04:00
|
|
|
return ui->flags & USK_PAIR_SLAVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int open_unixsk_pair_master(struct unix_sk_info *ui)
|
|
|
|
{
|
|
|
|
int sk[2], tsk;
|
|
|
|
struct unix_sk_info *peer = ui->peer;
|
|
|
|
struct fdinfo_list_entry *fle;
|
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("Opening pair master (id %#x peer %#x)\n",
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->ue.id, ui->ue.peer);
|
|
|
|
|
|
|
|
if (socketpair(PF_UNIX, ui->ue.type, 0, sk) < 0) {
|
|
|
|
pr_perror("Can't make socketpair");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-23 14:12:00 +04:00
|
|
|
if (restore_sk_queue(sk[0], peer->ue.id))
|
2012-04-06 19:27:08 +04:00
|
|
|
return -1;
|
2012-04-23 14:12:00 +04:00
|
|
|
if (restore_sk_queue(sk[1], ui->ue.id))
|
2012-04-06 19:27:08 +04:00
|
|
|
return -1;
|
|
|
|
|
2012-04-26 13:55:41 +04:00
|
|
|
if (bind_unix_sk(sk[0], ui))
|
2012-04-11 13:20:03 +04:00
|
|
|
return -1;
|
|
|
|
|
2012-04-26 14:03:49 +04:00
|
|
|
if (rst_file_params(sk[0], &ui->ue.fown, ui->ue.flags))
|
2012-04-06 19:27:08 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
tsk = socket(PF_UNIX, SOCK_DGRAM, 0);
|
|
|
|
if (tsk < 0) {
|
|
|
|
pr_perror("Can't make transport socket");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
fle = file_master(&peer->d);
|
2012-04-06 21:20:28 +04:00
|
|
|
if (send_fd_to_peer(sk[1], fle, tsk)) {
|
2012-04-06 19:27:08 +04:00
|
|
|
pr_err("Can't send pair slave\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(tsk);
|
|
|
|
close(sk[1]);
|
|
|
|
|
|
|
|
return sk[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int open_unixsk_pair_slave(struct unix_sk_info *ui)
|
|
|
|
{
|
|
|
|
struct fdinfo_list_entry *fle;
|
|
|
|
int sk;
|
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
fle = file_master(&ui->d);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("Opening pair slave (id %#x peer %#x) on %d\n",
|
2012-04-18 16:03:14 +04:00
|
|
|
ui->ue.id, ui->ue.peer, fle->fe.fd);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
2012-04-18 16:03:14 +04:00
|
|
|
sk = recv_fd(fle->fe.fd);
|
2012-04-06 19:27:08 +04:00
|
|
|
if (sk < 0) {
|
|
|
|
pr_err("Can't recv pair slave");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-04-18 16:03:14 +04:00
|
|
|
close(fle->fe.fd);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
if (bind_unix_sk(sk, ui))
|
|
|
|
return -1;
|
|
|
|
|
2012-04-26 14:03:49 +04:00
|
|
|
if (rst_file_params(sk, &ui->ue.fown, ui->ue.flags))
|
2012-04-26 13:55:41 +04:00
|
|
|
return -1;
|
2012-04-26 14:03:49 +04:00
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
return sk;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int open_unixsk_standalone(struct unix_sk_info *ui)
|
|
|
|
{
|
|
|
|
int sk;
|
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("Opening standalone socket (id %#x peer %#x)\n",
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->ue.id, ui->ue.peer);
|
|
|
|
|
|
|
|
sk = socket(PF_UNIX, ui->ue.type, 0);
|
|
|
|
if (sk < 0) {
|
|
|
|
pr_perror("Can't make unix socket");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bind_unix_sk(sk, ui))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (ui->ue.state == TCP_LISTEN) {
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("\tPutting %#x into listen state\n", ui->ue.id);
|
2012-04-06 19:27:08 +04:00
|
|
|
if (listen(sk, ui->ue.backlog) < 0) {
|
|
|
|
pr_perror("Can't make usk listen");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-04-26 13:55:41 +04:00
|
|
|
|
2012-04-26 14:03:49 +04:00
|
|
|
if (rst_file_params(sk, &ui->ue.fown, ui->ue.flags))
|
2012-04-26 13:55:41 +04:00
|
|
|
return -1;
|
2012-04-06 19:27:08 +04:00
|
|
|
} else if (ui->peer) {
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("\tWill connect %#x to %#x later\n", ui->ue.id, ui->ue.peer);
|
2012-04-06 19:27:08 +04:00
|
|
|
if (schedule_conn_job(ui))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sk;
|
|
|
|
}
|
|
|
|
|
2012-04-12 15:32:16 +04:00
|
|
|
static int open_unix_sk(struct file_desc *d)
|
2012-04-06 19:27:08 +04:00
|
|
|
{
|
|
|
|
struct unix_sk_info *ui;
|
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
ui = container_of(d, struct unix_sk_info, d);
|
2012-04-06 19:27:08 +04:00
|
|
|
if (ui->flags & USK_PAIR_MASTER)
|
|
|
|
return open_unixsk_pair_master(ui);
|
|
|
|
else if (ui->flags & USK_PAIR_SLAVE)
|
|
|
|
return open_unixsk_pair_slave(ui);
|
|
|
|
else
|
|
|
|
return open_unixsk_standalone(ui);
|
|
|
|
}
|
|
|
|
|
2012-04-06 20:39:48 +04:00
|
|
|
static struct file_desc_ops unix_desc_ops = {
|
|
|
|
.open = open_unix_sk,
|
|
|
|
.want_transport = unixsk_should_open_transport,
|
|
|
|
};
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
int collect_unix_sockets(void)
|
2012-04-03 00:58:41 +04:00
|
|
|
{
|
|
|
|
int fd, ret;
|
|
|
|
|
|
|
|
pr_info("Reading unix sockets in\n");
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
fd = open_image_ro(CR_FD_UNIXSK);
|
2012-04-03 00:58:41 +04:00
|
|
|
if (fd < 0) {
|
|
|
|
if (errno == ENOENT)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
struct unix_sk_info *ui;
|
|
|
|
|
|
|
|
ui = xmalloc(sizeof(*ui));
|
|
|
|
ret = -1;
|
|
|
|
if (ui == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ret = read_img_eof(fd, &ui->ue);
|
|
|
|
if (ret <= 0) {
|
|
|
|
xfree(ui);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ui->ue.namelen) {
|
|
|
|
ret = -1;
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
if (!ui->ue.namelen || ui->ue.namelen >= UNIX_PATH_MAX) {
|
|
|
|
pr_err("Bad unix name len %d\n", ui->ue.namelen);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->name = xmalloc(ui->ue.namelen);
|
2012-04-03 00:58:41 +04:00
|
|
|
if (ui->name == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ret = read_img_buf(fd, ui->name, ui->ue.namelen);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make FS clean from sockets we're about to
|
|
|
|
* restore. See for how we bind them for details
|
|
|
|
*/
|
2012-04-19 11:48:00 +04:00
|
|
|
if (ui->name[0] != '\0' &&
|
|
|
|
!(ui->ue.uflags & USK_EXTERN))
|
2012-04-06 19:27:08 +04:00
|
|
|
unlink(ui->name);
|
2012-04-03 00:58:41 +04:00
|
|
|
} else
|
|
|
|
ui->name = NULL;
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->peer = NULL;
|
|
|
|
ui->flags = 0;
|
2012-04-03 00:58:41 +04:00
|
|
|
pr_info(" `- Got %u peer %u\n", ui->ue.id, ui->ue.peer);
|
2012-04-06 20:39:48 +04:00
|
|
|
file_desc_add(&ui->d, FDINFO_UNIXSK, ui->ue.id,
|
|
|
|
&unix_desc_ops);
|
2012-04-03 00:58:41 +04:00
|
|
|
list_add_tail(&ui->list, &unix_sockets);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fd);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
2012-04-23 14:12:00 +04:00
|
|
|
return read_sk_queues();
|
2012-04-06 19:27:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int resolve_unix_peers(void)
|
|
|
|
{
|
|
|
|
struct unix_sk_info *ui, *peer;
|
|
|
|
struct fdinfo_list_entry *fle, *fle_peer;
|
|
|
|
|
|
|
|
list_for_each_entry(ui, &unix_sockets, list) {
|
|
|
|
if (ui->peer)
|
|
|
|
continue;
|
|
|
|
if (!ui->ue.peer)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
peer = find_unix_sk(ui->ue.peer);
|
2012-04-19 11:48:00 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Connect to external sockets requires
|
|
|
|
* special option to be passed.
|
|
|
|
*/
|
|
|
|
if (peer &&
|
|
|
|
(peer->ue.uflags & USK_EXTERN) &&
|
|
|
|
!(opts.ext_unix_sk))
|
|
|
|
peer = NULL;
|
|
|
|
|
2012-04-06 19:27:08 +04:00
|
|
|
if (!peer) {
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_err("FATAL: Peer %#x unresolved for %#x\n",
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->ue.peer, ui->ue.id);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->peer = peer;
|
|
|
|
if (ui == peer)
|
|
|
|
/* socket connected to self %) */
|
|
|
|
continue;
|
|
|
|
if (peer->ue.peer != ui->ue.id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* socketpair or interconnected sockets */
|
|
|
|
peer->peer = ui;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Select who will restore the pair. Check is identical to
|
|
|
|
* the one in pipes.c and makes sure tasks wait for each other
|
|
|
|
* in pids sorting order (ascending).
|
|
|
|
*/
|
|
|
|
|
2012-04-06 20:03:31 +04:00
|
|
|
fle = file_master(&ui->d);
|
|
|
|
fle_peer = file_master(&peer->d);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
if ((fle->pid < fle_peer->pid) ||
|
|
|
|
(fle->pid == fle_peer->pid &&
|
2012-04-18 16:03:14 +04:00
|
|
|
fle->fe.fd < fle_peer->fe.fd)) {
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->flags |= USK_PAIR_MASTER;
|
|
|
|
peer->flags |= USK_PAIR_SLAVE;
|
|
|
|
} else {
|
|
|
|
peer->flags |= USK_PAIR_MASTER;
|
|
|
|
ui->flags |= USK_PAIR_SLAVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pr_info("Unix sockets:\n");
|
|
|
|
list_for_each_entry(ui, &unix_sockets, list) {
|
|
|
|
struct fdinfo_list_entry *fle;
|
|
|
|
|
2012-04-24 15:20:24 +04:00
|
|
|
pr_info("\t%#x -> %#x (%#x) flags %#x\n", ui->ue.id, ui->ue.peer,
|
2012-04-06 19:27:08 +04:00
|
|
|
ui->peer ? ui->peer->ue.id : 0, ui->flags);
|
2012-04-18 15:46:04 +04:00
|
|
|
list_for_each_entry(fle, &ui->d.fd_info_head, desc_list)
|
2012-04-06 19:27:08 +04:00
|
|
|
pr_info("\t\tfd %d in pid %d\n",
|
2012-04-18 16:03:14 +04:00
|
|
|
fle->fe.fd, fle->pid);
|
2012-04-06 19:27:08 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2012-04-03 00:58:41 +04:00
|
|
|
}
|