summaryrefslogtreecommitdiffstats
path: root/build-root/copyimg
blob: e5e3fc265ee972de14e6124e6cf9183aac129f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh

if [ $# -lt 2 ]; then
    cat - <<EOF
$0 FROM-DIR TO-DIR ENVIRONMENT

Copies files from one directory to another with possible
transformations.

Files named FILE.spp will be transformed via the spp preprocessor
subject to environment definitions.  Source FILE.copyimgspp results in
destination file FILE in the corresponding destination directory.

Files named FILE.copyimgsh are run as shell scripts in (i.e. via chdir)
the corresponding destination directory (and not copied).

First regular files are copied.  Then transformations are preformed.
Finally, shell scripts are run.
EOF
  exit 1;
fi

FROM_DIR=$1
TO_DIR=$2

FILTER=" -and -not -name '*~'";
FILTER="${FILTER} -and -not -name '.*~'";
FILTER="$FILTER -and -not -path '*/.git*'";
FILTER="$FILTER -and -not -path '*/.svn*'";
FILTER="$FILTER -and -not -path '*/.CVS*'";

FROM_FILES=`(cd $FROM_DIR; eval "find . -not -type d $FILTER")`;
 FROM_DIRS=`(cd $FROM_DIR; eval "find .      -type d $FILTER")`;

COPY_FILES=
SPP_FILES=
SH_FILES=
for f in $FROM_FILES; do
  case $f in
    *.copyimgspp) SPP_FILES="$SPP_FILES $f" ;;
    *.copyimgsh)   SH_FILES="$SH_FILES $f" ;;
    *)		 COPY_FILES="$COPY_FILES $f";;
  esac
done

# Make destination directories.
mkdir -p $TO_DIR;
if [ "$FROM_DIRS" != "" ]; then
  for d in $FROM_DIRS; do
    mkdir -p $TO_DIR/$d;
  done
fi

# Copy files
if [ "$COPY_FILES" != "" ]; then
    tar -cf - -C $FROM_DIR $COPY_FILES | tar --preserve-permissions -xf - -C $TO_DIR;
fi

# Use spp to transform any spp files
if [ "$SPP_FILES" != "" ]; then
  for f in $SPP_FILES; do
    d=`dirname $f`;
    b=`basename $f .copyimgspp`;
    mkdir -p $TO_DIR/$d;
    t=$TO_DIR/$d/$b;
    spp -o $TO_DIR/$d/$b $FROM_DIR/$f || exit 1;
  done;
fi

# Now that all files have been copied/created we run any shell scripts
ABS_FROM_DIR=`(cd $FROM_DIR; pwd)`;
if [ "$SH_FILES" != "" ]; then
  # Allow directory to define some functions
  if [ -f $FROM_DIR/copyimgsh-functions.sh ]; then
    . $FROM_DIR/copyimgsh-functions.sh ;
  fi ;
  for f in $SH_FILES; do
    d=`dirname $f`;
    b=`basename $f`;
    mkdir -p $TO_DIR/$d;
    (cd $TO_DIR/$d; . $ABS_FROM_DIR/$d/$b) || exit 1;
  done;
