iPXE
Data Structures | Macros | Functions | Variables
interface.h File Reference

Object interfaces. More...

#include <stddef.h>
#include <stdarg.h>
#include <ipxe/refcnt.h>

Go to the source code of this file.

Data Structures

struct  interface_operation
 An object interface operation. More...
 
struct  interface_descriptor
 An object interface descriptor. More...
 
struct  interface
 An object interface. More...
 

Macros

#define INTF_OP(op_type, object_type, op_func)
 Define an object interface operation. More...
 
#define UNUSED_INTF_OP(op_type, object_type, op_func)
 Define an unused object interface operation. More...
 
#define intf_offset(object_type, intf)
 
#define INTF_DESC(object_type, intf, operations)
 Define an object interface descriptor. More...
 
#define INTF_DESC_PASSTHRU(object_type, intf, operations, passthru)
 Define an object interface descriptor with pass-through interface. More...
 
#define INTF_DESC_PURE(operations)
 Define an object interface descriptor for a pure-interface object. More...
 
#define intf_close_TYPE(object_type)   typeof ( void ( object_type, int rc ) )
 
#define intf_poke_TYPE(object_type)   typeof ( void ( object_type ) )
 
#define INTF_INIT(descriptor)
 Initialise a static object interface. More...
 
#define intf_get_dest_op_no_passthru(intf, type, dest)
 Get object interface destination and operation method (without pass-through) More...
 
#define intf_get_dest_op(intf, type, dest)
 Get object interface destination and operation method. More...
 
#define INTF_COL(intf)   intf_object ( intf_origin ( intf ) )
 Find debugging colourisation for an object interface. More...
 
#define INTF_FMT   "%p+%zx"
 printf() format string for INTF_DBG() More...
 
#define INTF_DBG(intf)
 printf() arguments for representing an object interface More...
 
#define INTF_INTF_FMT   INTF_FMT "->" INTF_FMT
 printf() format string for INTF_INTF_DBG() More...
 
#define INTF_INTF_DBG(intf, dest)   INTF_DBG ( intf ), INTF_DBG ( dest )
 printf() arguments for representing an object interface pair More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
void intf_plug (struct interface *intf, struct interface *dest)
 Plug an object interface into a new destination object interface. More...
 
void intf_plug_plug (struct interface *a, struct interface *b)
 Plug two object interfaces together. More...
 
void intf_unplug (struct interface *intf)
 Unplug an object interface. More...
 
void intf_nullify (struct interface *intf)
 Ignore all further operations on an object interface. More...
 
struct interfaceintf_get (struct interface *intf)
 Increment reference count on an object interface. More...
 
void intf_put (struct interface *intf)
 Decrement reference count on an object interface. More...
 
void * __attribute__ ((pure)) intf_object(struct interface *intf)
 
void * intf_get_dest_op_no_passthru_untyped (struct interface *intf, void *type, struct interface **dest)
 Get object interface destination and operation method (without pass-through) More...
 
void * intf_get_dest_op_untyped (struct interface *intf, void *type, struct interface **dest)
 Get object interface destination and operation method. More...
 
void intf_close (struct interface *intf, int rc)
 Close an object interface. More...
 
void intf_shutdown (struct interface *intf, int rc)
 Shut down an object interface. More...
 
void intfs_vshutdown (va_list intfs, int rc)
 Shut down multiple object interfaces. More...
 
void intfs_shutdown (int rc,...) __attribute__((sentinel))
 Shut down multiple object interfaces. More...
 
void intf_restart (struct interface *intf, int rc)
 Shut down and restart an object interface. More...
 
void intfs_vrestart (va_list intfs, int rc)
 Shut down and restart multiple object interfaces. More...
 
void intfs_restart (int rc,...) __attribute__((sentinel))
 Shut down and restart multiple object interfaces. More...
 
void intf_insert (struct interface *intf, struct interface *upper, struct interface *lower)
 Insert a filter interface. More...
 
void intf_poke (struct interface *intf, void(type)(struct interface *intf))
 Poke an object interface. More...
 
static void intf_init (struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt)
 Initialise an object interface. More...
 
static void intf_temp_init (struct interface *intf, struct interface *original)
 Initialise a temporary outbound-only object interface. More...
 
static struct interfaceintf_origin (struct interface *intf)
 Get original interface. More...
 
static void intf_reinit (struct interface *intf)
 Reinitialise an object interface. More...
 

Variables

struct interface_descriptor null_intf_desc
 Null interface descriptor. More...
 
struct interface null_intf
 The null interface. More...
 

Detailed Description

Object interfaces.

Definition in file interface.h.

Macro Definition Documentation

◆ INTF_OP

