mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-09 08:21:08 -04:00
server_add_descriptor() allocates the descriptor and its data in a single calloc (d->ptr = SPA_PTROFF(d, sizeof(struct descriptor))), so d->ptr points inside the same allocation as d. Calling free(d->ptr) frees an interior pointer, corrupting the heap. Only free(d) is needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
162 lines
3.4 KiB
C
162 lines
3.4 KiB
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2022 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef AVB_INTERNAL_H
|
|
#define AVB_INTERNAL_H
|
|
|
|
#include <pipewire/pipewire.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct server;
|
|
struct avb_mrp;
|
|
|
|
#define AVB_TSN_ETH 0x22f0
|
|
#define AVB_BROADCAST_MAC { 0x91, 0xe0, 0xf0, 0x01, 0x00, 0x00 };
|
|
|
|
struct impl {
|
|
struct pw_loop *loop;
|
|
struct pw_timer_queue *timer_queue;
|
|
struct pw_context *context;
|
|
struct spa_hook context_listener;
|
|
struct pw_core *core;
|
|
unsigned do_disconnect:1;
|
|
|
|
struct pw_properties *props;
|
|
|
|
struct spa_list servers;
|
|
};
|
|
|
|
struct server_events {
|
|
#define AVB_VERSION_SERVER_EVENTS 0
|
|
uint32_t version;
|
|
|
|
/** the server is destroyed */
|
|
void (*destroy) (void *data);
|
|
|
|
int (*message) (void *data, uint64_t now, const void *message, int len);
|
|
|
|
void (*periodic) (void *data, uint64_t now);
|
|
|
|
int (*command) (void *data, uint64_t now, const char *command, const char *args, FILE *out);
|
|
};
|
|
|
|
struct descriptor {
|
|
struct spa_list link;
|
|
uint16_t type;
|
|
uint16_t index;
|
|
uint32_t size;
|
|
void *ptr;
|
|
};
|
|
|
|
|
|
enum avb_mode {
|
|
/** The legacy AVB Mode */
|
|
AVB_MODE_LEGACY,
|
|
/**
|
|
* \brief Milan version 1.2, which subset of the AVB,
|
|
* \see Milan Specifications https://avnu.org/resource/milan-specification/
|
|
*/
|
|
AVB_MODE_MILAN_V12,
|
|
|
|
/** Future AVB mode will be added here if necessary */
|
|
AVB_MODE_MAX
|
|
};
|
|
|
|
struct server {
|
|
struct spa_list link;
|
|
struct impl *impl;
|
|
|
|
char *ifname;
|
|
/** Parsed from the configuration pipewire-avb.conf */
|
|
enum avb_mode avb_mode;
|
|
uint8_t mac_addr[6];
|
|
uint64_t entity_id;
|
|
int ifindex;
|
|
|
|
struct spa_source *source;
|
|
struct pw_timer timer;
|
|
|
|
struct spa_hook_list listener_list;
|
|
|
|
struct spa_list descriptors;
|
|
|
|
unsigned debug_messages:1;
|
|
|
|
struct avb_mrp *mrp;
|
|
struct avb_mmrp *mmrp;
|
|
struct avb_mvrp *mvrp;
|
|
struct avb_msrp *msrp;
|
|
struct avb_maap *maap;
|
|
|
|
struct avb_msrp_attribute *domain_attr;
|
|
};
|
|
|
|
#include "stream.h"
|
|
|
|
static inline void server_destroy_descriptors(struct server *server)
|
|
{
|
|
struct descriptor *d, *t;
|
|
|
|
spa_list_for_each_safe(d, t, &server->descriptors, link) {
|
|
spa_list_remove(&d->link);
|
|
free(d);
|
|
}
|
|
}
|
|
|
|
static inline struct descriptor *server_find_descriptor(struct server *server,
|
|
uint16_t type, uint16_t index)
|
|
{
|
|
struct descriptor *d;
|
|
spa_list_for_each(d, &server->descriptors, link) {
|
|
if (d->type == type &&
|
|
d->index == index)
|
|
return d;
|
|
}
|
|
return NULL;
|
|
}
|
|
static inline void *server_add_descriptor(struct server *server,
|
|
uint16_t type, uint16_t index, size_t size, void *ptr)
|
|
{
|
|
struct descriptor *d;
|
|
|
|
if ((d = calloc(1, sizeof(struct descriptor) + size)) == NULL)
|
|
return NULL;
|
|
|
|
d->type = type;
|
|
d->index = index;
|
|
d->size = size;
|
|
d->ptr = SPA_PTROFF(d, sizeof(struct descriptor), void);
|
|
if (ptr)
|
|
memcpy(d->ptr, ptr, size);
|
|
spa_list_append(&server->descriptors, &d->link);
|
|
return d;
|
|
}
|
|
|
|
const char *get_avb_mode_str(enum avb_mode mode);
|
|
|
|
struct server *avdecc_server_new(struct impl *impl, struct spa_dict *props);
|
|
void avdecc_server_free(struct server *server);
|
|
|
|
void avdecc_server_add_listener(struct server *server, struct spa_hook *listener,
|
|
const struct server_events *events, void *data);
|
|
|
|
int avb_server_make_socket(struct server *server, uint16_t type, const uint8_t mac[6]);
|
|
|
|
int avb_server_send_packet(struct server *server, const uint8_t dest[6],
|
|
uint16_t type, void *data, size_t size);
|
|
|
|
struct aecp {
|
|
struct server *server;
|
|
struct spa_hook server_listener;
|
|
};
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* AVB_INTERNAL_H */
|