parse_dfs.c

来自「samba-3.0.22.tar.gz 编译smb服务器的源码」· C语言 代码 · 共 545 行 · 第 1/2 页

C
545
字号
		return False;	if(q_i->ptr_share)		if(!smb_io_unistr2("", &q_i->uni_share, q_i->ptr_share, ps, depth))			return False;	if(!prs_align(ps))		return False;	if(!prs_uint32("level", ps, depth, &q_i->level))		return False;	return True;}/************************************************************ Read/write a DFS_R_GET_INFO structure ************************************************************/BOOL dfs_io_r_dfs_get_info(const char *desc, DFS_R_DFS_GET_INFO* r_i, prs_struct* ps, int depth){	if(r_i == NULL)		return False;  	if(!prs_uint32("level", ps, depth, &r_i->level))		return False;	if(!prs_uint32("ptr_ctr", ps, depth, &r_i->ptr_ctr))		return False;	if(!dfs_io_dfs_info_ctr("", &r_i->ctr, 1, r_i->level, ps, depth))		return False;	if(!prs_werror("status", ps, depth, &r_i->status))		return False;	return True;}			   /************************************************************ Make a DFS_Q_DFS_ENUM structure ************************************************************/BOOL init_dfs_q_dfs_enum(DFS_Q_DFS_ENUM *q_d, uint32 level, DFS_INFO_CTR *ctr){	q_d->level = level;	q_d->maxpreflen = -1;	q_d->ptr_buffer = 1;	q_d->level2 = level;  	q_d->ptr_num_entries = 1;	q_d->num_entries = 0;	q_d->num_entries2 = 0;	q_d->reshnd.ptr_hnd = 1;	q_d->reshnd.handle = 0;	return True;}  /************************************************************ Read or write the DFS_Q_DFS_ENUM structure  ************************************************************/BOOL dfs_io_q_dfs_enum(const char *desc, DFS_Q_DFS_ENUM *q_d, prs_struct *ps, int depth){	if(q_d == NULL)		return False;	prs_debug(ps, depth, desc, "dfs_io_q_dfs_enum");	depth++;  	if(!prs_align(ps))		return False;  	if(!prs_uint32("level", ps, depth, &q_d->level))		return False;	if(!prs_uint32("maxpreflen", ps, depth, &q_d->maxpreflen))		return False;	if(!prs_uint32("ptr_buffer", ps, depth, &q_d->ptr_buffer))		return False;	if(!prs_uint32("level2", ps, depth, &q_d->level2))		return False;	if(!prs_uint32("level3", ps, depth, &q_d->level2))		return False;  	if(!prs_uint32("ptr_num_entries", ps, depth, &q_d->ptr_num_entries))		return False;	if(!prs_uint32("num_entries", ps, depth, &q_d->num_entries))		return False;	if(!prs_uint32("num_entries2", ps, depth, &q_d->num_entries2))		return False;	if(!smb_io_enum_hnd("resume_hnd",&q_d->reshnd, ps, depth))		return False;	return True;}/************************************************************ Read/write a DFS_INFO_CTR structure ************************************************************/BOOL dfs_io_dfs_info_ctr(const char *desc, DFS_INFO_CTR* ctr, uint32 num_entries, uint32 level, prs_struct* ps, int depth){	int i=0;	switch(level) {	case 1:		depth++;		/* should depend on whether marshalling or unmarshalling! */		if(UNMARSHALLING(ps)) {			ctr->dfs.info1 = PRS_ALLOC_MEM(ps, DFS_INFO_1, num_entries);			if (!ctr->dfs.info1)				return False;		}		for(i=0;i<num_entries;i++) {			if(!prs_uint32("ptr_entrypath",ps, depth, &ctr->dfs.info1[i].ptr_entrypath))				return False;		}		for(i=0;i<num_entries;i++) {			if(!smb_io_unistr2("", &ctr->dfs.info1[i].entrypath, ctr->dfs.info1[i].ptr_entrypath, ps, depth))				return False;			if(!prs_align(ps))				return False;		}		depth--;		break;	case 2:		depth++;		if(UNMARSHALLING(ps)) {			ctr->dfs.info2 = PRS_ALLOC_MEM(ps, DFS_INFO_2, num_entries);			if (!ctr->dfs.info2)				return False;		}		for(i=0;i<num_entries;i++) {			if(!prs_uint32("ptr_entrypath", ps, depth, &ctr->dfs.info2[i].ptr_entrypath))				return False;			if(!prs_uint32("ptr_comment", ps, depth, &ctr->dfs.info2[i].ptr_comment))				return False;			if(!prs_uint32("state", ps, depth, &ctr->dfs.info2[i].state))				return False;			if(!prs_uint32("num_storages", ps, depth, &ctr->dfs.info2[i].num_storages))				return False;		}		for(i=0;i<num_entries;i++) {			if(!smb_io_unistr2("", &ctr->dfs.info2[i].entrypath, ctr->dfs.info2[i].ptr_entrypath, ps, depth))				return False;			if(!prs_align(ps))				return False;			if(!smb_io_unistr2("",&ctr->dfs.info2[i].comment, ctr->dfs.info2[i].ptr_comment, ps, depth))				return False;			if(!prs_align(ps))				return False;		}		depth--;		break;	case 3:		depth++;		if(UNMARSHALLING(ps)) {			ctr->dfs.info3 = PRS_ALLOC_MEM(ps, DFS_INFO_3, num_entries);			if (!ctr->dfs.info3)				return False;		}		for(i=0;i<num_entries;i++) {			if(!prs_uint32("ptr_entrypath", ps, depth, &ctr->dfs.info3[i].ptr_entrypath))				return False;			if(!prs_uint32("ptr_comment", ps, depth, &ctr->dfs.info3[i].ptr_comment))				return False;			if(!prs_uint32("state", ps, depth, &ctr->dfs.info3[i].state))				return False;			if(!prs_uint32("num_storages", ps, depth, &ctr->dfs.info3[i].num_storages))				return False;			if(!prs_uint32("ptr_storages", ps, depth, &ctr->dfs.info3[i].ptr_storages))				return False;		}		for(i=0;i<num_entries;i++) {			if(!smb_io_unistr2("", &ctr->dfs.info3[i].entrypath, ctr->dfs.info3[i].ptr_entrypath, ps, depth))				return False;			if(!prs_align(ps))				return False;			if(!smb_io_unistr2("", &ctr->dfs.info3[i].comment, ctr->dfs.info3[i].ptr_comment, ps, depth))				return False;			if(!prs_align(ps))				return False;			if(!prs_uint32("num_storage_infos", ps, depth, &ctr->dfs.info3[i].num_storage_infos))				return False;			if(!dfs_io_dfs_storage_info("storage_info", &ctr->dfs.info3[i], ps, depth))				return False;		}	}	return True;}/************************************************************ Read/write a DFS_R_DFS_ENUM structure ************************************************************/BOOL dfs_io_r_dfs_enum(const char *desc, DFS_R_DFS_ENUM *q_d, prs_struct *ps, int depth){	DFS_INFO_CTR *ctr;	if(q_d == NULL)		return False;	ctr = q_d->ctr;	if(ctr == NULL)		return False;	prs_debug(ps, depth, desc, "dfs_io_r_dfs_enum");	depth++;	if(!prs_align(ps))		return False;	if(!prs_uint32("ptr_buffer", ps, depth, &q_d->ptr_buffer))		return False;	if(!prs_uint32("level", ps, depth, &q_d->level))		return False;	if(!prs_uint32("level2", ps, depth, &ctr->switch_value))		return False;	if(!prs_uint32("ptr_num_entries", ps, depth, &q_d->ptr_num_entries))		return False;	if(q_d->ptr_num_entries)		if(!prs_uint32("num_entries", ps, depth, &q_d->num_entries))			return False;	if(!prs_uint32("ptr_num_entries2", ps, depth, &q_d->ptr_num_entries2))		return False;	if(q_d->ptr_num_entries2)		if(!prs_uint32("num_entries2", ps, depth, &ctr->num_entries))			return False;	if(!dfs_io_dfs_info_ctr("", ctr, q_d->num_entries, q_d->level, ps, depth))		return False;	if(!smb_io_enum_hnd("resume_hnd", &q_d->reshnd, ps, depth))		return False;	if(!prs_werror("status", ps, depth, &q_d->status))		return False;	return True;}BOOL dfs_io_dfs_storage_info(const char *desc, DFS_INFO_3* info3, prs_struct *ps, int depth){	int i=0;	if(info3 == NULL)		return False;  	prs_debug(ps, depth, desc, "smb_io_dfs_storage_info");	depth++;	if(UNMARSHALLING(ps)) {		info3->storages = PRS_ALLOC_MEM(ps, DFS_STORAGE_INFO, info3->num_storage_infos);		if (!info3->storages)			return False;	}	for(i=0;i<info3->num_storage_infos;i++) {		if(!prs_uint32("storage_state", ps, depth, &info3->storages[i].state))			return False;		if(!prs_uint32("ptr_servername", ps, depth, &info3->storages[i].ptr_servername))			return False;		if(!prs_uint32("ptr_sharename", ps, depth, &info3->storages[i].ptr_sharename))			return False;	}	for(i=0;i<info3->num_storage_infos;i++) {		if(!smb_io_unistr2("servername", &info3->storages[i].servername, info3->storages[i].ptr_servername, ps, depth))			return False;		if(!prs_align(ps))			return False;		if(!smb_io_unistr2("sharename", &info3->storages[i].sharename, info3->storages[i].ptr_sharename, ps, depth))			return False;		if(!prs_align(ps))			return False;	}	return True;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?