#define INTF_OP (   op_type,
  object_type,
  op_func 
)
Value:
{ \
.type = op_type, \
.func = ( ( ( ( typeof ( op_func ) * ) NULL ) == \
( ( op_type ## _TYPE ( object_type ) * ) NULL ) ) \
? op_func : op_func ), \
}
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:45
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

Define an object interface operation.

Parameters
op_typeOperation type
object_typeImplementing method's expected object type
op_funcImplementing method
Return values
opObject interface operation

Definition at line 32 of file interface.h.

◆ UNUSED_INTF_OP

#define UNUSED_INTF_OP (   op_type,
  object_type,
  op_func 
)
Value:
{ \
.type = NULL, \
.func = ( ( ( ( typeof ( op_func ) * ) NULL ) == \
( ( op_type ## _TYPE ( object_type ) * ) NULL ) ) \
? NULL : NULL ), \
}
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:45
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

Define an unused object interface operation.

Parameters
op_typeOperation type
object_typeImplementing method's expected object type
op_funcImplementing method
Return values
opObject interface operation

Definition at line 47 of file interface.h.

◆ intf_offset

#define intf_offset (   object_type,
  intf 
)
Value:
( ( ( ( typeof ( ( ( object_type * ) NULL )->intf ) * ) NULL ) \
== ( ( struct interface * ) NULL ) ) \
? offsetof ( object_type, intf ) \
: offsetof ( object_type, intf ) )
#define offsetof(type, field)
Get offset of a field within a structure.
Definition: stddef.h:24
struct interface * intf
Original interface.
Definition: interface.h:158
An object interface.
Definition: interface.h:124
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:45
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

Definition at line 66 of file interface.h.

◆ INTF_DESC

#define INTF_DESC (   object_type,
  intf,
  operations 
)
Value:
{ \
.offset = intf_offset ( object_type, intf ), \
.op = operations, \
.num_op = ( sizeof ( operations ) / \
sizeof ( operations[0] ) ), \
.passthru_offset = 0, \
}
struct interface * intf
Original interface.
Definition: interface.h:158
#define intf_offset(object_type, intf)
Definition: interface.h:66

Define an object interface descriptor.

Parameters
object_typeContaining object data type
intfInterface name (i.e. field within object data type)
operationsObject interface operations array
Return values
descObject interface descriptor

Definition at line 80 of file interface.h.

◆ INTF_DESC_PASSTHRU

#define INTF_DESC_PASSTHRU (   object_type,
  intf,
  operations,
  passthru 
)
Value:
{ \
.offset = offsetof ( object_type, intf ), \
.op = operations, \
.num_op = ( sizeof ( operations ) / \
sizeof ( operations[0] ) ), \
.passthru_offset = ( intf_offset ( object_type, passthru ) - \
intf_offset ( object_type, intf ) ), \
}
#define offsetof(type, field)
Get offset of a field within a structure.
Definition: stddef.h:24
struct interface * intf
Original interface.
Definition: interface.h:158
#define intf_offset(object_type, intf)
Definition: interface.h:66

Define an object interface descriptor with pass-through interface.

Parameters
object_typeContaining object data type
intfInterface name (i.e. field within object data type)
operationsObject interface operations array
passthruPass-through interface name
Return values
descObject interface descriptor

Definition at line 97 of file interface.h.

◆ INTF_DESC_PURE

#define INTF_DESC_PURE (   operations)
Value:
{ \
.offset = 0, \
.op = operations, \
.num_op = ( sizeof ( operations ) / \
sizeof ( operations[0] ) ), \
.passthru_offset = 0, \
}

Define an object interface descriptor for a pure-interface object.

Parameters
operationsObject interface operations array
Return values
descObject interface descriptor

A pure-interface object is an object that consists solely of a single interface.

Definition at line 115 of file interface.h.

◆ intf_close_TYPE

#define intf_close_TYPE (   object_type)    typeof ( void ( object_type, int rc ) )

Definition at line 176 of file interface.h.

◆ intf_poke_TYPE

#define intf_poke_TYPE (   object_type)    typeof ( void ( object_type ) )

Definition at line 190 of file interface.h.

◆ INTF_INIT

#define INTF_INIT (   descriptor)
Value:
{ \
.dest = &null_intf, \
.refcnt = NULL, \
.desc = &(descriptor), \
.original = { \
.desc = &(descriptor), \
}, \
}
struct interface null_intf
The null interface.
Definition: interface.c:65
union interface::@570 original
Original interface properties.
struct refcnt * refcnt
Reference counter.
Definition: interface.h:139
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

Initialise a static object interface.

Parameters
descriptorObject interface descriptor

Definition at line 217 of file interface.h.

◆ intf_get_dest_op_no_passthru

#define intf_get_dest_op_no_passthru (   intf,
  type,
  dest 
)
Value:
( ( type ## _TYPE ( void * ) * ) \
struct interface * intf
Original interface.
Definition: interface.h:158
void * intf_get_dest_op_no_passthru_untyped(struct interface *intf, void *type, struct interface **dest)
Get object interface destination and operation method (without pass-through)
Definition: interface.c:187
static void * dest
Definition: strings.h:176
uint32_t type
Operating system type.
Definition: ena.h:12

Get object interface destination and operation method (without pass-through)

Parameters
intfObject interface
typeOperation type
Return values
destDestination interface
funcImplementing method, or NULL

Definition at line 257 of file interface.h.

◆ intf_get_dest_op

#define intf_get_dest_op (   intf,
  type,
  dest 
)
Value:
( ( type ## _TYPE ( void * ) * ) \
struct interface * intf
Original interface.
Definition: interface.h:158
static void * dest
Definition: strings.h:176
uint32_t type
Operating system type.
Definition: ena.h:12
void * intf_get_dest_op_untyped(struct interface *intf, void *type, struct interface **dest)
Get object interface destination and operation method.
Definition: interface.c:212

Get object interface destination and operation method.

Parameters
intfObject interface
typeOperation type
Return values
destDestination interface
funcImplementing method, or NULL

Definition at line 269 of file interface.h.

◆ INTF_COL

#define INTF_COL (   intf)    intf_object ( intf_origin ( intf ) )

Find debugging colourisation for an object interface.

Parameters
intfObject interface
Return values
colDebugging colourisation

Use as the first argument to DBGC() or equivalent macro.

Definition at line 281 of file interface.h.

◆ INTF_FMT

#define INTF_FMT   "%p+%zx"

printf() format string for INTF_DBG()

Definition at line 284 of file interface.h.

◆ INTF_DBG

#define INTF_DBG (   intf)
Value:
intf_origin ( intf )->desc->offset
void * intf_object(struct interface *intf)
Get pointer to object containing object interface.
Definition: interface.c:159
struct interface * intf
Original interface.
Definition: interface.h:158
static struct interface * intf_origin(struct interface *intf)
Get original interface.
Definition: interface.h:245

printf() arguments for representing an object interface

Parameters
intfObject interface
Return values
argsprintf() argument list corresponding to INTF_FMT

Definition at line 292 of file interface.h.

◆ INTF_INTF_FMT

#define INTF_INTF_FMT   INTF_FMT "->" INTF_FMT

printf() format string for INTF_INTF_DBG()

Definition at line 297 of file interface.h.

◆ INTF_INTF_DBG

#define INTF_INTF_DBG (   intf,
  dest 
)    INTF_DBG ( intf ), INTF_DBG ( dest )

printf() arguments for representing an object interface pair

Parameters
intfObject interface
destDestination object interface
Return values
argsprintf() argument list corresponding to INTF_INTF_FMT

Definition at line 306 of file interface.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ intf_plug()

void intf_plug ( struct interface intf,
struct interface dest 
)

Plug an object interface into a new destination object interface.

Parameters
intfObject interface
destNew destination object interface

The reference to the existing destination interface is dropped, a reference to the new destination interface is obtained, and the interface is updated to point to the new destination interface.

Definition at line 83 of file interface.c.

83  {
84 
85  if ( intf == &null_intf )
86  return;
87 
88  DBGC ( INTF_COL ( intf ),
89  "INTF " INTF_INTF_FMT " replug to " INTF_FMT "\n",
90  INTF_INTF_DBG ( intf, intf->dest ), INTF_DBG ( dest ) );
91 
92  intf_get ( dest );
93  intf_put ( intf->dest );
94  intf->dest = dest;
95 }
struct interface * intf_get(struct interface *intf)
Increment reference count on an object interface.
Definition: interface.c:139
#define INTF_INTF_FMT
printf() format string for INTF_INTF_DBG()
Definition: interface.h:297
struct interface null_intf
The null interface.
Definition: interface.c:65
#define INTF_DBG(intf)
printf() arguments for representing an object interface
Definition: interface.h:292
#define INTF_INTF_DBG(intf, dest)
printf() arguments for representing an object interface pair
Definition: interface.h:306
#define INTF_COL(intf)
Find debugging colourisation for an object interface.
Definition: interface.h:281
#define DBGC(...)
Definition: compiler.h:505
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
static void * dest
Definition: strings.h:176
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149
#define INTF_FMT
printf() format string for INTF_DBG()
Definition: interface.h:284

References DBGC, interface::dest, dest, interface::intf, INTF_COL, INTF_DBG, INTF_FMT, intf_get(), INTF_INTF_DBG, INTF_INTF_FMT, intf_put(), and null_intf.

Referenced by intf_plug_plug(), and xfer_vredirect().

◆ intf_plug_plug()

void intf_plug_plug ( struct interface a,
struct interface b 
)

Plug two object interfaces together.

Parameters
aObject interface A
bObject interface B

Plugs interface A into interface B, and interface B into interface A. (The basic plug() function is unidirectional; this function is merely a shorthand for two calls to plug(), hence the name.)

Definition at line 107 of file interface.c.

107  {
108  intf_plug ( a, b );
109  intf_plug ( b, a );
110 }
uint32_t a
Definition: md4.c:28
uint32_t b
Definition: md4.c:29
void intf_plug(struct interface *intf, struct interface *dest)
Plug an object interface into a new destination object interface.
Definition: interface.c:83

References a, b, and intf_plug().

Referenced by aoedev_ata_command(), aoedev_cfg_command(), ata_open(), atadev_command(), create_downloader(), create_pinger(), create_validator(), dns_resolv(), efi_local_open(), fc_els_request(), fc_els_respond(), fc_port_open(), fc_xchg_originate(), fcpdev_scsi_command(), ftp_open(), http_connect(), http_open(), http_transfer_complete(), hw_open(), ib_cmrc_open(), ifpoller_wait(), intf_insert(), ipair_create(), iscsi_scsi_command(), nfs_open(), numeric_resolv(), peerblk_open(), peermux_filter(), ping_open(), resolv(), resolv_setting(), scsi_open(), scsidev_command(), slam_open(), srp_open(), srpdev_scsi_command(), start_dhcp(), start_dhcpv6(), start_ipv6conf(), start_ntp(), start_pxebs(), sync(), tcp_open(), tftp_core_open(), udp_open_common(), usbblk_scsi_command(), and xfer_open_named_socket().

◆ intf_unplug()

void intf_unplug ( struct interface intf)

Unplug an object interface.

Parameters
intfObject interface

Definition at line 117 of file interface.c.

117  {
118  DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " unplug\n",
119  INTF_INTF_DBG ( intf, intf->dest ) );
120  intf_put ( intf->dest );
121  intf->dest = &null_intf;
122 }
#define INTF_INTF_FMT
printf() format string for INTF_INTF_DBG()
Definition: interface.h:297
struct interface null_intf
The null interface.
Definition: interface.c:65
#define INTF_INTF_DBG(intf, dest)
printf() arguments for representing an object interface pair
Definition: interface.h:306
#define INTF_COL(intf)
Find debugging colourisation for an object interface.
Definition: interface.h:281
#define DBGC(...)
Definition: compiler.h:505
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149

References DBGC, interface::dest, interface::intf, INTF_COL, INTF_INTF_DBG, INTF_INTF_FMT, intf_put(), and null_intf.

Referenced by intf_shutdown(), named_resolv_done(), and xfer_vredirect().

◆ intf_nullify()

void intf_nullify ( struct interface intf)

Ignore all further operations on an object interface.

Parameters
intfObject interface

Definition at line 129 of file interface.c.

129  {
131 }
struct interface_descriptor null_intf_desc
Null interface descriptor.
Definition: interface.c:61
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface_descriptor * desc
Interface descriptor.
Definition: interface.h:145

References interface::desc, interface::intf, and null_intf_desc.

Referenced by intf_shutdown(), intfs_vshutdown(), named_resolv_done(), and peermux_close().

◆ intf_get()

struct interface* intf_get ( struct interface intf)

Increment reference count on an object interface.

Parameters
intfObject interface
Return values
intfObject interface

Definition at line 139 of file interface.c.

139  {
140  ref_get ( intf->refcnt );
141  return intf;
142 }
struct interface * intf
Original interface.
Definition: interface.h:158
#define ref_get(refcnt)
Get additional reference to object.
Definition: refcnt.h:92
struct refcnt * refcnt
Reference counter.
Definition: interface.h:139

References interface::intf, ref_get, and interface::refcnt.

Referenced by intf_get_dest_op_no_passthru_untyped(), intf_insert(), and intf_plug().

◆ intf_put()

void intf_put ( struct interface intf)

Decrement reference count on an object interface.

Parameters
intfObject interface

Definition at line 149 of file interface.c.

149  {
150  ref_put ( intf->refcnt );
151 }
struct interface * intf
Original interface.
Definition: interface.h:158
struct refcnt * refcnt
Reference counter.
Definition: interface.h:139
#define ref_put(refcnt)
Drop reference to object.
Definition: refcnt.h:106

References interface::intf, ref_put, and interface::refcnt.

Referenced by acpi_describe(), ata_command(), block_capacity(), block_read(), block_read_capacity(), block_write(), edd_describe(), efi_describe(), identify_device(), intf_close(), intf_get_dest_op_untyped(), intf_insert(), intf_plug(), intf_poke(), intf_unplug(), job_progress(), peerdisc_stat(), resolv_done(), scsi_command(), scsi_response(), xfer_alloc_iob(), xfer_buffer(), xfer_deliver(), xfer_vredirect(), and xfer_window().

◆ __attribute__()

void* __attribute__ ( (pure)  )

◆ intf_get_dest_op_no_passthru_untyped()

void* intf_get_dest_op_no_passthru_untyped ( struct interface intf,
void *  type,
struct interface **  dest 
)

Get object interface destination and operation method (without pass-through)

Parameters
intfObject interface
typeOperation type
Return values
destDestination interface
funcImplementing method, or NULL

Definition at line 187 of file interface.c.

189  {
190  struct interface_descriptor *desc;
191  struct interface_operation *op;
192  unsigned int i;
193 
194  *dest = intf_get ( intf->dest );
195  desc = (*dest)->desc;
196  for ( i = desc->num_op, op = desc->op ; i ; i--, op++ ) {
197  if ( op->type == type )
198  return op->func;
199  }
200 
201  return NULL;
202 }
struct interface * intf_get(struct interface *intf)
Increment reference count on an object interface.
Definition: interface.c:139
An object interface operation.
Definition: interface.h:17
uint64_t desc
Microcode descriptor list physical address.
Definition: ucode.h:12
struct interface * dest
Destination object interface.
Definition: interface.h:133
static void * dest
Definition: strings.h:176
An object interface descriptor.
Definition: interface.h:55
static uint16_t struct vmbus_xfer_pages_operations * op
Definition: netvsc.h:327
uint32_t type
Operating system type.
Definition: ena.h:12
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References desc, interface::dest, dest, intf_get(), NULL, op, and type.

Referenced by intf_get_dest_op_untyped().

◆ intf_get_dest_op_untyped()

void* intf_get_dest_op_untyped ( struct interface intf,
void *  type,
struct interface **  dest 
)

Get object interface destination and operation method.

Parameters
intfObject interface
typeOperation type
Return values
destDestination interface
funcImplementing method, or NULL

Definition at line 212 of file interface.c.

213  {
214  void *func;
215 
216  while ( 1 ) {
217 
218  /* Search for an implementing method provided by the
219  * current destination interface.
220  */
222  if ( func )
223  return func;
224 
225  /* Pass through to the underlying interface, if applicable */
226  if ( ! ( intf = intf_get_passthru ( *dest ) ) )
227  return NULL;
228  intf_put ( *dest );
229  }
230 }
static struct interface * intf_get_passthru(struct interface *intf)
Get pass-through interface.
Definition: interface.c:169
void * func
Implementing method.
Definition: interface.h:21
static void * dest
Definition: strings.h:176
uint32_t type
Operating system type.
Definition: ena.h:12
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149
void * intf_get_dest_op_no_passthru_untyped(struct interface *intf, void *type, struct interface **dest)
Get object interface destination and operation method (without pass-through)
Definition: interface.c:187
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References dest, interface_operation::func, intf_get_dest_op_no_passthru_untyped(), intf_get_passthru(), intf_put(), NULL, and type.

Referenced by intf_poke().

◆ intf_close()

void intf_close ( struct interface intf,
int  rc 
)

Close an object interface.

Parameters
intfObject interface
rcReason for close

Note that this function merely informs the destination object that the interface is about to be closed; it doesn't actually disconnect the interface. In most cases, you probably want to use intf_shutdown() or intf_restart() instead.

Definition at line 249 of file interface.c.

249  {
250  struct interface *dest;
251  intf_close_TYPE ( void * ) *op =
253  void *object = intf_object ( dest );
254 
255  DBGC ( INTF_COL ( intf ), "INTF " INTF_INTF_FMT " close (%s)\n",
256  INTF_INTF_DBG ( intf, dest ), strerror ( rc ) );
257 
258  if ( op ) {
259  op ( object, rc );
260  } else {
261  /* Default is to restart the interface */
262  intf_restart ( dest, rc );
263  }
264 
265  intf_put ( dest );
266 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition: interface.c:249
#define INTF_INTF_FMT
printf() format string for INTF_INTF_DBG()
Definition: interface.h:297
void intf_restart(struct interface *intf, int rc)
Shut down and restart an object interface.
Definition: interface.c:343
#define INTF_INTF_DBG(intf, dest)
printf() arguments for representing an object interface pair
Definition: interface.h:306
#define INTF_COL(intf)
Find debugging colourisation for an object interface.
Definition: interface.h:281
#define DBGC(...)
Definition: compiler.h:505
void * intf_object(struct interface *intf)
Get pointer to object containing object interface.
Definition: interface.c:159
struct interface * intf
Original interface.
Definition: interface.h:158
An object interface.
Definition: interface.h:124
static void * dest
Definition: strings.h:176
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
static uint16_t struct vmbus_xfer_pages_operations * op
Definition: netvsc.h:327
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149
#define intf_get_dest_op(intf, type, dest)
Get object interface destination and operation method.
Definition: interface.h:269
#define intf_close_TYPE(object_type)
Definition: interface.h:176

References DBGC, dest, interface::intf, intf_close(), intf_close_TYPE, INTF_COL, intf_get_dest_op, INTF_INTF_DBG, INTF_INTF_FMT, intf_object(), intf_put(), intf_restart(), op, rc, and strerror().

Referenced by ifconf_progress(), iflinkwait_progress(), intf_close(), intf_shutdown(), netdev_close(), sync_progress(), and xfer_vredirect().

◆ intf_shutdown()

void intf_shutdown ( struct interface intf,
int  rc 
)

Shut down an object interface.

Parameters
intfObject interface
rcReason for close

Blocks further operations from being received via the interface, executes a close operation on the destination interface, and unplugs the interface.

Definition at line 278 of file interface.c.

278  {
279  struct interface tmp;
280 
281  DBGC ( INTF_COL ( intf ), "INTF " INTF_FMT " shutting down (%s)\n",
282  INTF_DBG ( intf ), strerror ( rc ) );
283 
284  /* Block further operations */
285  intf_nullify ( intf );
286 
287  /* Transfer destination to temporary interface */
288  intf_temp_init ( &tmp, intf );
289  tmp.dest = intf->dest;
290  intf->dest = &null_intf;
291 
292  /* Notify destination of close via temporary interface */
293  intf_close ( &tmp, rc );
294 
295  /* Unplug temporary interface */
296  intf_unplug ( &tmp );
297 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_close(struct interface *intf, int rc)
Close an object interface.
Definition: interface.c:249
struct interface null_intf
The null interface.
Definition: interface.c:65
#define INTF_DBG(intf)
printf() arguments for representing an object interface
Definition: interface.h:292
#define INTF_COL(intf)
Find debugging colourisation for an object interface.
Definition: interface.h:281
#define DBGC(...)
Definition: compiler.h:505
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
unsigned long tmp
Definition: linux_pci.h:53
An object interface.
Definition: interface.h:124
void intf_unplug(struct interface *intf)
Unplug an object interface.
Definition: interface.c:117
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
void intf_nullify(struct interface *intf)
Ignore all further operations on an object interface.
Definition: interface.c:129
static void intf_temp_init(struct interface *intf, struct interface *original)
Initialise a temporary outbound-only object interface.
Definition: interface.h:232
#define INTF_FMT
printf() format string for INTF_DBG()
Definition: interface.h:284

References DBGC, interface::dest, interface::intf, intf_close(), INTF_COL, INTF_DBG, INTF_FMT, intf_nullify(), intf_temp_init(), intf_unplug(), null_intf, rc, strerror(), and tmp.

Referenced by aoecmd_close(), aoedev_close(), aoedev_config_done(), atacmd_close(), atadev_close(), blktrans_close(), comboot_resolv_close(), dhcp_finished(), dhcpv6_finished(), dns_done(), downloader_finished(), efi_download_close(), efi_local_close(), fc_els_close(), fc_ns_query_close(), fc_peer_close(), fc_port_close(), fc_ulp_close(), fc_xchg_close(), fcoe_close(), fcpcmd_close(), fcpdev_close(), ftp_done(), http_conn_close(), http_transfer_complete(), hw_finished(), ib_cmrc_close(), ib_srp_close(), imux_shutdown(), intf_restart(), intfs_vshutdown(), ipair_close(), ipv6conf_done(), named_close(), nfs_deliver(), nfs_done(), nfs_pm_deliver(), nslookup_close(), ntp_close(), numeric_step(), peerblk_close(), peermux_close(), peermux_info_close(), ping_close(), pinger_close(), posix_file_finished(), pxe_tftp_close(), resmux_close(), slam_finished(), srpcmd_close(), srpdev_close(), tcp_close(), tftp_done(), tls_close(), udp_close(), validator_finished(), and xcm_destroy().

◆ intfs_vshutdown()

void intfs_vshutdown ( va_list  intfs,
int  rc 
)

Shut down multiple object interfaces.

Parameters
intfsObject interfaces
rcReason for close

Definition at line 305 of file interface.c.

305  {
306  struct interface *intf;
307  va_list tmp;
308 
309  /* Nullify all interfaces to avoid potential loops */
310  va_copy ( tmp, intfs );
311  while ( ( intf = va_arg ( tmp, struct interface * ) ) )
312  intf_nullify ( intf );
313  va_end ( tmp );
314 
315  /* Shut down all interfaces */
316  while ( ( intf = va_arg ( intfs, struct interface * ) ) )
317  intf_shutdown ( intf, rc );
318 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define va_end(ap)
Definition: stdarg.h:9
void intf_shutdown(struct interface *intf, int rc)
Shut down an object interface.
Definition: interface.c:278
#define va_copy(dest, src)
Definition: stdarg.h:10
struct interface * intf
Original interface.
Definition: interface.h:158
unsigned long tmp
Definition: linux_pci.h:53
#define va_arg(ap, type)
Definition: stdarg.h:8
An object interface.
Definition: interface.h:124
void intf_nullify(struct interface *intf)
Ignore all further operations on an object interface.
Definition: interface.c:129
__builtin_va_list va_list
Definition: stdarg.h:6

References interface::intf, intf_nullify(), intf_shutdown(), rc, tmp, va_arg, va_copy, and va_end.

Referenced by intfs_shutdown(), and intfs_vrestart().

◆ intfs_shutdown()

void intfs_shutdown ( int  rc,
  ... 
)

Shut down multiple object interfaces.

Parameters
rcReason for close
...Object interfaces

Definition at line 326 of file interface.c.

326  {
327  va_list intfs;
328 
329  va_start ( intfs, rc );
330  intfs_vshutdown ( intfs, rc );
331  va_end ( intfs );
332 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define va_end(ap)
Definition: stdarg.h:9
__builtin_va_list va_list
Definition: stdarg.h:6
void intfs_vshutdown(va_list intfs, int rc)
Shut down multiple object interfaces.
Definition: interface.c:305
#define va_start(ap, last)
Definition: stdarg.h:7

References intfs_vshutdown(), rc, va_end, and va_start.

Referenced by http_close(), iscsi_close(), scsicmd_close(), scsidev_close(), and usbblk_remove().

◆ intf_restart()

void intf_restart ( struct interface intf,
int  rc 
)

Shut down and restart an object interface.

Parameters
intfObject interface
rcReason for close

Shuts down the interface, then unblocks operations that were blocked during shutdown.

Definition at line 343 of file interface.c.

343  {
344 
345  /* Shut down the interface */
346  intf_shutdown ( intf, rc );
347 
348  DBGC ( INTF_COL ( intf ), "INTF " INTF_FMT " restarting\n",
349  INTF_DBG ( intf ) );
350 
351  /* Restore the interface descriptor. Must be done after
352  * shutdown (rather than inhibiting intf_shutdown() from
353  * nullifying the descriptor) in order to avoid a potential
354  * infinite loop as the intf_close() operations on each side
355  * of the link call each other recursively.
356  */
357  intf_reinit ( intf );
358 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void intf_shutdown(struct interface *intf, int rc)
Shut down an object interface.
Definition: interface.c:278
#define INTF_DBG(intf)
printf() arguments for representing an object interface
Definition: interface.h:292
#define INTF_COL(intf)
Find debugging colourisation for an object interface.
Definition: interface.h:281
#define DBGC(...)
Definition: compiler.h:505
struct interface * intf
Original interface.
Definition: interface.h:158
#define INTF_FMT
printf() format string for INTF_DBG()
Definition: interface.h:284
static void intf_reinit(struct interface *intf)
Reinitialise an object interface.
Definition: interface.h:313

References DBGC, interface::intf, INTF_COL, INTF_DBG, INTF_FMT, intf_reinit(), intf_shutdown(), and rc.

Referenced by apply_syslog_settings(), apply_syslogs_settings(), efi_pxe_tftp_close(), efi_pxe_udp_close(), fc_peer_plogi(), fc_peer_plogi_done(), fc_port_examine(), fc_port_flogi_done(), fc_port_login(), fc_port_ns_plogi_done(), fc_ulp_examine(), fc_ulp_prli_done(), fcoe_reset(), http_block_read(), http_block_read_capacity(), http_conn_close(), http_conn_xfer_close(), http_reopen(), http_transfer_complete(), imux_close(), imux_start_pair(), intf_close(), iscsi_close_connection(), iscsi_command_close(), iscsi_scsi_done(), monojob_close(), netdev_config_close(), netdev_configure(), peerblk_raw_close(), peerblk_raw_open(), peerblk_raw_rx(), peerblk_reset(), peerblk_retrieval_close(), peerblk_retrieval_open(), peerblk_retrieval_rx(), peerdisc_socket_close(), peerdisc_socket_open(), peermux_block_close(), pxenv_udp_close(), pxenv_udp_open(), resmux_child_close(), sandev_command_close(), sanpath_close(), scsicmd_done(), scsidev_ready(), syslogs_close(), tftp_reopen(), tftp_reopen_mc(), tftp_timer_expired(), tls_validator_done(), usbblk_stop(), validator_start_download(), validator_start_ocsp(), validator_xfer_close(), xcm_close(), xcm_reopen(), and xfer_vreopen().

◆ intfs_vrestart()

void intfs_vrestart ( va_list  intfs,
int  rc 
)

Shut down and restart multiple object interfaces.

Parameters
intfsObject interfaces
rcReason for close

Definition at line 366 of file interface.c.

366  {
367  struct interface *intf;
368  va_list tmp;
369 
370  /* Shut down all interfaces */
371  va_copy ( tmp, intfs );
372  intfs_vshutdown ( tmp, rc );
373  va_end ( tmp );
374 
375  /* Reinitialise all interfaces */
376  while ( ( intf = va_arg ( intfs, struct interface * ) ) )
377  intf_reinit ( intf );
378 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define va_end(ap)
Definition: stdarg.h:9
#define va_copy(dest, src)
Definition: stdarg.h:10
struct interface * intf
Original interface.
Definition: interface.h:158
unsigned long tmp
Definition: linux_pci.h:53
#define va_arg(ap, type)
Definition: stdarg.h:8
An object interface.
Definition: interface.h:124
__builtin_va_list va_list
Definition: stdarg.h:6
void intfs_vshutdown(va_list intfs, int rc)
Shut down multiple object interfaces.
Definition: interface.c:305
static void intf_reinit(struct interface *intf)
Reinitialise an object interface.
Definition: interface.h:313

References interface::intf, intf_reinit(), intfs_vshutdown(), rc, tmp, va_arg, va_copy, and va_end.

Referenced by intfs_restart().

◆ intfs_restart()

void intfs_restart ( int  rc,
  ... 
)

Shut down and restart multiple object interfaces.

Parameters
rcReason for close
...Object interfaces

Definition at line 386 of file interface.c.

386  {
387  va_list intfs;
388 
389  va_start ( intfs, rc );
390  intfs_vrestart ( intfs, rc );
391  va_end ( intfs );
392 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define va_end(ap)
Definition: stdarg.h:9
__builtin_va_list va_list
Definition: stdarg.h:6
#define va_start(ap, last)
Definition: stdarg.h:7
void intfs_vrestart(va_list intfs, int rc)
Shut down and restart multiple object interfaces.
Definition: interface.c:366

References intfs_vrestart(), rc, va_end, and va_start.

Referenced by http_transfer_complete(), sanpath_close(), and usbblk_scsi_close().

◆ intf_insert()

void intf_insert ( struct interface intf,
struct interface upper,
struct interface lower 
)

Insert a filter interface.

Parameters
intfObject interface
upperUpper end of filter
lowerLower end of filter

Definition at line 401 of file interface.c.

402  {
403  struct interface *dest = intf->dest;
404 
405  intf_get ( dest );
406  intf_plug_plug ( intf, upper );
407  intf_plug_plug ( lower, dest );
408  intf_put ( dest );
409 }
struct interface * intf_get(struct interface *intf)
Increment reference count on an object interface.
Definition: interface.c:139
void intf_plug_plug(struct interface *a, struct interface *b)
Plug two object interfaces together.
Definition: interface.c:107
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
An object interface.
Definition: interface.h:124
static void * dest
Definition: strings.h:176
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149

References interface::dest, dest, interface::intf, intf_get(), intf_plug_plug(), and intf_put().

Referenced by add_tls(), and block_translate().

◆ intf_poke()

void intf_poke ( struct interface intf,
void(type)(struct interface *intf)   
)

Poke an object interface.

Parameters
intfObject interface
typeOperation type

This is a helper function to implement methods which take no parameters and return nothing.

Definition at line 420 of file interface.c.

421  {
422  struct interface *dest;
423  intf_poke_TYPE ( void * ) *op =
425  void *object = intf_object ( dest );
426 
427  if ( op ) {
428  op ( object );
429  } else {
430  /* Default is to do nothing */
431  }
432 
433  intf_put ( dest );
434 }
void * intf_get_dest_op_untyped(struct interface *intf, void *type, struct interface **dest)
Get object interface destination and operation method.
Definition: interface.c:212
void * intf_object(struct interface *intf)
Get pointer to object containing object interface.
Definition: interface.c:159
struct interface * intf
Original interface.
Definition: interface.h:158
An object interface.
Definition: interface.h:124
static void * dest
Definition: strings.h:176
#define intf_poke_TYPE(object_type)
Definition: interface.h:190
static uint16_t struct vmbus_xfer_pages_operations * op
Definition: netvsc.h:327
uint32_t type
Operating system type.
Definition: ena.h:12
void intf_put(struct interface *intf)
Decrement reference count on an object interface.
Definition: interface.c:149

References dest, interface::intf, intf_get_dest_op_untyped(), intf_object(), intf_poke_TYPE, intf_put(), op, and type.

Referenced by pool_recycle(), pool_reopen(), and xfer_window_changed().

◆ intf_init()

static void intf_init ( struct interface intf,
struct interface_descriptor desc,
struct refcnt refcnt 
)
inlinestatic

Initialise an object interface.

Parameters
intfObject interface
descObject interface descriptor
refcntContaining object reference counter, or NULL

Definition at line 203 of file interface.h.

205  {
206  intf->dest = &null_intf;
207  intf->refcnt = refcnt;
208  intf->desc = desc;
209  intf->original.desc = desc;
210 }
uint64_t desc
Microcode descriptor list physical address.
Definition: ucode.h:12
static void(*) struct refcnt refcnt)
Definition: pool.h:62
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
struct interface null_intf
The null interface.
Definition: interface.c:65
union interface::@570 original
Original interface properties.
struct interface_descriptor * desc
Interface descriptor.
Definition: interface.h:145
struct refcnt * refcnt
Reference counter.
Definition: interface.h:139

References desc, interface::desc, interface::dest, interface::intf, null_intf, interface::original, refcnt, and interface::refcnt.

Referenced by add_tls(), alloc_netdev(), alloc_sandev(), aoecmd_create(), aoedev_open(), ata_open(), atadev_command(), block_translate(), create_downloader(), create_pinger(), create_validator(), dns_resolv(), efi_download_start(), efi_local_open(), efi_pxe_install(), fc_els_create(), fc_ns_query(), fc_peer_create(), fc_port_open(), fc_ulp_create(), fc_xchg_create(), fcoe_probe(), fcpdev_open(), fcpdev_scsi_command(), ftp_open(), http_connect(), http_open(), hw_open(), ib_cmrc_open(), ib_srp_open(), imux_probe(), ipair_create(), iscsi_open(), nfs_open(), numeric_resolv(), open(), peerblk_open(), peermux_filter(), ping_open(), pxe_tftp_open(), resolv(), resolv_setting(), scsi_open(), scsidev_command(), slam_open(), srp_open(), srpdev_scsi_command(), start_dhcp(), start_dhcpv6(), start_ipv6conf(), start_ntp(), start_pxebs(), tcp_open(), tftp_core_open(), udp_open_common(), usbblk_probe(), xcm_create(), and xfer_open_named_socket().

◆ intf_temp_init()

static void intf_temp_init ( struct interface intf,
struct interface original 
)
inlinestatic

Initialise a temporary outbound-only object interface.

Parameters
intfTemporary outbound-only object interface
originalOriginal object interface

Definition at line 232 of file interface.h.

233  {
234  intf->dest = &null_intf;
235  intf->desc = NULL;
237 }
struct interface * intf
Original interface.
Definition: interface.h:158
struct interface * dest
Destination object interface.
Definition: interface.h:133
struct interface null_intf
The null interface.
Definition: interface.c:65
union interface::@570 original
Original interface properties.
struct interface_descriptor * desc
Interface descriptor.
Definition: interface.h:145
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References interface::desc, interface::dest, interface::intf, NULL, null_intf, and interface::original.

Referenced by intf_shutdown(), and xfer_vredirect().

◆ intf_origin()

static struct interface* intf_origin ( struct interface intf)
inlinestatic

Get original interface.

Parameters
intfObject interface (possibly a temporary interface)
Return values
intfOriginal object interface

Definition at line 245 of file interface.h.

245  {
246  return ( intf->desc ? intf : intf->original.intf );
247 }
struct interface * intf
Original interface.
Definition: interface.h:158
union interface::@570 original
Original interface properties.
struct interface_descriptor * desc
Interface descriptor.
Definition: interface.h:145

References interface::desc, interface::intf, and interface::original.

◆ intf_reinit()

static void intf_reinit ( struct interface intf)
inlinestatic

Reinitialise an object interface.

Parameters
intfObject interface

Definition at line 313 of file interface.h.

313  {
314 
315  /* Restore original interface descriptor */
316  intf->desc = intf->original.desc;
317 }
struct interface * intf
Original interface.
Definition: interface.h:158
union interface::@570 original
Original interface properties.
struct interface_descriptor * desc
Interface descriptor.
Definition: interface.h:145

References interface::desc, interface::intf, and interface::original.

Referenced by intf_restart(), and intfs_vrestart().

Variable Documentation

◆ null_intf_desc

struct interface_descriptor null_intf_desc

Null interface descriptor.

Definition at line 61 of file interface.c.

Referenced by intf_nullify(), and numeric_resolv().

◆ null_intf

struct interface null_intf

The null interface.

Definition at line 65 of file interface.c.

Referenced by intf_init(), intf_plug(), intf_shutdown(), intf_temp_init(), and intf_unplug().