fi;
#include <vnet/vnet.h> #include <vlib/vlib.h> #include <vlib/unix/unix.h> #include <vlibapi/api.h> #include <vlibmemory/api.h> #include "vat/json_format.h" #include <vlib/vlib.h> typedef struct { u8 *interface_name; u32 sw_if_index; /* * Subinterface ID. A number 0-N to uniquely identify this * subinterface under the super interface */ u32 sub_id; /* Number of tags 0-2 */ u8 sub_number_of_tags; u16 sub_outer_vlan_id; u16 sub_inner_vlan_id; union { u16 raw_flags; struct { u16 no_tags:1; u16 one_tag:1; u16 two_tags:1; /* 0 = dot1q, 1=dot1ad */ u16 sub_dot1ad:1; u16 sub_exact_match:1; u16 sub_default:1; u16 sub_outer_vlan_id_any:1; u16 sub_inner_vlan_id_any:1; }; }; /* vlan tag rewrite */ u32 vtr_op; u32 vtr_push_dot1q; u32 vtr_tag1; u32 vtr_tag2; } sw_interface_subif_t; typedef struct { u8 ip[16]; u8 prefix_length; } ip_address_details_t; typedef struct { u8 present; ip_address_details_t *addr; } ip_details_t; typedef struct { u64 packets; u64 bytes; } interface_counter_t; typedef struct { struct in_addr address; u8 address_length; u64 packets; u64 bytes; } ip4_fib_counter_t; typedef struct { struct in6_addr address; u8 address_length; u64 packets; u64 bytes; } ip6_fib_counter_t; typedef struct { struct in_addr address; vnet_link_t linkt; u64 packets; u64 bytes; } ip4_nbr_counter_t; typedef struct { struct in6_addr address; vnet_link_t linkt; u64 packets; u64 bytes; } ip6_nbr_counter_t; struct vat_registered_features_t; typedef struct { /* vpe input queue */ svm_queue_t *vl_input_queue; /* interface name table */ uword *sw_if_index_by_interface_name; /* subinterface table */ sw_interface_subif_t *sw_if_subif_table; /* Graph node table */ uword *graph_node_index_by_name; vlib_node_t ***graph_nodes; /* ip tables */ ip_details_t *ip_details_by_sw_if_index[2]; /* sw_if_index of currently processed interface */ u32 current_sw_if_index; /* remember that we are dumping ipv6 */ u8 is_ipv6; /* function table */ uword *function_by_name; /* help strings */ uword *help_by_name; /* macro table */ clib_macro_main_t macro_main; /* Errors by number */ uword *error_string_by_error_number; /* Main thread can spin (w/ timeout) here if needed */ u32 async_mode; u32 async_errors; volatile u32 result_ready; volatile i32 retval; volatile u32 sw_if_index; volatile u8 *shmem_result; u8 *cmd_reply; /* our client index */ u32 my_client_index; int client_index_invalid; /* Time is of the essence... */ clib_time_t clib_time; /* Unwind (so we can quit) */ jmp_buf jump_buf; int jump_buf_set; volatile int do_exit; /* temporary parse buffer */ unformat_input_t *input; /* input buffer */ u8 *inbuf; /* stdio input / output FILEs */ FILE *ifp, *ofp; u8 *current_file; u32 input_line_number; /* exec mode toggle */ int exec_mode; /* Regenerate the interface table */ volatile int regenerate_interface_table; /* flag for JSON output format */ u8 json_output; /* flag for interface event display */ u8 interface_event_display; /* JSON tree used in composing dump api call results */ vat_json_node_t json_tree; /* counters */ u64 **simple_interface_counters; interface_counter_t **combined_interface_counters; ip4_fib_counter_t **ip4_fib_counters; u32 *ip4_fib_counters_vrf_id_by_index; ip6_fib_counter_t **ip6_fib_counters; u32 *ip6_fib_counters_vrf_id_by_index; ip4_nbr_counter_t **ip4_nbr_counters; ip6_nbr_counter_t **ip6_nbr_counters; ssvm_private_t stat_segment; clib_spinlock_t *stat_segment_lockp; socket_client_main_t *socket_client_main; u8 *socket_name; elog_main_t elog_main; struct vat_registered_features_t *feature_function_registrations; /* Convenience */ vlib_main_t *vlib_main; } vat_main_t; extern vat_main_t vat_main; void vat_suspend (vlib_main_t * vm, f64 interval); f64 vat_time_now (vat_main_t * vam); void errmsg (char *fmt, ...); void vat_api_hookup (vat_main_t * vam); int api_sw_interface_dump (vat_main_t * vam); void do_one_file (vat_main_t * vam); int exec (vat_main_t * vam); /* Plugin API library functions */ extern char *vat_plugin_path; extern char *vat_plugin_name_filter; void vat_plugin_api_reference (void); uword unformat_sw_if_index (unformat_input_t * input, va_list * args); uword unformat_ip4_address (unformat_input_t * input, va_list * args); uword unformat_ethernet_address (unformat_input_t * input, va_list * args); uword unformat_ethernet_type_host_byte_order (unformat_input_t * input, va_list * args); uword unformat_ip6_address (unformat_input_t * input, va_list * args); u8 *format_ip4_address (u8 * s, va_list * args); u8 *format_ip6_address (u8 * s, va_list * args); u8 *format_ip46_address (u8 * s, va_list * args); u8 *format_ethernet_address (u8 * s, va_list * args); int vat_socket_connect (vat_main_t * vam); #if VPP_API_TEST_BUILTIN #define print api_cli_output void api_cli_output (void *, const char *fmt, ...); #else #define print fformat_append_cr void fformat_append_cr (FILE *, const char *fmt, ...); #endif typedef clib_error_t *(vat_feature_function_t) (vat_main_t * vam); typedef struct vat_registered_features_t { vat_feature_function_t *function; struct vat_registered_features_t *next; } vat_registered_features_t; #define VAT_REGISTER_FEATURE_FUNCTION(x) \ vat_registered_features_t _vat_feature_function_##x; \ static void __vlib_add_config_function_##x (void) \ __attribute__((__constructor__)) ; \ static void __vlib_add_config_function_##x (void) \ { \ vat_main_t * vam = &vat_main; \ _vat_feature_function_##x.next = vam->feature_function_registrations; \ vam->feature_function_registrations = &_vat_feature_function_##x; \ } \ vat_registered_features_t _vat_feature_function_##x = \ { \ .function = x, \ } #endif /* __included_vat_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */