Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
9c53588e
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9c53588e
编写于
6月 01, 2006
作者:
S
Steve French
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CIFS] Missing include shows up on some architectures
Signed-off-by:
N
Steve French
<
sfrench@us.ibm.com
>
上级
3979877e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
2 addition
and
144 deletion
+2
-144
fs/cifs/cifsfs.h
fs/cifs/cifsfs.h
+1
-1
fs/cifs/ntlmssp.c
fs/cifs/ntlmssp.c
+0
-143
fs/cifs/sess.c
fs/cifs/sess.c
+1
-0
未找到文件。
fs/cifs/cifsfs.h
浏览文件 @
9c53588e
...
...
@@ -99,5 +99,5 @@ extern ssize_t cifs_getxattr(struct dentry *, const char *, void *, size_t);
extern
ssize_t
cifs_listxattr
(
struct
dentry
*
,
char
*
,
size_t
);
extern
int
cifs_ioctl
(
struct
inode
*
inode
,
struct
file
*
filep
,
unsigned
int
command
,
unsigned
long
arg
);
#define CIFS_VERSION "1.4
3
"
#define CIFS_VERSION "1.4
4
"
#endif
/* _CIFSFS_H */
fs/cifs/ntlmssp.c
已删除
100644 → 0
浏览文件 @
3979877e
/*
* fs/cifs/ntlmssp.h
*
* Copyright (c) International Business Machines Corp., 2006
* Author(s): Steve French (sfrench@us.ibm.com)
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "cifspdu.h"
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_unicode.h"
#include "cifs_debug.h"
#include "ntlmssp.h"
#include "nterr.h"
#ifdef CONFIG_CIFS_EXPERIMENTAL
static
__u32
cifs_ssetup_hdr
(
struct
cifsSesInfo
*
ses
,
SESSION_SETUP_ANDX
*
pSMB
)
{
__u32
capabilities
=
0
;
/* init fields common to all four types of SessSetup */
/* note that header is initialized to zero in header_assemble */
pSMB
->
req
.
AndXCommand
=
0xFF
;
pSMB
->
req
.
MaxBufferSize
=
cpu_to_le16
(
ses
->
server
->
maxBuf
);
pSMB
->
req
.
MaxMpxCount
=
cpu_to_le16
(
ses
->
server
->
maxReq
);
/* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
/* BB verify whether signing required on neg or just on auth frame
(and NTLM case) */
capabilities
=
CAP_LARGE_FILES
|
CAP_NT_SMBS
|
CAP_LEVEL_II_OPLOCKS
|
CAP_LARGE_WRITE_X
|
CAP_LARGE_READ_X
;
if
(
ses
->
server
->
secMode
&
(
SECMODE_SIGN_REQUIRED
|
SECMODE_SIGN_ENABLED
))
pSMB
->
req
.
hdr
.
Flags2
|=
SMBFLG2_SECURITY_SIGNATURE
;
if
(
ses
->
capabilities
&
CAP_UNICODE
)
{
pSMB
->
req
.
hdr
.
Flags2
|=
SMBFLG2_UNICODE
;
capabilities
|=
CAP_UNICODE
;
}
if
(
ses
->
capabilities
&
CAP_STATUS32
)
{
pSMB
->
req
.
hdr
.
Flags2
|=
SMBFLG2_ERR_STATUS
;
capabilities
|=
CAP_STATUS32
;
}
if
(
ses
->
capabilities
&
CAP_DFS
)
{
pSMB
->
req
.
hdr
.
Flags2
|=
SMBFLG2_DFS
;
capabilities
|=
CAP_DFS
;
}
/* BB check whether to init vcnum BB */
return
capabilities
;
}
int
CIFS_SessSetup
(
unsigned
int
xid
,
struct
cifsSesInfo
*
ses
,
const
int
type
,
int
*
pNTLMv2_flg
,
const
struct
nls_table
*
nls_cp
)
{
int
rc
=
0
;
int
wct
;
struct
smb_hdr
*
smb_buffer
;
char
*
bcc_ptr
;
SESSION_SETUP_ANDX
*
pSMB
;
__u32
capabilities
;
if
(
ses
==
NULL
)
return
-
EINVAL
;
cFYI
(
1
,(
"SStp type: %d"
,
type
));
if
(
type
<
CIFS_NTLM
)
{
#ifndef CONFIG_CIFS_WEAK_PW_HASH
/* LANMAN and plaintext are less secure and off by default.
So we make this explicitly be turned on in kconfig (in the
build) and turned on at runtime (changed from the default)
in proc/fs/cifs or via mount parm. Unfortunately this is
needed for old Win (e.g. Win95), some obscure NAS and OS/2 */
return
-
EOPNOTSUPP
;
#endif
wct
=
10
;
/* lanman 2 style sessionsetup */
}
else
if
(
type
<
CIFS_NTLMSSP_NEG
)
wct
=
13
;
/* old style NTLM sessionsetup */
else
/* same size for negotiate or auth, NTLMSSP or extended security */
wct
=
12
;
rc
=
small_smb_init_no_tc
(
SMB_COM_SESSION_SETUP_ANDX
,
wct
,
ses
,
(
void
**
)
&
smb_buffer
);
if
(
rc
)
return
rc
;
pSMB
=
(
SESSION_SETUP_ANDX
*
)
smb_buffer
;
capabilities
=
cifs_ssetup_hdr
(
ses
,
pSMB
);
bcc_ptr
=
pByteArea
(
smb_buffer
);
if
(
type
>
CIFS_NTLM
)
{
pSMB
->
req
.
hdr
.
Flags2
|=
SMBFLG2_EXT_SEC
;
capabilities
|=
CAP_EXTENDED_SECURITY
;
pSMB
->
req
.
Capabilities
=
cpu_to_le32
(
capabilities
);
/* BB set password lengths */
}
else
if
(
type
<
CIFS_NTLM
)
/* lanman */
{
/* no capabilities flags in old lanman negotiation */
/* pSMB->old_req.PasswordLength = */
/* BB fixme BB */
}
else
/* type CIFS_NTLM */
{
pSMB
->
req_no_secext
.
Capabilities
=
cpu_to_le32
(
capabilities
);
pSMB
->
req_no_secext
.
CaseInsensitivePasswordLength
=
cpu_to_le16
(
CIFS_SESSION_KEY_SIZE
);
pSMB
->
req_no_secext
.
CaseSensitivePasswordLength
=
cpu_to_le16
(
CIFS_SESSION_KEY_SIZE
);
}
/* copy session key */
/* if Unicode, align strings to two byte boundary */
/* copy user name */
/* BB Do we need to special case null user name? */
/* copy domain name */
/* copy Linux version */
/* copy network operating system name */
/* update bcc and smb buffer length */
/* rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buf_type, 0); */
/* SMB request buf freed in SendReceive2 */
return
rc
;
}
#endif
/* CONFIG_CIFS_EXPERIMENTAL */
fs/cifs/sess.c
浏览文件 @
9c53588e
...
...
@@ -29,6 +29,7 @@
#include "ntlmssp.h"
#include "nterr.h"
#include <linux/ctype.h>
#include <linux/utsname.h>
extern
void
SMBencrypt
(
unsigned
char
*
passwd
,
unsigned
char
*
c8
,
unsigned
char
*
p24
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录