2015-01-25 21:16:44 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* net/local/local_bind.c
|
|
|
|
*
|
2024-09-11 14:39:39 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
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>
|
|
|
|
|
|
|
|
#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
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2024-02-28 06:14:19 +01:00
|
|
|
* Name: psock_local_bind
|
2015-01-25 21:16:44 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
{
|
2024-02-28 06:14:19 +01:00
|
|
|
FAR struct local_conn_s *conn = psock->s_conn;
|
2015-01-25 21:16:44 +01:00
|
|
|
FAR const struct sockaddr_un *unaddr =
|
|
|
|
(FAR const struct sockaddr_un *)addr;
|
2024-01-31 11:50:31 +01:00
|
|
|
int index;
|
2015-01-25 21:16:44 +01:00
|
|
|
|
2023-08-30 08:46:41 +02:00
|
|
|
DEBUGASSERT(unaddr->sun_family == AF_LOCAL);
|
2022-12-18 07:55:44 +01:00
|
|
|
|
|
|
|
if (addrlen <= sizeof(sa_family_t) + 1)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2015-01-25 21:16:44 +01:00
|
|
|
|
2024-01-31 11:50:31 +01:00
|
|
|
conn = psock->s_conn;
|
|
|
|
|
|
|
|
/* Check if local address is already in use */
|
|
|
|
|
2024-06-05 09:29:04 +02:00
|
|
|
net_lock();
|
2024-01-31 11:50:31 +01:00
|
|
|
if (local_findconn(conn, unaddr) != NULL)
|
|
|
|
{
|
2024-06-05 09:29:04 +02:00
|
|
|
net_unlock();
|
2024-01-31 11:50:31 +01:00
|
|
|
return -EADDRINUSE;
|
|
|
|
}
|
|
|
|
|
2024-06-05 09:29:04 +02:00
|
|
|
net_unlock();
|
|
|
|
|
2015-01-25 21:16:44 +01:00
|
|
|
/* Save the address family */
|
|
|
|
|
2022-12-18 08:18:56 +01:00
|
|
|
conn->lc_instance_id = -1;
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-12-18 07:55:44 +01:00
|
|
|
if (unaddr->sun_path[0] == '\0')
|
2015-01-25 21:16:44 +01:00
|
|
|
{
|
2022-12-18 07:55:44 +01:00
|
|
|
/* Zero-length sun_path... This is an abstract Unix domain socket */
|
2015-01-25 21:16:44 +01:00
|
|
|
|
2022-12-18 08:18:56 +01:00
|
|
|
conn->lc_type = LOCAL_TYPE_ABSTRACT;
|
2024-01-31 11:50:31 +01:00
|
|
|
index = 1;
|
2015-01-25 21:16:44 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-12-18 07:55:44 +01:00
|
|
|
/* This is an normal, pathname Unix domain socket */
|
2015-01-25 21:16:44 +01:00
|
|
|
|
2022-12-18 07:55:44 +01:00
|
|
|
conn->lc_type = LOCAL_TYPE_PATHNAME;
|
2024-01-31 11:50:31 +01:00
|
|
|
index = 0;
|
2015-01-25 21:16:44 +01:00
|
|
|
}
|
|
|
|
|
2024-01-31 11:50:31 +01:00
|
|
|
strlcpy(conn->lc_path, &unaddr->sun_path[index], sizeof(conn->lc_path));
|
|
|
|
|
2015-01-25 21:16:44 +01:00
|
|
|
conn->lc_state = LOCAL_STATE_BOUND;
|
|
|
|
return OK;
|
|
|
|
}
|