2015-01-25 21:16:44 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* net/local/local_bind.c
|
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2015-01-25 21:16:44 +01:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-25 21:16:44 +01:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2015-01-25 21:16:44 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_LOCAL)
|
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2015-01-27 23:39:30 +01:00
|
|
|
#include <nuttx/net/net.h>
|
|
|
|
|
2015-01-25 21:16:44 +01:00
|
|
|
#include "local/local.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: local_bind
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function implements the low-level parts of the standard local
|
|
|
|
* bind()operation.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-27 23:39:30 +01:00
|
|
|
int psock_local_bind(FAR struct socket *psock,
|
|
|
|
FAR const struct sockaddr *addr, socklen_t addrlen)
|
2015-01-25 21:16:44 +01:00
|
|
|
{
|
2015-01-27 23:39:30 +01:00
|
|
|
FAR struct local_conn_s *conn;
|
2015-01-25 21:16:44 +01:00
|
|
|
FAR const struct sockaddr_un *unaddr =
|
|
|
|
(FAR const struct sockaddr_un *)addr;
|
|
|
|
int namelen;
|
|
|
|
|
2017-07-14 17:04:19 +02:00
|
|
|
DEBUGASSERT(psock != NULL && psock->s_conn != NULL &&
|
|
|
|
unaddr != NULL && unaddr->sun_family == AF_LOCAL &&
|
2015-01-25 21:16:44 +01:00
|
|
|
addrlen >= sizeof(sa_family_t));
|
|
|
|
|
2015-01-27 23:39:30 +01:00
|
|
|
conn = (FAR struct local_conn_s *)psock->s_conn;
|
|
|
|
|
2015-01-25 21:16:44 +01:00
|
|
|
/* Save the address family */
|
|
|
|
|
2015-01-27 23:39:30 +01:00
|
|
|
conn->lc_proto = psock->s_type;
|
2015-01-25 21:16:44 +01:00
|
|
|
|
2017-07-14 17:04:19 +02:00
|
|
|
/* Now determine the type of the Unix domain socket by comparing the size
|
2015-01-25 21:16:44 +01:00
|
|
|
* of the address description.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (addrlen == sizeof(sa_family_t))
|
|
|
|
{
|
|
|
|
/* No sun_path... This is an un-named Unix domain socket */
|
|
|
|
|
|
|
|
conn->lc_type = LOCAL_TYPE_UNNAMED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-11 19:48:17 +01:00
|
|
|
namelen = strnlen(unaddr->sun_path, UNIX_PATH_MAX - 1);
|
2015-01-25 21:16:44 +01:00
|
|
|
if (namelen <= 0)
|
|
|
|
{
|
|
|
|
/* Zero-length sun_path... This is an abstract Unix domain socket */
|
|
|
|
|
|
|
|
conn->lc_type = LOCAL_TYPE_ABSTRACT;
|
|
|
|
conn->lc_path[0] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This is an normal, pathname Unix domain socket */
|
|
|
|
|
|
|
|
conn->lc_type = LOCAL_TYPE_PATHNAME;
|
|
|
|
|
|
|
|
/* Copy the path into the connection structure */
|
|
|
|
|
2022-08-24 04:23:20 +02:00
|
|
|
strlcpy(conn->lc_path, unaddr->sun_path, sizeof(conn->lc_path));
|
2015-05-12 15:47:32 +02:00
|
|
|
conn->lc_instance_id = -1;
|
2015-01-25 21:16:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->lc_state = LOCAL_STATE_BOUND;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET && CONFIG_NET_LOCAL */
|