Displaying 4 results from an estimated 4 matches for "smbreq".
2016 Jan 06
1
wide links and privileges
...no mention of a
possible conflict between the `enable privileges` parameter and the
`wide links` parameter. Let me show you something in the samba's source
code:
The function which interests us here deals with the file names, there is
an `if` statement:
source3/smbd/filename.c:
```
* @param smbreq SMB request if we're using privileges.
[...]
if (!smbreq) {
status = check_name(conn, (*pp_smb_fname)->base_name);
} else {
status = check_name_with_privilege(conn, smbreq,
(*pp_smb_fname)->base_name);
}
```
which redirects us to the `check_name` or the
`ch...
2016 Jan 06
3
wide links and privileges
...e `enable privileges` parameter and the
> `wide links` parameter. Let me show you something in the samba's source
> code:
>
> The function which interests us here deals with the file names, there is
> an `if` statement:
>
> source3/smbd/filename.c:
> ```
> * @param smbreq SMB request if we're using privileges.
> [...]
> if (!smbreq) {
> status = check_name(conn, (*pp_smb_fname)->base_name);
> } else {
> status = check_name_with_privilege(conn, smbreq,
> (*pp_smb_fname)->base_name);
> }
> ```
>
>...
2015 Dec 22
6
wide links and privileges
Hi,
I'm using samba version samba-4.1.6+dfsg included in last ubuntu LTS
version.
Here is my smb.conf file:
[global]
# configuration du serveur
netbios name = scribe
workgroup = dompedago
server string = scribe
preferred master = yes
domain logons = yes
security = user
ldap passwd sync = yes
passdb backend =
2016 Jan 07
0
wide links and privileges
...the `enable privileges` parameter and the
> `wide links` parameter. Let me show you something in the samba's source
> code:
>
> The function which interests us here deals with the file names, there is
> an `if` statement:
>
> source3/smbd/filename.c:
> ```
> * @param smbreq SMB request if we're using privileges.
> [...]
> if (!smbreq) {
> status = check_name(conn, (*pp_smb_fname)->base_name);
> } else {
> status = check_name_with_privilege(conn, smbreq,
> (*pp_smb_fname)->base_name);
> }
> ```
>
>...