/linux-6.12.1/tools/testing/selftests/net/ |
D | tap.c | 33 static struct rtattr *rtattr_add(struct nlmsghdr *nh, unsigned short type, in rtattr_add() 36 struct rtattr *rta = in rtattr_add() 37 (struct rtattr *)((uint8_t *)nh + RTA_ALIGN(nh->nlmsg_len)); in rtattr_add() 44 static struct rtattr *rtattr_begin(struct nlmsghdr *nh, unsigned short type) in rtattr_begin() 49 static void rtattr_end(struct nlmsghdr *nh, struct rtattr *attr) in rtattr_end() 56 static struct rtattr *rtattr_add_str(struct nlmsghdr *nh, unsigned short type, in rtattr_add_str() 59 struct rtattr *rta = rtattr_add(nh, type, strlen(s)); in rtattr_add_str() 65 static struct rtattr *rtattr_add_strsz(struct nlmsghdr *nh, unsigned short type, in rtattr_add_strsz() 68 struct rtattr *rta = rtattr_add(nh, type, strlen(s) + 1); in rtattr_add_strsz() 74 static struct rtattr *rtattr_add_any(struct nlmsghdr *nh, unsigned short type, in rtattr_add_any() [all …]
|
D | tun.c | 74 struct rtattr *rta; in tun_delete() 90 rta = (struct rtattr *)(((char *)&req) + NLMSG_ALIGN(req.nh.nlmsg_len)); in tun_delete()
|
D | ipsec.c | 210 static inline struct rtattr *rtattr_hdr(struct nlmsghdr *nh) in rtattr_hdr() 212 return (struct rtattr *)((char *)(nh) + RTA_ALIGN((nh)->nlmsg_len)); in rtattr_hdr() 219 struct rtattr *attr = rtattr_hdr(nh); in rtattr_pack() 235 static struct rtattr *_rtattr_begin(struct nlmsghdr *nh, size_t req_sz, in _rtattr_begin() 238 struct rtattr *ret = rtattr_hdr(nh); in _rtattr_begin() 246 static inline struct rtattr *rtattr_begin(struct nlmsghdr *nh, size_t req_sz, in rtattr_begin() 252 static inline void rtattr_end(struct nlmsghdr *nh, struct rtattr *attr) in rtattr_end() 263 struct rtattr *peer_attr; in veth_pack_peerb() 317 struct rtattr *link_info, *info_data; in veth_add() 1677 struct rtattr *attr = (void *)req.attrbuf; in xfrm_spdinfo_attrs()
|
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/ |
D | xfrm_info.c | 171 static struct rtattr *rtattr_add(struct nlmsghdr *nh, unsigned short type, in rtattr_add() 174 struct rtattr *rta = in rtattr_add() 175 (struct rtattr *)((uint8_t *)nh + RTA_ALIGN(nh->nlmsg_len)); in rtattr_add() 182 static struct rtattr *rtattr_add_str(struct nlmsghdr *nh, unsigned short type, in rtattr_add_str() 185 struct rtattr *rta = rtattr_add(nh, type, strlen(s)); in rtattr_add_str() 191 static struct rtattr *rtattr_begin(struct nlmsghdr *nh, unsigned short type) in rtattr_begin() 196 static void rtattr_end(struct nlmsghdr *nh, struct rtattr *attr) in rtattr_end() 210 struct rtattr *link_info, *info_data; in setup_xfrmi_external_dev()
|
/linux-6.12.1/tools/testing/selftests/net/tcp_ao/lib/ |
D | netlink.c | 60 static inline struct rtattr *rtattr_hdr(struct nlmsghdr *nh) in rtattr_hdr() 62 return (struct rtattr *)((char *)(nh) + RTA_ALIGN((nh)->nlmsg_len)); in rtattr_hdr() 69 struct rtattr *attr = rtattr_hdr(nh); in rtattr_pack() 85 static struct rtattr *_rtattr_begin(struct nlmsghdr *nh, size_t req_sz, in _rtattr_begin() 88 struct rtattr *ret = rtattr_hdr(nh); in _rtattr_begin() 96 static inline struct rtattr *rtattr_begin(struct nlmsghdr *nh, size_t req_sz, in rtattr_begin() 102 static inline void rtattr_end(struct nlmsghdr *nh, struct rtattr *attr) in rtattr_end() 113 struct rtattr *peer_attr; in veth_pack_peerb() 144 struct rtattr *link_info, *info_data; in __add_veth() 358 struct rtattr *link_info, *info_data; in __add_vrf()
|
/linux-6.12.1/include/crypto/ |
D | algapi.h | 52 struct rtattr; 93 int (*create)(struct crypto_template *tmpl, struct rtattr **tb); 162 struct crypto_attr_type *crypto_get_attr_type(struct rtattr **tb); 163 int crypto_check_attr_type(struct rtattr **tb, u32 type, u32 *mask_ret); 164 const char *crypto_attr_alg_name(struct rtattr *rta);
|
/linux-6.12.1/include/uapi/linux/ |
D | rtnetlink.h | 211 struct rtattr { struct 220 #define RTA_OK(rta,len) ((len) >= (int)sizeof(struct rtattr) && \ argument 221 (rta)->rta_len >= sizeof(struct rtattr) && \ 224 (struct rtattr*)(((char*)(rta)) + RTA_ALIGN((rta)->rta_len))) 225 #define RTA_LENGTH(len) (RTA_ALIGN(sizeof(struct rtattr)) + (len)) 397 #define RTM_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg)))) 438 #define RTNH_DATA(rtnh) ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0))) 653 #define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg)))) 801 #define TA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
|
D | if_addr.h | 69 #define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
|
/linux-6.12.1/tools/testing/selftests/bpf/ |
D | netlink_helpers.h | 24 ((struct rtattr *) (((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len))) 44 struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type); 45 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
|
D | netlink_helpers.c | 316 struct rtattr *rta; in addattr_l() 346 struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type) in addattr_nest() 348 struct rtattr *nest = NLMSG_TAIL(n); in addattr_nest() 354 int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest) in addattr_nest_end()
|
/linux-6.12.1/tools/testing/selftests/net/mptcp/ |
D | pm_nl_ctl.c | 77 struct rtattr *attrs = (struct rtattr *)NLMSG_DATA(nh); in nl_error() 104 struct rtattr *attrs; in capture_events() 145 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN); in capture_events() 244 struct rtattr *attrs; in genl_parse_getfamily() 245 struct rtattr *grps; in genl_parse_getfamily() 246 struct rtattr *grp; in genl_parse_getfamily() 264 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN); in genl_parse_getfamily() 314 struct rtattr *rta; in resolve_mptcp_pm_netlink() 338 struct rtattr *rta, *addr; in dsf() 453 struct rtattr *addr; in csf() [all …]
|
/linux-6.12.1/crypto/ |
D | dh.c | 552 struct crypto_template *tmpl, struct rtattr **tb, in __dh_safe_prime_create() 834 struct rtattr **tb) in dh_ffdhe2048_create() 840 struct rtattr **tb) in dh_ffdhe3072_create() 846 struct rtattr **tb) in dh_ffdhe4096_create() 852 struct rtattr **tb) in dh_ffdhe6144_create() 858 struct rtattr **tb) in dh_ffdhe8192_create()
|
D | algboss.c | 24 struct rtattr *tb[CRYPTO_MAX_ATTRS + 2]; 27 struct rtattr attr; 32 struct rtattr attr;
|
D | ecb.c | 98 struct crypto_template *tmpl, struct rtattr **tb) in lskcipher_alloc_instance_simple2() 149 static int crypto_ecb_create2(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ecb_create2() 171 static int crypto_ecb_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ecb_create()
|
D | authenc.c | 49 struct rtattr *rta = (struct rtattr *)key; in crypto_authenc_extractkeys() 365 struct rtattr **tb) in crypto_authenc_create()
|
D | ccm.c | 447 struct rtattr **tb, in crypto_ccm_create_common() 529 static int crypto_ccm_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ccm_create() 551 struct rtattr **tb) in crypto_ccm_base_create() 705 struct rtattr **tb) in crypto_rfc4309_create() 858 static int cbcmac_create(struct crypto_template *tmpl, struct rtattr **tb) in cbcmac_create()
|
D | hctr2.c | 405 struct rtattr **tb, in hctr2_create_common() 516 static int hctr2_create_base(struct crypto_template *tmpl, struct rtattr **tb) in hctr2_create_base() 532 static int hctr2_create(struct crypto_template *tmpl, struct rtattr **tb) in hctr2_create()
|
D | algapi.c | 819 struct crypto_attr_type *crypto_get_attr_type(struct rtattr **tb) in crypto_get_attr_type() 821 struct rtattr *rta = tb[0]; in crypto_get_attr_type() 853 int crypto_check_attr_type(struct rtattr **tb, u32 type, u32 *mask_ret) in crypto_check_attr_type() 869 const char *crypto_attr_alg_name(struct rtattr *rta) in crypto_attr_alg_name()
|
D | pcrypt.c | 236 static int pcrypt_create_aead(struct crypto_template *tmpl, struct rtattr **tb, in pcrypt_create_aead() 295 static int pcrypt_create(struct crypto_template *tmpl, struct rtattr **tb) in pcrypt_create()
|
D | ctr.c | 127 static int crypto_ctr_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ctr_create() 258 struct rtattr **tb) in crypto_rfc3686_create()
|
/linux-6.12.1/include/crypto/internal/ |
D | skcipher.h | 26 struct rtattr; 273 struct crypto_template *tmpl, struct rtattr **tb); 292 struct crypto_template *tmpl, struct rtattr **tb);
|
D | geniv.h | 23 struct rtattr **tb);
|
D | aead.h | 16 struct rtattr;
|
/linux-6.12.1/tools/testing/selftests/net/af_unix/ |
D | diag_uid.c | 120 struct rtattr *attr; in render_response() 126 attr = (struct rtattr *)(udr + 1); in render_response()
|
/linux-6.12.1/samples/bpf/ |
D | xdp_router_ipv4_user.c | 95 struct rtattr *rt_attr; in read_route() 123 rt_attr = (struct rtattr *)RTM_RTA(rt_msg); in read_route() 318 struct rtattr *rt_attr; in read_arp() 335 rt_attr = (struct rtattr *)RTM_RTA(rt_msg); in read_arp()
|