2 * Copyright (c) 2000-2001 Boris Popov
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Boris Popov.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * $FreeBSD: src/sys/netsmb/smb_subr.c,v 1.1.2.2 2001/09/03 08:55:11 bp Exp $
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/endian.h>
37 #include <sys/kernel.h>
38 #include <sys/kthread.h>
39 #include <sys/malloc.h>
43 #include <sys/resourcevar.h>
44 #include <sys/sysctl.h>
45 #include <sys/socket.h>
46 #include <sys/signalvar.h>
48 #include <sys/unistd.h>
50 #include <sys/signal2.h>
51 #include <sys/mplock2.h>
53 #include <machine/stdarg.h>
55 #include <sys/iconv.h>
62 MALLOC_DEFINE(M_SMBSTR
, "SMBSTR", "netsmb string data");
63 MALLOC_DEFINE(M_SMBTEMP
, "SMBTEMP", "Temp netsmb data");
65 smb_unichar smb_unieol
= 0;
68 smb_makescred(struct smb_cred
*scred
, struct thread
*td
, struct ucred
*cred
)
71 if (td
&& td
->td_proc
) {
72 scred
->scr_cred
= cred
? cred
: td
->td_proc
->p_ucred
;
74 scred
->scr_cred
= cred
? cred
: NULL
;
79 smb_proc_intr(struct thread
*td
)
85 if (td
== NULL
|| (p
= td
->td_proc
) == NULL
)
88 tmpset
= lwp_sigpend(lp
);
89 SIGSETNAND(tmpset
, lp
->lwp_sigmask
);
90 SIGSETNAND(tmpset
, p
->p_sigignore
);
91 if (SIGNOTEMPTY(tmpset
) && SMB_SIGMASK(tmpset
))
97 smb_strdup(const char *s
)
102 len
= s
? strlen(s
) + 1 : 1;
103 p
= kmalloc(len
, M_SMBSTR
, M_WAITOK
);
112 * duplicate string from a user space.
115 smb_strdupin(char *s
, int maxlen
)
121 if (copyin(p
, &bt
, 1))
124 if (maxlen
&& len
> maxlen
)
129 p
= kmalloc(len
, M_SMBSTR
, M_WAITOK
);
135 * duplicate memory block from a user space.
138 smb_memdupin(void *umem
, int len
)
144 p
= kmalloc(len
, M_SMBSTR
, M_WAITOK
);
145 if (copyin(umem
, p
, len
) == 0)
152 * duplicate memory block in the kernel space.
155 smb_memdup(const void *umem
, int len
)
161 p
= kmalloc(len
, M_SMBSTR
, M_WAITOK
);
179 smb_zmalloc(unsigned long size
, struct malloc_type
*type
, int flags
)
182 return kmalloc(size
, type
, flags
| M_ZERO
);
186 smb_strtouni(u_int16_t
*dst
, const char *src
)
189 *dst
++ = htole16(*src
++);
194 #ifdef SMB_SOCKETDATA_DEBUG
196 m_dumpm(struct mbuf
*m
) {
205 kprintf("%02x ",((int)*(p
++)) & 0xff);
214 smb_maperror(int eclass
, int eno
)
216 if (eclass
== 0 && eno
== 0)
230 case 66: /* nt returns it when share not available */
231 case 67: /* observed from nt4sp6 when sharename wrong */
241 return ENOMEM
; /* actually remote no mem... */
249 case ERRnotready
: /* nt */
254 return 0; /* eeof ? */
260 case 123: /* dunno what is it, but samba maps as noent */
262 case 145: /* samba */
279 SMBERROR("NetBIOS name is invalid\n");
281 case 3: /* reserved and returned */
283 case 2239: /* NT: account exists but disabled */
306 SMBERROR("Unmapped error %d:%d\n", eclass
, eno
);
311 smb_copy_iconv(struct mbchain
*mbp
, c_caddr_t src
, caddr_t dst
,
312 size_t *srclen
, size_t *dstlen
)
315 size_t inlen
= *srclen
, outlen
= *dstlen
;
317 error
= iconv_conv((struct iconv_drv
*)mbp
->mb_udata
, &src
, &inlen
,
319 if (inlen
!= *srclen
|| outlen
!= *dstlen
) {
329 smb_put_dmem(struct mbchain
*mbp
, struct smb_vc
*vcp
, const char *src
,
330 int size
, int caseopt
)
332 struct iconv_drv
*dp
= vcp
->vc_toserver
;
337 return mb_put_mem(mbp
, src
, size
, MB_MSYSTEM
);
339 mbp
->mb_copy
= smb_copy_iconv
;
341 return mb_put_mem(mbp
, src
, size
, MB_MCUSTOM
);
345 smb_put_dstring(struct mbchain
*mbp
, struct smb_vc
*vcp
, const char *src
,
350 error
= smb_put_dmem(mbp
, vcp
, src
, strlen(src
), caseopt
);
353 return mb_put_uint8(mbp
, 0);
357 smb_put_asunistring(struct smb_rq
*rqp
, const char *src
)
359 struct mbchain
*mbp
= &rqp
->sr_rq
;
360 struct iconv_drv
*dp
= rqp
->sr_vc
->vc_toserver
;
365 iconv_convmem(dp
, &c
, src
++, 1);
366 error
= mb_put_uint16le(mbp
, c
);
370 return mb_put_uint16le(mbp
, 0);
374 * Create a kernel process/thread/whatever. It shares it's address space
375 * with proc0 - ie: kernel only.
377 * XXX only the SMB protocol uses this, we should convert this mess to a
378 * pure thread when possible.
381 smb_kthread_create(void (*func
)(void *), void *arg
,
382 struct proc
**newpp
, int flags
, const char *fmt
, ...)
389 error
= fork1(&lwp0
, RFMEM
| RFFDG
| RFPROC
| flags
, &p2
);
393 /* save a global descriptor, if desired */
397 /* this is a non-swapped system process */
398 p2
->p_flags
|= P_SYSTEM
;
399 p2
->p_sigacts
->ps_flag
|= PS_NOCLDWAIT
;
401 lp2
= ONLY_LWP_IN_PROC(p2
);
403 /* set up arg0 for 'ps', et al */
405 kvsnprintf(p2
->p_comm
, sizeof(p2
->p_comm
), fmt
, ap
);
408 lp2
->lwp_thread
->td_ucred
= crhold(proc0
.p_ucred
);
410 /* call the processes' main()... */
411 cpu_set_fork_handler(lp2
,
412 (void (*)(void *, struct trapframe
*))func
, arg
);
413 start_forked_proc(&lwp0
, p2
);
419 smb_kthread_exit(void)
425 * smb_sleep() icky compat routine. Leave the token held through the tsleep
426 * to interlock against the sleep. Remember that the token could be lost
427 * since we blocked, so reget or release as appropriate.
430 smb_sleep(void *chan
, struct smb_slock
*sl
, int slpflags
, const char *wmesg
, int timo
)
435 tsleep_interlock(chan
, slpflags
);
437 error
= tsleep(chan
, slpflags
| PINTERLOCKED
, wmesg
, timo
);
438 if ((slpflags
& PDROP
) == 0)
441 error
= tsleep(chan
, slpflags
, wmesg
, timo
);