/Linux-v5.10/tools/objtool/ |
D | elf.c | 132 struct section *sec; in find_section_by_name() local 134 elf_hash_for_each_possible(elf->section_name_hash, sec, name_hash, str_hash(name)) in find_section_by_name() 135 if (!strcmp(sec->name, name)) in find_section_by_name() 136 return sec; in find_section_by_name() 144 struct section *sec; in find_section_by_index() local 146 elf_hash_for_each_possible(elf->section_hash, sec, hash, idx) in find_section_by_index() 147 if (sec->idx == idx) in find_section_by_index() 148 return sec; in find_section_by_index() 164 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset) in find_symbol_by_offset() argument 168 rb_for_each(&sec->symbol_tree, node, &offset, symbol_by_offset) { in find_symbol_by_offset() [all …]
|
D | check.c | 33 struct section *sec, unsigned long offset) in find_insn() argument 37 hash_for_each_possible(file->insn_hash, insn, hash, sec_offset_hash(sec, offset)) { in find_insn() 38 if (insn->sec == sec && insn->offset == offset) in find_insn() 50 if (!next || &next->list == &file->insn_list || next->sec != insn->sec) in next_insn_same_sec() 73 return find_insn(file, func->cfunc->sec, func->cfunc->offset); in next_insn_same_func() 88 for (insn = find_insn(file, func->sec, func->offset); \ 93 for (insn = find_insn(file, sym->sec, sym->offset); \ 95 insn->sec == sym->sec && \ 102 insn->sec == sym->sec && insn->offset >= sym->offset; \ 175 insn = find_insn(file, func->sec, func->offset); in __dead_end_function() [all …]
|
D | special.c | 20 const char *sec; member 29 .sec = ".altinstructions", 39 .sec = "__jump_table", 46 .sec = "__ex_table", 59 struct section *sec, int idx, in get_alt_entry() argument 71 alt->orig_len = *(unsigned char *)(sec->data->d_buf + offset + in get_alt_entry() 73 alt->new_len = *(unsigned char *)(sec->data->d_buf + offset + in get_alt_entry() 80 feature = *(unsigned short *)(sec->data->d_buf + offset + in get_alt_entry() 85 orig_reloc = find_reloc_by_dest(elf, sec, offset + entry->orig); in get_alt_entry() 87 WARN_FUNC("can't find orig reloc", sec, offset + entry->orig); in get_alt_entry() [all …]
|
D | orc_gen.c | 24 if (!insn->sec->text) in create_orc() 61 insn->sec, insn->offset, cfa->base); in create_orc() 77 insn->sec, insn->offset, bp->base); in create_orc() 136 reloc->sec = ip_relocsec; in create_orc_entry() 146 struct section *sec, *u_sec, *ip_relocsec; in create_orc_sections() local 155 sec = find_section_by_name(file->elf, ".orc_unwind"); in create_orc_sections() 156 if (sec) { in create_orc_sections() 163 for_each_sec(file, sec) { in create_orc_sections() 164 if (!sec->text) in create_orc_sections() 168 sec_for_each_insn(file, sec, insn) { in create_orc_sections() [all …]
|
D | elf.h | 51 struct section *sec; member 69 struct section *sec; member 104 static inline u32 sec_offset_hash(struct section *sec, unsigned long offset) in sec_offset_hash() argument 106 u32 ol, oh, idx = sec->idx; in sec_offset_hash() 120 return sec_offset_hash(reloc->sec, reloc->offset); in reloc_hash() 127 int elf_write_insn(struct elf *elf, struct section *sec, 135 struct symbol *find_func_by_offset(struct section *sec, unsigned long offset); 136 struct symbol *find_symbol_by_offset(struct section *sec, unsigned long offset); 138 struct symbol *find_symbol_containing(const struct section *sec, unsigned long offset); 139 struct reloc *find_reloc_by_dest(const struct elf *elf, struct section *sec, unsigned long offset); [all …]
|
/Linux-v5.10/crypto/ |
D | tcrypt.c | 59 static unsigned int sec; variable 2054 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, in do_test() 2056 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0, in do_test() 2058 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0, in do_test() 2060 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0, in do_test() 2062 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0, in do_test() 2064 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0, in do_test() 2066 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0, in do_test() 2068 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0, in do_test() 2070 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0, in do_test() [all …]
|
/Linux-v5.10/include/linux/ |
D | export.h | 26 #define __CRC_SYMBOL(sym, sec) \ argument 27 asm(" .section \"___kcrctab" sec "+" #sym "\", \"a\" \n" \ 32 #define __CRC_SYMBOL(sym, sec) \ argument 33 asm(" .section \"___kcrctab" sec "+" #sym "\", \"a\" \n" \ 39 #define __CRC_SYMBOL(sym, sec) argument 50 #define __KSYMTAB_ENTRY(sym, sec) \ argument 52 asm(" .section \"___ksymtab" sec "+" #sym "\", \"a\" \n" \ 66 #define __KSYMTAB_ENTRY(sym, sec) \ argument 68 __attribute__((section("___ksymtab" sec "+" #sym), used)) \ 81 #define ___EXPORT_SYMBOL(sym, sec, ns) __GENKSYMS_EXPORT_SYMBOL(sym) argument [all …]
|
/Linux-v5.10/drivers/firmware/google/ |
D | vpd.c | 100 struct vpd_section *sec = arg; in vpd_section_attrib_add() local 131 ret = sysfs_create_bin_file(sec->kobj, &info->bin_attr); in vpd_section_attrib_add() 135 list_add_tail(&info->list, &sec->attribs); in vpd_section_attrib_add() 146 static void vpd_section_attrib_destroy(struct vpd_section *sec) in vpd_section_attrib_destroy() argument 151 list_for_each_entry_safe(info, temp, &sec->attribs, list) { in vpd_section_attrib_destroy() 152 sysfs_remove_bin_file(sec->kobj, &info->bin_attr); in vpd_section_attrib_destroy() 162 struct vpd_section *sec = bin_attr->private; in vpd_section_read() local 164 return memory_read_from_buffer(buf, count, &pos, sec->baseaddr, in vpd_section_read() 165 sec->bin_attr.size); in vpd_section_read() 168 static int vpd_section_create_attribs(struct vpd_section *sec) in vpd_section_create_attribs() argument [all …]
|
/Linux-v5.10/net/mac802154/ |
D | llsec.c | 27 void mac802154_llsec_init(struct mac802154_llsec *sec) in mac802154_llsec_init() argument 29 memset(sec, 0, sizeof(*sec)); in mac802154_llsec_init() 31 memset(&sec->params.default_key_source, 0xFF, IEEE802154_ADDR_LEN); in mac802154_llsec_init() 33 INIT_LIST_HEAD(&sec->table.security_levels); in mac802154_llsec_init() 34 INIT_LIST_HEAD(&sec->table.devices); in mac802154_llsec_init() 35 INIT_LIST_HEAD(&sec->table.keys); in mac802154_llsec_init() 36 hash_init(sec->devices_short); in mac802154_llsec_init() 37 hash_init(sec->devices_hw); in mac802154_llsec_init() 38 rwlock_init(&sec->lock); in mac802154_llsec_init() 41 void mac802154_llsec_destroy(struct mac802154_llsec *sec) in mac802154_llsec_destroy() argument [all …]
|
D | llsec.h | 64 void mac802154_llsec_init(struct mac802154_llsec *sec); 65 void mac802154_llsec_destroy(struct mac802154_llsec *sec); 67 int mac802154_llsec_get_params(struct mac802154_llsec *sec, 69 int mac802154_llsec_set_params(struct mac802154_llsec *sec, 73 int mac802154_llsec_key_add(struct mac802154_llsec *sec, 76 int mac802154_llsec_key_del(struct mac802154_llsec *sec, 79 int mac802154_llsec_dev_add(struct mac802154_llsec *sec, 81 int mac802154_llsec_dev_del(struct mac802154_llsec *sec, 84 int mac802154_llsec_devkey_add(struct mac802154_llsec *sec, 87 int mac802154_llsec_devkey_del(struct mac802154_llsec *sec, [all …]
|
/Linux-v5.10/fs/reiserfs/ |
D | xattr_security.c | 46 struct reiserfs_security_handle *sec) in reiserfs_security_init() argument 51 sec->name = NULL; in reiserfs_security_init() 57 error = security_old_inode_init_security(inode, dir, qstr, &sec->name, in reiserfs_security_init() 58 &sec->value, &sec->length); in reiserfs_security_init() 63 sec->name = NULL; in reiserfs_security_init() 64 sec->value = NULL; in reiserfs_security_init() 65 sec->length = 0; in reiserfs_security_init() 69 if (sec->length && reiserfs_xattrs_initialized(inode->i_sb)) { in reiserfs_security_init() 71 reiserfs_xattr_nblocks(inode, sec->length); in reiserfs_security_init() 81 struct reiserfs_security_handle *sec) in reiserfs_security_write() argument [all …]
|
/Linux-v5.10/arch/mips/boot/tools/ |
D | relocs.c | 273 struct section *sec = &secs[i]; in read_shdrs() local 275 sec->shdr_offset = ftell(fp); in read_shdrs() 279 sec->shdr.sh_name = elf_word_to_cpu(shdr.sh_name); in read_shdrs() 280 sec->shdr.sh_type = elf_word_to_cpu(shdr.sh_type); in read_shdrs() 281 sec->shdr.sh_flags = elf_xword_to_cpu(shdr.sh_flags); in read_shdrs() 282 sec->shdr.sh_addr = elf_addr_to_cpu(shdr.sh_addr); in read_shdrs() 283 sec->shdr.sh_offset = elf_off_to_cpu(shdr.sh_offset); in read_shdrs() 284 sec->shdr.sh_size = elf_xword_to_cpu(shdr.sh_size); in read_shdrs() 285 sec->shdr.sh_link = elf_word_to_cpu(shdr.sh_link); in read_shdrs() 286 sec->shdr.sh_info = elf_word_to_cpu(shdr.sh_info); in read_shdrs() [all …]
|
/Linux-v5.10/drivers/infiniband/core/ |
D | security.c | 50 struct ib_device *dev = pp->sec->dev; in get_pkey_idx_qp_list() 68 struct ib_device *dev = pp->sec->dev; in get_pkey_and_subnet_prefix() 112 struct ib_qp_security *sec) in check_qp_port_pkey_settings() argument 130 sec); in check_qp_port_pkey_settings() 144 sec); in check_qp_port_pkey_settings() 153 static void qp_to_error(struct ib_qp_security *sec) in qp_to_error() argument 167 if (sec->destroying) in qp_to_error() 170 ib_modify_qp(sec->qp, in qp_to_error() 174 if (sec->qp->event_handler && sec->qp->qp_context) { in qp_to_error() 175 event.element.qp = sec->qp; in qp_to_error() [all …]
|
/Linux-v5.10/arch/powerpc/boot/dts/fsl/ |
D | qoriq-sec5.2-0.dtsi | 36 compatible = "fsl,sec-v5.2", "fsl,sec-v5.0", "fsl,sec-v4.0"; 37 fsl,sec-era = <5>; 45 compatible = "fsl,sec-v5.2-job-ring", 46 "fsl,sec-v5.0-job-ring", 47 "fsl,sec-v4.0-job-ring"; 53 compatible = "fsl,sec-v5.2-job-ring", 54 "fsl,sec-v5.0-job-ring", 55 "fsl,sec-v4.0-job-ring"; 61 compatible = "fsl,sec-v5.2-job-ring", 62 "fsl,sec-v5.0-job-ring", [all …]
|
D | qoriq-sec5.3-0.dtsi | 36 compatible = "fsl,sec-v5.3", "fsl,sec-v5.0", "fsl,sec-v4.0"; 37 fsl,sec-era = <4>; 45 compatible = "fsl,sec-v5.3-job-ring", 46 "fsl,sec-v5.0-job-ring", 47 "fsl,sec-v4.0-job-ring"; 53 compatible = "fsl,sec-v5.3-job-ring", 54 "fsl,sec-v5.0-job-ring", 55 "fsl,sec-v4.0-job-ring"; 61 compatible = "fsl,sec-v5.3-job-ring", 62 "fsl,sec-v5.0-job-ring", [all …]
|
D | qoriq-sec4.2-0.dtsi | 36 compatible = "fsl,sec-v4.2", "fsl,sec-v4.0"; 37 fsl,sec-era = <3>; 45 compatible = "fsl,sec-v4.2-job-ring", 46 "fsl,sec-v4.0-job-ring"; 52 compatible = "fsl,sec-v4.2-job-ring", 53 "fsl,sec-v4.0-job-ring"; 59 compatible = "fsl,sec-v4.2-job-ring", 60 "fsl,sec-v4.0-job-ring"; 66 compatible = "fsl,sec-v4.2-job-ring", 67 "fsl,sec-v4.0-job-ring"; [all …]
|
D | qoriq-sec5.0-0.dtsi | 36 compatible = "fsl,sec-v5.0", "fsl,sec-v4.0"; 37 fsl,sec-era = <5>; 45 compatible = "fsl,sec-v5.0-job-ring", 46 "fsl,sec-v4.0-job-ring"; 52 compatible = "fsl,sec-v5.0-job-ring", 53 "fsl,sec-v4.0-job-ring"; 59 compatible = "fsl,sec-v5.0-job-ring", 60 "fsl,sec-v4.0-job-ring"; 66 compatible = "fsl,sec-v5.0-job-ring", 67 "fsl,sec-v4.0-job-ring"; [all …]
|
/Linux-v5.10/arch/x86/tools/ |
D | relocs.c | 277 struct section *sec = &secs[i]; in sym_lookup() local 283 if (sec->shdr.sh_type != SHT_SYMTAB) in sym_lookup() 286 nsyms = sec->shdr.sh_size/sizeof(Elf_Sym); in sym_lookup() 287 symtab = sec->symtab; in sym_lookup() 288 strtab = sec->link->strtab; in sym_lookup() 423 struct section *sec = &secs[i]; in read_shdrs() local 427 sec->shdr.sh_name = elf_word_to_cpu(shdr.sh_name); in read_shdrs() 428 sec->shdr.sh_type = elf_word_to_cpu(shdr.sh_type); in read_shdrs() 429 sec->shdr.sh_flags = elf_xword_to_cpu(shdr.sh_flags); in read_shdrs() 430 sec->shdr.sh_addr = elf_addr_to_cpu(shdr.sh_addr); in read_shdrs() [all …]
|
/Linux-v5.10/fs/hpfs/ |
D | alloc.c | 12 static void hpfs_claim_alloc(struct super_block *s, secno sec) in hpfs_claim_alloc() argument 17 hpfs_error(s, "free count underflow, allocating sector %08x", sec); in hpfs_claim_alloc() 25 static void hpfs_claim_free(struct super_block *s, secno sec) in hpfs_claim_free() argument 30 hpfs_error(s, "free count overflow, freeing sector %08x", sec); in hpfs_claim_free() 38 static void hpfs_claim_dirband_alloc(struct super_block *s, secno sec) in hpfs_claim_dirband_alloc() argument 43 hpfs_error(s, "dirband free count underflow, allocating sector %08x", sec); in hpfs_claim_dirband_alloc() 51 static void hpfs_claim_dirband_free(struct super_block *s, secno sec) in hpfs_claim_dirband_free() argument 56 hpfs_error(s, "dirband free count overflow, freeing sector %08x", sec); in hpfs_claim_dirband_free() 69 static int chk_if_allocated(struct super_block *s, secno sec, char *msg) in chk_if_allocated() argument 73 if (!(bmp = hpfs_map_bitmap(s, sec >> 14, &qbh, "chk"))) goto fail; in chk_if_allocated() [all …]
|
/Linux-v5.10/drivers/net/wireless/intel/ipw2x00/ |
D | libipw_wx.c | 302 struct libipw_security sec = { in libipw_wx_set_encode() local 347 sec.enabled = 0; in libipw_wx_set_encode() 348 sec.encrypt = 0; in libipw_wx_set_encode() 349 sec.level = SEC_LEVEL_0; in libipw_wx_set_encode() 350 sec.flags |= SEC_ENABLED | SEC_LEVEL | SEC_ENCRYPT; in libipw_wx_set_encode() 356 sec.enabled = 1; in libipw_wx_set_encode() 357 sec.encrypt = 1; in libipw_wx_set_encode() 358 sec.flags |= SEC_ENABLED | SEC_ENCRYPT; in libipw_wx_set_encode() 398 memcpy(sec.keys[key], keybuf, erq->length); in libipw_wx_set_encode() 400 memset(sec.keys[key] + erq->length, 0, in libipw_wx_set_encode() [all …]
|
/Linux-v5.10/drivers/nvdimm/ |
D | security.c | 145 if (!nvdimm->sec.ops->change_key) in nvdimm_key_revalidate() 154 rc = nvdimm->sec.ops->change_key(nvdimm, data, data, NVDIMM_USER); in nvdimm_key_revalidate() 161 nvdimm->sec.flags = nvdimm_security_flags(nvdimm, NVDIMM_USER); in nvdimm_key_revalidate() 176 if (!nvdimm->sec.ops || !nvdimm->sec.ops->unlock in __nvdimm_security_unlock() 177 || !nvdimm->sec.flags) in __nvdimm_security_unlock() 181 if (test_bit(NVDIMM_SECURITY_DISABLED, &nvdimm->sec.flags)) in __nvdimm_security_unlock() 196 if (test_bit(NVDIMM_SECURITY_UNLOCKED, &nvdimm->sec.flags)) { in __nvdimm_security_unlock() 204 rc = nvdimm->sec.ops->unlock(nvdimm, data); in __nvdimm_security_unlock() 209 nvdimm->sec.flags = nvdimm_security_flags(nvdimm, NVDIMM_USER); in __nvdimm_security_unlock() 228 if (test_bit(NVDIMM_SECURITY_FROZEN, &nvdimm->sec.flags)) { in check_security_state() [all …]
|
/Linux-v5.10/include/asm-generic/ |
D | export.h | 35 .macro ___EXPORT_SYMBOL name,val,sec 37 .section ___ksymtab\sec+\name,"a" 47 .section ___kcrctab\sec+\name,"a" 71 #define __EXPORT_SYMBOL(sym, val, sec) \ argument 73 __cond_export_sym(sym, val, sec, __is_defined(__KSYM_##sym)) 74 #define __cond_export_sym(sym, val, sec, conf) \ argument 75 ___cond_export_sym(sym, val, sec, conf) 76 #define ___cond_export_sym(sym, val, sec, enabled) \ argument 77 __cond_export_sym_##enabled(sym, val, sec) 78 #define __cond_export_sym_1(sym, val, sec) ___EXPORT_SYMBOL sym, val, sec argument [all …]
|
/Linux-v5.10/drivers/net/wireless/realtek/rtw88/ |
D | sec.c | 9 int rtw_sec_get_free_cam(struct rtw_sec_desc *sec) in rtw_sec_get_free_cam() argument 15 if (sec->default_key_search) in rtw_sec_get_free_cam() 16 return find_next_zero_bit(sec->cam_map, RTW_MAX_SEC_CAM_NUM, in rtw_sec_get_free_cam() 19 return find_first_zero_bit(sec->cam_map, RTW_MAX_SEC_CAM_NUM); in rtw_sec_get_free_cam() 23 struct rtw_sec_desc *sec, in rtw_sec_write_cam() argument 28 struct rtw_cam_entry *cam = &sec->cam_table[hw_key_idx]; in rtw_sec_write_cam() 35 set_bit(hw_key_idx, sec->cam_map); in rtw_sec_write_cam() 83 struct rtw_sec_desc *sec, in rtw_sec_clear_cam() argument 86 struct rtw_cam_entry *cam = &sec->cam_table[hw_key_idx]; in rtw_sec_clear_cam() 91 clear_bit(hw_key_idx, sec->cam_map); in rtw_sec_clear_cam() [all …]
|
/Linux-v5.10/drivers/media/dvb-core/ |
D | dvb_demux.c | 100 return (f->feed.sec.crc_val = crc32_be(f->feed.sec.crc_val, src, len)); in dvb_dmx_crc32() 151 u8 xor = f->filter.filter_value[i] ^ feed->feed.sec.secbuf[i]; in dvb_dmx_swfilter_sectionfilter() 162 return feed->cb.sec(feed->feed.sec.secbuf, feed->feed.sec.seclen, in dvb_dmx_swfilter_sectionfilter() 170 struct dmx_section_feed *sec = &feed->feed.sec; in dvb_dmx_swfilter_section_feed() local 173 if (!sec->is_filtering) in dvb_dmx_swfilter_section_feed() 179 if (sec->check_crc) { in dvb_dmx_swfilter_section_feed() 180 section_syntax_indicator = ((sec->secbuf[1] & 0x80) != 0); in dvb_dmx_swfilter_section_feed() 182 demux->check_crc32(feed, sec->secbuf, sec->seclen)) { in dvb_dmx_swfilter_section_feed() 191 } while ((f = f->next) && sec->is_filtering); in dvb_dmx_swfilter_section_feed() 193 sec->seclen = 0; in dvb_dmx_swfilter_section_feed() [all …]
|
/Linux-v5.10/kernel/time/ |
D | vsyscall.c | 22 u64 nsec, sec; in update_vdso_data() local 35 vdso_ts->sec = tk->xtime_sec + tk->wall_to_monotonic.tv_sec; in update_vdso_data() 41 vdso_ts->sec++; in update_vdso_data() 46 sec = vdso_ts->sec; in update_vdso_data() 48 sec += tk->monotonic_to_boot.tv_sec; in update_vdso_data() 53 vdso_ts->sec = sec; in update_vdso_data() 57 vdso_ts->sec++; in update_vdso_data() 63 vdso_ts->sec = tk->raw_sec; in update_vdso_data() 68 vdso_ts->sec = tk->xtime_sec + (s64)tk->tai_offset; in update_vdso_data() 88 vdso_ts->sec = tk->xtime_sec; in update_vsyscall() [all …]
|