Bluetooth: move l2cap_sock_recvmsg() to l2cap_sock.c
It causes the move of the declaration of 3 functions to l2cap.h: l2cap_get_ident(), l2cap_send_cmd(), l2cap_build_conf_req() Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
@@ -431,6 +431,10 @@ extern struct bt_sock_list l2cap_sk_list;
|
|||||||
int l2cap_init_sockets(void);
|
int l2cap_init_sockets(void);
|
||||||
void l2cap_cleanup_sockets(void);
|
void l2cap_cleanup_sockets(void);
|
||||||
|
|
||||||
|
u8 l2cap_get_ident(struct l2cap_conn *conn);
|
||||||
|
void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data);
|
||||||
|
int l2cap_build_conf_req(struct sock *sk, void *data);
|
||||||
|
|
||||||
void l2cap_sock_set_timer(struct sock *sk, long timeout);
|
void l2cap_sock_set_timer(struct sock *sk, long timeout);
|
||||||
void __l2cap_sock_close(struct sock *sk, int reason);
|
void __l2cap_sock_close(struct sock *sk, int reason);
|
||||||
void l2cap_sock_kill(struct sock *sk);
|
void l2cap_sock_kill(struct sock *sk);
|
||||||
@@ -440,7 +444,6 @@ struct sock *l2cap_sock_alloc(struct net *net, struct socket *sock,
|
|||||||
int l2cap_do_connect(struct sock *sk);
|
int l2cap_do_connect(struct sock *sk);
|
||||||
|
|
||||||
int l2cap_sock_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, size_t len);
|
int l2cap_sock_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, size_t len);
|
||||||
int l2cap_sock_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, size_t len, int flags);
|
|
||||||
int l2cap_sock_shutdown(struct socket *sock, int how);
|
int l2cap_sock_shutdown(struct socket *sock, int how);
|
||||||
|
|
||||||
|
|
||||||
|
@@ -72,7 +72,6 @@ static void l2cap_busy_work(struct work_struct *work);
|
|||||||
|
|
||||||
static void l2cap_sock_close(struct sock *sk);
|
static void l2cap_sock_close(struct sock *sk);
|
||||||
|
|
||||||
static int l2cap_build_conf_req(struct sock *sk, void *data);
|
|
||||||
static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn,
|
static struct sk_buff *l2cap_build_cmd(struct l2cap_conn *conn,
|
||||||
u8 code, u8 ident, u16 dlen, void *data);
|
u8 code, u8 ident, u16 dlen, void *data);
|
||||||
|
|
||||||
@@ -311,7 +310,7 @@ static inline int l2cap_check_security(struct sock *sk)
|
|||||||
auth_type);
|
auth_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline u8 l2cap_get_ident(struct l2cap_conn *conn)
|
u8 l2cap_get_ident(struct l2cap_conn *conn)
|
||||||
{
|
{
|
||||||
u8 id;
|
u8 id;
|
||||||
|
|
||||||
@@ -333,7 +332,7 @@ static inline u8 l2cap_get_ident(struct l2cap_conn *conn)
|
|||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data)
|
void l2cap_send_cmd(struct l2cap_conn *conn, u8 ident, u8 code, u16 len, void *data)
|
||||||
{
|
{
|
||||||
struct sk_buff *skb = l2cap_build_cmd(conn, code, ident, len, data);
|
struct sk_buff *skb = l2cap_build_cmd(conn, code, ident, len, data);
|
||||||
u8 flags;
|
u8 flags;
|
||||||
@@ -1469,48 +1468,6 @@ done:
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
int l2cap_sock_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, size_t len, int flags)
|
|
||||||
{
|
|
||||||
struct sock *sk = sock->sk;
|
|
||||||
|
|
||||||
lock_sock(sk);
|
|
||||||
|
|
||||||
if (sk->sk_state == BT_CONNECT2 && bt_sk(sk)->defer_setup) {
|
|
||||||
struct l2cap_conn_rsp rsp;
|
|
||||||
struct l2cap_conn *conn = l2cap_pi(sk)->conn;
|
|
||||||
u8 buf[128];
|
|
||||||
|
|
||||||
sk->sk_state = BT_CONFIG;
|
|
||||||
|
|
||||||
rsp.scid = cpu_to_le16(l2cap_pi(sk)->dcid);
|
|
||||||
rsp.dcid = cpu_to_le16(l2cap_pi(sk)->scid);
|
|
||||||
rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
|
|
||||||
rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
|
|
||||||
l2cap_send_cmd(l2cap_pi(sk)->conn, l2cap_pi(sk)->ident,
|
|
||||||
L2CAP_CONN_RSP, sizeof(rsp), &rsp);
|
|
||||||
|
|
||||||
if (l2cap_pi(sk)->conf_state & L2CAP_CONF_REQ_SENT) {
|
|
||||||
release_sock(sk);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
l2cap_pi(sk)->conf_state |= L2CAP_CONF_REQ_SENT;
|
|
||||||
l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
|
|
||||||
l2cap_build_conf_req(sk, buf), buf);
|
|
||||||
l2cap_pi(sk)->num_conf_req++;
|
|
||||||
|
|
||||||
release_sock(sk);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
release_sock(sk);
|
|
||||||
|
|
||||||
if (sock->type == SOCK_STREAM)
|
|
||||||
return bt_sock_stream_recvmsg(iocb, sock, msg, len, flags);
|
|
||||||
|
|
||||||
return bt_sock_recvmsg(iocb, sock, msg, len, flags);
|
|
||||||
}
|
|
||||||
|
|
||||||
int l2cap_sock_shutdown(struct socket *sock, int how)
|
int l2cap_sock_shutdown(struct socket *sock, int how)
|
||||||
{
|
{
|
||||||
struct sock *sk = sock->sk;
|
struct sock *sk = sock->sk;
|
||||||
@@ -1760,7 +1717,7 @@ static inline __u8 l2cap_select_mode(__u8 mode, __u16 remote_feat_mask)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int l2cap_build_conf_req(struct sock *sk, void *data)
|
int l2cap_build_conf_req(struct sock *sk, void *data)
|
||||||
{
|
{
|
||||||
struct l2cap_pinfo *pi = l2cap_pi(sk);
|
struct l2cap_pinfo *pi = l2cap_pi(sk);
|
||||||
struct l2cap_conf_req *req = data;
|
struct l2cap_conf_req *req = data;
|
||||||
|
@@ -681,6 +681,48 @@ static int l2cap_sock_setsockopt(struct socket *sock, int level, int optname, ch
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int l2cap_sock_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, size_t len, int flags)
|
||||||
|
{
|
||||||
|
struct sock *sk = sock->sk;
|
||||||
|
|
||||||
|
lock_sock(sk);
|
||||||
|
|
||||||
|
if (sk->sk_state == BT_CONNECT2 && bt_sk(sk)->defer_setup) {
|
||||||
|
struct l2cap_conn_rsp rsp;
|
||||||
|
struct l2cap_conn *conn = l2cap_pi(sk)->conn;
|
||||||
|
u8 buf[128];
|
||||||
|
|
||||||
|
sk->sk_state = BT_CONFIG;
|
||||||
|
|
||||||
|
rsp.scid = cpu_to_le16(l2cap_pi(sk)->dcid);
|
||||||
|
rsp.dcid = cpu_to_le16(l2cap_pi(sk)->scid);
|
||||||
|
rsp.result = cpu_to_le16(L2CAP_CR_SUCCESS);
|
||||||
|
rsp.status = cpu_to_le16(L2CAP_CS_NO_INFO);
|
||||||
|
l2cap_send_cmd(l2cap_pi(sk)->conn, l2cap_pi(sk)->ident,
|
||||||
|
L2CAP_CONN_RSP, sizeof(rsp), &rsp);
|
||||||
|
|
||||||
|
if (l2cap_pi(sk)->conf_state & L2CAP_CONF_REQ_SENT) {
|
||||||
|
release_sock(sk);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
l2cap_pi(sk)->conf_state |= L2CAP_CONF_REQ_SENT;
|
||||||
|
l2cap_send_cmd(conn, l2cap_get_ident(conn), L2CAP_CONF_REQ,
|
||||||
|
l2cap_build_conf_req(sk, buf), buf);
|
||||||
|
l2cap_pi(sk)->num_conf_req++;
|
||||||
|
|
||||||
|
release_sock(sk);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
release_sock(sk);
|
||||||
|
|
||||||
|
if (sock->type == SOCK_STREAM)
|
||||||
|
return bt_sock_stream_recvmsg(iocb, sock, msg, len, flags);
|
||||||
|
|
||||||
|
return bt_sock_recvmsg(iocb, sock, msg, len, flags);
|
||||||
|
}
|
||||||
|
|
||||||
static int l2cap_sock_release(struct socket *sock)
|
static int l2cap_sock_release(struct socket *sock)
|
||||||
{
|
{
|
||||||
struct sock *sk = sock->sk;
|
struct sock *sk = sock->sk;
|
||||||
|
Reference in New Issue
Block a user